/******************  UTILS COMMON **************************/
* {
    font-family: 'Open Sans', arial, sans-serif;
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    background-color: #111111;
}

:root {
    --green-primary: #00BE36;
    --green-secondary: #9EC32C;
    --green-third: #004e1f;
    --light-color: #fff;
    --dark-color: #000;
    --dark-color-rgba: rgba(0, 0, 0, .8);
    --contrast-color: #657d82;
    --contrast-dark-color: #2d2d2d;
    --contrast-light-color: #ebebeb;
    --red-color: #ec0000;
    --yellow-color: #feec00;

    --font-roboto: 'Roboto', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
}

.cursor-pointer:hover {
    cursor: pointer;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #3e413d;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

/****************** UTILS BOXES **************************/
.box_page {
    width: 100%;
    background-color: var(--light-color);
}

.box-left,
.box-right {
    width: 100%;
}

.box_advertising a img {
    min-height: 60px;
}

.box-200 {
    min-height: 200px;
}


#main-container {
    margin-top: 60px;
    max-width: 1420px;
}



/****************** UTILS BACKGROUNDS **************************/
.bck-dark {
    background-color: var(--dark-color) !important;
}

.bck-dark-rgba {
    background-color: var(--dark-color-rgba) !important;
}

.bck-green-primary {
    background-color: var(--green-primary) !important;
}

.bck-green-secondary {
    background-color: var(--green-secondary) !important;
}

.bck-green-third {
    background-color: var(--green-third) !important;
}

.bck-light {
    background-color: var(--light-color) !important;
}

.bck-contrast-light {
    background-color: var(--contrast-light-color) !important;
}

.bck-contrast-dark {
    background-color: var(--contrast-dark-color) !important;
}

.bck-striped {
    background-color: #F7F7F9 !important;
}

/****************** UTILS BORDERS **************************/
.border-primary {
    border-color: var(--green-primary) !important;
}

.border-secondary {
    border-color: var(--green-secondary) !important;
}

.border-third {
    border-color: var(--green-third) !important;
}


.border-contrast {
    border-color: var(--contrast-dark-color) !important;
}

.border-contrast-light {
    border-color: #ebeff2 !important;
}


/****************** UTILS TAGS **************************/
.tag-dark {
    background-color: var(--dark-color);

}

/*
.tag-dark:hover {
    background-color: var(--green-secondary)
}
*/

.tag-dark a {
    color: var(--light-color) !important;
    font-size: 1.2em !important;
    padding: 4px 8px 4px 8px !important;
    font-weight: bolder;
    white-space: nowrap;
}


/****************** UTILS LINKS **************************/

.link-primary {
    color: var(--dark-color);
}

.link-primary:hover {
    color: var(--green-secondary);
    text-decoration: underline;
}

.link-light {
    color: var(--light-color);
    text-decoration: none !important;
}

.link-light:hover {
    color: var(--light-color);
    text-decoration: none !important;
}

.link-dark {
    color: var(--dark-color);
    text-decoration: none !important;
}

.link-dark:hover {
    color: var(--dark-color);
    text-decoration: none !important;
}

.link-bck-primary {
    background: var(--dark-color);
    color: var(--light-color);
}

.link-bck-primary:hover {
    background: var(--green-secondary) !important;
    color: var(--light-color);
}

.link-with-decoration {
    background: var(--green-secondary) url(../../images/overlay_2.png) !important;
    color: var(--light-color);
}

.link-with-decoration:hover {
    background: var(--light-color) !important;
    color: var(--green-secondary);
}

.link-pagination {
    background: var(--light-color) !important;
    border: 1px solid var(--contrast-light-color);
    color: var(--green-secondary) !important;

}

.link-pagination:hover {
    background: var(--dark-color) !important;
    border: 1px solid var(--dark-color);
    color: var(--light-color) !important;
    text-decoration: none !important;
}

