@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500;600;700;800&display=swap');

:root{
    --primaryColor: #1a1a1a;
    --secondaryColor: #404040;
    --thirdColor: #858585;
    --white: #fff;
    --black: #000;
    --primaryFont: 'Open Sans', sans-serif;
    --whiteFitler: invert(100%) sepia(0%) saturate(0%) hue-rotate(254deg) brightness(103%) contrast(101%);
    --primaryColorFilter: invert(76%) sepia(40%) saturate(566%) hue-rotate(118deg) brightness(91%) contrast(93%);
}
*, *::before, *::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
html{
    min-height: 100vh;
}
body{
    width: 100%;
    position: relative;
    background-color: var(--primaryColor);
    font-family: var(--primaryFont);
}
.header{
    width: 95%;
    padding: 20px 0px 0px;
    max-width: 1280px;
    margin: 0 auto;
}
.mySwiper{
	width: 100%;
    max-width: 728px;
    margin: 0 auto;
	padding: 0px 10px;
}
.banner-header{
	width: 100%;
	display: block;
	height: 90px;
}
.banner-header img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.logo{
    width: 100%;
    display: flex;
    justify-content: center;
    height: 165px;
}
.logo h1{
    display: none;
}
.logo img{
    height: 100%;
}
.nav{
    display: flex;
    margin: 5px auto 5px;
    gap: 20px;
    padding: 15px;
    box-shadow: 0px .5px .5px 0px rgba(0, 0, 0, 0.4);
    background-color: var(--secondaryColor);
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 3px;
}
.nav > div{
    text-transform: uppercase;
}
.nav > div > a{
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--primaryFont);
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
}
.nav > div > a::before{
    position: relative;
    content: "";
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    filter: var(--whiteFitler);
}
.nav .index a::before{
    background-image: url(../icons/clock.svg);
}
.nav .replay a::before{
    background-image: url(../icons/replay.svg);
}
.channels{
    display: flex;
    position: relative;
    justify-content: center;
    order: 3;
}
.channels-dropdown{
    font-size: 12px;
    color: var(--white);
    background: none;
    text-transform: uppercase;
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-family: var(--primaryFont);
    cursor: pointer;
}
.channels-dropdown::before{
    position: relative;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../icons/tv.svg);
    background-position: center;
    background-repeat: no-repeat;
    filter: var(--whiteFitler);
}
.channels-list{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
    transition: .25s;
    position: absolute;
    padding: 4px 8px;
    margin-top: 5px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    top: 100%;
    background: var(--secondaryColor);
    border-radius: 3px;
    pointer-events: none;
}
.channels-list.active{
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}
.channels-list li{
    padding: 5px;
}
.channels-list li a{
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}
.channels-list li a::before{
    position: relative;
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../icons/tv.svg);
    background-position: center;
    background-repeat: no-repeat;
    filter: var(--whiteFitler);
}
@media (min-width: 400px) {
    .nav{
        flex-wrap: nowrap;
    }
    .channels{
        order: 2;
    }.replay{
        order: 3;
    }
}
@media (min-width: 950px) {
    .nav{
        flex-wrap: wrap;
        margin: 1vw auto .25vw;
        gap: 1.5vw;
        border-radius: .2vw;
    }
    .nav > div > a{
        gap: .3vw;
    }
    .channels-dropdown{
        display: none;
    }
    .channels-list{
        opacity: 1;
        position: relative;
        flex-direction: row;
        top: 0;
        z-index: 2;
        padding: 0px;
        margin: 0px;
        pointer-events: auto;
        gap: 1.3vw;
    }
    .channels-list li{
        padding: 0px;
        font-weight: 700;
    }
}
@media (min-width: 1280px) {
    .logo{
        height: 11vw;
    }
    .header{
        width: 100%;
        max-width: 69vw;
        min-width: 1280px;
    }
    .nav > div > a{
        font-size: .8vw;
    }
    .channels-list li{
        font-size: .8vw;
    }
    .channels-list li a{
        gap: .3vw
    }
    .channels-list li a::before{
        content: "";
        width: .8vw;
        height: .8vw;
    }
    .nav > div > a::before{
        content: "";
        width: .8vw;
        height: .8vw;
    }
}
.main{
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 95%;
    flex-wrap: wrap;
    padding: 5px 0px 20px;
    max-width: 1280px;
    position: relative;
    margin: 0 auto;
}
.main-container{
    background: var(--secondaryColor);
    border-radius: 7px;
    width: 100%;
    flex-grow: 1;
    overflow: hidden;
}
.main-container .list-header > li{
    font-size: 16px;
    font-weight: 700;
}
.main-container > ul > li{
    color: var(--white);
    font-size: calc(10px + .2vw);
    font-weight: 400;
}
.main-container > ul.list-header{
    background: var(--secondaryColor)!important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    transition: .5s;
    gap: 5px;
    border-bottom: 2px solid var(--primaryColor);
}
.status-row-tag{
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondaryColor);
    padding: 2px 6px;
    margin-top: -15px;
    border-radius: 5px;
}
.status-row-tag p{
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
}
@media (max-width: 600px) {
    .status-row-tag{
        background: transparent;
    }
    .status-row-tag p{
        display: none;
    }
}
.main-container ul li h2{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.main-container ul .list-left{
    min-width: 55px;
    width: 5vw;
    text-align: center;
}
.main-container ul .list-center img{
    height: calc(1vw + 15px);
	transform: scale(1) rotate(-10deg);
}
.main-container ul .list-right{
    min-width: 85px;
    white-space: nowrap;
    margin-right: 15px;
}
.main-container ul .list-right button{
    padding: 1px 2px;
    font-family: var(--primaryFont);
    text-transform: uppercase;
    background: var(--white);
    border: solid 2px var(--primaryColor);
    font-size: 11px;
    border-radius: 5px;
    transition: .1s;
    font-weight: 800;    
    color: var(--thirdColor);

}
.main-container ul .list-right button:hover{
    cursor: pointer;
    transform: scale(1.02)
}
.chat{
    padding-bottom: 56.25%;
    justify-content: center;
    align-items: center;
    display: flex;
    max-width: 100%;
    flex-grow: 1;
    background: var(--secondaryColor);
    border-radius: 7px;
    padding-bottom: 50px;
    min-height: 550px;
    max-height: 700px;
    position: sticky;
    top: 0;
}

.chat iframe{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.main-container ul .list-center{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px;
}
.main-container ul .circle-icon{
    display: block;
    border-radius: 50%;
    min-width: 5px;
    min-height: 5px;
    width: .28vw;
    height: .28vw;
    background: var(--white);
}
.main-container ul.live-row .circle-icon{
    animation: parpadeo .5s alternate infinite ease-in;
}
    @keyframes parpadeo {
        0%   {background: var(--white);}
        100% {background: var(--thirdColor);}
    }
.container-footer{
    padding: 10px 20px;
    text-transform: uppercase;
    opacity: .8;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    display: flex;
}
.container-footer h3{
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
}
#comment-icon{
    cursor: pointer;
    transition: .1s;
}
#comment-icon:hover{
    transform: scale(1.05);
}
.rating-player{
    margin-right: auto;
}
.kksr-icon{
    width: 18px!important;
    height: 18px!important;
}
.kksr-legend{
    font-size: 12px!important;
    color: var(--white);
}

