<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 1;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
    box-sizing: border-box;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    /* COLORES */
    --color-azul-fondo: #021522;
    --color-azul-caja: #071c31;
    --color-barra-header : #03283c;
    --color-celeste : #5affff;
    /* ICONOS */
    --icon-audifonos : url(/podcast/imag/custom/iconos/audifonos.svg);
    --icon-lupa : url(/2019/pruebas/eduardo/player_podcast/img/iconos/lupa.svg);
    /* FONDOS */
    --bg-fondo : url(/podcast/imag/custom/fondos/ondas.svg);
    --bg-audifonos-header : url(/podcast/imag/custom/iconos/audifonos_header.svg);
    --logo-coop : url(/podcast/imag/custom/logos/coop.svg);
    --logo-podcast : url(/podcast/imag/custom/logos/letras-podcast.svg);
    --logo-face: url(/podcast/imag/custom/redes_sociales/colores/facebook.svg);
    --logo-twitter : url(/podcast/imag/custom/redes_sociales/colores/twitter.svg);
    --logo-insta : url(/podcast/imag/custom/redes_sociales/colores/instagram.svg);
    --logo-wsp : url(/podcast/imag/custom/redes_sociales/colores/whatsapp.svg);
    --logo-spotify : url(/podcast/imag/custom/redes_sociales/colores/spotify.svg);
    --logo-itunes : url(/podcast/imag/custom/redes_sociales/colores/itunes.svg);
    --logo-rss : url(/podcast/imag/custom/redes_sociales/colores/rss.svg);
}