.link-pagination.active {
    background: var(--green-secondary) !important;
    border: 1px solid var(--green-secondary);
    color: var(--light-color) !important;

}


.link-tag {
    white-space: nowrap;
    background: var(--dark-color) !important;
    border: 1px solid var(--dark-color);
    color: var(--light-color) !important;

}

.link-tag:hover {
    background: var(--green-secondary) !important;
    border: 1px solid var(--green-secondary);
    color: var(--light-color) !important;
    text-decoration: none !important;
}

.link-tag.active {
    background: var(--green-secondary) !important;
    border: 1px solid var(--green-secondary);
    color: var(--light-color) !important;

}

/****************** UTILS TEXT **************************/
.text-dark {
    color: var(--dark-color);
}

.text-green {
    color: var(--green-secondary);
}

.text-green-primary {
    color: var(--green-primary);
}

.text-green-contrast {
    color: var(--green-third);
}

.text-yellow {
    color: var(--yellow-color);
}

.text-light {
    color: var(--light-color);
}

.text-contrast {
    color: var(--contrast-color) !important;
}

.text-red {
    color: var(--red-color);
}

.font-family-primary {
    font-family: var(--font-oswald) !important;
}

.font-family-secondary {
    font-family: var(--font-roboto) !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.inline-text {
    display: flex;
    align-items: center;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.text-wrap {
    text-wrap: wrap !important;
}

/****************** UTILS POSITIONS **************************/
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}


/****************** HEADER MENU **************************/
header {
    background-color: var(--dark-color);
    transition: height var(--transition-duration) ease;
}

header.sticky-header {
    height: 60px;
}

header .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.st-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}


.sub-menu {
    display: none;
    top: 100%;
    left: 0;
    z-index: 10;
    min-width: 200px
}

#m-internacional:hover #sub-internacional {
    display: flex;
}

#m-sub-internacional {
    display: none;
}

#m-sub-internacional {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#m-sub-internacional.show {
    display: flex;
    opacity: 1;
}


.img-menu {
    height: auto;
    max-height: 55px;
    width: auto;
    max-width: 100%;
}

#fullscreen-menu {
    top: 60px;
    display: none;
}

#fullscreen-menu ul {
    list-style-type: none;
}

#fullscreen-menu a {
    color: var(--light-color);
    text-decoration: none;
}


/****************** SOCIAL ICONS IN NEWS **************************/
.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.icon-facebook {
    background-color: #1877f2;
}

.icon-facebook:hover {
    background-color: #043b83;
    color: var(--light-color) !important;
}

.icon-twitter {
    background-color: #1da1f2;
}

.icon-twitter:hover {
    background-color: #04639e;
    color: var(--light-color) !important;
}

.icon-share {
    background-color: #FC8801;
}

.icon-share:hover {
    background-color: #FC8801;
    color: var(--light-color) !important;
}


.icon-whatsapp {
    background-color: #24CC63;
}

.icon-whatsapp:hover {
    background-color: #06a441;
    color: var(--light-color) !important;
}

#box-icons-hidden {
    display: none !important;
}

.social-icons:hover #box-icons-hidden {
    display: block !important;
}

.icon-square {
    width: 25px;
    height: 25px;
}

/****************** UTILS SCORES GAME IN NEWS **************************/
.score-box {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 15px;
    bottom: 1rem;
    left: 1rem;

}



.big-box-title {
    margin-top: -15% !important;
}


.banner-wrapper {
    position: relative;
    width: 100%;
    white-space: nowrap;
    overflow-x: hidden;
    margin: auto;
}

#score-goals,
.score-goals {
    display: inline-block;
    white-space: nowrap;

    width: 240px;
}

/****************** UTILS LOGOS  ******************************/
.team-logo-social-banner {
    height: 50px !important;
}

.team-logo {
    width: 35px;
}

.team-logo-small {
    width: 20px;
}

.team-logo-sts {
    width: 45px;
}

/****************** BANNER JUEGOS  ******************************/
.box-banner-games {
    background: #323F48;
}