.kk-star-ratings .kksr-legend{
    margin-left: .25rem;
    font-weight: 500!important;
}
.double-screen{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}
.double-screen img{
    filter: invert(92%) sepia(92%) saturate(31%) hue-rotate(73deg) brightness(107%) contrast(107%);
    width: calc(16px + .3vw);
}
.switcher-player{
    position: relative;
    display: flex;
    align-items: center;
    background: none;
    color: var(--white);
    font-weight: 800;
    font-size: 15px;
    border: none;
    gap: 8px;
    cursor: pointer;
}
.switcher-player::before{
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../icons/undo.svg);
    filter: var(--whiteFitler);
}
.social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8%;
    position: absolute;
    top: 100%;
    width: 100%;
    padding: 5px;
}
.social-icons a{
    background-color: rgba(0, 0, 0, 0.4);
    padding: 8px;
    border-radius: 12px;
}
.social-icons a span{    
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
}
.discord-icon{
    background-image: url(../icons/discord.svg);
    filter: invert(41%) sepia(10%) saturate(4277%) hue-rotate(211deg) brightness(92%) contrast(92%);
}
.facebook-icon{
    background-image: url(../icons/facebook-f.svg);
    filter: invert(34%) sepia(12%) saturate(2649%) hue-rotate(183deg) brightness(95%) contrast(91%);
}
.whatsapp-icon{
    background-image: url(../icons/whatsapp.svg);
    filter: invert(26%) sepia(42%) saturate(819%) hue-rotate(124deg) brightness(100%) contrast(97%);
}
/* Contenedor principal */
.single-comments {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-family: 'Segoe UI', sans-serif;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}
.single-comments.active{
    display: flex;
}
.comments-container{
    max-width: 600px;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: 80vh;
    min-height: 400px;
    max-height: 700px;
    overflow: auto;
    position: relative;
}

