/*
    hojas de estilos extra-iniciales
*/
@import url(normalize.css);
@import url(tipografias.css);
@import url(herramientas.css);
@import url(range.css);
/*
    animaciones
*/
@-webkit-keyframes enrotacion {
    0% { -webkit-transform: rotate(-90deg); }
    100% { -webkit-transform: rotate(270deg); }
}
@keyframes enrotacion {
    0% { transform: rotate(-90deg); }
    100% { transform: rotate(270deg); }
}
@-webkit-keyframes recorrer {
    from { -webkit-transform: translateX(0%); } to { -webkit-transform: translateX(-50%); }
}
@keyframes recorrer {
    from { transform: translateX(0%); } to { transform: translateX(-50%); }
}
@-webkit-keyframes caminar {
    from { background-position: 0px 0px; }
    to { background-position: 8px 0px; }
}
@keyframes caminar {
    from { background-position: 0px 0px; }
    to { background-position: 8px 0px; }
}
@-webkit-keyframes gravitar {
    25% { -webkit-transform: translateY(-1%) rotate(1.8deg); }
    50% { -webkit-transform: translateY(0%) rotate(0deg); }
    75% { -webkit-transform: translateY(1%) rotate(-1.8deg); }
}
@keyframes gravitar {
    25% { transform: translateY(-1%) rotate(1.8deg); }
    50% { transform: translateY(0%) rotate(0deg); }
    75% { transform: translateY(1%) rotate(-1.8deg); }
}
/*
    globales
*/
*, *::before, *::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    min-height: 100%;
    height: 100%;
}
body {
    color: #fff;
    background: #000;
    font-family: 'BarlowRegular';
    font-size: 16pt;
    position: relative;
}
h1 {
    display: none;
}
b, strong, h2, h3, h4 {
    font-family: 'BarlowMedium';
    font-weight: normal;
}
h2, h2 * {
    font-size: 60pt;
    line-height: 100%;
    text-transform: uppercase;
}
h2 b {
    font-family: 'BarlowBold';
}
h3 {
    font-family: 'BarlowBold';
    font-size: 36pt;
}
a {
    color: currentColor;
    text-decoration: none;
}
input[type=range].slider::-moz-range-thumb {
    background: #fcee17;
}
input[type=range].slider::-webkit-slider-thumb {
    background: #fcee17;
}
[data-puesto] {
    position: relative;
}
[data-puesto]::after {
    content: attr(data-puesto);
    pointer-events: none;
    display: block;
    -webkit-background: linear-gradient(45deg, rgba(0,0,0,0) 50%, #ffdd00 51%);
    background: linear-gradient(45deg, rgba(0,0,0,0) 50%, #ffdd00 51%);
    color: #000;
    font-family: 'BarlowBold';
    font-size: 1.6rem;
    text-align: right;
    width: 4.8rem;
    height: 4.8rem;
    padding: 0.5rem 1rem 0 0;
    position: absolute;
    top: 0;
    right: 0;
}
[href^='mailto:'] span:not(:first-of-type)::before {
    content: '\0002E';
}
[href^='mailto:'] span:first-of-type::after {
    content: '\00040';
}
[onclick] { cursor: pointer; }
/*
    fxGalería
*/
.indice {
    display: block;
	text-align: center;
    margin: 0 auto;
	white-space: nowrap;
	overflow: hidden;
    position: absolute;
    left: 0; right: 0; bottom: 0; z-index: 2;
}
.indice > * {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    background: #000000;
    background: -webkit-radial-gradient(circle, #333 40%, transparent 45%);
    background: radial-gradient(circle, #333 40%, transparent 45%);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: relative;
}
.indice > .activo {
    background: #ff0000;
    background: -webkit-radial-gradient(circle, #ff0000 45%, transparent 50%);
    background: radial-gradient(circle, #ff0000 45%, transparent 50%);
}
.fAnterior, .fSiguiente {
    cursor: pointer;
    color: currentColor;
    font-family: monospace;
    font-size: 3.2rem;
    line-height: 100%;
    /* evitar linea punteada de enfocado */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: 0;
    /* evitar drag and drop */
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.fAnterior:active, .fSiguiente:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.fAnterior::before {
    content: '\02039';
}
.fSiguiente::before {
    content: '\0203A';
}
.fxGaleria {
    overflow: hidden;
    position: relative;
}
.fxGaleria > *:not(.indice):not(.fSiguiente):not(.fAnterior) {
    pointer-events: none;
    opacity: 0;
    position: absolute !important;
    top: 0; left: 0; right: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}
.fxGaleria > *:not(.indice):not(.fSiguiente):not(.fAnterior).activo {
    pointer-events: all;
    opacity: 1;
    position: relative !important;
}
/*
    _|º>º|_
*/
.icono::before {
    content: none;
    vertical-align: middle;
    font-family: 'FrontendIcons';
    font-size: 100%;
    line-height: 100%;
}
.icono.spin::before {
    content: '\0e831';
    display: inline-block;
    -webkit-animation: enrotacion 1s linear infinite;
    animation: enrotacion 1s linear infinite;
}
.icono.home::before {
    content: '\0e812';
}
.icono.menu::before {
    content: '\0e811';
}
.icono.facebook::before {
    content: '\0f09a';
}
.icono.twitter::before {
    content: '\0f099';
}
.icono.instagram::before {
    content: '\0f16d';
}
.icono.youtube::before {
    content: '\0f16a';
}
.icono.spotify::before {
    content: '\0f1bc';
}
.icono.cambio::before {
    content: '\0e813';
}
.icono.equis::before {
    content: '\0e809';
}
.icono.equisball::before {
    content: '\0e80a';
}
.icono.spinner::before {
    content: '\0e831';
}
.icono.avion::before {
    content: '\0f1d8';
}
.icono.minidelta.iquierda::before {
    content: '\0e80b';
}
.icono.minidelta.derecha::before {
    content: '\0e80c';
}
.icono.minidelta.abajo::before {
    content: '\0e80d';
}
.icono.delta.izquierda::before {
    content: '\0e810';
}
.icono.delta.derecha::before {
    content: '\0e80f';
}
.icono.delta.abajo::before {
    content: '\0e80e';
}
.icono.delta.arriba::before {
    content: '\0e80e';
    display: inline-block;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.icono.volumen.cero::before {
    content: '\0e800';
}
.icono.volumen.medio::before {
    content: '\0e801';
}
.icono.volumen.total::before {
    content: '\0e802';
}
.icono.corazon::before {
    content: '\0e803';
}
.icono.estrella::before {
    content: '\0e804';
}
.icono.play::before {
    content: '\0e805';
}
.icono.stop::before {
    content: '\0e806';
}
.icono.pause::before {
    content: '\0e807';
}
.icono.compartir::before {
    content: '\0e808';
}
.boton {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    background: none;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'BarlowBold';
    font-size: 10pt;
    line-height: 100%;
    letter-spacing: 1px;
    padding: 10px 26px;
    cursor: pointer;
    -webkit-transition: background 0.35s ease;
    transition: background 0.35s ease;
}
.boton:hover {
    color: rgba(0,0,0,0.65);
    background: #ffdd00;
    border-color: rgba(0,0,0,0);
}
.boton:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.video {
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.video::before {
    pointer-events: none;
    display: block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #b2b2b2;
    color: #fff;
    text-align: center;
    font-size: 24pt;
    line-height: 60px;
    width: 60px;
    height: 60px;
    margin: auto;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.video:focus::before, .video:hover::before {
    background: #ffdd00; /* 1a1a1a */
    -webkit-transform: translateY(-50%) scale(0.75);
    transform: translateY(-50%) scale(0.75);
}
.video > span {
    pointer-events: none;
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.66), rgba(0,0,0,0.33));
    background: linear-gradient(0deg, rgba(0,0,0,0.66), rgba(0,0,0,0.33));
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.01;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}
.video:focus > span, .video:hover > span {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.video > span span {
    color: #ffffff;
    text-align: left;
    white-space: normal;
    font-size: 14pt;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 0 10% 5% !important;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: perspective(300px) rotateX(90deg);
    transform: perspective(300px) rotateX(90deg);
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.video:focus > span span, .video:hover > span span {
    -webkit-transform: perspective(300px) rotateX(0deg);
    transform: perspective(300px) rotateX(0deg);
}
.video > span span b {
    font-size: 16pt;
    font-family: 'BarlowBold';
}
.album {
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.album::before {
    content: '\000A0';
    background: rgba(0,0,0,0.65);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    -webkit-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
}
.album::after {
    content: attr(data-titulo);
    border: 1px solid #fff;
    color: #fff;
    font-family: 'BarlowSemiBold';
    font-size: 15pt;
    line-height: 100%;
    text-align: center;
    white-space: normal;
    padding: 0.5em;
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}
.album:focus::before, .album:hover::before {
    opacity: 1;
}
.album:focus::after, .album:hover::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
[data-pie]::after {
    content: attr(data-pie);
    display: block;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.85);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.85);
    border: 1px solid #fff;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 1.8rem;
    line-height: 100%;
    text-align: center;
    padding: 1.2rem 1.6rem;
    position: absolute !important;
    left: 50%; bottom: 1rem;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.contenedor {
    position: relative;
}
/*
    encabezado de la página
*/
@-webkit-keyframes rotar_fondos_header_non {
    0%    { background-image: none; }
    37.5% { background-image: url(../pics/fondo_header_3.jpg); }
    87.5% { background-image: none; }
    100%  { background-image: none; }
}
@keyframes rotar_fondos_header_non {
    0%    { background-image: none; }
    37.5% { background-image: url(../pics/fondo_header_3.jpg); }
    87.5% { background-image: none; }
    100%  { background-image: none; }
}
@-webkit-keyframes rotar_fondos_header_par {
       0% { opacity: 0; }
    12.5% { opacity: 0; }
    25.0% { background-image: url(../pics/fondo_header_2.jpg); opacity: 1; }
    37.5% { opacity: 1; }
    50.0% { background-image: url(../pics/fondo_header_2.jpg); opacity: 0; }
    62.5% { background-image: url(../pics/fondo_header_4.jpg); opacity: 0; }
    75.0% { opacity: 1; }
    87.5% { opacity: 1; }
     100% { background-image: url(../pics/fondo_header_4.jpg); opacity: 0; }
}
@keyframes rotar_fondos_header_par {
       0% { opacity: 0; }
    12.5% { opacity: 0; }
    25.0% { background-image: url(../pics/fondo_header_2.jpg); opacity: 1; }
    37.5% { opacity: 1; }
    50.0% { background-image: url(../pics/fondo_header_2.jpg); opacity: 0; }
    62.5% { background-image: url(../pics/fondo_header_4.jpg); opacity: 0; }
    75.0% { opacity: 1; }
    87.5% { opacity: 1; }
     100% { background-image: url(../pics/fondo_header_4.jpg); opacity: 0; }
}
header::before, header::after {
    content: ' ';
    background-position: center center;
    background-repeat: none;
    background-size: cover;
    pointer-events: none;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /* la duración debe ser Nx4 */
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
header::before {
    -webkit-animation-name: rotar_fondos_header_non;
    animation-name: rotar_fondos_header_non;
    -webkit-animation-timing-function: steps(1);
    animation-timing-function: steps(1);
}
header::after {
    -webkit-animation-name: rotar_fondos_header_par;
    animation-name: rotar_fondos_header_par;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}
header {
    background: url(../pics/fondo_header_1.jpg) center center no-repeat;
    background-size: cover;
    min-height: 100%;
    height: 100%;
    position: relative;
}
header > div:first-of-type {
    position: absolute;
    top: 4.619225968%; left: 11.71875%; right: 11.71875%; bottom: 4.9937578%;
    z-index: 1;
}
header .icono[target] {
    display: block;
    float: right;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #000;
    background: #ffdd00;
    white-space: nowrap;
    text-align: center;
    font-size: 0;
    line-height: 0;
    width: 24px;
    height: 24px;
    margin-right: 1.836734694%;
    /*margin-bottom: 3.121098627%;*/
    overflow: hidden;
}
header .icono[target]::first-letter {
    font-size: 16px;
    line-height: 24px;
}
header [title^='cambi'] {
    float: right;
    display: block;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #ffdd00;
    color: #000;
    white-space: nowrap;
    text-align: center;
    font-family: 'BarlowMedium';
    font-size: 11pt;
    line-height: 24px;
    height: 24px;
    margin-right: 1.836734694%;
    overflow: hidden;
    z-index: 1;
}
header [title^='cambi']::before {
    content: '\000A0';
    display: inline-block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #000 url(../pics/exchange.svg) center center no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    margin: 1px;
}
header br {
    content: '';
    display: block;
    width: 100%;
    height: 3.453038674%;
    clear: both;
}
#menu {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    /**/
    text-align: right;
    margin: 0 1.836734694% 0 41.451265306%;
}
#menu :nth-child(n+1) {
    display: inline-block;
    vertical-align: top;
}
#menu :nth-child(-n+3) {
    display: none;
}
#menu span {
    background: #ff0000;
    width: 2px;
    height: 26px;
}
#menu :not(span) {
    font-size: 12pt;
    line-height: 26px;
    height: 36px;
    cursor: pointer;
    position: relative;
}
#menu :not(:first-child):not(span):hover, #sw_programacion:checked ~ * [for='sw_programacion'] {
    background: url(../pics/menu_detalle_hover.png) center bottom no-repeat;
}
#logotipo {
    display: block;
    background-image: url(../pics/logo_xal.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 28.469387664%;
    /*width: 50.306122288%;*/
    height: 31.767955801%;
    position: absolute;
    top: 0.552486188%; left: 6.54765%; /* left: 10.918367312%; left: 0;*/
}
#logotipo[data-estacion='cordoba'] {
    background-image: url(../pics/logo_cor.png);
}
#eslogan {
    display: block;
    background: url(../pics/eslogan.png) center center no-repeat;
    background-size: contain;
    width: 50.306122288%;
    height: 39.364640895%;
    position: absolute;
    top: 47.099447527%; left: 0; /*bottom: 13.8121547%;*/
}
#escuchanos_alaire_radio {
    background: rgba(0,0,0,0.5);
    max-width: -webkit-calc(49.693877712% - 20px);
    max-width: calc(49.693877712% - 20px);
    padding: 13px;
    position: absolute;
    top: 53.86740333%;
    right: 0.612244898%;
}
#escuchanos_alaire_radio label img, #radio > img {
    display: block;
    max-width: 365px;
    width: 100%;
    height: auto;
}
#escuchanos_alaire_radio label img:nth-child(2), #radio {
    margin-top: 10px;
    -webkit-box-shadow: 0 0 0 1px #ffdd00;
    box-shadow: 0 0 0 1px #ffdd00;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
#sw_radio:checked ~ a [src*='/alaire'], #sw_radio:not(:checked) ~ #radio {
    pointer-events: none;
}
#sw_radio:checked ~ a [src*='/alaire'] {
    -webkit-transform: perspective(800) rotateX(180deg);
    transform: perspective(800) rotateX(180deg);
}
#sw_radio:not(:checked) ~ #radio {
    -webkit-transform: perspective(800) rotateX(-180deg);
    transform: perspective(800) rotateX(-180deg);
}
#sw_radio:checked ~ #radio .cinta:empty::after {
    -webkit-animation: recorrer 9s linear infinite;
    animation: recorrer 9s linear infinite;
}
#radio {
    display: block;
    position: absolute;
    left: 13px; right: 13px; bottom: 13px;
}
#radio :not(img) {
    position: absolute;
}
#radio :nth-child(2) { top: 12.080536913%; left: 4.383561648%; } /* cinta */
#radio :nth-child(3) { top: 27.155875378%; left: 4.383561648%; } /* estado */
#radio :nth-child(4) { top: 38.92616846%; left: 36.985%; } /* botón stop */
#radio :nth-child(5) { top: 65.77186846%; left: 4.383561648%; } /* botón stop */
#radio :nth-child(6) {
    top: 65.77186846%;
    left: -webkit-calc(4.383561648% + 24px);
    left: calc(4.383561648% + 24px);
    right: -webkit-calc(26.03% + 24px);
    right: calc(26.03% + 24px);
} /* botón stop */
#radio :nth-child(7) { top: 65.77186846%; right: 26.03%; } /* botón stop */
#radio :nth-child(8) { right: 4.383561648%; top: 0%; } /* botón estación */
#radio :nth-child(9) { right: 4.383561648%; top: 33.333%; } /* botón estación */
#radio :nth-child(10) { right: 4.383561648%; top: 66.666%; } /* botón estación */
#radio .cinta {
    font-family: 'BarlowSemiBold';
    white-space: nowrap;
    width: 66.301369851%;
    overflow: hidden;
}
#radio .cinta:empty::before {
    content: attr(data-texto) attr(data-nom);
    color: rgba(0,0,0,0);
}
#radio .cinta:empty::after {
    content: attr(data-texto) attr(data-nom) '\000A0' attr(data-texto) attr(data-nom) '\000A0';
    position: absolute;
    top: 0; left: 0;
}
#radio .estado {
    font-size: 81.75%;
}
#radio .stop {
    cursor: pointer;
}
#radio .volumen {
    cursor: pointer;
}
#radio input {
    width: -webkit-calc(69.586438352% - 48px);
    width: calc(69.586438352% - 48px);
    margin-top: 10px;
}
#radio [data-radio] {
    display: block;
    height: 33.333%;
}
#radio [data-radio] img {
    pointer-events: none;
    display: block;
    background-image: url(../pics/minibotones_elpatron.png);
    background-repeat: no-repeat;
    background-size: auto 200%;
    width: auto;
    height: 100%;
}
#radio [data-radio][data-nom='104.9FM']:nth-last-child(4) img {
    background-position: 33.333% top;
}
#radio [data-radio][data-nom='104.9M']:nth-last-child(4):hover img {
    background-position: 33.333% bottom;
}
#radio [data-radio][data-nom='94.5FM']:nth-last-child(4) img {
    background-position: 66.666% top;
}
#radio [data-radio][data-nom='94.5FM']:nth-last-child(4):hover img {
    background-position: 66.666% bottom;
}
#radio [data-radio]:nth-last-child(3) img {
    background-position: 99.999% top;
}
#radio [data-radio]:nth-last-child(3):hover img {
    background-position: 99.999% bottom;
}
#radio [data-radio]:nth-last-child(2) img {
    background-position: 0% top;
}
#radio [data-radio]:nth-last-child(2):hover img {
    background-position: 0% bottom;
}
#sw_programacion:not(:checked) ~ #programacion {
    pointer-events: none;
    visibility: hidden;
    z-index: -1;
}
#programacion {
    background: rgba(0,0,0,0.95);
    border: 1px solid #ffdd00;
    position: absolute;
    -webkit-top: calc(8.072264642% + 72px);
    top: calc(8.072264642% + 72px); right: 11.71875%; bottom: 5%;
    z-index: 2;
}
#programacion div {
    color: #fff;
    min-height: 100%;
    height: 100%;
    padding: 24px 30px;
    overflow: hidden;
}
#programacion span {
    display: block;
    background: #1a1a1a;
    width: 12px;
    position: absolute;
    top: 0; right: 0; bottom: 0;
}
#programacion > span > span {
    cursor: pointer;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: #3a3a3a;
    border: 3px solid #1a1a1a;
}
#programacion > span > span:active {
    background: #ff0000;
}
#programacion table {
    display: block;
    font-size: 12pt;
    text-align: left;
}
#programacion caption:not(:empty) {
    text-align: left;
    padding-bottom: 20px;
}
#programacion tr:not(:last-child) {
    border-bottom: 1px solid #ff0000;
}
#programacion td {
    vertical-align: top;
    padding: 5px 0 6px;
}
#programacion td:first-child {
    color: #ffdd00;
    padding-right: 10px;
}
#programacion td:first-child, #programacion td:last-child::first-line {
    font-family: 'BarlowCondensedBold';
}
#programacion td:last-child {
    font-family: 'BarlowCondensedLight';
}
header span.icono.delta {
    display: block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    background: #000;
    border: 2px solid #fff;
    text-align: center;
    font-size: 18pt;
    line-height: 36px;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    cursor: pointer;
}
/* cuerpo de la página */
main {
    display: block;
    border-top: 6px solid #1a1a1a;
    min-height: 100%;
    position: relative;
}
#programas {
    padding: 0 11.71875%;
}
#programas .contenedor {
    overflow: visible;
}
#programas .contenedor::after {
    content: ' ';
    display: block;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0,0,0,1), rgba(0,0,0,0) 16%, rgba(0,0,0,0) 84%, rgba(0,0,0,1));
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
}
#programas img {
    display: block;
    width: 100%;
    height: auto;
}
#programas .indice {
    bottom: 30px;
}
#programas .fAnterior, #programas .fSiguiente {
    text-align: center;
    font-size: 64pt;
    height: 64pt;
    margin: auto 0;
    position: absolute;
    top: 0; bottom: 0;
}
#programas .fAnterior {
    right: 100%;
    margin-right: 5%;
}
#programas .fSiguiente {
    left: 100%;
    margin-left: 5%;
}
#noticias {
    background: url(../pics/fondo_lomashot.jpg) center top no-repeat;
    background-size: 100% auto;
    padding: 50px 6.875% 56px;
}
#noticias h2 {
    padding: 0 9.420289855%;
    margin-bottom: 62px;
}
#noticias h2 img {
    display: block;
}
#noticias [role='feed'] {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    width: 75.815217391%;
    float: left;
}
#noticias [role='feed'] > span {
    display: block;
    text-align: center;
    width: 100%;
    padding-top: 5px;
}
#noticias .boton {
    margin: 20px 0;
    position: relative;
}
.caramelo {
    background: -webkit-linear-gradient(315deg, #ff0000 11.5%, #000 13.5%, #000 36.5%, #ff0000 38.5%, #ff0000 61.5%, #000 63.5%, #000 86.5%, #ff0000 88.5%);
    background: linear-gradient(135deg, #ff0000 11.5%, #000 13.5%, #000 36.5%, #ff0000 38.5%, #ff0000 61.5%, #000 63.5%, #000 86.5%, #ff0000 88.5%);
    background-position: 0rem center;
    background-repeat: repeat-x;
    background-size: 8px 8px;
    -webkit-animation: caminar 0.5s linear infinite;
    animation: caminar 0.5s linear infinite;
}
.caramelo .boton {
    opacity: 0;
}
.apagado .boton {
    pointer-events: none;
    opacity: 0.25;
}
.noticia {
    -webkit-flex: 0 1 24.4026%;
    flex: 0 1 24.4026%;
    display: block;
    background: #333;
    text-align: center;
    width: 24.4026%;
    margin: 0 0.597371565% 16px 0;
    -webkit-transition: background 0.35s ease;
    transition: background 0.35s ease;
}
.noticia:hover {
    background: #ff0000;
}
.noticia img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.noticia strong, .noticia p {
    display: block;
    margin: 0 11.750319689% 20px;
}
.noticia strong {
    color: #ffdd00;
    font-size: 16pt;
    -webkit-transition: color 0.35s ease;
    transition: color 0.35s ease;
}
.noticia:hover strong {
    color: #000;
}
.noticia p {
    font-size: 12pt;
}
.noticia:hover .boton {
    color: rgba(0,0,0,0.65);
    background: #ffdd00;
}
#locutores {
    background-image: url(../pics/fondo_locutores_sup.png), url(../pics/fondo_locutores_inf.jpg);
    background-position: left top, right bottom;
    background-size: 50% auto, 100% auto;
    background-repeat: no-repeat;
    padding: 85px 7.3438% 72px 8.28125%;
}
#locutores h2 {
    padding: 0 17.790262172% 20px;
}
#locutores h2 + span {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
#locutores h2 + span > * {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: relative;
}
#locutores h2 + span > [for] {
  background: #000000;
  background: -webkit-radial-gradient(circle, #333 40%, transparent 45%);
  background: radial-gradient(circle, #333 40%, transparent 45%);
}
#locutores h2 + span > span {
    background: #ff0000;
    background: -webkit-radial-gradient(circle, #ff0000 45%, transparent 50%);
    background: radial-gradient(circle, #ff0000 45%, transparent 50%);
}
#locutores .contenedor > div {
    display: block;
    width: 23.689138574%;
    margin: 0 1.310861426% 19px 0;
    overflow: visible;
    position: relative;
    float: left;
}
#locutores :not(h2) img {
    display: block;
    width: 100%;
    height: auto;
}
#locutores blockquote {
    pointer-events: none;
    -webkit-box-shadow: 0 0 0 3px #ff0000 inset;
    box-shadow: 0 0 0 3px #ff0000 inset;
    background: -webkit-linear-gradient(0deg, transparent 16%, #ff0000 16%, #ff0000 84%, transparent 84%), -webkit-linear-gradient(90deg, rgba(255,221,0,0.75), rgba(255,221,0,0.75));
    background: linear-gradient(90deg, transparent 16%, #ff0000 16%, #ff0000 84%, transparent 84%), linear-gradient(0deg, rgba(255,221,0,0.75), rgba(255,221,0,0.75));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 3px, 100% 100%;
    color: #000;
    text-align: center;
    overflow: hidden;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.01;
}
#locutores blockquote b {
    display: block;
    text-transform: uppercase;
    font-family: 'BarlowBold';
    font-size: 18pt;
    padding-bottom: 3px;
    position: absolute;
    left: 5pt; right: 5pt; bottom: 50%;
    opacity: 0.01;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: scale(0);
    transform: scale(0);
}
#locutores blockquote i {
    display: block;
    font-size: 11pt;
    font-style: normal;
    padding-top: 6px;
    position: absolute;
    top: 50%; left: 9pt; right: 9pt;
    opacity: 0.01;
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: scale(0);
    transform: scale(0);
}
#locutores .contenedor div :not(img) {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
#locutores .contenedor div:hover :not(img) {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
#sw_locutoresdjs:not(:checked) ~ :nth-of-type(2),
#sw_locutoresdjs:checked ~ :nth-of-type(1) {
  display: none;
}
#las12 {
    background: url(../pics/fondo_las12.jpg) right top no-repeat;
    background-size: 100% auto;
    padding: 85px 7.3438% 72px 8.28125%;
    overflow: hidden;
    position: relative;
}
#las12 h2 {
    padding: 0 17.790262172% 48px;
}
#las12 h2 img {
    display: block;
}
#las12 h2 + span {
    display: block;
    overflow: visible;
    position: relative;
}
#las12 h2 + span::before, #las12 h2 + span::after {
    content: '\000A0';
    display: block;
    background: #ff0000;
    width: 11%;
    height: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0; bottom: 0;
}
#las12 h2 + span::before {
    right: 99%;
}
#las12 h2 + span::after {
    left: 99%;
}
#las12 .contenedor {
    background: #ff0000;
    white-space: nowrap;
    padding: 22px 0 20px;
    overflow: hidden;
}
#las12 .contenedor::before {
    content: '\000A0';
    background: #ff0000;
    width: 10%;
    position: absolute;
    top: 0; right: 100%; bottom: 0;
}
#las12 .contenedor > * {
    display: inline-block;
    width: 23.689138574%;
    margin: 0 1.310861426% 0 0;
    overflow: hidden;
    position: relative;
}
#las12 .contenedor img {
    display: block;
    width: 100%;
    height: auto;
}
#las12 .indice {
    background: #000;
    padding: 21px 0 27px;
}
#las12 .indice span:not(:first-child):not(:nth-child(4n+1)) {
    display: none;
}
#las12 .video::before {
    background: #000;
}
#las12 .video:focus::before, #las12 .video:hover::before {
    background: #ff0000;
}
#VG {
    margin: 85px 8.28125%;
    position: relative;
}
#VG::before {
    content: '\000A0';
    display: block;
    background: #333;
    width: 1px;
    height: inherit;
    margin: 0 auto;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
}
#VG > div {
    vertical-align: top;
    width: 50%;
    position: relative;
}
#VG > div:nth-child(odd) {
    float: left;
}
#VG > div:nth-child(even) {
    float: right;
}
#VG h2 {
    background: #000;
    margin-bottom: 52px;
}
#VG h2 img {
    display: block;
}
#VG .contenedor {
    height: 351px;
    overflow: hidden;
}
#VG .contenedor a {
    float: left;
    display: inline-block;
    width: 46.582397004%;
    overflow: hidden;
    position: relative;
}
#VG .contenedor img {
    display: block;
    width: 100%;
    height: auto;
}
#VG .indice {
    top: -webkit-calc(100% + 21px);
    top: calc(100% + 21px); bottom: inherit;
}
#VG .indice span:not(:first-child):not(:nth-child(4n+1)) {
    display: none;
}
#videos h2 {
    padding: 0 0 0 6.3682%;
}
#galerias h2 {
    padding: 0 0 0 10.58245%;
}
#galerias .indice > .activo {
    background: #ffdd00;
    background: -webkit-radial-gradient(circle, #ffdd00 45%, transparent 50%);
    background: radial-gradient(circle, #ffdd00 45%, transparent 50%);
}
#videos a:nth-child(odd) {
    margin: 0 2.6222% 22px 0;
}
#videos a:nth-child(even) {
    margin: 0 4.21425% 22px 0;
}
#galerias a:nth-child(even) {
    margin: 0 0 22px 2.6222%;
}
#galerias a:nth-child(odd) {
    margin: 0 0 22px 4.21425%;
}
#videos .video::before {
    background: #ff0000;
}
#videos .video:focus::before, #videos .video:hover::before {
    background: #ffdd00;
}
#contacto {
    background: url(../pics/fondo_contacto.jpg) center bottom repeat-x;
    background-size: auto 100%;
    padding: 66px 11.71875% 102px;
}
#contacto .contenedor::before {
    content: '\000A0';
    display: block;
    background: #333;
    width: 1px;
    height: inherit;
    margin: 0 auto;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
