/*
    Cascade Style Sheet
*/
@import url(./tipografias.styles.css);

*, *::before, *::after {
    margin: 0;
    padding: 0;
    text-rendering: optimizeSpeed;
    font-family: 'FiraSansRegular', sans-serif;
    font-size: 16px;
    line-height: 20px;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*::before, *::after {
    display: inline-block;
    background: inherit;
    color: currentColor;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    min-width: 2rem;
    min-height: 2rem;
    line-height: 2rem;
    font-family: 'FontAwesome';
    font-size: 1.25rem;
    text-align: center;
    vertical-align: middle;
}
*:-ms-input-placeholder {
    color: rgba(0,0,0,0.45);
    font-size: 0.875rem;
}
*::-moz-placeholder {
    color: rgba(0,0,0,0.45);
    font-size: 0.875rem;
}
*:-moz-placeholder {
    color: rgba(0,0,0,0.45);
    font-size: 0.875rem;
}
*::-webkit-input-placeholder {
    color: rgba(0,0,0,0.45);
    font-size: 0.875rem;
}
*[tabindex] {
    outline: 0;
}
/* animaciones */
@-o-keyframes creciendo {
    0%{ -o-transform: translateZ(0) scale(0); }
    66% { -o-transform: translateZ(0) scale(2); }
    100% { -o-transform: translateZ(0) scale(1); }
}
@-ms-keyframes creciendo {
    0%{ -ms-transform: translateZ(0) scale(0); }
    66% { -ms-transform: translateZ(0) scale(2); }
    100% { -ms-transform: translateZ(0) scale(1); }
}
@-moz-keyframes creciendo {
    0%{ -moz-transform: translateZ(0) scale(0); }
    66% { -moz-transform: translateZ(0) scale(2); }
    100% { -moz-transform: translateZ(0) scale(1); }
}
@-webkit-keyframes creciendo {
    0%{ -webkit-transform: translateZ(0) scale(0); }
    66% { -webkit-transform: translateZ(0) scale(2); }
    100% { -webkit-transform: translateZ(0) scale(1); }
}
@keyframes creciendo {
    0%{ transform: translateZ(0) scale(0); }
    66% { transform: translateZ(0) scale(2); }
    100% { transform: translateZ(0) scale(1); }
}
@-o-keyframes aparecerEnFade { 0% { opacity:0; } 100% { opacity:1; } }
@-ms-keyframes aparecerEnFade { 0% { opacity:0; } 100% { opacity:1; } }
@-moz-keyframes aparecerEnFade { 0% { opacity:0; } 100% { opacity:1; } }
@-webkit-keyframes aparecerEnFade { 0% { opacity:0; } 100% { opacity:1; } }
@keyframes aparecerEnFade { 0% { opacity:0; } 100% { opacity:1; } }
@-o-keyframes revelarEnPerspectiva {
    from { opacity: 0; -o-transform: translateZ(0) perspective(320px) rotateY(45deg) scale(0.75) translateY(-25%); }
    to { opacity: 1; -o-transform: translateZ(0) perspective(0px) rotateY(0deg) scale(1) translateY(0%); }
}
@-ms-keyframes revelarEnPerspectiva {
    from { opacity: 0; -ms-transform: translateZ(0) perspective(320px) rotateY(45deg) scale(0.75) translateY(-25%); }
    to { opacity: 1; -ms-transform: translateZ(0) perspective(0px) rotateY(0deg) scale(1) translateY(0%); }
}
@-moz-keyframes revelarEnPerspectiva {
    from { opacity: 0; -moz-transform: translateZ(0) perspective(320px) rotateY(45deg) scale(0.75) translateY(-25%); }
    to { opacity: 1; -moz-transform: translateZ(0) perspective(0px) rotateY(0deg) scale(1) translateY(0%); }
}
@-webkit-keyframes revelarEnPerspectiva {
    from { opacity: 0; -webkit-transform: translateZ(0) perspective(320px) rotateY(45deg) scale(0.75) translateY(-25%); }
    to { opacity: 1; -webkit-transform: translateZ(0) perspective(0px) rotateY(0deg) scale(1) translateY(0%); }
}
@keyframes revelarEnPerspectiva {
    from { opacity: 0; transform: translateZ(0) perspective(320px) rotateY(45deg) scale(0.75) translateY(-25%); }
    to { opacity: 1; transform: translateZ(0) perspective(0px) rotateY(0deg) scale(1) translateY(0%); }
}
@-o-keyframes revelarCortina {
    from { opacity: 0; -o-transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(-50%); }
    to { opacity: 1; -o-transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@-ms-keyframes revelarCortina {
    from { opacity: 0; -ms-transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(-50%); }
    to { opacity: 1; -ms-transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@-moz-keyframes revelarCortina {
    from { opacity: 0; -moz-transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(-50%); }
    to { opacity: 1; -moz-transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@-webkit-keyframes revelarCortina {
    from { opacity: 0; -webkit-transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(-50%); }
    to { opacity: 1; -webkit-transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@keyframes revelarCortina {
    from { opacity: 0; transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(-50%); }
    to { opacity: 1; transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@-o-keyframes aparecerDesdeAbajo {
    from { opacity: 0; -o-transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(50%); }
    to { opacity: 1; -o-transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@-ms-keyframes aparecerDesdeAbajo {
    from { opacity: 0; -ms-transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(50%); }
    to { opacity: 1; -ms-transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@-moz-keyframes aparecerDesdeAbajo {
    from { opacity: 0; -moz-transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(50%); }
    to { opacity: 1; -moz-transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@-webkit-keyframes aparecerDesdeAbajo {
    from { opacity: 0; -webkit-transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(50%); }
    to { opacity: 1; -webkit-transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@keyframes aparecerDesdeAbajo {
    from { opacity: 0; transform: translateZ(0) perspective(320px) rotateX(15deg) scale(0.85) translateY(50%); }
    to { opacity: 1; transform: translateZ(0) perspective(0px) rotateX(0deg) scale(1) translateY(0%); }
}
@-o-keyframes candybar { from { background-position: 0rem bottom; } to { background-position: -2rem bottom; } }
@-ms-keyframes candybar { from { background-position: 0rem bottom; } to { background-position: -2rem bottom; } }
@-moz-keyframes candybar { from { background-position: 0rem bottom; } to { background-position: -2rem bottom; } }
@-webkit-keyframes candybar { from { background-position: 0rem bottom; } to { background-position: -2rem bottom; } }
@keyframes candybar { from { background-position: 0rem bottom; } to { background-position: -2rem bottom; } }
/* documento */
html, body {
    min-height: 100%;
    height: 100%;
}
body {
    background: #FFFFFF url(../pics/fondo.jpg) center bottom repeat-x;
    background-size: cover;
    background-attachment: fixed;
    color: #323232;
}
strong, b, h2, h3, h4, h5 {
    font-family: 'FiraSansSemiBold';
    font-weight: normal;
}
p {
    margin-bottom: 1rem;
}
a {
    text-decoration: none;
}
ul, li {
    list-style: disc inside;
    margin-bottom: 0.5rem;
}
sup {
    font-size: 0.625rem;
    vertical-align: super;
}
.vplayer {
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}
.vplayer > iframe {
    display: block;
    border: none;
    background: none;
    width: 100%;
    margin: auto;
}
.vplayer p {
    margin-top: 1rem;
    margin-bottom: 0;
}
.limitador {
    display: block;
    clear: both;
}
.enviar {
    display: block;
    color: currentColor;
    width: 2rem;
    height: 2rem;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.enviar::before {
    content: '\0f1d8';
}
.enviar:hover {
    color: LightGray !important;
}
.enviar:active {
    color: DarkGray !important;
}
.enviar > input {
    cursor: pointer !important;
    opacity: 0.01;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.boton {
    cursor: pointer;
    -o-border-radius: 0.1875rem;
    -ms-border-radius: 0.1875rem;
    -moz-border-radius: 0.1875rem;
    -webkit-border-radius: 0.1875rem;
    border-radius: 0.1875rem;
    -o-box-shadow: 0 0.0625rem 0.1875rem Gray;
    -ms-box-shadow: 0 0.0625rem 0.1875rem Gray;
    -moz-box-shadow: 0 0.0625rem 0.1875rem Gray;
    -webkit-box-shadow: 0 0.0625rem 0.1875rem Gray;
    box-shadow: 0 0.0625rem 0.1875rem Gray;
}
.boton:hover {
    -o-box-shadow: 0 0.125rem 0.375rem Gray;
    -ms-box-shadow: 0 0.125rem 0.375rem Gray;
    -moz-box-shadow: 0 0.125rem 0.375rem Gray;
    -webkit-box-shadow: 0 0.125rem 0.375rem Gray;
    box-shadow: 0 0.125rem 0.375rem Gray;
}
.indice {
    display: block;
    position: absolute;
    right: 1rem;
    bottom: 0.75rem;
    z-index: 2;
}
.indice span {
    display: inline-block;
    vertical-align: bottom;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: -o-radial-gradient(circle, currentColor 40%, transparent 50%);
    background: -ms-radial-gradient(circle, currentColor 40%, transparent 50%);
    background: -moz-radial-gradient(circle, currentColor 40%, transparent 50%);
    background: -webkit-radial-gradient(circle, currentColor 40%, transparent 50%);
    background: radial-gradient(circle, currentColor 40%, transparent 50%);
    width: 0.75rem;
    height: 0.75rem;
    margin-left: 0.25rem;
    cursor: pointer;
}
.indice span.activo {
    background: -o-radial-gradient(circle, currentColor 60%, transparent 70%);
    background: -ms-radial-gradient(circle, currentColor 60%, transparent 70%);
    background: -moz-radial-gradient(circle, currentColor 60%, transparent 70%);
    background: -webkit-radial-gradient(circle, currentColor 60%, transparent 70%);
    background: radial-gradient(circle, currentColor 60%, transparent 70%);
}
.fAnterior, .fSiguiente {
    display: block;
    width: 3rem;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    cursor: pointer;
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -o-transition: left 0.25s, right 0.25s;
    -ms-transition: left 0.25s, right 0.25s;
    -moz-transition: left 0.25s, right 0.25s;
    -webkit-transition: left 0.25s, right 0.25s;
    transition: left 0.25s, right 0.25s;
}
.fAnterior {
    left: -3rem;
}
.fSiguiente {
    right: -3rem;
}
*:hover > .fAnterior {
    left: 0;
}
*:hover > .fSiguiente {
    right: 0;
}
.fAnterior:active, .fSiguiente:active {
    -o-transform: translateZ(0) scale(0.8);
    -ms-transform: translateZ(0) scale(0.8);
    -moz-transform: translateZ(0) scale(0.8);
    -webkit-transform: translateZ(0) scale(0.8);
    transform: translateZ(0) scale(0.8);
}
.fAnterior::before, .fSiguiente::before {
    background: #212121;
    color: GhostWhite;
    width: 2rem;
    height: 2rem;
    margin: auto 0.375rem;
    position: absolute;
    top: 0;
    bottom: 0;
    -o-box-shadow: 0 0 0.25rem Gray;
    -ms-box-shadow: 0 0 0.25rem Gray;
    -moz-box-shadow: 0 0 0.25rem Gray;
    -webkit-box-shadow: 0 0 0.25rem Gray;
    box-shadow: 0 0 0.25rem Gray;
}
.fAnterior::before {
    content: '\0f060';
    left: 0;
}
.fSiguiente::before {
    content: '\0f061';
    right: 0;
}
.video, .video img, .video span {
    display: block;
    width: 100%;
    height: auto;
}
.video {
    color: currentColor;
}
.video > span {
    background-image: -o-linear-gradient(90deg, transparent, rgba(0,0,0,0.85) 65%);
    background-image: -ms-linear-gradient(90deg, transparent, rgba(0,0,0,0.85) 65%);
    background-image: -moz-linear-gradient(90deg, transparent, rgba(0,0,0,0.85) 65%);
    background-image: -webkit-linear-gradient(90deg, transparent, rgba(0,0,0,0.85) 65%);
    background-image: linear-gradient(0deg, transparent, rgba(0,0,0,0.85) 65%);
    font-family: 'FiraSansSemiBold';
    line-height: 1rem;
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.video br {
    display: none;
}
.video::before {
    content: '\0f16a';
    background: -o-radial-gradient(circle, White 45%, transparent 45%);
    background: -ms-radial-gradient(circle, White 45%, transparent 45%);
    background: -moz-radial-gradient(circle, White 45%, transparent 45%);
    background: -webkit-radial-gradient(circle, White 45%, transparent 45%);
    background: radial-gradient(circle, White 45%, transparent 45%);
    color: #E52D27;
    font-size: 4rem;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-transition: -o-transform 0.25s;
    -ms-transition: -ms-transform 0.25s;
    -moz-transition: -moz-transform 0.25s;
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.35s;
}
.video:hover::before {
    -o-transform: translateZ(0) scale(1.25);
    -ms-transform: translateZ(0) scale(1.25);
    -moz-transform: translateZ(0) scale(1.25);
    -webkit-transform: translateZ(0) scale(1.25);
    transform: translateZ(0) scale(1.25);
}
.mas {
    display: block;
    background: #1E88E5;
    color: White;
    text-align: center;
    /*
    max-width: 19.625rem;
    margin-left: 0.375rem;
    */
    padding: 0.25rem 0;
    margin: 0 0.62%;
}
.mas::before {
    content: '\0f055';
}
.mas:hover {
    background: #2196F3;
}
.mas span {
    display: none;
}
.cerrar {
    cursor: pointer;
    position: absolute;
    top: 3.5%;
    right: 2.5%;
    z-index: 1;
}
.cerrar::before {
    content: '\0f057';
    font-size: 1.875rem;
}
.columna {
    display: inline-block;
    vertical-align: top;
    width: 32.506%;
    margin: 0;
    margin-left: 0.62%;
}
.columna > * {
    display: block;
    width: 100% !important;
    margin: 0 0 0.375rem !important;
}
/* inicio del diseño */
#contenedor {
    max-width: 64rem;
    padding: 0 1.27%;
    margin: auto;
}
#navegacion {
    display: table;
    width: 100%;
    padding: 0.625rem 1rem 0;
}
#contactoRapido, #navegarionYRedes {
    display: table-cell;
    vertical-align: top;
}
#contactoRapido {
    text-align: left;
}
#contactoRapido a {
    display: inline-block;
    color: currentColor;
    white-space: nowrap;
    -o-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
#contactoRapido a > span {
    display: inline-block;
    margin-left: 0.25rem;
}
#contactoRapido a:hover {
    background: #E91E63;
    color: White;
    -o-box-shadow: 0.125rem 0 0 0.125rem #E91E63;
    -ms-box-shadow: 0.125rem 0 0 0.125rem #E91E63;
    -moz-box-shadow: 0.125rem 0 0 0.125rem #E91E63;
    -webkit-box-shadow: 0.125rem 0 0 0.125rem #E91E63;
    box-shadow: 0.125rem 0 0 0.125rem #E91E63;
}
#contactoRapido a[href^=tel]::before {
    content: '\0f095';
}
#contactoRapido a[href^=mailto]::before {
    content: '\0f0e0';
}
#navegacionYRedes {
    text-align: right;
}
#navegacionYRedes > span {
    display: none;
}
#navegacionYRedes a, #navegacionYRedes strong {
    color: currentColor;
    white-space: nowrap;
}
#navegacionYRedes a.envivo > span {
    margin-right: 0.25rem;
}
#navegacionYRedes a.envivo::after {
    content: '\0f130';
    background-color: #FFEB3B;
    color: #212121;
}
#navegacionYRedes a[title] {
    margin-left: 0.125rem;
}
#navegacionYRedes a[title] span {
    display: none;
}
#navegacionYRedes a[title=facebook]::after,
#navegacionYRedes a[title=twitter]::after,
#navegacionYRedes a[title=youtube]::after {
    color: White;
}
#navegacionYRedes a[title=facebook]::after {
    content: '\0f09a';
    background-color: #3B579D !important;
}
#navegacionYRedes a[title=twitter]::after {
    content: '\0f099';
    background-color: #55ACEE !important;
}
#navegacionYRedes a[title=youtube]::after {
    content: '\0f16a';
    background-color: #E52D27 !important;
}
#navegacionYRedes a[title=buscar]::after {
    content: '\0f002';
}
#navegacionYRedes a[title=menú]::after {
    content: '\0f0c9';
}
#navegacionYRedes a[title=facebook]::after, #navegacionYRedes a[title=buscar]::after {
    margin-left: 0.5rem;
}
#navegacionYRedes a:hover::after {
    background-color: #E91E63;
    color: White;
    /*
        debe estar después de todas las reglas
        para actuar correctamente
    */
    -o-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