.item-game-banner {
    width: 220px;
    height: 120px;
    display: inline-block;
    border-radius: 8px;
    background: #000;
}

.item-game-encabezado {
    height: 30px;
    background: url(../../../views/images/vista.png);
    background-repeat: no-repeat;
    background-size: 170px 100%;
}

.item-game-encabezado-green {
    height: 30px;
    background: url(../../../views/images/vista-green.png);
    background-repeat: no-repeat;
    background-size: 170px 100%;
}

.item-game-encabezado-gray {
    height: 30px;
    background: url(../../../views/images/vista-gray.png);
    background-repeat: no-repeat;
    background-size: 170px 100%;
}

.item-game-encabezado-orange {
    height: 30px;
    background: url(../../../views/images/vista-orange.png);
    background-repeat: no-repeat;
    background-size: 170px 100%;
}

.item-game-encabezado-black {
    height: 30px;
    background: url(../../../views/images/vista-black.png);
    background-repeat: no-repeat;
    background-size: 170px 100%;
}

.vista-encabezado {
    height: 25px;
    background: url(../../../views/images/vista.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.vista-footer {
    height: 40px;
    background: url(../../../views/images/vista_directorio.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.logo-patrocinador-banner-games {
    width: 80px;
}

/****************** UTILS VIDEO PLAYER  ******************************/
.video-container {
    padding-top: 56.25%;
}


.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #333;
    color: white;
}

.playlist-item img {
    width: 120px;
    height: auto;
    margin-right: 1rem;
    border-radius: 6px;
}

.playlist-item:hover {
    background-color: #444;
}

.playlist-container {
    background-color: #222;
}

.playlist-title {
    background-color: #92c83e;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
}

.playlist-title i {
    margin-right: 0.5rem;
}

/****************** UTILS SCHEDULE SPORTS  ******************************/
.section-sports-schedule {
    overflow-y: scroll
}

.section-sports-schedule h4 {
    background: url(../../images/vista_agenda.png) no-repeat;
    background-size: 70% 100%;
}

/****************** UTILS NOTAS  **************************/
#contenido_nota p {
    text-align: justify;
    font-size: 1.15em;
}

#contenido_nota p img {
    height: inherit !important;
    /* Respetar el height en línea o del contenedor */
    width: auto;
    /* Mantener la proporción basada en el height */
    max-width: 100%;
    /* No exceder el ancho del contenedor */
    object-fit: cover;
}

#contenido_nota p iframe {
    max-width: 100%;
}



blockquote:not([class^='twitter-tweet']) {
    letter-spacing: .1em;
    position: relative;
    border-left: 3px solid #668929;
    padding: 2em 2.5rem 1em 2.5em;
    margin: calc(2.5em - 16px) auto 2.5em;
    text-align: center !important;
    box-sizing: border-box;
    font-size: 18px;
    background-color: #f3f3f3;
    font-style: italic;
    width: 80%;
}

blockquote:not([class^='twitter-tweet']) p:first-child {
    font-weight: bold;
}

blockquote:not([class^='twitter-tweet']) p {
    text-align: center !important;
}

blockquote:not([class^='twitter-tweet']) p:first-child:before {
    content: '“';
    font-size: 5em;
    color: #222;
    position: absolute;
    top: -.2em;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'georgia';
    pointer-events: none;
    color: #668929;
}

blockquote:not([class^='twitter-tweet']) p:first-child:after {
    content: '“';
    font-size: 5em;
    color: #222;
    position: absolute;
    bottom: .25em;
    left: 50%;
    transform: translateX(-50%);
    transform: rotate(180deg);
    transform-origin: 50% 50%;
    font-family: 'georgia';
    pointer-events: none;
    color: #668929;
}

blockquote:not([class^='twitter-tweet'])>* {
    margin: .75em 0;
}

blockquote cite {
    display: block;
    font-style: normal;
    font-size: 12px;
    width: 100%;
    text-align: right !important;
    font-weight: normal !important;
    margin-top: 5em;
}


