body:has(.tv_content.active) {
    overflow: hidden;
}

/* MENÚ PRINCIPAL */
.tv-container {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 1.5em;
}
.tv_menu {
    width: 100vw;
    height: 200vh;

    box-sizing: border-box;
    padding: 25vh 0;
    margin: 0 calc(50% - 50vw);
    
    background-color: #f5f5f5;
}

.tv_menu--sticky {
    width: 100%;
    max-width: 295px;
    margin: 0 auto;

    position: sticky;
    top: 15vh;
}

.tv_menu--sticky > span {
    display: block;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;

    box-sizing: border-box;
    padding-bottom: 14px;
    border-bottom: 1px solid #11111120;
}

.tv_menu--sticky > span span {
    display: block;
    max-width: 200px;
}

.tv_menu--sticky .tv_menu-elems {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.tv_menu--sticky .tv_menu-elems .tv_menu-elem {
    width: 100%;
    height: 100px;
    background-color: #fff;

    cursor: pointer;

    box-sizing: border-box;
    padding: 20px;
}

.tv_menu--sticky .tv_menu-elems .tv_menu-elem.big {
    height: 145px;
}

.tv_menu--sticky .tv_menu-elems .tv_menu-elem.big:first-of-type {
    background-image: url('//ep01.epimg.net/estaticos/arc/2025/07/parrilla-tv/media/svg_horas.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 80%;
}

.tv_menu--sticky .tv_menu-elems .tv_menu-elem.big:nth-child(2) {
    background-image: url('//ep01.epimg.net/estaticos/arc/2025/07/parrilla-tv/media/svg_contenido.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 80%;
}

.tv_menu--sticky .tv_menu-elems .tv_menu-elem span {
    font-family: 'MajritTx', sans-serif;
    font-weight: 300;
    font-style: Roman;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #111;

    position: relative;

    display: block;
    max-width: 100px;
}

.tv_menu--sticky .tv_menu-elems .tv_menu-elem.small span {
    max-width: unset;
}

.tv_menu--sticky .tv_menu-elems .tv_menu-elem span:after {
    content: "";
    display: block;
    width: 52px;
    height: 100%;
    background: url('//ep01.epimg.net/estaticos/arc/2025/07/parrilla-tv/media/flecha.svg') no-repeat center center;
    position: absolute;
    left: 0px;
    bottom: -20px;
}

.tv_menu--sticky .tv_menu-elems .tv_menu-elem.big span:after,
.tv_menu--sticky .tv_menu-elems .tv_menu-elem.small:last-of-type span:after {
    bottom: -32px;
}

/* CONTENIDO GENERAL */
.tv_content {
    width: 100vw;
    height: 100vh;
    
    transform: translateX(100vw);
    will-change: transform;

    position: fixed;
    top: 0;
    left: 0;

    background-color: #f8f8f8;
}
.tv_content.enabled {
    transition: transform 0.5s ease-in-out 0.15s;
}
.tv_content.active {
    transform: translateX(0);
    z-index: 100;
    transition: transform 0.5s ease-in-out 0.15s;
    will-change: transform;
}

body .a .a_c .tv_content p {
    margin: 0;
    margin-bottom: 1em;
}

/* BLOQUE MENÚ/LISTADO (EN HORAS, CONTENIDO Y AUDIENCIAS) */
.tv_content .tvc_menu {
    width: 100vw;
    height: 100vh;
    
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.tv_content .tvc_menu .tvc_menu-listado {
    width: 100%;
    box-sizing: border-box;
    padding: 0px 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.tv_content .tvc_menu .tvc_menu-listado span {
    font-family: 'MajritTx', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -1px;

    position: relative;
    padding-left: 20px;

    max-width: 160px;
}

.tv_content .tvc_menu .tvc_menu-listado span:before {
    content: "";
    display: inline-block;
    width: 52px;
    height: 8px;
    background: url('//ep01.epimg.net/estaticos/arc/2025/07/parrilla-tv/media/flecha.svg') no-repeat center center;
    background-size: contain;
    transform: rotate(90deg);
    position: absolute;
    left: -20px;
    top: 22px;
}

.tv_content .tvc_menu .tvc_menu-listado .tvc_menu-listado-elems {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
}

.tv_content .tvc_menu .tvc_menu-listado .tvc_menu-listado-elems .tvc_menu-listado-elem {
    width: 100%;
    min-height: 48px;
    background-color: inherit;

    position: relative;
    cursor: pointer;

    box-sizing: border-box;
    padding: 12px 20px;

    font-family: 'MajritTx', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0px;
    color: #111;
    text-align: left;
    
    border: 0px;
    border-top: 1px solid #11111120;
}

.tv_content .tvc_menu .tvc_menu-listado .tvc_menu-listado-elems .tvc_menu-listado-elem:hover {
    font-weight: 500;
}

.tv_content .tvc_menu .tvc_menu-listado .tvc_menu-listado-elems .tvc_menu-listado-elem:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0px;
    width: 10px;
    height: 10px;
    border-radius: 50%;

    background-color: #ccc;
}

/* POR HORARIOS */
.tv_content .tvc_menu.tvc_menu-horas .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(1):before {
    background-color: #BDA9E1;
}
.tv_content .tvc_menu.tvc_menu-horas .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(2):before {
    background-color: #6D7A8E;
}
.tv_content .tvc_menu.tvc_menu-horas .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(3):before {
    background-color: #C6DFE2;
}
.tv_content .tvc_menu.tvc_menu-horas .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(4):before {
    background-color: #EEC2E3;
}
.tv_content .tvc_menu.tvc_menu-horas .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(5):before {
    background-color: #E4EBCC;
}

/* POR CONTENIDOS */
.tv_content .tvc_menu.tvc_menu-contenido .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(1):before {
    background-color: #F2E47B;
}
.tv_content .tvc_menu.tvc_menu-contenido .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(2):before {
    background-color: #71B2DB;
}
.tv_content .tvc_menu.tvc_menu-contenido .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(3):before {
    background-color: #C6DFE2;
}
.tv_content .tvc_menu.tvc_menu-contenido .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(4):before {
    background-color: #BDA9E1;
}
.tv_content .tvc_menu.tvc_menu-contenido .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(5):before {
    background-color: #EEC2E3;
}
.tv_content .tvc_menu.tvc_menu-contenido .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(6):before {
    background-color: #E4EBCC;
}

/* POR AUDIENCIAS */
.tv_content .tvc_menu.tvc_menu-audiencias .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(1):before {
    background-color: #2a2e34;
}
.tv_content .tvc_menu.tvc_menu-audiencias .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(2):before {
    background-color: #8692a2;
}
.tv_content .tvc_menu.tvc_menu-audiencias .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(3):before {
    background-color: #aeb9b3;
}
.tv_content .tvc_menu.tvc_menu-audiencias .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(4):before {
    background-color: #dbdfd7;
}
.tv_content .tvc_menu.tvc_menu-audiencias .tvc_menu-listado-elems .tvc_menu-listado-elem:nth-child(5):before {
    background-color: #eae9dd;
}

/* BOTÓN DE VOLER (SIMILAR PARA TODOS LOS BLOQUES) */
.tv_content .tvc_menu-btn {
    position: sticky;
    top: 72px;
    left: 20px;

    width: fit-content;
    z-index: 100;
}
.tv_content .tvc_menu .tvc_menu-btn {
    position: absolute;
}

.tv_content .tvc_menu-btn .tvc_btn,
.tv_content .tvc_scroll .tvc_btns .tvc_btn.tvc_btn-back-listado,
.tv_content .tvc_scroll .tvc_btns .tvc_btn.tvc_btn-info {
    width: 80px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #777;
    color: #000;
    border-radius: 15px;

    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;

    z-index: 100;
}

.tv_content .tvc_menu-btn .tvc_btn span:first-child,
.tv_content .tvc_scroll .tvc_btns .tvc_btn.tvc_btn-back-listado span:first-child {
    font-size: 18px;
    width: 4px;
    color: #000;
}

.tv_content .tvc_menu-btn .tvc_btn span:last-child,
.tv_content .tvc_scroll .tvc_btns .tvc_btn.tvc_btn-back-listado span:last-child,
.tv_content .tvc_scroll .tvc_btns .tvc_btn.tvc_btn-info span {
    font-family: 'MarcinAntB', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.5px;
    color: #000;
}

/* BLOQUES DE CONTENIDO */
.tv_content .tvc_scroll:not(.tvc_scroll-buscador) {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    transform: translateY(100vh);
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    position: absolute;
    top: 0;
    left: 0;
}
.tv_content .tvc_scroll:not(.tvc_scroll-buscador).active {
    transform: translateY(0);
    will-change: transform;
    z-index: 100;
    transition: transform 0.5s ease-in-out;
}

.tv_content .tvc_scroll .tvc_btns {
    position: sticky;
    top: 72px;
    left: 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    box-sizing: border-box;
    padding: 0px 20px;

    z-index: 100;
}

/* CONTENIDO PARA SCROLLES */
.tv_content .tvc_scroll .tvcs_elem {
    width: 100%;
    height: auto;

    box-sizing: border-box;
    padding: 0px 32px;
    background: #fff;
}

.tv_content .tvc_scroll .tvcs_elem .tvcs_elem--header {
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

    position: relative;

    opacity: 0;
    transition: opacity .75s ease-in-out;
}

.tv_content .tvc_scroll .tvcs_elem .tvcs_elem--header.visible {
    opacity: 1;
}

.tv_content .tvc_scroll .tvcs_elem .tvcs_elem--header .tvcs_elem--header-media video {
    object-fit: cover;
}

.tv_content .tvc_scroll .tvcs_elem .tvcs_elem--header .tvcs_elem--header-title {
    max-width: 470px;
}

.tv_content .tvc_scroll .tvcs_elem .tvcs_elem--header .tvcs_elem--header-title h2 {
    font-family: 'MajritBn', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;

    margin: 0;
}

.tv_content .tvc_scroll .tvcs_elem .tvcs_elem--header .tvcs_elem--header-bajar {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translate(-50%, 0);

    cursor: pointer;

    display: block;
    margin: 0;
    z-index: 1;
    opacity: 0;
    visibility: visible;
    animation: opacidad 1s forwards 0.5s, bajar 3s infinite 1s;

    background-color: transparent;
    border: 0px;
}

.tv_content .tvc_scroll .tvcs_elem .tvcs_elem--header .tvcs_elem--header-bajar span {
    display: block;
    text-indent: -9999px;
    overflow: hidden;
    width: 20px;
    height: 12px;
    
    background: url(//ep01.epimg.net/estaticos/arc/2025/07/parrilla-tv/media/ancla.svg) center no-repeat;
    background-size: 100%;

    pointer-events: none;
}

.tv_content .tvc_scroll .tvcs_elem .tvcs_elem--scroll {
    width: 100%;
    max-width: 840px;
    height: auto;

    margin-top: -42.5vh;
}

.tv_content .tvc_scroll .tvcs_last {
    display: block;
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    gap: 48px;
    justify-content: center;
    align-items: center;

    background: #fff;
    color: #000;
}

.tv_content .tvc_scroll .tvcs_last > span {
    display: block;
    width: calc(100% - 32px);
    max-width: 470px;
    letter-spacing: -0.1px;
    text-align: center;
    color: #000;
}

.tv_content .tvc_scroll .tvcs_last .tvcs_last-btn {
    width: 200px;
    height: 30px;
    border-radius: 15px;
    border: 2px solid #4A4A4A;
    background: #fff;
    color: #000;

    cursor: pointer;

    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.5px;
}

/* Buscador */
.tv_content.tv_content-buscador {
    width: 100vw;
    overflow: scroll;
    height: 100%;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador {
    width: 100%;
    max-width: 1090px;
    overflow-x: scroll;
    height: auto;

    margin: 0 auto;
    margin-top: 72px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvc_scroll-buscador--filtros-container {
    width: 100%;
    max-width: 1090px;
    border-bottom: 1px solid #777;

    display: flex;
    justify-content: center;
    align-items: center;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvc_scroll-buscador--filtros {
    width: 100%;

    box-sizing: border-box;
    padding: 40px 12px;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvc_scroll-buscador--filtros .btn-buscador_year,
.tv_content.tv_content-buscador .tvc_scroll-buscador .tvc_scroll-buscador--filtros .btn-buscador_date {
    width: 68px;
    height: 24px;
    border-radius: 15px;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: 0.5px;

    background-color: #fff;
    border: 1px solid #11111140;
    color: #000;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvc_scroll-buscador--filtros .btn-buscador_date {
    width: 24px;
    margin: 0px 14px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvc_scroll-buscador--filtros .current-date {
    font-family: 'MarcinAntB', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;

    box-sizing: border-box;
    padding: 0px 6px;

    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido-container {
    overflow-x: auto;
    max-width: 100%;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido-container .icon-overflow-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    left: 0;
    margin-bottom: 6px;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido-container .icon-overflow-container .icon-overflow {
    animation: move-horizontally 2s linear infinite;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido {
    width: 1090px;
    height: 2960px;

    box-sizing: border-box;
    padding-left: 30px;
    margin-right: 30px;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-header {
   display: flex;
   justify-content: space-between;
   gap: 4px;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-header .header-elem {
    display: block;
    width: 100%;
    max-width: 245px;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    padding-bottom: 8px;
    border-bottom: 1px solid #111;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion {
    position: relative;
    width: 100%;
    height: 2898px;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-lineas {
    position: absolute;
    top: 10px;
    left: 0;

    width: 100%;
    height: 2888px;

    background-image: url(//ep01.epimg.net/estaticos/arc/2025/07/parrilla-tv/media/minutos3.png);
    background-repeat: repeat;
    background-position-y: 10px;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-lineas .horizontal-line.hour-line {
    width: 100%;
    height: 1px;
    background-color: #11111160;

    display: block;
    margin-bottom: 119px;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-lineas .horizontal-line.hour-line .hour-label {
    writing-mode: sideways-lr;
    text-orientation: sideways;
    margin-left: -20px;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.5px;
    color: #11111160;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-canales {
    display: flex;
    justify-content: space-between;
    gap: 4px;

    width: 100%;
    height: 100%;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-canales .canales-elem {
    display: block;
    width: 100%;
    max-width: 245px;
    height: 100%;
    margin-top: 10px;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.5px;

    position: relative;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-canales .canales-elem .programa-elem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    box-sizing: border-box;
    padding: 10px;
    background-color: #6D7A8E4D;
}
.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-canales .canales-elem .programa-elem.elem-informativo {
    background-color: #65e43e4d;
}
.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-canales .canales-elem .programa-elem.elem-entretenimiento {
    background-color: #d5501c80;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-canales .canales-elem .programa-elem .programa-hora {
    display: block;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido .buscador-contenido-programacion .buscador-programacion-canales .canales-elem .programa-elem .programa-titulo {
    display: block;
    margin-top: 4px;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.5px;
}

@media only screen and (min-width: 48em) {
    .tv_menu--sticky {
        top: 22vh;
    }

    /* MENÚ PRINCIPAL */
    .tv_menu--sticky,
    .tv_content .tvc_menu .tvc_menu-listado {
        max-width: 872px;
        box-sizing: border-box;
        padding: 0px 16px;
    }

    .tv_menu--sticky > span {text-align: center;}

    .tv_menu--sticky > span span {max-width: unset;}

    .tv_menu--sticky .tv_menu-elems {margin-top: 40px;}

    .tv_menu--sticky .tv_menu-elems .tv_menu-elem {
        width: calc(50% - 8px);
        height: 80px;
    }

    .tv_menu--sticky .tv_menu-elems .tv_menu-elem.big {
        height: 300px;
    }

    .tv_menu--sticky .tv_menu-elems .tv_menu-elem.big {
        background-size: 100% !important;
    }

    .tv_menu--sticky .tv_menu-elems .tv_menu-elem.small:last-of-type span:after {
        bottom: -20px;
    }

    /* LISTADOS INTERIORES */
    .tv_content .tvc_menu .tvc_menu-listado {
        flex-direction: row;
        justify-content: space-between;
    }

    .tv_content .tvc_menu .tvc_menu-listado .tvc_menu-listado-elems {
        width: 60%;
    }

    /* CONTENIDO INTERIOR (HEADER) */
    .tv_content .tvc_scroll .tvcs_elem .tvcs_elem--header .tvcs_elem--header-title h2 {
        font-size: 48px;
        line-height: 49px;
        letter-spacing: -1.5px;
    }

    /*
        BUSCADOR
    */
    .tv_content.tv_content-buscador .tvc_scroll-buscador .tvc_scroll-buscador--filtros {
        padding: 22px 12px;
    }
    .tv_content.tv_content-buscador .tvc_scroll-buscador .tvc_scroll-buscador--filtros .current-date {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;

        width: auto;
    }

    .tv_content .tvc_menu .tvc_menu-listado span:before {
        transform: rotate(0deg);
        left: 20px;
        top: calc(100% + 10px);
    }
}

@media only screen and (min-width: 68.3125em) {
    .tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido {
        margin-right: 0px;
        overflow-x: hidden;
    }
    .tv_content.tv_content-buscador .tvc_scroll-buscador .tvs_scroll-buscador--contenido-container .icon-overflow-container {
        display: none;
    }
}

@media only screen and (max-height: 48em) and (max-width: 48em) {
    .tv_menu--sticky > span {
        padding-bottom: 6px;
    }

    .tv_menu--sticky {
        top: 72px;
    }

    .tv_menu--sticky .tv_menu-elems {
        gap: 8px;
        margin-top: 8px;
    }
}

/* SCROLL */
body .a .a_c .tvcs_elem--scroll {
    width:100vw;
    margin:0 auto;
    position:relative;
    height: 100%;
}
.scroll-gallery-image {
    width:100%;
    height: 100vh;
    position:sticky;
    top:0;
    left:0;
}
.scroll-gallery-image .scroll-gallery-item {
    position:absolute;
    top:calc(50% + 28px);
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    max-width: 540px;
    height:calc(100vh - 56px);
    opacity:0;
    transition:all .5s linear;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-gallery-image .scroll-gallery-item:has(.sgi-programa) {
    justify-content: center;
}

.scroll-gallery-image .scroll-gallery-item.active {
    opacity:1;
    transition:all .5s linear;
    z-index: 3;
    pointer-events: all;
}

/* Imágenes/GIF/Vídeos */
.scroll-gallery-image .scroll-gallery-item img,
.scroll-gallery-image .scroll-gallery-item video {
    width: 70%;
    height:100%;
    max-height: 100vh;
    object-fit:contain;

    opacity: 0;
    transform: translateY(70px);
}

.scroll-gallery-image .scroll-gallery-item.active img,
.scroll-gallery-image .scroll-gallery-item.active video {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.2s, transform 0.75s ease 0.2s;
}

/* Programas de TV */
.scroll-gallery-image .scroll-gallery-item .sgi-programa {
    width: 100%;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(70px);
}
.scroll-gallery-image .scroll-gallery-item.active .sgi-programa {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.2s, transform 0.75s ease 0.2s;
}

.scroll-gallery-image .scroll-gallery-item .sgi-programa .sgi-programa-header {
    width: 100%;
    border-bottom: .5px solid #777;
    padding-bottom: 7.5px;
    margin-bottom: 8px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.scroll-gallery-image .scroll-gallery-item .sgi-programa .sgi-programa-header .sgi-programa-header--canal {
    align-self: flex-start;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.5px;
}
.scroll-gallery-image .scroll-gallery-item .sgi-programa .sgi-programa-header .sgi-programa-header--fecha {
    align-self: flex-end;

    font-family: 'MarcinAntB', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.5px;
    text-align: right;
    text-transform: uppercase;
    color: #777;
}
.scroll-gallery-image .scroll-gallery-item .sgi-programa .sgi-programa-content .sgi-programa-content-elem {
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    gap: 9px;
}
.scroll-gallery-image .scroll-gallery-item .sgi-programa .sgi-programa-content .sgi-programa-content-elem:not(:first-child) {
    margin-top: 8px;
}

.scroll-gallery-image .scroll-gallery-item .sgi-programa .sgi-programa-content .sgi-programa-content-elem .sgi-programa-content--hora {
    font-family: 'MarcinAntB', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
    width: 38px;
    flex-shrink: 0;

    padding-top: 10px;
}

.scroll-gallery-image .scroll-gallery-item .sgi-programa .sgi-programa-content .sgi-programa-content-elem .sgi-programa-content--text {
    display: block;
    box-sizing: border-box;
    padding: 10px 15px;
    background: #F8E36C66;
    border-radius: 4px;

    width: 100%;
    font-family: 'MarcinAntB', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0px;
}

/* Gráfico */
.scroll-gallery-image .scroll-gallery-item .sgi-grafico {
    width: 100%;
    overflow-x: hidden;
    min-height: 60vh;
    opacity: 0;
    transform: translateY(70px);

    box-sizing: border-box;

    display: flex;
    align-items: center;
}
.scroll-gallery-image .scroll-gallery-item.active .sgi-grafico {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.2s, transform 0.75s ease 0.2s;
}

/* CONTENIDO EN SCROLL */
.scroll-gallery-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}
.scroll-gallery-step {
    width:100%;
    height:100vh;
    padding-bottom: 50vh;
    pointer-events: none;
}
.scroll-gallery-step {
    display:flex;
    justify-content:center;
    align-items:center;
}
.scroll-gallery-content .scroll-gallery-step:last-of-type {
    padding-bottom: 50vh;
}
.scroll-gallery-card {
    width: 100%;
    max-width: 540px;
    box-sizing: border-box;
    padding: 15px;
    background: #fff;
    color: #000;
    border: 1px solid #777;
    border-radius: 4px;

    position: relative;
    pointer-events: auto;
}
.scroll-gallery-card .scroll-gallery-trick {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 20px);
    transition: all 0.75s ease-in-out 0.25s;
    z-index: 1;
}
.scroll-gallery-step.visible .scroll-gallery-card .scroll-gallery-trick {
    opacity: 1;
    transform: translate(-50%, -125px);
    transition: all 0.75s ease-in-out 0.25s;
}

.scroll-gallery-card span {
    display: block;

    font-family: 'MajritTx', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;

    background: #fff;

    z-index: 2;
    position: relative;
}

.scroll-gallery-card span:not(:first-child) {
    margin-top: 8px;
}

@media only screen and (min-width: 62.5625em) {
    .tv_content .tvc_scroll .tvcs_elem .tvcs_elem--scroll {
        display: flex;
        gap: 12px;
    }
    .scroll-gallery-image, .scroll-gallery-content { width: 50%;}
    .scroll-gallery-image .scroll-gallery-item {
        width: 100%;
        aspect-ratio:unset;
        height:100%;
        max-height: 95vh;
        left: 0px;
        transform: translate(0, -50%);

        justify-content: center !important;
        margin-top: 0vh !important;
    }
    .scroll-gallery-content {
        align-items: flex-end;
    }

    .scroll-gallery-step {
        justify-content:flex-end;
    }

    .scroll-gallery-card {
        border: unset;
    }

    .scroll-gallery-step.visible .scroll-gallery-card .scroll-gallery-trick {
        transform: translate(-50%, -110px);
    }
}

/* COLORES */
.elem--infantil, .elem--contenidoinfantil, .elem--contenidosinfantiles {
    background-color: #F2E47B66 !important;
}
.elem--noticias {
    background-color: #6D7A8E33 !important;
}
.elem--informacion, .elem--programasinformativos {
    background-color: #D4D8DD66 !important;
}
.elem--entretenimiento, .elem--programasdeentretenimiento {
    background-color: #E4EBCC66 !important;
}
.elem--deportes {
    background-color: #ADE08866 !important;
}
.elem--cine, .elem--peliculas {
    background-color: #71B2DB66 !important;
}
.elem--series {
    background-color: #C6DFE266 !important;
}
.elem--otros, .elem-- {
    background-color: #BDA9E166 !important;
}

/* ANIMACIONES */
@keyframes bajar {
    0%, 100% {
      transform: translate(-50%, 0);
    }
    25% {
      transform: translate(-50%, -0.5rem);
    }
    50% {
      transform: translate(-50%, 0rem);
    }
    75% {
      transform: translate(-50%, -0.25rem);
    } 
}
  
@keyframes opacidad {
    100% {
      opacity: 1;
      visibility: visible;
    }
}

@keyframes move-horizontally {
    0% { transform: translateX(0); }
    33% { transform: translateX(10px); }
    66% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}