#navegacionYRedes a[title=facebook]:hover::after,
#navegacionYRedes a[title=twitter]:hover::after,
#navegacionYRedes a[title=youtube]:hover::after {
    -o-transform: translateZ(0) scale(1.5);
    -ms-transform: translateZ(0) scale(1.5);
    -moz-transform: translateZ(0) scale(1.5);
    -webkit-transform: translateZ(0) scale(1.5);
    transform: translateZ(0) scale(1.5);
    -o-box-shadow: 0 0 0.5rem rgba(0,0,0,0.45);
    -ms-box-shadow: 0 0 0.5rem rgba(0,0,0,0.45);
    -moz-box-shadow: 0 0 0.5rem rgba(0,0,0,0.45);
    -webkit-box-shadow: 0 0 0.5rem rgba(0,0,0,0.45);
    box-shadow: 0 0 0.5rem rgba(0,0,0,0.45);
}
#marca {
    margin-bottom: 1.625rem;
}
#marca a {
    display: block;
    width: 240px;
    margin: 0 auto;
}
#marca img {
    display: block;
    width: 100%;
    height: auto;
}
#marca.enSeccion {
    /*width: 20.0625rem;*/
    width: 31.34765625%;
    height: auto;
    margin: 0.625rem 0 0.625rem 1rem;
    float: left;
}
#marca.enSeccion a {
    max-width: 240px;
    width: 74.76635514%;
}
#publicidad_encabeza {
    display: block;
    border: 0.0625rem solid lightgray;
    background: white;
    /*width: 39.875rem;*/
    width: 62.3046875%;
    margin: 0.625rem 1rem 0.625rem 0;
    float: right;
}
#publicidad_encabeza a, #publicidad_encabeza img {
    display: block;
    width: 100%;
    height: auto;
}
#publicidad_encabeza .indice {
    display: none;
}
#secciones {
    background: #263238;
    padding: 0.75rem 1rem;
    margin: 0 1rem;
    text-align: right;
}
#secciones > * {
    text-align: left;
}
#secciones > span {
    display: none;
}
#secciones ul, #secciones li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}
#secciones ul {
    float: left;
    font-size: 0;
    word-spacing: 0;
    letter-spacing: 0;
}
#secciones li a {
    display: block;
    border-bottom: 0.0625rem dashed transparent;
    color: White;
    height: 2rem;
    line-height: 2rem;
    padding: 0 0.5rem;
    text-transform: uppercase;
}
#secciones.compacto1 li a {
    font-size: 0.9375rem;
    padding: 0 0.375rem;
}
#secciones.compacto2 li a {
    font-size: 0.875rem;
    padding: 0 0.25rem;
}
#secciones.compacto3 li a {
    font-size: 0.8125rem;
    padding: 0 0.1875rem;
}
#secciones li:first-child span {
    display: none;
}
#secciones li:first-child a::before {
    content: '\0f015';
    vertical-align: baseline;
}
#secciones li a[class] {
    -o-transition: color 0.35s, border 0.35s;
    -ms-transition: color 0.35s, border 0.35s;
    -moz-transition: color 0.35s, border 0.35s;
    -webkit-transition: color 0.35s, border 0.35s;
    transition: color 0.35s, border 0.35s;
}
#secciones li a:hover, #secciones li a.activo {
    border-bottom: 0.0625rem dashed #03A9F4;
    color: #03A9F4;
}
#secciones > a span {
    vertical-align: middle;
    display: inline-block;
}
#secciones > a strong {
    display: block;
}
#secciones > a, #secciones > a * {
    color: White;
    font-size: 0.75rem;
    line-height: 100%;
}
#secciones > a::after {
    content: '\0f075';
    background-color: White;
    color: #212121;
    margin-left: 0.5rem;
    -o-transition: background 350ms, color 350ms;
    -ms-transition: background 350ms, color 350ms;
    -moz-transition: background 350ms, color 350ms;
    -webkit-transition: background 350ms, color 350ms;
    transition: background 350ms, color 350ms;
}
#secciones > a:hover::after {
    background-color: #E91E63;
    color: White;
}
#deslizador {
    background-color: #0080A9;
    height: 4rem;
    padding: 1rem;
    position: relative;
}
#deslizador::before, #deslizador::after {
    content: '\000A0';
    -o-border-radius: 0;
    -ms-border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0;
    border-bottom-width: 1rem;
    background: none;
    min-height: 0;
    min-width: 0;
    width: 0;
    height: 0;
    position: absolute;
    bottom: -1rem;
}
#deslizador::before {
    border-right-color: #00526C;
    border-right-width: 1rem;
    left: 0;
}
#deslizador::after {
    border-left-color: #00526C;
    border-left-width: 1rem;
    right: 0;
}
#deslizador > div {
    height: 2rem;
    overflow: hidden;
    position: relative;
}
#deslizador > div > * {
    color: White;
    font-family: 'VistaSansBook';
    font-size: 1.75rem;
    line-height: 2rem;
    white-space: nowrap;
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#contenido {
    background: WhiteSmoke;
    padding: 0.375rem 0;
    margin: 0 1rem;
}
#lateral {
    float: right;
    vertical-align: top;
    width: 32.506%;
    margin-right: 0.62%;
    position: relative;
}
/* noticia */
.noticia {
    display: inline-block;
    -o-border-radius: 0 0 0.25rem 0.25rem;
    -ms-border-radius: 0 0 0.25rem 0.25rem;
    -moz-border-radius: 0 0 0.25rem 0.25rem;
    -webkit-border-radius: 0 0 0.25rem 0.25rem;
    border-radius: 0 0 0.25rem 0.25rem;
    background-color: White;
    width: 32.506%;
    margin: 0 0 0.375rem 0.62%;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    white-space: nowrap;
    -o-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -ms-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -o-transition: -o-box-shadow 0.25s;
    -ms-transition: -ms-box-shadow 0.25s;
    -moz-transition: -moz-box-shadow 0.25s;
    -webkit-transition: -webkit-box-shadow 0.25s;
    transition: box-shadow 0.25s;
}
.informacion {
    padding: 1rem;
    white-space: normal;
    position: relative;
}
.informacion.enAudio {
    padding-right: 4rem;
}
.informacion.enAudio::before {
    content: '\000A0';
    background: WhiteSmoke url(../pics/icono_headphones.png) center center no-repeat;
    background-size: 50%;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: -1.5rem;
    right: 1rem;
    -o-box-shadow: 0 0.0625rem 0.25rem Grey;
    -ms-box-shadow: 0 0.0625rem 0.25rem Grey;
    -moz-box-shadow: 0 0.0625rem 0.25rem Grey;
    -webkit-box-shadow: 0 0.0625rem 0.25rem Grey;
    box-shadow: 0 0.0625rem 0.25rem Grey;
}
.titulo {
    display: inline-block;
    color: currentColor;
    white-space: normal;
    -o-transform: translateZ(0) translateX(0);
    -ms-transform: translateZ(0) translateX(0);
    -moz-transform: translateZ(0) translateX(0);
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateY(0);
    -o-transition: -o-transform 0.25s;
    -ms-transition: -ms-transform 0.25s;
    -moz-transition: -moz-transform 0.25s;
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
}
.titulo:hover {
    -o-transform: translateZ(0) translateX(-0.25rem);
    -ms-transform: translateZ(0) translateX(-0.25rem);
    -moz-transform: translateZ(0) translateX(-0.25rem);
    -webkit-transform: translateZ(0) translateX(-0.25rem);
    transform: translateZ(0) translateY(-0.25rem);
}
.seccion, .fecha, span.enAudio {
    color: currentColor;
    opacity: 0.85;
    font-size: 0.8125rem;
}
.fecha::before {
    content: '\0f017';
}
span.enAudio::before {
    content: '\0f025';
}
.texto {
    text-align: justify;
}
.seccion::before, .fecha::before, span.enAudio::before {
    display: inline;
    font-size: inherit;
    margin-right: 0.25rem;
    vertical-align: baseline;
}
.noticia > br {
    display: none;
}
.noticia img {
    display: block;
    width: 100%;
    height: auto;
}
.pleca {
    display: block;
    background-color: Black;
    color: White;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    position: absolute;
    top: 1rem;
    left: 0;
}
#publicidad_encontenido {
    width: 100%;
    margin: 0 auto 1rem;
}
#publicidad_encontenido .indice {
    display: none;
}
/* elementos del central */
#relevantes {
    -o-border-radius: 0 0 0.25rem 0.25rem;
    -ms-border-radius: 0 0 0.25rem 0.25rem;
    -moz-border-radius: 0 0 0.25rem 0.25rem;
    -webkit-border-radius: 0 0 0.25rem 0.25rem;
    border-radius: 0 0 0.25rem 0.25rem;
    background-color: Black;
    color: White;
    width: 65.632%;
    margin: 0 0 0.375rem 0.62%;
    overflow: hidden;
    position: relative;
    -o-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -ms-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
}
#relevantes a {
    color: currentColor;
}
#relevantes br {
    display: none;
}
#relevantes img {
    display: block;
    width: 100%;
    height: auto;
}
#relevantes .informacion {
    background: -o-linear-gradient(90deg, rgba(0,0,0,0.85) 35%, transparent);
    background: -ms-linear-gradient(90deg, rgba(0,0,0,0.85) 35%, transparent);
    background: -moz-linear-gradient(90deg, rgba(0,0,0,0.85) 35%, transparent);
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.85) 35%, transparent);
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 35%, transparent);
    padding: 1rem 35% 2rem 2rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