/* Botón para cerrar */
.close-container {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f3f4f6;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: #6b7280;
    transition: background 0.2s ease;
}
.close-container:hover {
    background: #e5e7eb;
}

/* Título */
.comment-respond h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

/* Avisos */
.comment-notes,
.logged-in-as {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Campos del formulario */
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-cookies-consent {
    margin-bottom: 1rem;
}
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-cookies-consent label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}
.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 0.65rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

/* Checkbox cookies */
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.comment-form-cookies-consent input[type="checkbox"] {
    transform: scale(1.2);
    accent-color: #2563eb;
}

/* Botón submit */
.form-submit input.submit {
    background-color: #2563eb;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}
.form-submit input.submit:hover {
    background-color: #1e40af;
}

/* Comentarios existentes */
.comments-list {
    list-style: none;
    margin-top: 2rem;
    padding-left: 0;
}
.comment-body {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
.comment-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.comment-author img {
    border-radius: 50%;
}
.comment-author .fn {
    font-weight: 600;
    color: #111827;
}
.comment-metadata time {
    font-size: 0.8rem;
    color: #9ca3af;
}
.comment-content p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #374151;
}

@media (min-width: 980px) {
    .main-container{
        width: 55%;
        min-width: 400px;
    }
    .chat{
        max-width: 45%;
        min-width: 394px;
        min-height: 300px;
    }
}
@media (min-width: 1280px) {
    .main{
        gap: .3vw;
        width: 95%;
        max-width: 69vw;
        min-width: 1280px;
    }
    .main-container{
        width: 60%;
        min-width: 400px;
    }
    .main-container .list-header li{
        font-size: 1.1vw;
    }
    .main-container ul{
        padding: .2vw;
        gap: .2vw;
        border-bottom: .11vw solid var(--primaryColor);
    }
    .main-container ul li,
    .main-container ul li h2{
        font-size: .9vw;
    }
    .main-container ul .list-center{
        gap: 1vw;
        padding: .6vw;
    }
    .main-container ul .list-right button{
        font-size: .7vw;
        padding: .1vw .2vw;
    }
    .container-footer{
        padding: .7vw 1.3vw;
    }
    .switcher-player{
        font-size: 1vw;
        gap: .4vw;
    }
    .switcher-player::before{
        content: "";
        width: 1vw;
        height: 1vw;
    }
    .social-icons{
        padding: .2vw;
    }
    .social-icons a{
        padding: .3vw;
        border-radius: .8vw;
    }
    .social-icons a span{    
        display: block;
        background-repeat: no-repeat;
        background-position: center;
        width: 1.4vw;
        height: 1.4vw;
    }
    .chat{
        max-width: 40%;
    }
}
.footer{
    position: relative;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 2vw;
    padding: 0px 5%;
    flex-wrap: wrap;
}
.footer-logo{
    min-width: 250px;
    max-width: 15vw;
}
.footer-logo img{
    width: 100%;
}
.footer p{
    min-width: 420px;
    max-width: 40vw;
    color: var(--white);
}
@media (min-width: 1280px) {
    .footer p{
        font-size: .8vw;
    }
}
.player{
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.player iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondaryColor);
}
.replay-icon{
    background-image: url(../icons/redo.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    filter: var(--whiteFitler);
    animation: giro 5s infinite cubic-bezier(1,1,1,1);

}
@keyframes giro {
    0%   {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

@media (min-width: 1280px) {
    .replay-icon{
        width: .75vw;
        height: .75vw;
    }
}
.lazy-box.fade-sides:nth-child(odd){
    transform: translateX(95%);
    opacity: 0;
    transition: .9s;
}
.lazy-box.fade-sides:nth-child(even){
    transform: translateX(-95%);
    opacity: 0;
    transition: .9s;
}
.lazy-box.fade-sides:nth-child(odd).fade,
.lazy-box.fade-sides:nth-child(even).fade{
    transform: translateX(0);
    opacity: 1;
    transition: .9s;
}
.lazy-src.fade-center{
    transform: scale(0.001);
    opacity: 0;
    transition: .9s;
}
.lazy-src.fade-center.fade{
    transform: scale(1);
    opacity: 1;
    transition: .9s;
}
/* Lazy Rotado empresas */

.main-container ul .list-center .lazy-src{
    opacity: 0;
    height: 1.4vw;
    min-height: 13px;
    max-height: 1.4vw;
    transition: .9s;
}
.programacion-img,
.main-container ul .list-center .lazy-src.fade{
    transform: scale(1) rotate(-10deg);
    opacity: 1;
    transition: .9s;
}
.programacion-img{
    height: 2vw;
    max-width: 3vw;
    min-height: 14px;
}

/* PROGRAMACION LISTA */
.sports-schedule{
    display: block!important;
    padding: 0!important;
}
.sports-schedule > li{
    border-bottom: 1px solid var(--primaryColor);
}
.sports-schedule > li:last-of-type{
    border-bottom: none;
}
.sports-schedule > li > a:hover{
    background-color: var(--primaryColor);
}
.sports-schedule > li span.t{
    border: 1px solid var(--primaryColor);
    border-radius: 5px;
    padding: calc(1px + .1vw) calc(2px + .2vw);
    box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.4);
    background: #fff;
    margin-right: auto;
	font-size: calc(10px + .3vw);
    color: var(--primaryColor);
}
.sports-schedule > li a{
    text-align: end;
    padding: 5px 20px;
    display: flex;
    gap: calc(10px + .5vw);
    justify-content: space-between;
    align-items: center;
    /* invert flex */
    flex-direction: row-reverse;
    font-weight: 600;
    font-size: calc(10px + .4vw);
    color: var(--white);
}
.sports-schedule > li > a{
    position: relative;
}
.sports-schedule > li > a::before{
    content: "";
    width: calc(23px + .4vw);
    min-width: 25px;
    aspect-ratio: 1/1;    
    background-image: url(../icons/flags/sports.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 10px;
}
.sports-schedule > li ul{
    display: none;
}
.sports-schedule > li.active ul{
    display: block;
}
.sports-schedule > li ul{
    background: #fff;
    border-bottom: none;
    padding: 0;
}
.sports-schedule > li ul li{
    border-bottom: 1px solid var(--secondaryColor);
}
.sports-schedule > li ul li:last-of-type{
    border-bottom: none;
}
.sports-schedule > li ul li:hover{
    background: rgb(230, 230, 230);
}
.sports-schedule > li ul li a{
    font-size: calc(10px + .5vw);
    color: var(--primaryColor);
    flex-direction: row;
}

@media (max-width: 1280px){
    .sports-schedule > li a{
        padding: 5px 10px;
    }
    .main-container ul .list-right{
        padding: 5px 10px;
    }
    .main-container ul .list-right{
        margin-right: 0;
    }
}