#contacto .contenedor {
    display: block;
    background: -webkit-linear-gradient(0deg, transparent 52.96%, rgba(0,0,0,0.75) 52.96%, rgba(0,0,0,0.75) 97.65%, transparent 97.65%);
    background: linear-gradient(90deg, transparent 52.96%, rgba(0,0,0,0.75) 52.96%, rgba(0,0,0,0.75) 97.65%, transparent 97.65%);
    position: relative;
}
#contacto .contenedor > div {
    vertical-align: top;
    width: 50%;
    height: 100%;
    min-height: 100%;
}
#contacto .contenedor > div:nth-child(2) {
    padding: 46px 5.102% 0;
    position: relative;
}
#contacto .contenedor > div:nth-child(1) {
    padding: 46px 5.306% 0;
    float: right;
    /**/
    display: flex;
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
#contacto form.enviando {
    pointer-events: none;
    opacity: 0.1;
}
#contacto form.enviando + div {
    text-align: center;
    min-width: 12.8rem;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#contacto .avion {
    font-size: 6.4rem;
    line-height: 12.8rem;
    display: inline-block;
    -webkit-animation: gravitar 1s linear infinite;
    animation: gravitar 1s linear infinite;
}
#contacto svg {
    margin: auto;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    -webkit-animation: enrotacion 1s linear infinite;
    animation: enrotacion 1s linear infinite;
}
#contacto label {
    display: block;
	font-family: 'BarlowBold';
}
#contacto [name] {
    display: block;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.85);
    font-family: 'BarlowMedium';
    line-height: 35px;
    min-height: 37px;
    width: 100%;
    padding: 0 0.714285712%;
    margin-top: 8px;
}
#contacto label:last-of-type {
    height: 47.708894883%;
}
#contacto [type='submit'] {
    border: 1px solid #fff;
    background: #ffdd00;
    color: #000;
    position: absolute;
    top: -webkit-calc(100% + 22px);
    top: calc(100% + 22px); left: 10.204%;
}
#contacto [type='submit']:hover {
    background: #ff0000;
    color: #fff;
}
#contacto p {
    font-family: 'BarlowMedium';
    margin-top: 12.398921833%;
}
#contacto h2 img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}
#contacto h2 small {
    display: block;
    padding-top: 0.8rem;
    font-size: 25%;
}
#contacto b {
    font-family: 'BarlowBlack';
    font-size: 112.5%;
}
#contacto [href^='mailto:'] {
    display: inline-block;
    color: #ffdd00;
    font-family: 'BarlowSemiBold';
    font-size: 112.5%;
}
#contacto [href^='mailto:']::before {
    content: attr(data-correo) '@' attr(data-servidor);
}
/* publicdades */
.publicidad {
    font-size: 0;
    word-spacing: 0;
    letter-spacing: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.publicidad:not(.mediana) {
    white-space: nowrap;
}
.publicidad > * {
    display: inline-block;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: all 1s cubic-bezier(1.0, 0.0, 0.0, 1.0);
    transition: all 1s cubic-bezier(1.0, 0.0, 0.0, 1.0);
}
.publicidad.mediana {
    float: right;
    width: 23.5874%;
}
.publicidad.mediana > * {
    width: 100%;
    margin-bottom: 16px;
}
.publicidad.mediana img {
    display: block;
    width: 100%;
    height: auto;
}
.publicidad.larga {
    margin: 3.4rem 0 0;
}
.publicidad.larga > * {
    display: inline-block;
    width: 100%;
}
.publicidad.larga img {
    display: inline-block;
    width: 33.333%;
    height: auto;
}
.publicidad.grande {
    margin: 3.7rem 8.20125% 10.2rem;
}
.publicidad.grande > * {
    width: 49.297752809%;
    margin-right: 1.404494382%;
}
.publicidad.grande img {
    display: block;
    width: 100%;
    height: auto;
}
/* pie de página */
footer {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-content: space-around;
    align-content: space-around;
    /**/
    background: #333;
    color: #b2b2b2;
    width: 100%;
    padding: 4.9rem 15.9375% 7.6rem;
    position: relative;
}
footer p {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    text-align: left;
    font-family: 'BarlowSemiBold';
    font-size: 13pt;
    max-width: 33.333%;
}
footer span {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    text-align: right;
}
footer a {
    display: inline-block;
    color: transparent;
    font-size: 0;
    word-spacing: 0;
    letter-spacing: 0;
    height: 96px;
    position: relative;
}
footer a::before, footer a::after {
    content: '\000A0';
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
footer span:hover a::before, footer span a::after {
    opacity: 0;
}
footer span a::before, footer span:hover a::after {
    opacity: 1;
}
footer [href*='955'] {
    width: 72px;
}
footer [href*='patronfm'] {
    width: 96px;
}
footer [href*='oliva'] {
    width: 140px;
}
footer [href$='elpatronfm.mx/xalapa']::before {
    background-image: url(../pics/logotipo_mono_patron_xalapa.png);
}
footer [href$='elpatronfm.mx/xalapa']::after {
    background-image: url(../pics/logotipo_color_patron_xalapa.png);
}
footer [href$='elpatronfm.mx/cordoba']::before {
    background-image: url(../pics/logotipo_mono_patron_cordoba.png);
}
footer [href$='elpatronfm.mx/cordoba']::after {
    background-image: url(../pics/logotipo_color_patron_cordoba.png);
}
footer [href$='sensacion955.com']::before {
    background-image: url(../pics/logotipo_mono_sensacion.png);
}
footer [href$='sensacion955.com']::after {
    background-image: url(../pics/logotipo_color_sensacion.png);
}
footer [href$='olivanoticias.com']::before {
    background-image: url(../pics/logotipo_mono_oliva_noticias.png);
}
footer [href$='olivanoticias.com']::after {
    background-image: url(../pics/logotipo_color_oliva_noticias.png);
}
footer [href$='olivaradio.com']::before {
    background-image: url(../pics/logotipo_mono_oliva_radio.png);
}
footer [href$='olivaradio.com']::after {
    background-image: url(../pics/logotipo_color_oliva_radio.png);
}
/* interior */
#interior ~ * {
    display: none;
}
.interior header {
    background-position: center;
    min-height: 174px;
    height: 174px;
    overflow: visible;
    z-index: 2;
}
.interior header [title^='cambi'] {
    position: absolute;
    bottom: -webkit-calc(24px + 1em);
    right: 0; bottom: calc(24px + 1em);
}
.interior header .icono[target] {
    background: #979797;
    -webkit-transform: translateY(230px);
    transform: translateY(230px);
}
.interior #menu :nth-child(2), .interior #menu :nth-child(3) {
    display: inline-block !important;
}
header .icono.delta.arriba, .interior header .icono.delta {
    position: fixed;
    left: initial; right: 0.9375%; bottom: 1.5%;
    z-index: 3;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
}
header .icono.delta.arriba:hover, .interior header .icono.delta:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.interior header .icono.delta.abajo::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.interior #logotipo, .interior #eslogan {
    background-position: left center;
    background-size: contain;
    width: 16.17768595%;
    height: 90%;
    top: 5%; bottom: inherit;
}
.interior #logotipo { left: 0%; }
.interior #eslogan { left: 20.725632653%; }
.interior #escuchanos_alaire_radio {
    display: none;
}
#noticia {
    padding: 43px 11.71875% 56px;
}
#noticia h2 {
    margin-bottom: 54px;
}
.interior [role='heading'] {
    position: relative;
}
.interior h2 + b {
    display: block;
    text-transform: uppercase;
    font-family: 'BarlowBold';
    font-size: 10pt;
    letter-spacing: 4px;
    position: absolute;
    top: -webkit-calc(100% - 10pt);
    top: calc(100% - 10pt); right: 1.836734694%;
}
.interior [role='document'] {
    padding-right: 1.836734694%;
}
.interior .fxGaleria {
    width: 50%;
    margin: 0 4.33% 2.2rem 0;
    overflow: visible;
    float: left;
}
.interior .fxGaleria img {
    width: 100%;
    height: auto;
}
.interior .indice {
    position: absolute;
    top: -webkit-calc(109% - 22px);
    top: calc(109% - 22px); bottom: inherit;
}
.interior .indice > * {
    width: 22px; height: 22px;
}
.interior .indice > :not(.activo) {
    background: -webkit-radial-gradient(circle, rgba(0,0,0,0.15) 40%, transparent 45%);
    background: radial-gradient(circle, rgba(0,0,0,0.15) 40%, transparent 45%);
}
.interior .fSiguiente, .interior .fAnterior {
    display: none;
}
.embedido {
    display: inline-block;
    width: 45.66%;
    margin-left: 4.33%;
    margin-bottom: 22px;
    overflow: hidden;
    position: relative;
    float: right;
}
.embedido iframe {
    display: block;
    background: ghostwhite;
    width: 100%;
}
.interior h3 {
    padding-bottom: 20px;
}
.interior p {
    margin-bottom: 22px;
}
#compartir > * {
    display: inline-block;
    vertical-align: middle;
}
#compartir :not(:last-child) {
    margin-right: 1.5625%;
}
#compartir span {
    background: currentColor;
    width: 1px;
    height: 24px;
}
#compartir .icono {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #979797;
    color: #000;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    width: 24px;
    height: 24px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#compartir .icono:hover {
    -webkit-transform: scale(1.666);
    transform: scale(1.666);
}
#compartir b {
    font-family: 'BarlowBold';
    font-size: 81.75%;
    letter-spacing: 6px;
}
.interior .publicidad {
    margin: 0 11.71875%;
}
.interior .publicidad + div {
    padding-bottom: 56px;
}
/*
    reproductor de vídeos
*/
#escenario {
    background: rgba(0,0,0,0.95);
    overflow: hidden;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 5;
}
#escenario:not(:empty)::after {
    /* icono equisball */
    content: '\0e80a';
    cursor: pointer;
    font-family: 'FrontendIcons';
    font-size: 32pt;
    position: absolute;
    top: 32px; right: 32px;
    z-index: 1;
}
#escenario[style] {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    right: inherit;
    bottom: inherit;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