#relevantes .titulo {
    display: block;
    font-family: 'FiraSansSemiBold';
    font-size: 1.125rem;
}
#relevantes .fSiguiente, #relevantes .fAnterior {
    display: none;
}
#digaloenvozalta {
    width: 66.252%;
    position: relative;
}
#digaloenvozalta h3 {
    background-color: #FFA000;
    color: White;
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
    margin: 0 0 0.375rem 0.93%;
}
#digaloenvozalta h3::before {
    content: '\0f075';
    background: rgba(0,0,0,0.1);
    vertical-align: baseline;
    margin-right: 0.375rem;
}
#digaloenvozalta h3 br {
    display: none;
}
#digaloenvozalta h3 span {
    display: inline-block;
    max-width: 10rem;
    font-size: 0.875rem;
    line-height: 0.875rem;
    margin-left: 2.375rem;
    vertical-align: middle;
}
#digaloenvozalta .aviso, #digaloenvozalta .formulario, #digaloenvozalta .denuncia {
    display: inline-block;
    width: 49.07%;
    margin: 0 0 0.375rem 0.93%;
}
#digaloenvozalta .aviso, .denuncia {
    display: inline-block;
    -o-border-radius: 0 0 0.25rem 0.25rem;
    -ms-border-radius: 0 0 0.25rem 0.25rem;
    -moz-border-radius: 0 0 0.25rem 0.25rem;
    -webkit-border-radius: 0 0 0.25rem 0.25rem;
    border-radius: 0 0 0.25rem 0.25rem;
    padding: 1rem;
    text-align: justify;
    vertical-align: top;
    position: relative;
    -o-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -ms-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
}
#digaloenvozalta .aviso {
    background: #F44336;
    color: White;
}
#digaloenvozalta .formulario {
    background: #FBC02D;
    color: White;
    padding: 1rem;
    vertical-align: top;
    position: relative;
    float: right;
}
#digaloenvozalta .formulario::before, #digaloenvozalta .formulario::after {
    content: '\000A0';
    -o-border-radius: 0;
    -ms-border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-width: 2rem;
    border-style: solid;
    min-height: 0;
    min-width: 0;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
}
#digaloenvozalta .formulario::before {
    border-color: #F5F5F5 #F5F5F5 #FDD835 #FDD835;
    top: 0rem;
}
#digaloenvozalta .formulario::after {
    border-color: #F9A825 #F9A825 transparent transparent;
    top: 4rem;
}
#digaloenvozalta form {
    display: block;
    width: 100%;
    opacity: 1;
    -o-transform: translateZ(0) scale(1);
    -ms-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    -o-transition: -o-transform 0.25s, opacity 0.25s;
    -ms-transition: -ms-transform 0.25s, opacity 0.25s;
    -moz-transition: -moz-transform 0.25s, opacity 0.25s;
    -webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
    transition: transform 0.25s, opacity 0.25s;
}
#digaloenvozalta form.enviado {
    pointer-events: none;
    opacity: 0;
    -o-transform: translateZ(0) scale(0.9);
    -ms-transform: translateZ(0) scale(0.9);
    -moz-transform: translateZ(0) scale(0.9);
    -webkit-transform: translateZ(0) scale(0.9);
    transform: translateZ(0) scale(0.9);
}
#digaloenvozalta form br {
    display: none;
}
#digaloenvozalta form > span {
    display: block;
    padding-right: 3.25rem;
    margin-bottom: 0.75rem;
}
#digaloenvozalta fieldset {
    border: none;
    background: none;
}
#digaloenvozalta fieldset span:not(.borrar):not(.limitador) {
    display: block;
    margin: 0.375rem 0;
    font-size: 0.875rem;
    line-height: 1rem;
}
#digaloenvozalta input[type=email], #digaloenvozalta textarea, #digaloenvozalta input[type=text] {
    display: block;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    padding: 0.5rem 1rem;
    resize: vertical;
}
#digaloenvozalta .cargador {
    display: inline-block;
    background: GhostWhite;
    color: #212121;
    padding: 0.125rem 0.5rem 0.125rem 0;
    overflow: hidden;
    position: relative;
}
#digaloenvozalta .cargador::before {
    content: '\0f0c6';
}
#digaloenvozalta .cargador::after {
    content: 'Adjuntar archivo';
    font-family: 'FiraSansRegular';
    font-size: 1rem;
    line-height: 2rem;
}
#digaloenvozalta .cargador input[type=file] {
    opacity: 0.01;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