@media only screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    html {
        background: #021522 url(/podcast/imag/custom/fondos/ondas.svg) no-repeat center;
        background-size: 100%;
        background-attachment: fixed;
    }

    /* PLAYER */
    .contenedor {
        display: grid;
        width: 100%;
        font-family: 'Open Sans', sans-serif;
    }

    .contenedor .contenido-multimedia .contenido-volver {
        position: relative;
        display: flex;
        width: 100vw;
        left: 0;
        margin-top: 11vw;
    }

    .contenedor .contenido-multimedia .contenido-volver a {
        align-items: center;
        width: 19vw;
        margin-left: 0vw;
    }

    .contenedor .contenido-multimedia .contenido-volver a .img-volver {
        width: 10.0625vw;
        height: 10.0625vw;
        background: url(/podcast/imag/custom/iconos/volver.svg)no-repeat center;
        background-size: 78%;
        margin: auto;
    }

    .contenedor .contenido-multimedia .contenido-volver a .cont-volver {
        justify-self: start;
    }

    .contenedor .contenido-multimedia .contenido-volver a .cont-volver p {
        color: #949494;
        font-size: 3vw;
        text-align: center;
    }

    .contenedor .contenido-multimedia {
        display: inline-grid;
        justify-items: center;
        /* margin-top: 10vw; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo {
        width: 100vw;
        display: inline-grid;
        grid-gap: 3vw;
    }

    /* NOMBRE PROGRAMA */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes {
        display: none;
    }

    .contenedor .contenido-multimedia .box-programa-redes {
        width: 100vw;
        display: inline-flex;
        justify-content: space-between;
        height: 10vw;
        align-items: center;
        padding: 0 4vw;
        position: relative;
        grid-template-columns: 1fr auto;
        margin: 3vw 0;
    }

    .contenedor .contenido-multimedia .box-programa-redes .nombre-programa {
        display: inline-flex;
    }

    .contenedor .contenido-multimedia .box-programa-redes .nombre-programa p {
        font-size: 2.125vw;
        color: #fff;
    }

    .contenedor .contenido-multimedia .box-programa-redes .nombre-programa p strong {
        font-weight: bold;
        font-size: 4vw;
    }

    /* REDES PROGRAMA */
    .contenedor .contenido-multimedia .box-programa-redes .contenido-redes-music {
        width: 100%;
        display: inline-grid;
        grid-template-columns: repeat(3, 7.8125vw);
        justify-content: end;
        grid-gap: 0 10px;
    }

    .contenedor .contenido-multimedia .box-programa-redes .contenido-redes-music .icon {
        width: 7.8125vw;
        height: 7.8125vw;
        cursor: pointer;
    }

    .contenedor .contenido-multimedia .box-programa-redes .contenido-redes-music .red-spotify {
        background: var(--logo-spotify) no-repeat;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .box-programa-redes .contenido-redes-music .red-spotify:hover {
        /* background: var(--logo-spotify-hover); */
        transform: rotate(360deg);
        transition: all .5s linear;
    }

    .contenedor .contenido-multimedia .box-programa-redes .contenido-redes-music .red-itunes {
        background: var(--logo-itunes) no-repeat;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .box-programa-redes .contenido-redes-music .red-itunes:hover {
        /* background: var(--logo-itunes-hover); */
        transform: rotate(360deg);
        transition: all .5s linear;
    }

    .contenedor .contenido-multimedia .box-programa-redes .contenido-redes-music .red-rss {
        background: var(--logo-insta) no-repeat;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .box-programa-redes .contenido-redes-music .red-rss:hover {
        /* background: var(--logo-rss-hover); */
        transform: rotate(360deg);
        transition: all .5s linear;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas {
        display: inline-grid;
        justify-items: center;
        grid-gap: 0vw;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player {
        display: inline-grid;
        height: 100vw;
        width: 100vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player {
        display: inline-grid;
        align-items: stretch;
        justify-self: center;
        width: 95vw;
        height: 95vw;
        grid-template-rows: repeat(3, 1fr);
        position: relative;
        border: 3px solid var(--color-celeste);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .img-portada {
        width: 100%;
        height: 100%;
        position: absolute;
    }

    /* PLAYER NORMAL */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(transparent, black);
        bottom: 0px;
        display: inline-grid;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor {
        display: grid;
        width: 100%;
        justify-items: center;
        align-items: end;
        margin-top: -22vw;
    }

    /* BOTONES DEL PLAYER NORMAL */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .contenido-reproductor {
        width: 100%;
        display: grid;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .box-info-audio {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios {
        /* display: grid; */
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0vw;
        /* align-items: end; */
        /* justify-items: center; */
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        /* margin-bottom: 31px; */
        justify-content: flex-end;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .box-controles {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .titular-programa-fixed {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones {
        display: inline-grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        min-height: 20.375vw;
        align-items: center;
        /* top: -10vw; */
        padding-bottom: 5vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icon-down {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-reset {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-controles .btn-mute {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-prev {
        display: inline-grid;
        justify-items: center;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-prev .txt-atras {
        color: var(--color-celeste);
        font-size: 4vw;
        font-weight: bold;
        margin: 2vw 2vw 0 2vw;
        pointer-events: none;
        /* position: absolute; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icono {
        width: 14.0625vw;
        height: 14.0625vw;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icono.btn-prev {
        background: url(/podcast/imag/custom/botones_player/btn_prev.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play {
        display: inline-grid;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon {
        width: 21.875vw;
        height: 21.875vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-play {
        background: url(/podcast/imag/custom/botones_player/btn_play.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-pause {
        background: url(/podcast/imag/custom/botones_player/btn_pause.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icono.btn-next {
        background: url(/podcast/imag/custom/botones_player/btn_next.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-next .txt-siguiente {
        color: var(--color-celeste);
        font-size: 4vw;
        font-weight: bold;
        margin: 2vw 2vw 0 2vw;
        pointer-events: none;
        /* position: absolute; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-next {
        display: inline-grid;
        justify-items: center;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-load {
        cursor: progress;
        background: url(/podcast/imag/custom/botones_player/btn_load.svg) no-repeat center;
        background-size: contain;
        pointer-events: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-load:hover {
        background: url(/podcast/imag/custom/botones_player/btn_load_white.svg) no-repeat center;
        background-size: contain;
    }

    .icon-load {
        animation: rotation 2s infinite linear;
    }

    @keyframes rotation {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(359deg);
        }
    }

    /* BARRA TIEMPO */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo {
        display: inline-grid;
        width: 100%;
        min-height: 6.375vw;
        position: relative;
        justify-items: center;
        margin-bottom: 0vw;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .box-control-tiempo {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .canvas_movimiento {
        width: 100%;
        height: 26vw;
        position: absolute;
        bottom: 0;
        z-index: 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .box-control-tiempo .control-tiempo {
        -webkit-tap-highlight-color: transparent;
        -webkit-appearance: none;
        background: transparent;
        width: 100%;
        height: 100%;
        position: absolute;
        cursor: pointer;
        -webkit-transition: .2s;
        transition: opacity .2s;
        outline: 0;
        padding: 0;
        margin: 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .box-control-tiempo .control-tiempo::-ms-range-thumb {
        background: var(--color-celeste);
        width: 6.5vw;
        height: 6.5vw;
        border-radius: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .box-control-tiempo .control-tiempo::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        background: white;
        width: 30px;
        height: 30px;
        border-radius: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .box-control-tiempo .control-tiempo::-moz-range-thumb {
        background: var(--color-celeste);
        width: 6.5vw;
        height: 6.5vw;
        border-radius: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .gif-en-movimiento {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso {
        display: flex;
        width: 80%;
        min-height: -1.875vw;
        justify-self: center;
        align-items: center;
        position: relative;
        margin: 3vh auto;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .txt-duracion-inicio {
        color: #fff;
        font-size: 3.25vw;
        margin-top: 2vw;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .txt-duracion-fin {
        color: #fff;
        font-size: 2.5vw;
        /* margin: 3vw 0 0 2vw; */
        position: absolute;
        top: 2vw;
        right: 0vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .range__tooltip {
        min-height: 15px;
        line-height: 1em;
        position: absolute;
        left: 0;
        top: 2.5vw;
        transition: all 0s ease-in-out;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .range__tooltip::after {
        content: '';
        width: 0;
        height: 0;
        /* border: 0.6em solid transparent; */
        border-bottom-color: var(--color-celeste);
        position: absolute;
        bottom: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -35%);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .range__tooltip .range__tooltip__amount {
        width: 15.0625vw;
        border-radius: 1px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 88%;
        left: 50%;
        z-index: 2;
        color: #ffffff;
        background-color: #33333354;
        font-size: 2.5vw;
        border-radius: 3px;
        /* font-weight: bold; */
        -webkit-transform: translate(calc(0% - 1em), -50%);
        transform: translate(calc(0% - 1em), -50%);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .range__background {
        width: 100%;
        pointer-events: none;
        height: 1vw;
        background-image: linear-gradient(90deg, #333, #333 50%, transparent 50%), linear-gradient(90deg, var(--color-celeste), var(--color-celeste));
        background-size: 200% 100%, 100% 100%;
        background-position: 100% 0%, left top;
        background-repeat: no-repeat, no-repeat;
    }

    /* INFORMACION CANCION */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso {
        position: fixed;
        left: 0;
        bottom: 0;
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        /* width: 100vw; */
        background: linear-gradient(#272727,#000);
        z-index: 999;
        border-top: 1px solid #0a203a;
        /* box-shadow: 0px -2px 8px 0px #092727; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio {
        display: inline-flex;
        flex-flow: row wrap;
        flex-grow: 1;
        min-width: 250px;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-img {
        position: relative;
        width: 40px;
        height: 40px;
        display: inline-flex;
        margin-right: 10px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-img img {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 1px solid var(--color-celeste);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info {
        display: flex;
        flex-flow: column wrap;
        width: 50%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .titular-programa-on {
        min-height: 20px;
        width: auto;
        display: inline-flex;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .titular-programa-on .txt-titular-on {
        color: #fff;
        font-size: 1rem;
        text-transform: uppercase;
        font-family: lato, sans-serif;
        justify-self: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .titular-programa-on .icon {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .bajada-programa-on {
        min-height: 20px;
        margin-bottom: 0;
        width: auto;
        display: inline-flex;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .bajada-programa-on .txt-bajada-on {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.625em;
        font-family: lato, sans-serif;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .extra-titular-on {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .extra-bajada-on {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .contenido-redes {
        display: none;
    }

    /* BOTONES PLAYER */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios {
        display: inline-flex;
        /*! background: darkcyan; */
        flex-flow: column wrap;
        /* justify-content: center; */
        /* align-items: flex-end; */
        /* flex-grow: 1; */
        position: static;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .hover-btn-prev {
        /* order: 2; */
        /* justify-self: end; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-prev {
        width: 8.8125vw;
        height: 8.8125vw;
        /* width: 25px; */
        /* height: 25px; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-prev .txt-atras {
        margin: 1.25vw 0 0 0;
        font-size: 10px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .titular-programa-fixed {
        display: inline-flex;
        /* justify-content: center; */
        align-items: center;
        order: 3;
        /* width: 100%; */
        padding: 1.5vw 0;
        /* border-top: 1px solid #5affff12; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .titular-programa-fixed .txt-titular-fixed-on {
        color: #ffffff;
        color: var(--color-celeste);
        font-size: 3.5vw;
        width: 100%;
        position: relative;
        text-align: left;
        background: radial-gradient(black, #3f3f3f);
        text-shadow: 2px 3px 5px black;
        margin: auto 0vw;
        padding: 1vw 3vw;
        transition: color 2s ease;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones {
        display: inline-grid;
        /*! background: red; */
        align-content: center;
        align-items: center;
        margin: 0vw auto;
        width: 50%;
        grid-column-gap: 5vw;
        order: 2;
        z-index: 1;
        /* min-height: auto; */
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .icon-down {
        right: -16vw;
        top: 7vw;
        display: block;
        position: absolute;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icon-down .cont-btn-download {
        height: 9.375vw;
        width: 9.375vw;
        display: block;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icon-down .cont-btn-download.btn-download {
        background: url(/podcast/imag/custom/botones_player/hover/btn_download_white.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .icon {
        width: 15.5vw;
        height: 15.5vw;
        /* width: 30px; */
        /* height: 30px; */
        position: relative;
        /* position: absolute; */
        /* top: 2.5vw; */
        /* left: 5vw; */
        /* order: 2; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .icon.btn-prev {
        background: var(--btn-prev) no-repeat center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .icon.btn-next {
        background: var(--btn-next) no-repeat center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .hover-btn-next {
        /* order: 3; */
        /* justify-self: start; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-next {
        width: 8.8125vw;
        height: 8.8125vw;
        /* width: 25px; */
        /* height: 25px; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-next .txt-siguiente {
        /* font-size: 3vw; */
        margin: 1.25vw 0 0 0;
        font-size: 10px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo {
        /* display: inline-flex; */
        flex-flow: column wrap;
        position: relative;
        align-self: flex-end;
        width: 100%;
        /* margin-bottom: -6px; */
        /* right: 0; */
        /* margin-left: 20%; */
        /* background: red; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .canvas_movimiento {
        bottom: -30vw;
        z-index: -1;
        width: 100vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .gif-en-movimiento {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso {
        align-items: start;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end {
        display: flex;
        /* flex-flow: wrap row; */
        /* justify-content: center; */
        /* align-items: center; */
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .txt-duracion-inicio {
        color: #fff;
        text-align: left;
        font-weight: bold;
        font-family: lato, sans-serif;
        font-size: 3vw;
        display: inline-flex;
        position: relative;
        left: -3vw;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .txt-duracion-fin {
        color: #868686;
        font-weight: normal;
        font-size: 2vw;
        position: absolute;
        bottom: -5vw;
        right: 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo {
        display: inline-flex;
        width: 100%;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo .control-tiempo::-ms-range-thumb {
        -webkit-appearance: none;
        appearance: none;
        background: white;
        width: 6vw;
        height: 6vw;
        border-radius: 50%
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo .control-tiempo::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        background: white;
        width: 6vw;
        height: 6vw;
        border-radius: 50%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo .control-tiempo::-moz-range-thumb {
        -webkit-appearance: none;
        appearance: none;
        background: white;
        width: 6vw;
        height: 6vw;
        border-radius: 50%
    }

    /* OTROS BOTONES */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles {
        display: inline-flex;
        flex-flow: row wrap;
        justify-content: space-around;
        align-items: center;
        min-width: 250px;
        flex-grow: 1;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .control-volumen {
        cursor: pointer;
        display: block;
        -webkit-appearance: none;
        height: 2px;
        background-color: white;
        border-radius: 10px;
        outline: 0;
        width: 15%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .control-volumen::-ms-range-thumb {
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .control-volumen::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        background: var(--color-cyan);
        width: 15px;
        height: 15px;
        border-radius: 50%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .control-volumen::-moz-range-thumb {
        background: var(--color-cyan);
        width: 25px;
        height: 25px;
        border-radius: 50%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .cont-btn-download {
        cursor: pointer;
        width: 1.5625em;
        height: 1.5625em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .cont-btn-download .btn-download {
        background: var(--btn-descargar);
        background-size: contain;
        height: 1.5625em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-compartir {
        width: 1.5625em;
        height: 1.5625em;
        cursor: pointer;
        background: var(--btn-compartir);
        background-size: contain;
    }

    .marquee {
        /* Starting position */
        -moz-transform: translateX(100%);
        /* -webkit-transform:translateX(100%); */
        /* transform:translateX(100%); */
        /* Apply animation to this element */
        -moz-animation: marquee 15s linear infinite;
        /* -webkit-animation: marquee 15s linear infinite; */
        /* animation: marquee 15s linear infinite; */
    }

    /* Move it (define the animation) */
    @-moz-keyframes marquee {
        0% {
            -moz-transform: translateX(100%);
        }

        100% {
            -moz-transform: translateX(-100%);
        }
    }

    @-webkit-keyframes marquee {
        0% {
            -webkit-transform: translateX(100%);
        }

        100% {
            -webkit-transform: translateX(-100%);
        }
    }

    @keyframes marquee {
        0% {
            -moz-transform: translateX(100%);
            /* Firefox bug fix */
            -webkit-transform: translateX(100%);
            /* Firefox bug fix */
            transform: translateX(100%);
        }

        100% {
            -moz-transform: translateX(-100%);
            /* Firefox bug fix */
            -webkit-transform: translateX(-100%);
            /* Firefox bug fix */
            transform: translateX(-100%);
        }
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .icon {
        width: 10.9375vw;
        height: 10.9375vw;
        z-index: 1;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .icon-play-dark {
        background: var(--btn-play-dark) no-repeat;
        width: 28.125vw;
        height: 28.125vw;
        align-self: center;
        justify-self: center;
        visibility: hidden;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .icon-audifonos {
        background: var(--icon-audifonos) no-repeat;
        justify-self: end;
        align-self: stretch;
        margin: 0.625em 0.625em 0 0;
        visibility: hidden;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .logo-coop {
        width: 31.25vw;
        background: var(--logo-coop) no-repeat;
        align-self: end;
        margin: auto auto 0.625em 0.625em;
        visibility: hidden;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .contenido-redes-music {
        display: grid;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin: 4.6875vw 0;
        grid-template-columns: repeat(3, 14.0625vw);
        grid-gap: 4.6875vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .contenido-redes-music .redes-sociales {
        display: grid;
        grid-template-columns: repeat(3, 14.625vw);
        grid-gap: 3.125vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .contenido-redes-music .redes-sociales .icon {
        height: 14.0625vw;
        border-radius: 100%;
        width: 14.0625vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .contenido-redes-music .redes-sociales .red-spotify {
        background: var(--logo-spotify) no-repeat;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .contenido-redes-music .redes-sociales .red-itunes {
        background: var(--logo-itunes) no-repeat;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .contenido-redes-music .redes-sociales .red-rss {
        background: var(--logo-rss) no-repeat;
        background-size: 100%;
    }

    /* INFORMACION DEL PROGRAMA */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast {
        display: inline-grid;
        width: 95vw;
        grid-gap: 0.6vw;
        z-index: 1;
        background: #05192b;
        background: linear-gradient(to right,#034159e3,rgba(3, 40, 60, 0.96));
        margin: 0;
        padding: 0 2vw 8.125vw 2vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .cont-img {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .titular-programa-on {
        display: inline-flex;
        justify-content: space-between;
        min-height: 50px;
        align-items: center;
        justify-self: center;
        width: 100%;
        position: relative;
        border-bottom: 1px solid #92929242;
        padding-bottom: 2vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .titular-programa-on .icon {
        width: 9.375vw;
        height: 9.375vw;
        display: inline-flex;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .titular-programa-on .icon.descargar-podcast {
        background: url(/podcast/imag/custom/botones_player/hover/btn_download_white.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .titular-programa-on .txt-titular-on {
        color: var(--color-celeste);
        font-size: 4vw;
        justify-self: center;
        /* font-weight: bold; */
        display: inline-flex;
        width: 80%;
        margin-top: 3vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on {
        max-height: 100% !important;
        position: relative;
        /* transition: all .2s ease; */
        overflow: hidden;
        padding-bottom: 0px;
        display: inline-grid;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on.activar-acerca {
        min-height: 31.25vw;
        background: tomato;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on .txt-bajada-on {
        color: white;
        font-size: 3.5vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .icon-down {
        display: inline-grid;
        grid-template-columns: 0.8125vw 1fr;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .icon-down .cont-btn-download {
        display: inline-grid;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .icon-down .cont-btn-download.btn-download {
        background: url(/podcast/imag/custom/botones_player/btn_download.svg) no-repeat center;
        background-size: 95%;
        height: 9.5vw;
        width: 9.5vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-down-fecha .fecha-programa-on {
        display: inline-grid;
        justify-items: end;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-down-fecha .fecha-programa-on .txt-fecha-on {
        color: var(--color-celeste);
        font-size: 3vw;
        font-weight: bold;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .btn-ver-mas {
        display: inline-grid;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        /* justify-items: center; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .btn-ver-mas .enlace-ver-mas {
        color: white;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 3.5vw;
        background: #021522;
        width: 100%;
        padding: 0px 0;
        text-align: center;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin: 3.125vw 0 0 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales .redes-sociales {
        display: grid;
        grid-template-columns: repeat(3, 14.0625vw);
        grid-gap: 4.6875vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales .icon {
        height: 9.375vw;
        width: 9.375vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales .face {
        background: var(--logo-face) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales .twitter {
        background: var(--logo-twitter) no-repeat center;
        background-size: 100%;
        margin: 0 3.125vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales .wsp {
        background: var(--logo-wsp) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .opacidad-player {
        background: rgba(33, 65, 127, 0.25);
        width: 100%;
        height: 38%;
        position: absolute;
        bottom: 0;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-reproductor .extra-titular-on {
        display: grid;
        width: 100%;
        min-height: 30px;
        align-items: center;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-reproductor .extra-bajada-on {
        display: grid;
        width: 100%;
        min-height: 50px;
        align-items: center;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-reproductor .extra-bajada-on .txt-extra-b-on {
        color: #fff;
        font-size: 0.875em;
    }

    /* PLAYLIST */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas {
        display: inline-grid;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist {
        /*overflow: hidden auto;*/
        height: 100%;
        /* justify-self: center; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios {
        display: grid;
        grid-gap: 2.5vw;
        width: 100vw;
        justify-content: center;
        margin-bottom: 50vw;
        /*overflow-y: scroll;*/
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist {
        width: 95vw;
        display: grid;
        background: rgba(33, 65, 127, 0.25);
        background: rgba(3, 40, 60, 0.96);
        padding: 3.125vw;
        margin: 3vw 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido {
        display: grid;
        width: 100%;
        grid-template-columns: auto 1fr;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .box-img-playlist {
        display: inline-grid;
        background: var(--color-azul-fondo);
        border: 2px solid var(--color-celeste);
        height: 21.875vw;
        width: 21.875vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .box-img-playlist .img-playlist {
        display: grid;
        justify-items: center;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .box-img-playlist .img-playlist .icon-play {
        width: 7.8125vw;
        height: 7.8125vw;
        background: url(/podcast/imag/custom/botones_player/btn_play.svg) no-repeat center;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .box-img-playlist .img-playlist .icon-play:before {
        content: attr(data-content);
        width: 100%;
        width: 21.1vw;
        display: table;
        position: relative;
        bottom: -2vw;
        background: #0a203ac9;
        left: -6.7vw;
        text-align: center;
        font-weight: bold;
        color: #5affff;
        font-size: 3vw;
        margin: auto;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .box-img-playlist .img-playlist .icon-reproduciendo {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-playlist-li {
        width: 100%;
        display: inline-grid;
        grid-gap: 3.125vw 0;
        padding: 0 0 0 3.125vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-playlist-li .titular-playlist {
        width: 100%;
        grid-gap: 2vw;
        grid-template-columns: auto 1fr;
        position: relative;
        border-bottom: 1px solid #92929242;
        padding-bottom: 2vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-playlist-li .titular-playlist .icon-audifonos {
        display: inline-grid;
        background: var(--icon-audifonos) no-repeat;
        background-size: 100%;
        height: 4.25vw;
        width: 4.25vw;
        align-self: baseline;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-playlist-li .titular-playlist .icon-audifonos::before {
        content: '';
        position: relative;
        height: 4.6875vw;
        width: 1px;
        /* background: #5affff; */
        left: 6.5vw;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        top: 50%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-playlist-li .titular-playlist .titulo-playlist {
        display: inline-grid;
        align-self: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-playlist-li .titular-playlist .titulo-playlist .txt-titulo-playlist {
        color: var(--color-celeste);
        font-size: 3.9vw;
        /* font-weight: bold; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-playlist-li .bajada-playlist {
        align-items: center;
        display: inline-grid;
        /* height: 7.8125vw; */
        overflow: hidden;
        /* margin-left: 1vw; */
        /* background: darkcyan; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-playlist-li .bajada-playlist .txt-bajada-playlist {
        color: #fff;
        font-size: 3vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-playlist-li .box-redes-fecha {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-redes-fecha {
        display: inline-flex;
        width: 100%;
        margin: 4.6875vw 0 0 0;
        justify-content: right;
        justify-items: right;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-redes-fecha .contenido-redes-sociales {
        display: inline-flex;
        justify-content: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-redes-fecha .contenido-redes-sociales .icon {
        width: 9.375vw;
        height: 9.375vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-redes-fecha .contenido-redes-sociales .face {
        background: var(--logo-face) no-repeat center;
        background-size: 100%;
        order: 1;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-redes-fecha .contenido-redes-sociales .twitter {
        background: var(--logo-twitter) no-repeat;
        background-size: 100%;
        order: 2;
        margin: 0 3.125vw;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-redes-fecha .contenido-redes-sociales .wsp {
        background: var(--logo-wsp) no-repeat center;
        background-size: 100%;
        order: 3;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .fecha-playlist {
        /* display: none; */
        color: var(--color-celeste);
        font-size: 3vw;
        text-align: left;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-redes-fecha .fecha-playlist {
        display: inline-grid;
        justify-items: right;
        align-items: end;
        font-weight: lighter;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .listado-audios .playlist .contenido-redes-fecha .fecha-playlist .txt-fecha-playlist {
        color: var(--color-celeste);
        font-size: 3vw;
        padding-right: 3.125vw;
        text-align: right;
    }

    .contenedor footer {
        display: grid;
        background: black;
        position: relative;
        bottom: 40vw;
        padding: 3.125vw 0 6.25vw 0;
        display: none;
    }

    .contenedor footer .cont-full-footer {
        display: grid;
        grid-gap: 6.25vw;
    }

    .contenedor footer .cont-full-footer .contacto-radio {
        display: inline-grid;
        grid-gap: 2.5vw;
        display: none;
    }

    .contenedor footer .cont-full-footer .contacto-radio .contacto-cooperativa-anio {
        display: inline-grid;
        justify-content: center;
    }

    .contenedor footer .cont-full-footer .contacto-radio .contacto-cooperativa-anio p {
        font-size: 4vw;
        color: #fff;
    }

    .contenedor footer .cont-full-footer .contacto-radio .contacto-cooperativa, .contenedor footer .cont-full-footer .contacto-radio .contacto-area, .contenedor footer .cont-full-footer .contacto-radio .fecha-actual-area {
        display: none;
    }

    .contenedor footer .cont-full-footer .contacto-logo {
        display: inline-grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
        grid-gap: 9.375vw;
        width: 80vw;
        justify-self: center;
    }

    .contenedor footer .cont-full-footer .contacto-logo .contacto-area {
        display: inline-grid;
        display: none;
    }

    .contenedor footer .cont-full-footer .contacto-logo .contacto-area p {
        font-size: 3.5vw;
        color: #fff;
        line-height: 1;
    }

    .contenedor footer .cont-full-footer .contacto-logo .enlace-podcast {
        display: inline-grid;
        position: relative;
    }

    .contenedor footer .cont-full-footer .contacto-logo .enlace-podcast::before {
        left: -4.5vw;
        content: '';
        position: absolute;
        width: 1px;
        background: var(--color-cyan);
        height: 6.25vw;
    }

    .contenedor footer .cont-full-footer .contacto-logo .enlace-podcast::after {
        right: -4.5vw;
        content: '';
        position: absolute;
        width: 1px;
        background: var(--color-cyan);
        height: 6.25vw;
    }

    .contenedor footer .cont-full-footer .contacto-logo .enlace-podcast .logo-podcast {
        width: 21.875vw;
        height: 6.375vw;
        background: var(--logo-podcast)no-repeat;
        background-size: contain;
    }

    .contenedor footer .cont-full-footer .contacto-logo .enlace-coop {
        display: inline-grid;
    }

    .contenedor footer .cont-full-footer .contacto-logo .enlace-coop .logo-coop {
        width: 21.875vw;
        height: 9.375vw;
        background: var(--logo-coop) no-repeat center;
        background-size: 100%;
    }

    /** REDES SIGUENOS **/
    .share-button {
        display: inline-flex;
        /* align-items: center; */
        /* align-self: center; */
        position: absolute;
        height: 10vw;
        overflow: hidden;
        /* padding: 10px 15px; */
        font-size: 13px;
        /*width: 90vw;*/
        top: -15vw;
        margin-right: 2vw;
        right: 0;
        /* transform: translate(-50%, -50%); */
        /* -webkit-transform: translate(-50%, -50%); */
    }

    .share-button.active {
        position: absolute;
        width: 48vw;
        background: var(--color-azul-fondo);
    }

    .share-button .cont-siguenos {
        width: 100%;
        display: inline-grid;
        align-items: center;
        grid-template-columns: 1fr auto;
        cursor: pointer;
    }

    .share-button .cont-siguenos p {
        color: #fff;
        text-transform: capitalize;
        font-size: 3.75vw;
        display: none;
    }

    .share-button .btn-siguenos {
        background: url(/podcast/imag/custom/iconos/share.svg) no-repeat right;
        background-size: contain;
        width: 7.375vw;
        height: 7.375vw;
    }

    .share-button &gt; a:hover, .share-button &gt; a:hover:after, .share-button .icon-wrapper ul li a:hover i {
        color: #e4e9ea;
    }

    .share-button .icon-wrapper ul li:last-child a:hover .btn-cerrar {
        color: red;
    }

    .share-button .icon-wrapper {
        display: grid;
        align-items: center;
        align-content: center;
        position: absolute;
        /* transform: translate(-50%, -50%); */
        /* -webkit-transform: translate(-50%, -50%); */
        top: 1vw;
        right: 10vw;
        /* left: 50%; */
        /* height: 15vw; */
        width: 45vw;
        /* background: blue; */
    }

    .share-button .icon-wrapper &gt; a {
        display: inline-block;
    }

    .share-button .cont-siguenos.hidden {
        display: none;
    }

    .share-button.active .icon-wrapper {
        left: 50%;
    }

    .share-button .icon-wrapper ul {
        grid-gap: 5vw;
        display: grid;
        grid-template-columns: repeat(3, 1fr) 3fr;
        align-items: center;
        justify-content: center;
    }

    .share-button .icon-wrapper ul:after {
        clear: both;
    }

    .share-button .icon-wrapper ul li {
        display: inline-grid;
        justify-items: center;
        position: relative;
    }

    .share-button .icon-wrapper ul li:last-child {
        justify-items: end;
    }

    .share-button .icon-wrapper ul li:last-child::before {
        content: '';
        position: absolute;
        width: 1px;
        height: 100%;
        background: #3d454b;
        right: 10vw;
    }

    .share-button .icon-wrapper ul li a {
        display: grid;
    }

    .share-button .icon-wrapper ul li a .logo {
        width: 7.8125vw;
        height: 7.8125vw;
        display: inline-block;
    }

    .share-button .icon-wrapper ul li a .logo.twitter {
        background: url(/podcast/imag/custom/redes_sociales/colores/twitter.svg) no-repeat center;
        background-size: 100%;
    }

    .share-button .icon-wrapper ul li a .logo.face {
        background: url(/podcast/imag/custom/redes_sociales/colores/facebook.svg) no-repeat center;
        background-size: 100%;
    }

    .share-button .icon-wrapper ul li a .logo.wsp {
        background: url(/podcast/imag/custom/redes_sociales/colores/whatsapp.svg) no-repeat center;
        background-size: 100%;
    }

    .share-button .icon-wrapper ul li:last-child a {
        background: url(/podcast/imag/custom/iconos/cerrar/cerrar_celeste.svg) no-repeat center;
        background-size: 100%;
        height: 7.8125vw;
        width: 7.8125vw;
    }

    .share-button .icon-wrapper ul li:last-child a .btn-cerrar {
        display: table-cell;
        vertical-align: middle;
        color: black;
        font-weight: bold;
        font-size: 1.25rem;
        /* position: absolute; */
        /* top: 50%; */
        /* left: 50%; */
        /* transform: translate(-50%, -50%); */
        /* -webkit-transform: translate(-50%, -50%); */
        /* display: inline-block; */
    }

    .m-path-distribucion {
        color: #b7b7b7;
        position: relative;
        top: 0px;
        font-size: .6em;
        width: 34vw;
        border-left: 1px solid #6d6d6d8c;
        padding-left: 2vw;
    }

    .m-path-distribucion a {
        color: #969696;
        position: relative;
        top: 5px;
        margin-left: 3.5vw;
    }

    .m-path-distribucion span {
        width: 100%;
        display: table;
        font-size: 3vw;
    }

    .m-path-distribucion span.img-distribucion-itu {
        width: 6vw;
        height: 6vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/itunes.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }

    .m-path-distribucion span.img-distribucion-itu:hover {
        opacity: 1;
    }

    .m-path-distribucion span.img-distribucion-spo {
        width: 5.9vw;
        height: 5.9vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/spotify.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }

    .m-path-distribucion span.img-distribucion-google {
        width: 5.9vw;
        height: 5.9vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/google_podcast.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }
     .m-path-distribucion span.img-distribucion-ymusic {
        width: 5.9vw;
        height: 5.9vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/ymusic.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }

    .m-path-distribucion span.img-distribucion-amazonmusic {
        width: 5.9vw;
        height: 5.9vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/amazon.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }

    .m-path-distribucion span.img-distribucion-spo:hover {
        opacity: 1
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .path-distribucion {
        display: none;
    }

    .contenedor .contenido-multimedia .box-programa-redes .path-distribucion {
        /*position: relative;top: -6px;width: 220px;*/
        border-top: 1px solid #6d6d6d8c;
    }

    .contenedor .contenido-multimedia .box-programa-redes .path-distribucion p {
        color: #b7b7b7;
        font-size: 3.125vw;
        margin: 0 0 1.5625vw 0;
    }

    .contenedor .contenido-multimedia .box-programa-redes .path-distribucion .iconos {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .contenedor .contenido-multimedia .box-programa-redes .path-distribucion a {
        display: inline-flex;
    }

    .contenedor .contenido-multimedia .box-programa-redes .path-distribucion span.img-distribucion-itu {
        width: 6.25vw;
        height: 6.25vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/itunes.svg)no-repeat center;
        background-size: cover;
    }

    .contenedor .contenido-multimedia .box-programa-redes .path-distribucion span.img-distribucion-spo {
        width: 6.25vw;
        height: 6.25vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/spotify.svg)no-repeat center;
        background-size: cover;
    }

    .contenedor .contenido-multimedia .box-programa-redes .path-distribucion span.img-distribucion-google {
        width: 6.25vw;
        height: 6.25vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/google_podcast.svg)no-repeat center;
        background-size: cover;
    }
      .contenedor .contenido-multimedia .box-programa-redes .path-distribucion span.img-distribucion-ymusic {
        width: 6.25vw;
        height: 6.25vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/ymusic.svg)no-repeat center;
        background-size: cover;
    }

    .contenedor .contenido-multimedia .box-programa-redes .path-distribucion span.img-distribucion-amazonmusic {
        width: 6.25vw;
        height: 6.25vw;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/amazon.svg)no-repeat center;
        background-size: cover;
    }

    .contenedor .contenido-multimedia .box-programa-redes .contenido-multimedia .nombre-programa:before {
        content: "";
        width: 17vw;
        height: 1vw;
        background: #ffffff;
        position: absolute;
        top: -1px;
    }
}
@media only screen and (min-width: 1300px) {
      .contenedor {
        display: block;
        width: 95%;
        max-width: 1300px;
        margin: auto;
        font-size: 14px;
    }
}
@media only screen and (min-width: 768px) {
    html {
        background: #021522 url(/podcast/imag/custom/fondos/ondas.svg) no-repeat center;
        background-size: 100%;
        background-attachment: fixed;
        background-position: left 0 bottom 30%;
    }

    .contenedor header.contenido-header .normal-header .contenido-extra {
        display: none;
    }

    .contenedor {
        display: block;
        width: 95%;
        max-width: 1080px;
        margin: auto;
        font-size: 14px;
    }

    .contenedor .contenido-multimedia .contenido-volver {
        width: 100%;
        display: inline-grid;
        display: inline-grid;
        align-items: center;
        justify-self: end;
        position: absolute;
        margin-top: -71px;
        overflow: hidden;
        width: 210px;
        height: 45px;
        background: rgba(3, 40, 60, 0.5);
    }

    .contenedor .contenido-multimedia .contenido-volver a {
        grid-template-columns: auto 1fr;
        grid-gap: 0px;
        display: grid;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-volver a .img-volver {
        width: 45px;
        height: 45px;
        background: url(/podcast/imag/custom/iconos/volver.svg)no-repeat center;
        background-size: 60%;
    }

    .contenedor .contenido-multimedia .contenido-volver a .cont-volver {
        justify-self: start;
        padding: 5px 10px;
        width: 100%;
        display: inline-grid;
        align-items: center;
        grid-template-columns: 1fr;
        cursor: pointer;
    }

    .contenedor .contenido-multimedia .contenido-volver a .cont-volver p {
        color: white;
        font-size: 1em;
    }

    .contenedor .contenido-multimedia .contenido-volver:hover {
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 0 0 1px #7da6c5;
    }

    .contenedor .contenido-multimedia {
        width: 100%;
        display: inline-flex;
        flex-flow: column;
    }

    .contenedor .contenido-multimedia .box-programa-redes {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        z-index: 0;
    }

    /* === REPRODUCTOR === */
    .contenedor .contenido-multimedia .contenido-cuerpo .m-caja-banner-centro {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas {
        display: inline-flex;
        width: 100%;
        position: relative;
        /* height: 72vh; */
        height: 100%;
        flex-flow: column;
        flex: 1;
        background: linear-gradient(to right,#034159e3,rgba(3, 40, 60, 0.96));
        padding: 15px;
        margin-bottom: 20px;
        /* padding-left: 2.5em; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas.sticky-portada {
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        z-index: 1;
        padding-top: 65px;
        margin-bottom: 70px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player {
        width: 100%;
        display: grid;
        position: relative;
        /* min-height: 200px; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .volver-player {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player {
        display: block;
        width: 400px;
        height: 400px;
        position: relative;
        border: 3px solid #5affff;
        /* min-height: 30vh; */
        /* min-height: 180px; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .img-portada {
        display: table;
        width: 100%;
        height: auto;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .icon-play-dark {
        background: var(--btn-play-dark) no-repeat;
        width: 135px;
        height: 135px;
        align-self: center;
        visibility: hidden;
        justify-self: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .icon-audifonos {
        background: var(--icon-audifonos) no-repeat;
        justify-self: end;
        align-self: stretch;
        margin: 0.625em 0.625em 0 0;
        visibility: hidden;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .logo-coop {
        width: 100px;
        background: var(--logo-coop) no-repeat;
        align-self: end;
        margin: 0 0 0.625em 0.625em;
        visibility: hidden;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .contenido-redes-music {
        display: none;
    }

    /** === REPRODUCTOR FIXED BOTTOM === **/
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player {
        position: absolute;
        bottom: 0px;
        height: auto;
        width: 100%;
        background: linear-gradient(transparent, rgb(0, 0, 0));
        z-index: 1;
        padding-bottom: 30px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor {
        display: flex;
        width: 100%;
        align-content: center;
        align-items: end;
        bottom: 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .box-controles {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .contenido-reproductor {
        display: flex;
        width: 100%;
        top: 0;
        align-items: flex-start;
        justify-content: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .box-info-audio {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .contenido-reproductor {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
        width: 85%;
        justify-content: space-between;
        max-width: 1300px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso {
        position: fixed;
        bottom: 0;
        left: 0;
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        background: #00101be8;
        background: linear-gradient(#212121,#000000);
        /* border-top: solid 1px #022c48; */
        height: 65px;
        z-index: 3;
        min-width: 1382px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo {
        display: inline-grid;
        justify-items: center;
        width: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo #wave {
        width: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .canvas_movimiento {
        max-height: 60px;
        width: 95%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso {
        /* display: flex; */
        width: 95%;
        /* justify-content: center; */
        /* align-items: center; */
        /* position: relative; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end {
        width: 100%;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .txt-duracion-inicio {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .txt-duracion-fin {
        color: white;
        position: absolute;
        right: 0;
        font-size: 11px;
        bottom: -22.5px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo {
        position: relative;
        width: 100%;
        display: flex;
        /* justify-content: center; */
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo input[type=range] {
        -webkit-appearance: none;
        background-color: transparent;
        width: 100%;
        height: 25px;
        -webkit-transition: .2s;
        transition: opacity .2s;
        position: absolute;
        margin: 0;
        padding: 0;
        border: none;
        cursor: pointer;
        outline: 0;
    }

    /** CHROME, SAFARI, OPERA **/
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        border: none;
        background: white;
        width: 20px;
        height: 20px;
        border-radius: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo input[type=range]::-webkit-slider-runnable-track {
    }

    /** MOZ **/
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo input[type=range]::-moz-range-thumb {
        -webkit-appearance: none;
        appearance: none;
        border: none;
        background: white;
        width: 20px;
        height: 20px;
        border-radius: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo input[type=range]::-moz-range-track {
    }

    /** IE11 - EDGE **/
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo input[type=range]::-ms-track {
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo input[type=range]::-ms-thumb {
        background-color: transparent;
        border: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo input[type=range]::-ms-fill-lower {
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo input[type=range]::-ms-fill-upper {
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo .range__tooltip {
        min-height: 15px;
        line-height: 1em;
        position: absolute;
        left: 0;
        bottom: -25px;
        transition: all 0s ease-in-out;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo .range__tooltip::after {
        content: '';
        width: 0;
        height: 0;
        /* border: 0.5em solid transparent; */
        border-bottom-color: var(--color-cyan);
        position: absolute;
        bottom: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo .range__tooltip .range__tooltip__amount {
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #048686;
        font-size: 10px;
        font-weight: normal;
        -webkit-transform: translate(calc(0% - 1em), -50%);
        transform: translate(calc(0% - 1em), -50%);
        margin-top: -39px;
        color: #fff;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo .range__background {
        width: 100%;
        pointer-events: none;
        height: 5px;
        background-image: linear-gradient(90deg, #333, #333 50%, transparent 50%), linear-gradient(90deg, var(--color-celeste), var(--color-celeste));
        background-size: 200% 100%, 100% 100%;
        background-position: 100% 0%, left top;
        background-repeat: no-repeat, no-repeat;
        /* border-radius: 10px; */
        border-radius: 5px;
        box-shadow: inset 1px 1px 2px 1px #000000;
    }

    /* BOTONES */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios {
        /*! background: darkcyan; */
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 366px;
        /* margin-bottom: 31px; */
        justify-content: flex-end;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .titular-programa-fixed {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones {
        display: flex;
        flex-flow: row;
        align-items: center;
        /* height: 100px; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icon-down {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icon-down .cont-btn-download {
        display: block;
        width: 35px;
        height: 35px;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icon-down .cont-btn-download.btn-download {
        background-image: url(/podcast/imag/custom/botones_player/btn_download.svg);
        /* background-size: 100%; */
        background-repeat: no-repeat;
        background-position: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icon-down .cont-btn-download.btn-download:hover {
        background: url(/podcast/imag/custom/botones_player/hover/btn_download_white.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play {
        display: inline-flex;
        width: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon {
        width: 5em;
        height: 5em;
        cursor: pointer;
        margin: auto;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-play {
        background: url(/podcast/imag/custom/botones_player/btn_play.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-play:hover {
        background: url(/podcast/imag/custom/botones_player/hover/btn_play_white.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-pause {
        background-image: url(/podcast/imag/custom/botones_player/btn_pause.svg);
        background-position: center;
        background-repeat: no-repeat;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-pause:hover {
        background-image: url(/podcast/imag/custom/redes_sociales/hover/btn_pause_white.svg);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-load {
        cursor: progress;
        background: url(/podcast/imag/custom/botones_player/btn_load.svg) no-repeat center;
        background-size: 50%;
        pointer-events: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-play .icon.icon-load:hover {
        background: url(/podcast/imag/custom/botones_player/btn_load_white.svg) no-repeat center;
        background-size: 100%;
        transform: scale(1.25);
        -webkit-transform: scale(1.25);
        transition: transform .3s ease-in-out;
        -webkit-transition: transform .3s ease-in-out;
    }

    /** PLAYER PEGAJOSO FIXED **/
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-play .icon.icon-play, .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-play .icon.icon-pause, .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-play .icon.icon-play:hover, .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-play .icon.icon-pause:hover {
        background-size: 60%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .hover-btn-prev .linea-left {
        height: 50%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .hover-btn-next .linea-right {
        height: 50%;
    }

    .icon-load {
        animation: rotation 2s infinite linear;
    }

    @keyframes rotation {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(359deg);
        }
    }

    /** Hover BTN RETROCEDER Y AVANZAR  **/
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .hover-btn-next, .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .hover-btn-prev {
        display: inline-flex;
        position: relative;
        width: 100%;
        /* border: 2px solid fuchsia; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icono {
        width: 100%;
        height: 0;
        padding-bottom: calc(50%);
        cursor: pointer;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icono.btn-prev .txt-atras {
        color: #5affff;
        font-size: 1em;
        position: absolute;
        left: 51%;
        top: 55%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .hover-btn-prev .linea-left {
        position: absolute;
        height: 100%;
        background: #5affff94;
        width: 1px;
        right: 0;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .hover-btn-next .linea-right {
        position: absolute;
        height: 100%;
        background: #5affff94;
        width: 1px;
        left: 0;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .hover-btn-prev:hover .icono.btn-prev .txt-atras {
        color: #fff;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .hover-btn-prev:hover .icono.btn-prev {
        background-image: url(/podcast/imag/custom/botones_player/hover/btn_prev_white.svg);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icono.btn-prev {
        background-image: url(/podcast/imag/custom/botones_player/btn_prev.svg);
        background-size: 25%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .hover-btn-next:hover .icono.btn-next {
        background-image: url(/podcast/imag/custom/botones_player/hover/btn_next_white.svg);
        transition: transform .3s ease-in-out;
        -webkit-transition: transform .3s ease-in-out;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .hover-btn-next:hover .icono.btn-next .txt-siguiente {
        color: #fff;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icono.btn-next {
        background-image: url(/podcast/imag/custom/botones_player/btn_next.svg);
        background-size: 25%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icono.btn-next::before {
        content: '';
        position: absolute;
        height: 140px;
        background: var(--color-cyan);
        width: 2px;
        left: 30%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .icono.btn-next .txt-siguiente {
        font-size: 1em;
        color: #5affff;
        position: absolute;
        left: 49%;
        top: 55%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-botones .btn-reset {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor .reproductor-audios .box-controles .btn-mute {
        display: none;
    }

    /* PEGAJOSO RANGE */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .range__tooltip {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .range__background {
        width: 100%;
        pointer-events: none;
        height: 0.1em;
        background-image: linear-gradient(90deg, #FFFFFF, #FFFFFF 50%, transparent 50%), linear-gradient(90deg, var(--color-cyan), rgba(255, 255, 255, 0.15));
        background-size: 200% 100%, 100% 100%;
        background-position: 100% 0%, left top;
        background-repeat: no-repeat, no-repeat;
    }

    /* INFORMACION CANCION */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio {
        display: inline-flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        flex-grow: 1;
        height: 100%;
        /* min-width: 300px; */
        width: 100%;
        max-width: 530px;
        /* background: red; */
        flex-direction: row;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-img {
        display: inline-flex;
        height: 100%;
        min-width: 65px;
        border-right: 1px solid #19505082;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-img img {
        width: 100%;
        height: 100%;
        position: absolute;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info {
        display: inline-flex;
        height: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .titular-programa-on {
        display: table;
        width: 100%;
        height: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .titular-programa-on .txt-titular-on {
        display: table-cell;
        vertical-align: middle;
        font-size: 0.857em;
        justify-self: center;
        color: var(--color-celeste);
        font-weight: normal;
        padding: 0 10px;
        /* white-space: nowrap; */
        /* min-width: 280px; */
        /* overflow: hidden; */
        /* text-overflow: ellipsis; */
        /* width: 30%; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .titular-programa-on .icon {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .bajada-programa-on {
        min-height: 20px;
        margin-bottom: 0;
        display: inline-flex;
        margin-left: 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-info-audio .cont-info .bajada-programa-on .txt-bajada-on {
        color: #fff;
        font-size: 0.625em;
        line-height: 1;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .extra-titular-on {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .extra-bajada-on {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .contenido-redes {
        display: none;
    }

    /* BOTONES PLAYER */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios::before {
        content: '';
        position: absolute;
        height: 50px;
        background: #022c48;
        width: 1px;
        display: block;
        left: 0;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        visibility: hidden;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios::after {
        position: absolute;
        content: '';
        height: 50px;
        background: #022c48;
        width: 1px;
        display: block;
        right: 0;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        visibility: hidden;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios {
        display: inline-flex;
        /*! background: darkcyan; */
        flex-wrap: nowrap;
        min-width: 300px;
        height: 100%;
        /* position: relative; */
        flex-grow: 0;
        /* background: white; */
        justify-content: space-between;
        /* border: 1px solid white; */
        flex-direction: row;
        bottom: 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones {
        display: inline-flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-evenly;
        /*! background: red; */
        /* border-right: 1px solid #5affff14; */
        /* padding: 0 10px; */
        /* background: tomato; */
        width: 60%;
        /* height: 5em; */
        /* border: 2px solid red; */
        flex-direction: row;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .icon-down {
        display: inline-grid;
        position: static;
        width: 100%;
        /* border: 2px solid fuchsia; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .icon-down .cont-btn-download {
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: calc(75%);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .icon-down .cont-btn-download.btn-download {
        background-image: url(/podcast/imag/custom/botones_player/btn_download.svg);
        background-image: url(/podcast/imag/custom/botones_player/hover/btn_download_white.svg);
        background-size: 35%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .icon-down .cont-btn-download.btn-download:hover {
        background-image: url(/podcast/imag/custom/botones_player/btn_download.svg);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-prev .txt-atras {
        font-size: 0.6em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .hover-btn-prev:hover .icono.btn-next {
        background: var(--btn-next-white) no-repeat center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .icono.btn-next::before {
        content: '';
        position: absolute;
        height: 30px;
        background: var(--color-cyan);
        width: 2px;
        left: 63%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-next .txt-siguiente {
        font-size: 0.6em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-reset {
        background: url(/podcast/imag/custom/botones_player/btn_reset.svg) no-repeat center;
        background-size: contain;
        width: 1.5625em;
        height: 1.5625em;
        cursor: pointer;
        display: inline-grid;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-reset:hover {
        background: url(/podcast/imag/custom/botones_player/hover/btn_reset_white.svg) no-repeat center;
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        transition: all .3s ease-in-out;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo {
        display: inline-flex;
        width: 40%;
        /* flex-flow: column nowrap; */
        align-items: center;
        /* background: black; */
        /* border-right: 1px solid #5affff14; */
        /* padding: 28px 10px; */
        position: relative;
        flex-direction: row;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .canvas_movimiento {
        max-height: 22px;
        position: absolute;
        top: 7px;
        width: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso {
        width: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end {
        /* display: flex; */
        /* flex-flow: nowrap row; */
        /* justify-content: space-between; */
        /* align-items: center; */
        /* position: relative; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .txt-duracion-fin {
        color: #fff;
        text-align: center;
        font-size: 0.725em;
        display: inline-flex;
        position: absolute;
        right: 0;
        bottom: -20px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .range__tooltip {
        display: block;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .range__background {
        width: 95%;
        pointer-events: none;
        height: 0.3em;
        background-image: linear-gradient(90deg, #FFFFFF, #FFFFFF 50%, transparent 50%), linear-gradient(90deg, var(--color-cyan), rgba(255, 255, 255, 0.15));
        background-size: 200% 100%, 100% 100%;
        background-position: 100% 0%, left top;
        background-repeat: no-repeat, no-repeat;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-barra-tiempo .tiempo-pegajoso .tiempo-init-end .box-control-tiempo .range__tooltip {
        bottom: -20px;
    }

    /* OTROS BOTONES */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles {
        display: flex;
        justify-content: flex-end;
        flex-grow: 1;
        align-items: center;
        min-width: 9%;
        height: 100%;
        position: relative;
        /* background: blue; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles input[type=range] {
        color: transparent;
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
        background-color: var(--color-celeste);
        outline: 0;
        height: 3px;
        display: inline-flex;
        width: 41%;
        max-width: 100px;
        border-radius: 5px;
        box-shadow: inset 1px 1px 2px 0px #000000;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles input[type=range]::-ms-thumb {
        border: none;
        margin: 0;
        padding: 0;
        background-color: transparent;
        outline: 0;
        width: 20px;
        height: 20px;
        border-radius: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        border: none;
        color: transparent;
        background: white;
        width: 20px;
        height: 20px;
        border-radius: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles input[type=range]::-webkit-slider-runnable-track {
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles input[type=range]::-moz-range-thumb {
        -webkit-appearance: none;
        appearance: none;
        border: none;
        background: white;
        width: 20px;
        height: 20px;
        border-radius: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles input[type=range]::-ms-fill-lower {
        background: cyan;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles input[type=range]::-ms-fill-upper {
        background: red;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles label {
        color: white;
        font-family: lato, sans-serif;
        font-size: 0.625em;
        position: absolute;
        bottom: -14px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .bg-vol {
        /* background: var(--color-celeste); */
        /* width: 50%; */
        /* height: 3px; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute {
        width: 1.5625em;
        height: 1.5625em;
        cursor: pointer;
        display: inline-flex;
        margin-right: 5px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute:hover {
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        transition: all .3s ease-in-out;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.on-mute {
        background: url(/podcast/imag/custom/botones_player/barra_volumen/btn_vol.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.on-mute:hover {
        background: url(/podcast/imag/custom/botones_player/hover/btn_vol_white.svg) no-repeat center;
        background-size: 65%;
        /* transform: scale(1.25); */
        /* -webkit-transform: scale(1.25); */
        /* transition: transform .3s ease-in-out; */
        /* -webkit-transition: transform .3s ease-in-out; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.off-mute {
        background: url(/podcast/imag/custom/botones_player/barra_volumen/btn_vol_pausado.svg) no-repeat center;
        background-size: contain;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.off-mute:hover {
        background: url(/podcast/imag/custom/botones_player/hover/btn_vol_pausado_white.svg) no-repeat center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.vacio {
        background: url(/podcast/imag/custom/botones_player/barra_volumen/btn_vol_pausado.svg) no-repeat center;
        background-size: contain;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.vacio:hover {
        background: url(/podcast/imag/custom/botones_player/hover/btn_vol_pausado_white.svg) no-repeat center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.mitad {
        background: url(/podcast/imag/custom/botones_player/barra_volumen/btn_vol_mitad.svg) no-repeat center;
        background-size: contain;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.mitad:hover {
        background: url(/podcast/imag/custom/botones_player/hover/btn_vol_mitad_white.svg) no-repeat center;
        background-size: contain;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.completo {
        background: url(/podcast/imag/custom/botones_player/barra_volumen/btn_vol.svg) no-repeat center;
        background-size: contain;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-mute.completo:hover {
        background: url(/podcast/imag/custom/botones_player/hover/btn_vol_white.svg) no-repeat center;
        background-size: contain;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .cont-btn-download {
        cursor: pointer;
        display: inline-flex;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .cont-btn-download .btn-download {
        background: url(/podcast/imag/custom/botones_player/btn_download.svg) no-repeat center;
        background-size: contain;
        height: 1.5625em;
        width: 1.5625em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .box-controles .btn-compartir {
        width: 1.5625em;
        height: 1.5625em;
        cursor: pointer;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast {
        position: relative;
        display: inline-grid;
        grid-gap: 15px;
        width: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        top: -5px;
        background: rgba(40, 107, 107, 0.44);
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .opacidad-player {
        background: rgba(3, 40, 60, 0.5);
        height: 100vh;
        /* width: 37.5em; */
        width: 115%;
        top: 0;
        left: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, 0%);
        z-index: -1;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .cont-info .opacidad-cont-info {
        position: fixed;
        left: 0;
        width: 42.7%;
        height: 290px;
        background: rgba(0, 0, 0, 0.5);
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .titular-programa-on {
        width: 100%;
        position: relative;
        display: inline-flex;
        justify-content: space-between;
        flex-direction: row;
        min-height: 50px;
        align-items: start;
        border-bottom: 1px solid #88888830;
        margin-top: 10px;
        padding-bottom: 10px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .titular-programa-on .txt-titular-on {
        display: inline-flex;
        width: 85%;
        color: var(--color-celeste);
        font-size: 1.4375em;
        /* font-weight: bold; */
        justify-self: start;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .titular-programa-on .icon {
        width: 30px;
        height: 30px;
        order: 1;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .titular-programa-on .icon.descargar-podcast {
        background: url(/podcast/imag/custom/botones_player/hover/btn_download_white.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .titular-programa-on .icon.descargar-podcast:hover {
        background: url(/podcast/imag/custom/botones_player/btn_download.svg)no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on {
        /* max-height: 50px; */
        /* margin-right: 0; */
        /* overflow: hidden; */
        position: relative;
        padding-bottom: 40px;
        display: inline-grid;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on.nueva-altura {
        max-height: 99999px !important;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .icon-down {
        display: inline-grid;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .icon-down .cont-btn-download {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on.activar-acerca {
        background: darkblue;
        min-height: 100px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on .txt-bajada-on {
        color: #fff;
        font-size: 1em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on .btn-ver-mas {
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        display: grid;
        justify-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on .btn-ver-mas.default {
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on .btn-ver-mas .enlace-ver-mas {
        color: #fff;
        width: 100%;
        text-align: right;
        font-size: 0.7em;
        background: #ffffff00;
        text-transform: uppercase;
        padding: 0px 0;
        border-bottom: 1px solid #091f39;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .bajada-programa-on .btn-ver-mas .enlace-ver-mas:hover {
        background: #000;
        color: #5affff;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .btn-ver-mas p {
        color: var(--color-cyan);
        font-size: 1.25em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .fecha-programa-on {
        display: inline-grid;
        align-items: center;
        justify-items: end;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .fecha-programa-on .txt-fecha-on {
        color: #5affff;
        font-size: 1em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-fecha {
        display: inline-grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        justify-items: right;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .icon-down .cont-btn-download {
        display: inline-grid;
        justify-self: end;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .icon-down .cont-btn-download.btn-download {
        background: url(/podcast/imag/custom/botones_player/btn_download.svg) no-repeat center;
        background-size: contain;
        height: 35px;
        width: 35px;
        cursor: pointer;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .icon-down .cont-btn-download.btn-download:hover {
        background: url(/podcast/imag/custom/botones_player/hover/btn_download_white.svg) no-repeat center;
        background-size: contain;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-fecha .contenido-redes-sociales {
        display: inline-grid;
        grid-template-columns: repeat(2, 40px);
        grid-gap: 0px 10px;
        /* background: darkgreen; */
        /* margin-left: 45px; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-fecha .contenido-redes-sociales .icon {
        width: 36px;
        height: 36px;
        cursor: pointer;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-fecha .contenido-redes-sociales .face {
        background: url(/podcast/imag/custom/redes_sociales/colores/facebook.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales .face:hover {
        background: url(/podcast/imag/custom/redes_sociales/hover/facebook-white.svg) no-repeat center;
        background-size: 100%;
        transform: scale(1.25);
        -webkit-transform: scale(1.25);
        transition: transform .3s ease-in-out;
        -webkit-transition: transform .3s ease-in-out;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales .twitter {
        background: url(/podcast/imag/custom/redes_sociales/colores/twitter.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales .twitter:hover {
        background: url(/podcast/imag/custom/redes_sociales/hover/twitter-white.svg) no-repeat center;
        background-size: 100%;
        transform: scale(1.25);
        -webkit-transform: scale(1.25);
        transition: transform .3s ease-in-out;
        -webkit-transition: transform .3s ease-in-out;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-podcast .contenido-redes-sociales .wsp {
        display: none;
    }

    /* LISTADO PLAYLIST */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas {
        display: inline-flex;
        width: 100%;
        flex: 2;
        margin: 0 0 0 60px;
        overflow: hidden;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist {
        max-width: 800px;
        /* background: red; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes {
        width: 100%;
        display: inline-flex;
        z-index: 1;
        padding: 10px 0;
        justify-content: space-between;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .nombre-programa {
        display: inline-flex;
        position: relative;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .nombre-programa:before {
        content: "";
        width: 100px;
        height: 3px;
        background: #ffffff;
        position: absolute;
        top: -10px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .nombre-programa p {
        color: #fff;
        font-size: 1.5em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .nombre-programa p strong {
        font-weight: bold;
    }

    /* REDES PROGRAMA */
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .contenido-redes-music {
        width: 100%;
        display: inline-grid;
        grid-template-columns: repeat(3, 40px);
        justify-content: end;
        grid-gap: 0 15px;
        /* background: darkcyan; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .contenido-redes-music .icon {
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .contenido-redes-music .red-spotify {
        background: url(/podcast/imag/custom/redes_sociales/colores/spotify.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .contenido-redes-music .red-spotify:hover {
        transform: scale(1.25);
        transition: all .3s ease;
        -webkit-transform: scale(1.25);
        /* background: url(/podcast/imag/custom/redes_sociales/hover/spotify-white.svg) no-repeat center; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .contenido-redes-music .red-itunes {
        background: url(/podcast/imag/custom/redes_sociales/colores/itunes.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .contenido-redes-music .red-itunes:hover {
        transform: scale(1.25);
        -webkit-transform: scale(1.25);
        transition: all .3s ease-in-out;
        /* background: url(/podcast/imag/custom/redes_sociales/hover/rss-white.svg) no-repeat center; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .contenido-redes-music .red-rss {
        background: url(/podcast/imag/custom/redes_sociales/colores/instagram.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .contenido-redes-music .red-rss:hover {
        transform: scale(1.25);
        -webkit-transform: scale(1.25);
        transition: all .3s ease-in-out;
    }

    /** REDES SIGUENOS **/
    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir {
        display: inline-flex;
        justify-content: space-between;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir .cont-siguenos {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        margin-right: 37px;
        text-transform: uppercase;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir .cont-siguenos p {
        color: #a7a7a7;
        font-size: .8em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul:after {
        clear: both;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul li {
        display: inline-grid;
        justify-items: center;
        position: relative;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul li:last-child {
        margin-left: 15px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul::before {
        content: '';
        position: absolute;
        width: 1px;
        height: 80%;
        background: #808080;
        left: -24%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul li a {
        display: grid;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul li a.icon {
        width: 30px;
        height: 30px;
        display: inline-block;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul li a.icon.twitter {
        background: url(/podcast/imag/custom/redes_sociales/colores/twitter.svg) no-repeat center;
        background-size: cover;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul li a.icon.face {
        background: url(/podcast/imag/custom/redes_sociales/colores/facebook.svg) no-repeat center;
        background-size: cover;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist .box-programa-redes .contenido-compartir ul li:last-child a {
        display: grid;
        justify-items: center;
        align-items: center;
        background: url(/podcast/imag/custom/iconos/cerrar/cerrar_celeste.svg) no-repeat center;
        background-size: 100%;
        height: 30px;
        width: 30px;
        /* border-radius: 100%; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios {
        display: inline-flex;
        flex-flow: column nowrap;
        margin-bottom: 80px;
        width: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist {
        cursor: pointer;
        display: inline-flex;
        flex-flow: column;
        align-self: stretch;
        background: #03283c;
        width: 100%;
        padding: 0 0 10px 1px;
        margin: 20px 0;
        position: relative;
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido {
        display: flex;
        flex-direction: row;
        padding: 10px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist:hover {
        background: #00385f;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist:hover .box-img-playlist .img-playlist .icon-play {
        background: url(/podcast/imag/custom/redes_sociales/hover/btn_play_white.svg) no-repeat center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist:hover .box-img-playlist .img-playlist {
        border: 3px solid white;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .btn-social {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .box-img-playlist {
        display: inline-flex;
        align-items: baseline;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .box-img-playlist .img-playlist {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 6.375em;
        height: 6.375em;
        position: relative;
        border: 3px solid #5affff;
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .box-img-playlist .img-playlist .icon-play {
        width: 50px;
        height: 50px;
        background: url(/podcast/imag/custom/botones_player/btn_play.svg)no-repeat center;
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .box-img-playlist .img-playlist .icon-play:before {
        content: attr(data-content);
        width: 100%;
        position: absolute;
        top: 42%;
        background: #021522a1;
        left: 0;
        text-align: center;
        font-weight: bold;
        color: #ffffff;
        font-size: 1em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .box-img-playlist .img-playlist .icon-play:hover[data-content]:before {
        transform: none;
        -webkit-transform: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .box-img-playlist .img-playlist .icon-reproduciendo {
        display: none;
        position: absolute;
        background: url(https://www.alairelibre.cl/noticias/imag/deportes/global/ico-refresh.svg) no-repeat center;
        background-size: cover;
        width: 35px;
        height: 35px;
        bottom: 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .box-img-playlist .img-playlist .icon-reproduciendo.icon-estado {
        display: block;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li {
        display: inline-flex;
        flex-direction: column;
        margin-left: 30px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .titular-playlist {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .titular-playlist .icon-audifonos {
        background: url(/podcast/imag/custom/iconos/audifonos.svg) no-repeat;
        background-size: 100%;
        width: 45px;
        height: 45px;
        margin-right: 30px;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .titular-playlist .icon-audifonos::before {
        content: '';
        position: absolute;
        height: 100%;
        width: 2px;
        background: white;
        right: -15px;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        top: 50%;
        visibility: hidden;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .titular-playlist .titulo-playlist {
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .titular-playlist .titulo-playlist .txt-titulo-playlist {
        color: #5affff;
        font-size: 1.275em;
        border-bottom: 1px solid #88888830;
        padding-bottom: 10px;
        /* font-weight: bold; */
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .fecha-playlist {
        display: inline-flex;
        margin: 15px 0;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .fecha-playlist .txt-fecha-playlist {
        color: #5affff;
        font-size: 1em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .bajada-playlist {
        display: inline-flex;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .bajada-playlist .txt-bajada-playlist {
        color: #fff;
        font-size: 1em;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-playlist-li .box-redes-fecha {
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha {
        display: inline-flex;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha .contenido-redes-sociales {
        display: flex;
        padding-right: 5px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha .contenido-redes-sociales .icon {
        width: 30px;
        height: 30px;
        display: inline-flex;
        margin: 0 5px;
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha .contenido-redes-sociales .face {
        background: url(/podcast/imag/custom/redes_sociales/colores/facebook.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha .contenido-redes-sociales .face:hover {
        background: url(/podcast/imag/custom/redes_sociales/hover/facebook-white.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha .contenido-redes-sociales .twitter {
        background: url(/podcast/imag/custom/redes_sociales/colores/twitter.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha .contenido-redes-sociales .twitter:hover {
        background: url(/podcast/imag/custom/redes_sociales/hover/twitter-white.svg) no-repeat center;
        background-size: 100%;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha .contenido-redes-sociales .wsp {
        background: var(--logo-wsp) no-repeat;
        background-size: 100%;
        display: none;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha .fecha-playlist {
        display: none;
        justify-items: end;
        align-items: center;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist ul.listado-audios li.playlist .contenido-redes-fecha .fecha-playlist .txt-fecha-playlist {
        color: #fff;
        font-size: 0.773125em;
        font-weight: bold;
        padding-right: 10px;
    }

    .m_path-distribucion {
        display: none
    }

    .path-distribucion {
        color: #b7b7b7;
        position: relative;
        top: -6px;
        width: 220px;
        border-top: 1px solid #6d6d6d8c;
    }

    .path-distribucion a {
        color: #969696;
        position: relative;
        top: 5px;
        margin-left: 5px;
    }

    .path-distribucion span.img-distribucion-itu {
        width: 20px;
        height: 20px;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/itunes.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }

    .path-distribucion span.img-distribucion-spo {
        width: 20px;
        height: 20px;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/spotify.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }

    .path-distribucion span.img-distribucion-google {
        width: 20px;
        height: 20px;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/google_podcast.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }
      .path-distribucion span.img-distribucion-ymusic {
        width: 20px;
        height: 20px;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/ymusic.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }

    .path-distribucion span.img-distribucion-amazonmusic {
        width: 20px;
        height: 20px;
        display: inline-block;
        background: url(https://cooperativapodcast.cl/podcast/imag/custom/redes_sociales/colores/amazon.svg)no-repeat center;
        background-size: cover;
        opacity: .8;
    }

    .path-distribucion span.img-distribucion-spo:hover,.path-distribucion span.img-distribucion-itu:hover,.path-distribucion span.img-distribucion-google:hover,.path-distribucion span.img-distribucion-ymusic:hover,.path-distribucion span.img-distribucion-amazonmusic:hover {
        opacity: 1
    }
}

@media only screen and (max-width: 1366px) and (min-width: 768px) {
    .contenedor {
        max-width: 1000px;
        font-size: 12px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-playlist-ondas .contenido-playlist {
        max-width: 600px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .contenido-reproductor {
        max-width: 1000px;
    }

    .contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player .box-img-player .capa-player .box-reproductor.player-pegajoso .reproductor-audios .box-botones .btn-play .icon {
        /* background-size: 70%; */
    }
}

.bg-cargando {
    -webkit-animation-name: cargando;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-name: cargando;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-play-state: running;
    background-color: #03283c;
}

@-webkit-keyframes cargando {
    0% {
        background: linear-gradient(to right,#034159e3,rgba(3, 40, 60, 0.96));
    }

    50.0% {
        background: white;
    }

    100.0% {
        background: linear-gradient(to left,#034159e3,rgba(3, 40, 60, 0.96));
    }
}

@keyframes cargando {
    0% {
        background: linear-gradient(to right,#034159e3,rgba(3, 40, 60, 0.96));
    }

    50.0% {
        background-color: white;
    }

    100.0% {
        background: linear-gradient(to left,#034159e3,rgba(3, 40, 60, 0.96));
    }
}

.bg-cargando-borde {
    -webkit-animation-name: cargando-b;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-name: cargando-b;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-play-state: running;
    border: 3px solid #03283c;
}

@-webkit-keyframes cargando-b {
    0% {
        border: 3px solid #5affff;
    }

    50.0% {
        border: 3px solid #03283c;
    }

    100.0% {
        border: 3px solid #5affff;
    }
}

@keyframes cargando-b {
    0% {
        border: 3px solid #5affff;
    }

    50.0% {
        border: 3px solid #03283c;
    }

    100.0% {
        border: 3px solid #5affff;
    }
}




.barra_saltar_button {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}
/* .contControlsVideo-inread, .contControlsVideo-home-stiky, .contControlsVideo-robapagina {
    width: 100% !important;
    top: 0px !important;
    background: #031e2f !important;
    font-family: 'Open Sans', sans-serif;
 } */
 .contGlobalaudio .ima-audio, .contGlobalvideo .ima-video {
    position: relative;
    top: 100px;
    width: 100% !important;
    display: flex!important;
    align-content: center;
    justify-content: center;
    align-items: flex-start; }

     .contGlobalvideo{width: 98% !important;
    height: 98% !important;
    position: absolute;
    margin-top: 4px;
    margin-left: 4px;
    z-index: 2;
    background: black;
}
.contenedor .contenido-multimedia .contenido-cuerpo section.contenido-player-ondas .contenido-player {
    position: relative;
    display: inline-grid;
}

.contGlobalaudio .contControls-audio, .contGlobalvideo .contControls-video :before {
    content: "PUBLICIDAD POR";
    width: 130px;
    height: 32px;
    background-image: url(/podcast/imag/fav.png) !important;
    background-position: center;
    background-size: 26px;
    position: absolute;
    padding: 0px 0 0 0px;
    top: 2px;
    line-height: 2.5;
    background-repeat: no-repeat;
    background-position-y: 2px;
    background-position-x: 5px;
    color: #aeaeae;
    text-indent: 35px;
       font-family: 'Open Sans', sans-serif;
    font-size: 8px;
    font-weight: bold;
}
.contControls-audio .buttonAudio-audio, .contControls-video .buttonAudio-video {
    background-color: #021522 !important;

 
}
.contControls-audio .buttonMute-audio, .contControls-video .buttonMute-video {
    background-color: #021522 !important;
}


.txt-publicidad {   display: none;   color: #aaaaaa;
    background: #021522;
    position: absolute;
    top: 0px;
    left: 0;
    height: 30px;
    width: 100%;
    text-align: center;
    line-height: 2.2;
    font-size: 11px;z-index: 99999;}


.txt-publicidad p{ display: none;     color: #aaaaaa;
    background: #021522;
    position: absolute;
    top: 0px;
    left: 0;
    height: 30px;
    width: 100%;
    text-align: center;
    line-height: 2.2;
    font-size: 11px;z-index: 99999;}

#boton-publicidad {
    display: none;
    padding: 10px 20px;
    background-color: #5affff !important;
    color: #021522 !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin: auto;
    z-index: 99999 !important;
}

/* .contControls-audio{
    width: 100% !important;
    top: 0px !important;
    background: #031e2f !important;
    font-family: 'Open Sans', sans-serif;
} */


@media only screen and (max-width: 767px) {
.contGlobalaudio, .contGlobalvideo {
    width: 93% !important;
    height: 93% !important;
    left: 2%;
}
.bajada-playlist .txt-bajada-playlist{font-size: .65em}
}

/* Capa oscura */
#loading-overlay {
    display: none; /* Oculto inicialmente */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente */
    z-index: 9999; /* Para que estÃ© por encima de otros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner (Ã­cono de carga) */
.loading-spinner {
    border: 8px solid #00BCD4; /* Borde semi-transparente */
    border-top: 8px solid #010a11; /* Borde superior blanco para el efecto de rotaciÃ³n */
    border-radius: 50%; /* Hace que el div sea circular */
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite; /* AnimaciÃ³n de rotaciÃ³n */
}

/* AnimaciÃ³n de rotaciÃ³n */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}</pre></body></html>