#escenario div, #escenario svg {
    margin: auto;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
#escenario svg {
    -webkit-animation: enrotacion 1s linear infinite;
    animation: enrotacion 1s linear infinite;
}
#escenario blockquote {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
}
#escenario .indice {
    bottom: -webkit-calc(100% - 36px);
    bottom: calc(100% - 36px);
}
#escenario .fAnterior, #escenario .fSiguiente {
    font-size: 64px;
    height: 64px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
}
#escenario .fAnterior { left: 1%; }
#escenario .fSiguiente { right: 1%; }
/* arreglo a botones sociales */
.twitter-share-button, .fb-share-button {
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0.01 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}
.fb-share-button > span {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}
#fb-root {
    pointer-events: none !important;
    overflow: hidden !important;
    position: absolute !important;
}
iframe[id^='twitter-widget-'] {
    min-width: 72px !important;
    max-width: 88px !important;
    overflow: visible !important;
}
@media (orientation: portrait) {
    #escenario img {
        display: block;
        width: 100%;
        height: auto;
    }
}
@media (orientation: landscape) {
    #escenario img {
        display: block;
        width: auto;
        height: 100%;
    }
}
@media (max-width: 1024px) {
    .noticia {
        -webkit-flex: 0 0 32.023%;
        flex: 0 0 32.023%;
        width: 32.023%;
        margin: 0 1.31% 16px 0;
    }
    #las12 .contenedor > * {
        display: inline-block;
        width: 32.022471907%;
        margin: 0 1.310861426% 0 0;
        overflow: hidden;
        position: relative;
    }
    #las12 .indice span:not(:first-child):not(:nth-child(4n+1)) {
        display: inline-block;
    }
    #las12 .indice span:not(:first-child):not(:nth-child(3n+1)) {
        display: none;
    }
    footer {
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    footer p {
        max-width: 100%;
        width: 100%;
        padding-bottom: 49px;
    }
}
@media (max-width: 990px) {
    #locutores .contenedor > div {
        width: 32.022471907%;
    }
    .publicidad.larga img {
        width: 50%;
    }
    .publicidad.larga img:nth-child(3) {
        display: none;
    }
    .publicidad.grande {
        margin: 3.7rem 8.20125% 85px;
    }
    #VG {
        margin: 0 8.28125% 85px;
    }
    #VG::before {
        content: none;
    }
    #VG > div {
        width: 100%;
    }
    #VG > div:nth-child(odd) {
        float: none;
    }
    #VG > div:nth-child(even) {
        float: none;
    }
    #VG .contenedor {
        white-space: nowrap;
    }
    #VG .contenedor a {
        float: none;
        width: 32.022471907%;
        margin: 0 1.310861426% 0 0;
    }
    #VG .indice span:not(:first-child):not(:nth-child(4n+1)) {
        display: inline-block;
    }
    #VG .indice span:not(:first-child):not(:nth-child(3n+1)) {
        display: none;
    }
    #videos {
        margin-bottom: 85px;
    }
    #videos h2 {
        padding: 0 0 0 6.3682%;
    }
    #galerias h2 {
        padding: 0 0 0 6.3682%;
    }
    #contacto [href^='mailto:'] {
        font-size: 100%;
    }
}
@media (max-width: 880px) {
    header .icono[target]:first-of-type {
        margin-right: -webkit-calc(24px + 5.5102%);
        margin-right: calc(24px + 5.5102%);
    }
    header [title^='cambi'] {
        max-width: 92px;
        position: relative;
    }
    header [title^='cambi'] b {
        display: none;
    }
    #programacion {
        position: absolute;
        -webkit-top: calc(4.619225968% + 32px);
        top: calc(4.619225968% + 32px); right: 11.71875%; bottom: 5%;
        z-index: 1;
    }
    #menu {
        -webkit-flex-flow: column;
        flex-flow: column;
        -webkit-align-items: flex-end;
        align-items: flex-end;
        position: relative;
        z-index: 1;
        position: absolute;
        top: 0; right: 0;
    }
    #menu :hover {
        background: none !important;
    }
    #menu :not(:first-child) {
        line-height: 36px;
        padding: 0 30px;
        position: relative;
        z-index: 1;
    }
    #menu span {
        width: -webkit-calc(100% - 60px);
        width: calc(100% - 60px);
        height: 1px;
        margin: 0 auto;
    }
    [for='sw_menu'] {
        display: inline-block !important;
    }
    [for='sw_menu']::before {
        content: '\000A0';
        display: inline-block;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background: -webkit-linear-gradient(0deg, #ffdd00 25%, transparent 25%, transparent 75%, #ffdd00 75%), -webkit-linear-gradient(90deg, #ffdd00 25%, #000 25%, #000 35%, #ffdd00 35%, #ffdd00 45%, #000 45%, #000 55%, #ffdd00 55%, #ffdd00 65%, #000 65%, #000 75%, #ffdd00 75%);
        background: linear-gradient(90deg, #ffdd00 25%, transparent 25%, transparent 75%, #ffdd00 75%), linear-gradient(0deg, #ffdd00 25%, #000 25%, #000 35%, #ffdd00 35%, #ffdd00 45%, #000 45%, #000 55%, #ffdd00 55%, #ffdd00 65%, #000 65%, #000 75%, #ffdd00 75%);
        width: 24px;
        height: 24px;
    }
    #sw_menu:not(:checked) ~ #menu :not(:first-child) {
        display: none !important;
    }
    #sw_menu:checked + #menu::after {
        content: '\000A0';
        border: 4px solid transparent;
        border-bottom-color: #ffdd00;
        width: 0;
        height: 0;
        position: absolute;
        top: 24px; right: 8px;
    }
    #sw_menu:checked + #menu::before {
        content: '\000A0';
        background: rgba(0,0,0,0.85);
        border: 1px solid #ffdd00;
        position: absolute;
        top: 32px; right: 0; left: 0; bottom: 0;
    }
    #sw_menu:checked + * [for='sw_menu']::before {
        background: radial-gradient(circle, transparent 50%, #ffdd00 50%), linear-gradient(45deg, transparent 46.25%, #000 46.25%, #000 53.75%, transparent 53.75%), linear-gradient(-45deg, transparent 46.25%, #000 46.25%, #000 53.75%, transparent 53.75%), #ffdd00;
        background: -webkit-radial-gradient(circle, transparent 50%, #ffdd00 50%), -webkit-linear-gradient(45deg, transparent 46.25%, #000 46.25%, #000 53.75%, transparent 53.75%), -webkit-linear-gradient(-45deg, transparent 46.25%, #000 46.25%, #000 53.75%, transparent 53.75%), #ffdd00;
    }
    .interior header [title^='cambi'] {
        right: -webkit-calc(24px + 5.5102%);
        top: 0; right: calc(24px + 5.5102%); bottom: inherit;
    }
}
@media (orientation: portrait) and (max-width: 800px) {
    #logotipo {
        background-position: center bottom;
        width: 56.938775328%;
        margin: 0 auto;
        left: 0; right: 0;
    }
    #eslogan {
        width: 100%;
        margin: 0 auto;
        top: 32.320441989%; right: 0;
    }
    #escuchanos_alaire_radio {
        max-width: 365px;
        margin: 0 auto;
        /*top: 71.685082884%;*/
        top: initial; left: 0; right: 0; bottom: 2.309612984%;
    }
    header span.icono.delta.abajo {
        -webkit-transform: translateY(75%) scale(0.75);
        transform: translateY(75%) scale(0.75);
    }
    .interior #logotipo, .interior #eslogan {
        background-position: left center;
        background-size: contain;
        width: -webkit-calc(-webkit-calc(90% - 26px) / 2);
        width: calc(calc(90% - 26px) / 2);
        height: 90%;
        margin: 0;
        top: 5%; right: inherit; bottom: inherit;
    }
    .interior #logotipo { left: 0%; }
    .interior #eslogan {
        left: -webkit-calc(-webkit-calc(100% - 26px) / 2);
        left: calc(calc(100% - 26px) / 2);
    }
}
@media (max-width: 800px) {
    #noticias [role='feed'] {
        width: 99.40%;
        margin: 0 auto;
        float: none;
    }
    .publicidad.mediana {
        white-space: nowrap !important;
        width: 99.40%;
        margin: 0 auto 6.2rem;
        float: none;
    }
    .publicidad.mediana > * {
        width: 32.46%;
        margin-right: 1.31%;
        margin-bottom: 0;
    }
    .publicidad.grande > * {
        width: 100%;
    }
}
@media (max-width: 768px) {
    #contacto .contenedor::before {
        content: none;
    }
    #contacto .contenedor {
        background: -webkit-linear-gradient(0deg, transparent 2.35%, rgba(0,0,0,0.75) 2.35%, rgba(0,0,0,0.75) 97.65%, transparent 97.65%);
        background: linear-gradient(90deg, transparent 2.35%, rgba(0,0,0,0.75) 2.35%, rgba(0,0,0,0.75) 97.65%, transparent 97.65%);
        background-repeat: no-repeat;
        background-size: 100% -webkit-calc(50% + 46px);
        background-size: 100% calc(50% + 46px);
    }
    #contacto .contenedor > div {
        width: 100%;
        height: calc(50%);
        min-height: 0;
    }
    #contacto .contenedor > div:nth-child(1) {
        float: none;
    }
}
@media (max-width: 767px) {
    #programas .indice {
        bottom: 0;
    }
    #programas .fAnterior, #programas .fSiguiente {
        font-size: 32pt;
        height: 32pt;
    }
    #programas .fAnterior {
        right: 100%;
    }
    #programas .fSiguiente {
        left: 100%;
    }
    .noticia {
        -webkit-flex: 0 0 48.69%;
        flex: 0 0 48.69%;
    }
    #locutores .contenedor > div {
        width: 48.033707861%;
    }
    #las12 .indice span:not(:first-child):not(:nth-child(3n+1)),
    #VG .indice span:not(:first-child):not(:nth-child(3n+1)) {
        display: inline-block;
    }
    #las12 .indice span:not(:first-child):not(:nth-child(2n+1)),
    #VG .indice span:not(:first-child):not(:nth-child(2n+1)) {
        display: none;
    }
    #las12 .contenedor > *, #VG .contenedor a {
        width: 49.345%;
        margin: 0 1.31% 0 0;
    }
    .publicidad.mediana > * {
        width: 49.345%;
    }
}
@media (max-width: 700px) {
    #noticias h2 img {
        width: 100%;
        height: auto;
    }
    #locutores h2 img {
        /*width: 74.895981371%;*/
        width: 100%;
        height: auto;
    }
    #las12 h2 img {
        width: 100%;
        height: auto;
    }
    #VG h2 {
        padding: 0 17.790262172%;
    }
    #videos h2 img {
        width: 40.798226164%;
        height: auto;
    }
    #galerias h2 img {
        width: 53.65853658%;
        height: auto;
    }
    #noticia h2 img {
        width: 77.2123518%;
        height: auto;
    }
}
@media (max-width: 680px) {
    footer span {
        text-align: center;
        width: 50%;
    }
    .interior header .icono[title] {
        -webkit-transform: translateY(192px);
        transform: translateY(192px);
    }
    .interior header .icono[title]:first-child {
        margin-right: 0;
    }
    .interior h3 {
        font-size: 24pt;
    }
    .interior .fxGaleria {
        width: 100%;
        float: none;
    }
    .embedido {
        width: 100%;
        float: none;
    }
}
@media (max-width: 568px) {
    .publicidad.larga img {
        width: 100%;
    }
    .publicidad.larga img:nth-child(2) {
        display: none;
    }
    #contacto p {
        font-size: 14pt;
    }
    footer span:nth-of-type(1) a, footer span:nth-of-type(2) a {
        width: 7.2rem;
    }
    footer span:nth-of-type(3) a, footer span:nth-of-type(4) a {
        width: 10.485rem;
    }
    footer a {
        height: 7.2rem;
    }
}
@media (max-width: 480px) {
    #las12 .indice span:not(:first-child):not(:nth-child(2n+1)),
    #VG .indice span:not(:first-child):not(:nth-child(2n+1)) {
        display: inline-block;
    }
    #las12 .contenedor > *, #VG .contenedor a {
        width: 100%;
    }
}
@media (max-width: 440px) {
    .noticia {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        border-right: none;
    }
    .noticia:nth-of-type(1n) {
        border-right: none !important;
    }
    .publicidad.mediana > * {
        width: 100%;
    }
    #locutores blockquote b {
        font-size: 11pt;
    }
    #locutores blockquote i {
        font-size: 9pt;
    }
    footer a {
        height: 75px;
        max-width: 100%;
    }
}
/*
    page_loader
*/
#cargador {
    pointer-events: none;
    background: #101010;
    color: #fff;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9;
}
#cargador::after {
    content: attr(data-numero);
    font-size: 22pt;
    line-height: 1;
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#cargador svg {
    margin: auto;
    border-radius: 50%;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
#cargador circle {
    /*
    circunferencia = radio * 2 * PI
    stroke-dasharray  = circunferencia circunferencia
    stroke-dashoffset = circunferencia -- para iniciar en 0
    */
    stroke-dasharray: 289.02652413 289.02652413;
    stroke-dashoffset: 289.02652413;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: stroke-dashoffset 0.25s ease;
    transition: stroke-dashoffset 0.25s ease;
}