#digaloenvozalta input[name=seguridad], #digaloenvozalta img[src=captcha] {
    display: block;
    width: 49%;
}
#digaloenvozalta input[name=seguridad] {
    float: left;
}
#digaloenvozalta img[src=captcha] {
    float: right;
}
#digaloenvozalta .cargado {
    display: block;
    background-color: rgba(255,255,255,0.2);
    color: rgba(0,0,0,0.75);
    padding: 0.25rem;
    margin-bottom: 0.125rem;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}
#digaloenvozalta .cargado input[type=file] {
    opacity: 0.01;
    position: absolute;
    top: 0; left: 99%; right: 0; bottom: 99%;
}
#digaloenvozalta .borrar::before {
    content: '\0f014';
    cursor: pointer;
}
#digaloenvozalta .borrar:hover::before {
    background-color: Tomato;
    color: White;
}
#digaloenvozalta .respuesta {
    text-align: center;
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 45%;
}
#digaloenvozalta .volver {
    display: block;
    background: #FF6F00;
    margin: 1rem auto;
    cursor: pointer;
}
#digaloenvozalta .volver::before {
    content: '\0f060';
}
#digaloenvozalta .mas {
    margin-left: 0.93%;
    margin-right: 0;
}
#digaloenvozalta .columna {
    width: 49.07%;
    margin: 0;
    margin-left: 0.93%;
}
.denuncia {
    background-color: White;
}
.denuncia .fotografias {
    border: 1px solid LightGray;
    overflow: hidden;
    position: relative;
}
.denuncia img {
    display: block;
    width: 100%;
    height: auto;
}
.denuncia .indice {
    display: none;
}
.denuncia .leermas::before {
    color: #1E88E5;
    font-size: inherit;
    line-height: inherit;
    vertical-align: baseline;
    cursor: pointer;
}
.denuncia :not(.compactado) .leermas::before {
    content: '\000A0\0f056';
}
.denuncia .compactado .leermas::before {
    content: '\000A0\0f055';
}
.denuncia .compactado .restante {
    display: none;
}
#denuncias {
    width: 100%;
    margin: 0;
    position: relative;
}
#denuncias h3 {
    background: #F9A825;
    color: White;
    font-size: 1.75rem;
    width: auto;
    padding: 1rem;
    margin: 0;
    margin-bottom: 0.375rem;
}
#denuncias h3::before {
    content: '\0f075';
    vertical-align: top;
}
#denuncias h3 br {
    display: none;
}
#denuncias h3 span {
    display: inline-block;
    width: 12.5rem;
    line-height: 1rem;
    margin-left: 1rem;
    vertical-align: top;
}
#denuncias .denuncia {
    display: inline-block;
    width: 32.506%;
    margin: 0 0 0.375rem 0.62%;
}
#podcast_ {
    width: 100%;
    position: relative;
}
#podcast_ h3 {
    background: #558B2F;
    color: White;
    font-size: 1.75rem;
    width: auto;
    padding: 1rem;
    margin: 0;
    margin-bottom: 0.375rem;
}
#podcast_ h3::before {
    content: '\0f09e';
    vertical-align: baseline;
}
#podcast_ .podcast {
    display: inline-block;
    vertical-align: top;
    background: #7CB342;
    width: 32.506%;
    margin: 0 0 0.375rem 0.62%;
    position: relative;
}
#podcast_ .mas {
    width: auto !important;
}
.emision {
    display: inline-block;
    background-color: White;
    width: 32.506%;
    margin: 0 0 0.375rem 0.62%;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    -o-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -ms-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
}
.emision .video, .emision.podcast {
    white-space: normal;
}
.emision.podcast {
    background-color: White;
    color: #4d4d4d;
    -o-border-radius: 0 0 0.25rem 0.25rem;
    -ms-border-radius: 0 0 0.25rem 0.25rem;
    -moz-border-radius: 0 0 0.25rem 0.25rem;
    -webkit-border-radius: 0 0 0.25rem 0.25rem;
    border-radius: 0 0 0.25rem 0.25rem;
}
.emision .video {
    color: White;
    overflow: hidden;
    position: relative;
}
/* noticia completa (interior) */
#noticia {
    -o-border-radius: 0 0 0.25rem 0.25rem;
    -ms-border-radius: 0 0 0.25rem 0.25rem;
    -moz-border-radius: 0 0 0.25rem 0.25rem;
    -webkit-border-radius: 0 0 0.25rem 0.25rem;
    border-radius: 0 0 0.25rem 0.25rem;
    background: White;
    color: currentColor;
    width: 65.6%;
    padding: 1rem 1rem 7rem;
    margin-left: 0.62%;
    position: relative;
    -o-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -ms-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
}
#noticia h2 {
    font-size: 1.875rem;
    line-height: 2.125rem;
    margin-bottom: 0.75rem;
}
#noticia h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
}
#noticia .seccion {
    text-transform: capitalize;
    margin-right: 0.5rem;
}
#noticia .seccion::before {
    content: '\0f015';
}
#noticia .fotografias {
    border: 1px solid LightGray;
    margin: 0.5rem 0 1rem;
    overflow: hidden;
    position: relative;
}
#noticia .indice {
    display: none;
}
#noticia img {
    display: block;
    width: 100%;
    height: auto;
}
#noticia .audioreproductor {
    background: #7CB342;
    color: White;
    padding: 0.5rem 1rem;
    margin: 0 0 0.5rem 1rem;
    float: right;
}
#noticia .enAudio {
    display: block;
    color: inherit;
}
#noticia .enAudio::before {
    content: '\0f144';
    font-size: 2rem;
    margin-right: 1rem;
}
/* elementos del lateral */
#lateral > *:not(:last-child) {
    margin-bottom: 0.375rem;
}
#lateral > *:not(.noticia) {
    -o-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -ms-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
    box-shadow: 0 0 0.1875rem rgba(0,0,0,0.25);
}
#lateral .mas, #canalYTYBotonMas .mas {
    -o-border-radius: 0 0 0.1875rem 0.1875rem;
    -ms-border-radius: 0 0 0.1875rem 0.1875rem;
    -moz-border-radius: 0 0 0.1875rem 0.1875rem;
    -webkit-border-radius: 0 0 0.1875rem 0.1875rem;
    border-radius: 0 0 0.1875rem 0.1875rem;
    margin: 0;
}
#publicidad {
    overflow: hidden;
    position: relative;
}
#publicidad * {
    display: block;
}
#publicidad img {
    display: block;
    width: 100%;
    height: auto;
}
#publicidad .indice {
    display: none;
}
#dron img {
    pointer-events: none;
    display: block;
    width: 100%;
    height: auto;
}
#redes img {
    pointer-events: none;
    display: block;
    width: 100%;
    height: auto;
}
#primera_emision img, #segunda_emision img, #horoscopos img {
    display: block;
    width: 100%;
    height: auto;
}
#canalYTYBotonMas > a {
    background: #E52D27;
}
#canalyt {
    color: White;
    overflow: hidden;
    position: relative;
}
#canalyt .indice {
    display: none;
}
#podcast {
    background-color: #7CB342;
    position: relative;
}
#podcast h3 {
    background-color: rgba(0,0,0,0.1);
    color: White;
    padding: 1rem;
    text-align: right;
}
#podcast h3::after {
    content: '\0f09e';
    margin-left: 0.375rem;
}
.podcast {
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: White;
    padding: 1rem;
    position: relative;
}
#podcast .podcast:hover {
    background-color: rgba(0,0,0,0.3);
    -o-box-shadow: inset 0 0 1rem rgba(0,0,0,0.2);
    -ms-box-shadow: inset 0 0 1rem rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 0 1rem rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 0 1rem rgba(0,0,0,0.2);
    box-shadow: inset 0 0 1rem rgba(0,0,0,0.2);
}
.podcast .titulo::before {
    content: '\0f144';
    background-color: rgba(0,0,0,0.05);
    font-size: 1.875rem;
    margin-right: 0.25rem;
    float: left;
}
#podcast .mas {
    background: rgba(0,0,0,0.15);
}
#podcast .mas::before {
    background: transparent;
}
#encuesta {
    background-color: #FF7043;
    color: White;
    position: relative;
}
#encuesta h3 {
    background-color: rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: right;
}
#encuesta h3::after {
    content: '\0f00c';
    margin-left: 0.375rem;
}
#encuesta .pregunta {
    padding: 1rem;
}
#encuesta .votacion, #encuesta .grafica {
    padding: 0 1rem 1rem;
    text-align: center;
    opacity: 1;
    -o-transform: translateZ(0) translateY(0%) scale(1);
    -ms-transform: translateZ(0) translateY(0%) scale(1);
    -moz-transform: translateZ(0) translateY(0%) scale(1);
    -webkit-transform: translateZ(0) translateY(0%) scale(1);
    transform: translateZ(0) translateY(0%) scale(1);
    -o-transition: -o-transform 0.35s, opacity 0.35s;
    -ms-transition: -ms-transform 0.35s, opacity 0.35s;
    -moz-transition: -moz-transform 0.35s, opacity 0.35s;
    -webkit-transition: -webkit-transform 0.35s, opacity 0.35s;
    transition: transform 0.35s, opacity 0.35s;
}
#encuesta .votado {
    opacity: 0;
    -o-transform: translateZ(0) translateY(-10%) scale(0.8);
    -ms-transform: translateZ(0) translateY(-10%) scale(0.8);
    -moz-transform: translateZ(0) translateY(-10%) scale(0.8);
    -webkit-transform: translateZ(0) translateY(-10%) scale(0.8);
    transform: translateZ(0) translateY(-10%) scale(0.8);
}
#encuesta .votacion a {
    display: inline-block;
    border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    background-color: White;
    color: #212121;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0.0625rem;
    transition: background 0.25s;
    -o-transition: background 0.25s;
    -ms-transition: background 0.25s;
    -moz-transition: background 0.25s;
    -webkit-transition: background 0.25s;
}
#encuesta .votacion a:hover {
    background-color: #212121;
    color: White;
}
#encuesta .votacion a:active {
    transform: translateZ(0) scale(0.9);
    -o-transform: translateZ(0) scale(0.9);
    -ms-transform: translateZ(0) scale(0.9);
    -moz-transform: translateZ(0) scale(0.9);
    -webkit-transform: translateZ(0) scale(0.9);
}
#encuesta .grafica img {
    display: block;
    width: 100%;
    height: auto;
}
#encuesta .grafica strong::before {
    content: '\0f164';
    display: block;
    background: rgba(0,0,0,0.1);
    width: 2rem;
    margin: 1rem auto 0;
}
#encuesta canvas {
    /*
        sin padding porque se deforma el circulo
        border-color, font-family y font-size
        son retomados por canvas para efecto de
        formato de la gráfica
    */
    display: block;
    border-color: White;
    color: White;
    font-size: 0.875rem;
    width: 100%;
    height: 11.25rem;
}
#comentario {
    background-color: #00BCD4;
    /*width: 100%;*/
    margin-left: 0;
    position: relative;
}
#comentario .titulo, #comentario .fecha {
    color: White;
}
#comentario .mas {
    background-color: #086788 !important;
}
#subscribir {
    background-color: #7986CB;
    color: White;
    overflow: hidden;
    position: relative;
}
#subscribir h3 {
    background-color: rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: right;
}
#subscribir h3::after {
    content: '\0f06b';
    margin-left: 0.375rem;
}
#subscribir span {
    display: block;
    padding: 1rem;
}
#subscribir form {
    display: block;
    margin: 0 1rem 0.375rem;
    opacity: 1;
    -o-transform: translateZ(0) scale(1);
    -ms-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    -o-transition: -o-transform 0.25s, opacity 0.25s;
    -ms-transition: -ms-transform 0.25s, opacity 0.25s;
    -moz-transition: -moz-transform 0.25s, opacity 0.25s;
    -webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
    transition: transform 0.25s, opacity 0.25s;
}
#subscribir form.enviado {
    pointer-events: none;
    opacity: 0;
    -o-transform: translateZ(0) scale(0.9);
    -ms-transform: translateZ(0) scale(0.9);
    -moz-transform: translateZ(0) scale(0.9);
    -webkit-transform: translateZ(0) scale(0.9);
    transform: translateZ(0) scale(0.9);
}
#subscribir input[type=email] {
    display: block;
    border: none;
    border-bottom: 1px dotted currentColor;
    background: none;
    color: GhostWhite;
    width: 99%;
    padding: 0.5rem 0.75rem;
}
#subscribir .gracias {
    text-align: center;
    position: absolute;
    top: 55%;
    left: 1rem;
    right: 1rem;
}
#subscribir .gracias::before {
    content: '\0f004';
    display: block;
    -o-animation: aparecerDesdeAbajo 0.35s;
    -ms-animation: aparecerDesdeAbajo 0.35s;
    -moz-animation: aparecerDesdeAbajo 0.35s;
    -webkit-animation: aparecerDesdeAbajo 0.35s;
    animation: aparecerDesdeAbajo 0.35s;
}
#subscribir .gracias strong {
    font-size: 1.25rem;
}
/* elementos del pie de página */
#pie {
    margin-bottom: 1rem;
    position: relative;
    clear: both;
}
#cinta {
    background-color: #727272;
    color: WhiteSmoke;
    padding: 1rem;
    margin: auto;
    line-height: 1rem;
    font-size: 0.875rem;
    text-align: center;
    position: relative;
}
#cinta::before, #cinta::after {
    content: '\000A0';
    -o-border-radius: 0;
    -ms-border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0;
    border-top-width: 1rem;
    background: none;
    min-height: 0;
    min-width: 0;
    width: 0;
    height: 0;
    position: absolute;
    top: -1rem;
}
#cinta::before {
    border-left-color: #525252;
    border-left-width: 1rem;
    right: 0;
}
#cinta::after {
    border-right-color: #525252;
    border-right-width: 1rem;
    left: 0;
}
/* efecto galeria */
.fxGaleria {
    background: Black;
    overflow: hidden;
    position: relative;
}
.fxGaleria > *:not(.indice):not(.fSiguiente):not(.fAnterior) {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -o-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}
.fxGaleria > *:not(.indice):not(.fSiguiente):not(.fAnterior).activo {
    pointer-events: all;
    opacity: 1;
    position: relative;
}
/* escuchanos */
#escuchanos {
    display: none;
}
#escuchanos.activo {
    display: block;
    background-color: rgba(63,81,181,0.975);
    color: White;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    -o-animation: revelarEnPerspectiva 0.5s;
    -ms-animation: revelarEnPerspectiva 0.5s;
    -moz-animation: revelarEnPerspectiva 0.5s;
    -webkit-animation: revelarEnPerspectiva 0.5s;
    animation: revelarEnPerspectiva 0.5s;
}
#escuchanos > div {
    display: -webkit-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-content: center;
    align-content: center;
    -webkit-align-items: center;
    align-items: center;
    min-height: 100%;
    height: 100%;
}
#escuchanos > div > div {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-basis: 1;
    -webkit-flex-basis: 1;
    flex-basis: 1;
}
#escuchanos .slogan {
    white-space: nowrap;
}
#escuchanos .slogan strong:first-child {
    display: inline-block;
    font-size: 2.5rem;
    line-height: 2.5rem;
}
#escuchanos .slogan span.sub {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.5rem;
    vertical-align: bottom;
}
#escuchanos .slogan span.sup {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 2rem;
}
#escuchanos .slogan strong:last-child {
    display: inline-block;
    font-size: 2.875rem;
    line-height: 2.5rem;
    vertical-align: top;
}
#escuchanos .momentos {
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
}
#escuchanos .primera, #escuchanos .segunda, #escuchanos .capsula {
    display: inline-block;
    margin: 0.5rem;
    white-space: nowrap;
    position: relative;
}
#escuchanos .primera strong:first-of-type, #escuchanos .segunda strong:first-of-type, #escuchanos .capsula strong:first-of-type {
    color: #FFEB3B;
    font-size: 1.6875rem;
}
#escuchanos .primera span.sub, #escuchanos .segunda span.sub {
    display: inline-block;
    margin-top: 0.375rem;
    margin-left: 0.375rem;
    font-size: 0.8125rem;
}
#escuchanos .primera span.sup, #escuchanos .segunda span.sup {
    font-size: 1.125rem;
    line-height: 1.5rem;
}
#escuchanos .primera strong:last-of-type, #escuchanos .segunda strong:last-of-type, #escuchanos .capsula strong:last-of-type {
    display: inline-block;
    font-size: 2.375rem;
    line-height: 2rem;
    vertical-align: top;
}
#escuchanos .capsula strong:last-of-type {
    padding-left: 5.5rem;
}
#escuchanos .capsula span:not(:first-of-type) {
    line-height: 1rem;
    position: absolute;
    left: 3rem;
}
#escuchanos .momentos span:first-of-type {
    display: inline-block;
    text-align: center;
    width: 100%;
}
#escuchanos .capsula span.sup {
    font-family: 'FiraSansSemibold';
    bottom: 1rem;
}
#escuchanos .capsula span.sub {
    bottom: 0;
}
#escuchanos .capsula::after {
    content: '\0f017';
    position: absolute;
    left: 1.25rem;
    bottom: 0;
}
#escuchanos .estaciones {
    position: relative;
}
#escuchanos .estaciones a {
    display: inline-block;
    text-decoration: none;
    vertical-align: top;
}
#escuchanos .estaciones img {
    display: block;
    width: 10.625rem;
    height: 10.625rem;
}
#escuchanos .orden {
    text-align: center;
    white-space: nowrap;
}
#escuchanos .orden > strong {
    font-size: 2rem;
}
#radio {
    -o-border-radius: 0.1875rem;
    -ms-border-radius: 0.1875rem;
    -moz-border-radius: 0.1875rem;
    -webkit-border-radius: 0.1875rem;
    border-radius: 0.1875rem;
    background: #212121;
    color: White;
    text-align: center;
    padding: 0.25rem;
    position: fixed;
    left: 1%;
    bottom: 1%;
    -o-box-shadow: 0 0.0625rem 0.3125rem Black;
    -ms-box-shadow: 0 0.0625rem 0.3125rem Black;
    -moz-box-shadow: 0 0.0625rem 0.3125rem Black;
    -webkit-box-shadow: 0 0.0625rem 0.3125rem Black;
    box-shadow: 0 0.0625rem 0.3125rem Black;
}
#radio > span:not(.audio) {
    font-size: 0.875rem;
    line-height: inherit;
}
#radio > a {
    display: none;
    margin: 0;
}
/* buscador */
#buscador {
    display: none;
}
#buscador.activo {
    display: inherit;
    background: rgba(30,136,229,0.975);
    color: White;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    -o-animation: revelarCortina 0.5s;
    -ms-animation: revelarCortina 0.5s;
    -moz-animation: revelarCortina 0.5s;
    -webkit-animation: revelarCortina 0.5s;
    animation: revelarCortina 0.5s;
}
#buscador form {
    max-height: 75%;
    max-width: 90%;
    width: auto;
    height: auto;
    margin: auto;
    text-align: center;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50%;
    -o-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}