/****************** UTILS SECCIONES  **************************/
.left-arrow,
.right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 1);
    color: var(--green-third);
    font-size: 2rem;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 10;
    border: none;
}

.left-arrow {
    left: 0px;
}

.right-arrow {
    right: 0px;
}

.hidden {
    display: none;
}

/* Contenedor con overflow */
.tags-container {
    display: flex;
    align-items: center;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}


@media (max-width:768px) {
    blockquote:not([class^='twitter-tweet']) {
        width: 60%;
    }
}



@media (max-width:600px) {
    blockquote:not([class^='twitter-tweet']) {
        width: 90%;
    }
}

@media (max-width:480px) {
    blockquote:not([class^='twitter-tweet']) {
        width: 100%;
    }
}



@media (max-width:363px) {
    blockquote:not([class^='twitter-tweet']) {
        width: 100%;
    }
}

/****************** FORM CONTROLS  **************************/
.select-green {
    background-color: #004e1f;
    color: #fff;
    border-radius: 0px !important;
    border: none !important;
}

.select-dark {
    background-color: var(--dark-color);
    color: #fff;
    border-radius: 0px !important;
    border: none !important;
}


select option {
    background-color: #004e1f;
    color: #fff;
}

.select-dark option {
    background-color: var(--dark-color);
    color: #fff;
}


.box-35 {
    height: 35px;
}



.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {

    height: 30px;
    width: 30px;
    position: absolute;
    top: 5px;

}

/****************** owl-carousel  **************************/
.box-banner-equipos {
    width: 100%;
    height: 60px;
}

.owl-carousel .owl-nav button span {
    font-size: 1em;
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: none;
    border-radius: 3px;
    color: #666666;
    font-weight: bold;
    border: 2px solid #ECECEC;
    box-shadow: 0px 0px 2px 2px #fff;
    background: #ECECEC;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .owl-nav button span:hover {
    background: #00BE36;
    border: 2px solid #00BE36;
    color: #fff
}

.owl-carousel .owl-nav .owl-prev {
    right: -50px;
}

.owl-carousel .owl-nav .owl-next {
    left: -50px;
}

#equipos-wrap img {
    max-height: 40px !important;
    /* Ajusta el tamaño de la imagen */
    width: auto;
    /* Mantiene la proporción original de la imagen */
    object-fit: contain;
    /* Asegura que la imagen no se deforme */
    display: block;
    margin: 0 auto;
    /* Centra la imagen horizontalmente */
}

#equipos-wrap {
    height: auto;
    /* Permite que el contenedor ajuste su altura automáticamente */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centra el contenido */
}

/****************** TAPAS REVISTA  **************************/
.bck_box_thumbails {
    width: 100%;
    position: relative;
    background-image: url(../../images/bck_tapas.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: auto;
}

.max-120 {
    max-width: 120px;
    display: inline-block;
}

.max-180 {
    max-width: 180px;
    display: inline-block;
}

.max-220 {
    max-width: 220px;
    display: inline-block;
}


/****************** UTILS ANIMATIONS  **************************/
@keyframes blink {
    0% {
        background-color: rgba(255, 255, 255, 1);
    }

    50% {
        background-color: rgba(255, 255, 255, 0.7);
    }

    100% {
        background-color: rgba(255, 255, 255, 0.7);
    }
}



@keyframes slideBanner {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/****************** UTILS RESPONSIVE  **************************/
@media (max-width: 1024px) {
    nav ul {
        flex-direction: column;
    }

    .img-menu {
        max-height: 40px;
    }

    #mobile-menu {
        display: flex;
    }

    .lg\\:hidden {
        display: none;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    #mobile-menu {
        display: block;
    }

}


@media (min-width: 1024px) {
    .box-left {
        width: 70%;
    }

    .box-right {
        width: 30%;
    }

    #fullscreen-menu {
        display: none;
    }
}