#buscador fieldset {
    display: inline-block;
    border: none;
    border-bottom: 1px solid White;
    width: auto;
    margin-bottom: 1rem;
}
#buscador fieldset.buscando {
    background-image: -o-linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-image: -ms-linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-image: -moz-linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-image: -webkit-linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-image: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-position: 0rem bottom;
    background-repeat: repeat-x;
    background-size: 2rem 2rem;
    -o-animation: candybar 0.5s linear infinite;
    -ms-animation: candybar 0.5s linear infinite;
    -moz-animation: candybar 0.5s linear infinite;
    -webkit-animation: candybar 0.5s linear infinite;
    animation: candybar 0.5s linear infinite;
}
#buscador input[name=buscar] {
    padding: 0.375rem 2rem 0.375rem 1rem;
    border: none;
    background: none;
}
#buscador .enviar {
    display: inline;
}
#buscador .enviar::before {
    content: '\0f002';
}
#buscador a {
    margin-left: 1rem;
}
#buscador a::before {
    content: '\0203A\000A0';
    display: inline;
    color: #03A9F4;
    font-family: 'FiraSansSemiBold';
    font-size: 1.25rem;
    text-align: left;
    vertical-align: baseline;
    width: inherit;
    height: inherit;
    line-height: inherit;
}
#buscador a:link {
    color: #B2EBF2;
}
#buscador a:hover {
    color: #E1F5FE;
}
#buscador a:visited {
    color: #FFF9C4;
}
/* bannerflash */
#bannerflash.invisible {
    display: none;
}
#bannerflash {
    background-color: rgba(0,0,0,0.75);
    color: White;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}
#bannerflash div:not(.indice) {
    background: none;
    text-align: center;
    top: 50%;
    -o-transform: translateZ(0) translateY(-50%);
    -ms-transform: translateZ(0) translateY(-50%);
    -moz-transform: translateZ(0) translateY(-50%);
    -webkit-transform: translateZ(0) translateY(-50%);
    transform: translateZ(0) translateY(-50%);
}
#bannerflash .indice {
    color: White;
    text-align: center;
    left: 0;
}
#bannerflash .fAnterior, #bannerflash .fSiguiente {
    display: none;
}
/* audiointro */
#audiointro {
    display: block;
    width: 2rem;
    height: 2rem;
    line-height: 1.75rem;
    margin: auto;
    text-align: center;
    position: absolute;
    top: 0.5rem;
    left: 0;
    right: 0;
    cursor: pointer;
    transform: translateZ(0) scale(1);
    -o-transform: translateZ(0) scale(1);
    -ms-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -webkit-transform: translateZ(0) scale(1);
    animation: creciendo 750ms;
    -o-animation: creciendo 750ms;
    -ms-animation: creciendo 750ms;
    -moz-animation: creciendo 750ms;
    -webkit-animation: creciendo 750ms;
}
#audiointro::before {
    content: '\000A0';
    display: block;
    -o-border-radius: 50% 50% 0 50%;
    -ms-border-radius: 50% 50% 0 50%;
    -moz-border-radius: 50% 50% 0 50%;
    -webkit-border-radius: 50% 50% 0 50%;
    border-radius: 50% 50% 0 50%;
    background-color: #E91E63;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transform: translateZ(0) rotate(45deg);
    -o-transform: translateZ(0) rotate(45deg);
    -ms-transform: translateZ(0) rotate(45deg);
    -moz-transform: translateZ(0) rotate(45deg);
    -webkit-transform: translateZ(0) rotate(45deg);
}
#audiointro > span {
    display: inline-block;
    background-color: White;
    width: 2px;
    height: 2px;
    margin: 0 1px;
    vertical-align: middle;
    transition: height 100ms;
    -o-transition: height 100ms;
    -ms-transition: height 100ms;
    -moz-transition: height 100ms;
    -webkit-transition: height 100ms;
}
/* audio */
.audio {
    display: block;
    line-height: 0;
    white-space: nowrap;
    position: relative;
}
.audio.cargando {
    -o-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    border-radius: 0.25rem;
    background: url(../pics/caramelo_verde.gif) center center repeat;
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.audio .remover {
    display: inline-block;
    -o-border-radius: 0.125rem;
    -ms-border-radius: 0.125rem;
    -moz-border-radius: 0.125rem;
    -webkit-border-radius: 0.125rem;
    border-radius: 0.125rem;
    background: Tomato;
    color: White;
    text-align: center;
    vertical-align: top;
}
.audio .remover::before {
    content: '\0f057';
    min-width: inherit;
    min-height: inherit;
    line-height: inherit;
    vertical-align: inherit;
}
audio {
    pointer-events: none;
    visibility: hidden;
}
audio.listo {
    pointer-events: all;
    visibility: visible;
}
.audio ~ * {
    margin-top: 0.25rem;
    pointer-events: none;
    opacity: 0.35;
}
/* youtube */
#reproductorYT {
    background: Black;
    pointer-events: all;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}
#reproductorYT .cerrarYT {
    display: inline !important;
    -o-border-radius: 50% 0 50% 50%;
    -ms-border-radius: 50% 0 50% 50%;
    -moz-border-radius: 50% 0 50% 50%;
    -webkit-border-radius: 50% 0 50% 50%;
    border-radius: 50% 0 50% 50%;
    background-color: Tomato;
    color: White;
    width: auto !important;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
#reproductorYT .cerrarYT::before {
    content: '\0f057';
}
/* botones sociales */
#compartir  {
    overflow: visible;
    position: relative;
    float: right;
}
#compartir > span:first-of-type {
    font-size: 0.875rem;
}
#compartir > span:first-of-type::before {
    content: '\0f1e0';
    background: -o-radial-gradient(circle, #00897B 55%, transparent 60%);
    background: -ms-radial-gradient(circle, #00897B 55%, transparent 60%);
    background: -moz-radial-gradient(circle, #00897B 55%, transparent 60%);
    background: -webkit-radial-gradient(circle, #00897B 55%, transparent 60%);
    background: radial-gradient(circle, #00897B 55%, transparent 60%);
    color: White;
    font-size: inherit;
}
#compartir ._shortlink {
    border: 1px solid LightGray;
    padding-right: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    white-space: nowrap;
}
#compartir ._shortlink::before {
    content: '\0f0c1';
    color: #D81B60;
    font-size: inherit;
}
#compartir ._gplus, #compartir ._twitter, #compartir ._facebook {
    display: block;
    height: 20px;
    position: absolute;
    bottom: 0;
    z-index: 1;
}
#compartir ._gplus {
    width: 35%;
    left: 0;
}
#compartir ._twitter {
    width: 25%;
    margin: auto;
    left: 0;
    right: 0;
}
#compartir ._facebook {
    width: 37%;
    right: 0;
}
/* arreglo a botones sociales */
.g-plus, .twitter-share-button, .fb-share-button {
    display: inline-block;
}
#fb-root {
    pointer-events: none;
    overflow: hidden;
    position: absolute !important;
}
.fb_iframe_widget span {
    float: right;
}
iframe[id^='twitter-widget-'] {
    min-width: 72px;
    /* max-width: 88px; */
    overflow: visible;
}
div[id*=_plus_], .twitter-share-button, .fb-share-button {
    display: inline-block;
    vertical-align: top;
}
div[id*=_plus_] {
    pointer-events: none;
}
/* anillo de avance ajax */
/* start: progress circle */
.wheel, .wheel:before, .wheel:after, .wheel>span {
    border-radius: 50%; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
}
.wheel { background: #A0A0A0; height: 3rem; width: 3rem; margin: auto; overflow: hidden; z-index: 5; }
.wheel:before { content: ' '; background: linear-gradient(90deg, #A0A0A0 50%, transparent 50%); z-index: 1; }
.wheel:after {
    content: attr(lang)'%'; background: #E0E0E0; color: #505050; z-index: 3;
    font-family: monospace; font-size: 0.875rem; line-height: 3rem; text-align: center;
    transform: scale(0.7); -webkit-transform: scale(0.7);
}
.wheel>span {
    background: linear-gradient(90deg, Tomato 50%, transparent 50%); z-index: 0;
    transition: transform 125ms; -webkit-transition: -webkit-transform 125ms;
}
.wheel.gth { background: Tomato; }
.wheel.gth>span { z-index: 2; }
/* media queries */
@media screen and (max-width: 1920px) { * { font-size: 20px; line-height: 28px; } }
@media screen and (max-width: 1600px) { * { font-size: 18px; line-height: 26px; } }
@media screen and (max-width: 1280px) { * { font-size: 16px; line-height: 24px; } }
@media screen and (max-width: 960px) {
    #secciones > span::before, #secciones > span.revelar::before,
    #secciones > span::after, #secciones > span.revelar::after {
        color: White;
    }
    #secciones > span {
        display: inline-block;
        cursor: pointer;
        float: left;
    }
    #secciones > span::before {
        content: 'Secciones';
        font-family: 'FiraSansRegular';
        font-size: 1rem;
    }
    #secciones > span::after {
        content: '\0f0d7';
    }
    #secciones > span.revelar::before {
        content: '';
    }
    #secciones > span.revelar::after {
        content: '\0f057';
        font-size: 1.875rem;
    }
    #secciones > span.revelar {
        position: fixed;
        top: 0.75rem;
        right: 1rem;
        z-index: 5;
        -o-animation: aparecerEnFade 1s;
        -ms-animation: aparecerEnFade 1s;
        -moz-animation: aparecerEnFade 1s;
        -webkit-animation: aparecerEnFade 1s;
        animation: aparecerEnFade 1s;
    }
    #secciones > span.revelar + ul {
        display: block;
        background: rgba(244,67,54,0.975);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 4;
        -o-animation: aparecerDesdeAbajo 0.35s;
        -ms-animation: aparecerDesdeAbajo 0.35s;
        -moz-animation: aparecerDesdeAbajo 0.35s;
        -webkit-animation: aparecerDesdeAbajo 0.35s;
        animation: aparecerDesdeAbajo 0.35s;
    }
    #secciones ul {
        display: none;
        margin: 0;
    }
    #secciones ul::before {
        content: 'Secciones';
        display: block;
        color: White;
        font-family: 'FiraSansSemibold';
        font-size: 1rem;
        text-align: left;
        padding: 1rem;
    }
    #secciones li {
        display: block;
        min-width: 11rem;
        max-width: 18.75rem;
        width: 33.33%;
        margin: 0 auto 0.125rem;
    }
    #secciones li a {
        display: block;
        padding: 0 1rem;
    }
    #secciones > a strong {
        display: inline;
    }
    #secciones > a, #secciones > a * {
        font-size: inherit;
        line-height: inherit;
    }
    #relevantes .informacion {
        padding: 1rem;
    }
    #relevantes .indice {
        display: none;
    }
    #relevantes .fAnterior, #relevantes .fSiguiente {
        display: inherit;
    }
}
@media screen and (max-width: 800px) {
    #contenedor {
        padding: 0;
        overflow: hidden;
    }
    #navegacion {
        padding: 0.625rem 0.375rem 0;
    }
    #contactoRapido a > span { display: none; }
    #contactoRapido a:hover {
        background: none;
        -o-box-shadow: none;
        -ms-box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    #contactoRapido a:hover::before {
        background-color: #E91E63;
    }
    #secciones {
        margin: 0 0.375rem;
    }
    #deslizador::before, #deslizador::after {
        border-bottom-width: 0.375rem;
        bottom: -0.375rem;
    }
    #deslizador::before {
        border-right-width: 0.375rem;
    }
    #deslizador::after {
        border-left-width: 0.375rem;
    }
    #contenido {
        margin: 0 0.375rem;
    }
    #cinta::before, #cinta::after {
        border-top-width: 0.375rem;
        top: -0.375rem;
    }
    #cinta::before {
        border-left-width: 0.375rem;
    }
    #cinta::after {
        border-right-width: 0.375rem;
    }
    #marca.enSeccion {
        margin-left: 0.375rem;
    }
    #publicidad_encabeza {
        margin-right: 0.375rem;
    }
}
@media screen and (max-width: 768px) {
    #relevantes {
        width: 98.76%;
        margin: 0 0.62% 0.375rem;
    }
    .columna {
        width: 49.07% !important;
        margin-left: 0.62% !important;
    }
    .mas {
        width: 98.76%;
        margin: 0 0.62% 0.375rem;
    }
    #digaloenvozalta {
        width: 99.38%;
        margin-right: 0.62%;
    }
    #digaloenvozalta > h3 {
        margin: 0 0.62% 0.375rem;
    }
    #digaloenvozalta > .mas {
        margin-left: 0.62%;
    }
    #noticia {
        width: 98.76%;
        padding-bottom: 1rem;
        margin: 0 0.62% 0.375rem;
    }
    #lateral {
        width: 100%;
        margin: 0.375rem 0 0;
        float: none;
    }
    #lateral .mas {
        width: 100%;
        margin: 0;
    }
    #lateral > * {
        display: inline-block;
        vertical-align: top;
        width: 49.07%;
    }
    #dron, #primera_emision, #horoscopos, #podcast, #subscribir_ {
        margin-right: 0.62%;
        float: right;
        clear: right;
    }
    #publicidad, #segunda_emision, #canalYTYBotonMas, #encuesta, #comentario_ {
        margin-left: 0.62%;
        float: left;
        clear: left;
    }
}
@media screen and (max-width: 480px) {
    #navegacionYRedes a.envivo * {
        font-size: 0.75rem;
        line-height: 0.75rem;
    }
    #navegacionYRedes a.envivo span {
        display: inline-block;
        padding: 0.25rem 0;
        vertical-align: top;
    }
    #navegacionYRedes a.envivo strong {
        display: block;
    }
    #navegacionYRedes a[title=facebook]::after, #navegacionYRedes a[title=buscar]::after {
        margin-left: 0.125rem;
    }
    #marca.enSeccion {
        width: 100%;
        margin: 0 auto;
        float: none;
    }
    #publicidad_encabeza {
        width: 96.3333336%;
        margin: 0 auto 0.625rem;
        float: none;
    }
    #relevantes {
        min-height: 13.75rem;
    }
    #relevantes img {
        height: 13.75rem;
        width: auto;
    }
    .columna {
        width: 98.76% !important;
        margin: 0 0 0.375rem 0.62% !important;
    }
    #denuncias h3, #podcast_ h3 {
        font-size: 1.5rem;
    }
    #denuncias h3 span {
        margin-left: 2rem;
    }
    #noticia .audioreproductor, #noticia .enAudio {
        width: 100%;
    }
    #escuchanos > div {
        -o-transform: translateZ(0) scale(0.7);
        -ms-transform: translateZ(0) scale(0.7);
        -moz-transform: translateZ(0) scale(0.7);
        -webkit-transform: translateZ(0) scale(0.7);
        transform: translateZ(0) scale(0.7);
    }
    #escuchanos .estaciones img {
        width: 6.25rem;
        height: 6.25rem;
    }
    #lateral > * {
        width: 98.76%;
        margin-left: 0.62%;
        float: none;
    }
    #radio {
        -o-border-radius: 0;
        -ms-border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        background: transparent;
        color: currentColor;
        border-radius: 0;
        width: 100%;
        padding: 0;
        left: 0;
        bottom: 0;
        -o-box-shadow: none;
        -ms-box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    #radio > span:not(.audio), #radio > a {
        display: none;
    }
}
@media screen and (max-width: 400px) {
    #navegacionYRedes a.envivo span, #secciones > a span {
        display: none;
    }
}
@media screen and (max-width: 320px) {
    #compartir {
        -o-transform: translateZ(0) scale(0.85) translate(7.5%, 0);
        -ms-transform: translateZ(0) scale(0.85) translate(7.5%, 0);
        -moz-transform: translateZ(0) scale(0.85) translate(7.5%, 0);
        -webkit-transform: translateZ(0) scale(0.85) translate(7.5%, 0);
        transform: translateZ(0) scale(0.85) translate(7.5%, 0);
    }
    #compartir > div:first-of-type {
        font-size: 0.8125rem;
    }
}
/* debug */
#debug {
    background: Tomato;
    color: GhostWhite;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    position: fixed;
    right: 0;
    bottom: 0;
}
