@charset "UTF-8";
/*------------------------------------*\
    $STYLE
\*------------------------------------*/
/**
 * Let's define the settings file here, or the partials to be included.
 * This way we can have different .css files compiled with different partials each.
 */
/*------------------------------------*\
    $PARTIALS
\*------------------------------------*/
/**
 * All files to be compiled
 */
/**
* Scss Libraries, mixins, functions and any Scss focused logic
**/
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/*------------------------------------*\
    $SETTINGS
\*------------------------------------*/
/**
 *
 * Define all variables and values to use
 *
 */
/*------------------------------------*\
    $INCLUDED-COMPONENTS
\*------------------------------------*/
/**
 * We can tell the components to use here, `true` for used, `false` unused.
 * Remember you can overwrite this value anywhere else by removing the `!default` property
 */
/*------------------------------------*\
    $BREAKPOINTS
\*------------------------------------*/
/**
 * "Start with the small screen first, then expand until it looks like shit. Time to insert a breakpoint!"
 * Used with mixin `respond-to($breakpoint)`:

.div {
  color: pink;
  @include respond-to(medium) {
    color: maroon;
  }
}
 *
 */
/*
$breakpoints: (
  'small': 			48em,
  'medium': 		56.25em,
  'large': 			68.75em,
) !default;
*/
/*------------------------------------*\
    $Z-INDEX
\*------------------------------------*/
/**
 * We can have control over z-index and not ending up having 900 to infinite.
 * To use this values, we use the `z($layers)` function:
 .element {
  z-index: z(goku);
 }
 *
 */
/*------------------------------------*\
    $DIR
\*------------------------------------*/
/**
 * Sometimes we change image dir from develop to production:
 */
/*
 * In case we use local fonts (I use them fewer and fewer lately)
 */
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/**
 * Constant layout values, apart from these we can also declare values
 * for different blocks sizes and more.
 */
/*------------------------------------*\
    $GRID
\*------------------------------------*/
/**
 * These are the variables we use for our Grid
 */
/*------------------------------------*\
    $FONT-FACE
\*------------------------------------*/
/**
 * Fonts definitions
 */
/*
 * Font Size variables are defined in a Scss MAP, this MAP will create
 * a class (in `utilities.scss`) for every size with the value in REM units, you can check
 * `utilities.scss` if you need to change the loop:

  .x-small { font-size: .8rem}

 * We also have a function to assign font sizes, call `fs`:

    .selector { font-size: fs(f_10);}

 *
 */
/*------------------------------------*\
    $COLORS
\*------------------------------------*/
/**
 * Brand colors
 */
/**
* Grey Scale
* This is mainly to hold back designers from adding 200 different greys ;)
*/
/**
* Colors Map
* We may also need a map with all these colors, to create classes.
*/
/*------------------------------------*\
    $TEXTURAS
\*------------------------------------*/
/**
 * Definimos Colores y elementos de popups, mensajes de alerta, etc...
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/*
* Fácil de usar: las variables a usar están en settings.scss y son:

    'small'  : 48em,
    'medium' : 56.25em,
    'large'  : 68.75em,

* Y el uso va como sigue:

.foo {
  color: red;
  @include respond-to('mobile') {
    color: blue;
  }
}
*/
/**
* Centrar y dar un ancho máximo igual a $pagemaxwidth.
*/
/*------------------------------------*\
    $FUNCTIONS
\*------------------------------------*/
/*
 * Function to control Index values

 	.selector { z-index: z(goku);}

 * Compiles to:

	.selector { z-index: 9001;}

 * You can see the current values and variables in settings.scss
 */
/*
 * Function to keep font size consistent

 .selector { font-size: fs(f_10);}

 * You can see the current values and variables in settings.scss
 */
/*
 * Function to use colors in our Scss

 .selector { font-size: fs(f_10);}

 * You can see the current values and variables in settings.scss
 */
/**
* Base
**/
/*------------------------------------*\
    $CONTENIDO
\*------------------------------------*/
/**
 * Contenido..................... Esto que lees

 * Variables..................... Configuramos todas las variables del framework

 * Mixins........................ Mixins de SASS

 * Helpers....................... Clases de ayuda

 * Reset......................... Reinicio de valores CSS

 * Fuentes....................... Fuentes que vamos a importar

 * Links......................... Formas y estilos de los links

 * Tablas........................ Estilos de las tablas

 * Botones....................... Estilos de Botones, skins y variantes

 * Elementos..................... Elementos varios como Imagen, HR, etc...

 * Tipografía.................... Encabezados, small, párrafos, listas, etc...

 * Navegación.................... Una navegación, por si quieres usar esta y no la tuya propia

 * Formularios................... Estilos de todos los elementos de formularios y sus variantes

 * Sitio......................... Aquí escribes tus estilos para la web se vea como tú quieres ;)

 * Paginación.................... Estilos básicos para las paginaciones

 * Texturas...................... Badges, cajas y wells

 * Breakpoints................... Importamos breakpoints basados en las variables @bp$

 * Patron........................ Estilos para la guía de patrones
 */
/*------------------------------------*\
    $RESET
\*------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, main, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

/**
* HTML elements
**/
/*------------------------------------*\
    $ELEMENTOS-FIGURE
\*------------------------------------*/
figure {
  margin-bottom: 1.5;
}
figure img {
  margin-bottom: 0.375;
}
figure figcaption {
  display: block;
  font-weight: normal;
  font-size: 0.75rem;
  font-style: italic;
  color: #4d4d4d;
}

/*------------------------------------*\
    $FORMULARIOS
\*------------------------------------*/
form {
  margin: 0 0 1.5 0;
}
form fieldset {
  margin-bottom: 1.5;
  padding: 0;
  border-width: 0;
}
form legend {
  display: block;
  width: 100%;
  margin-bottom: 3;
  padding: 0;
  color: #4d4d4d;
  border: 0;
  border-bottom: 1px solid #bfbfbf;
  white-space: normal;
}
form legend small {
  font-size: 0.625rem;
  color: #bfbfbf;
}
form p {
  margin-bottom: 0.75;
}
form ul {
  list-style-type: none;
  margin: 0 0 1.5 0;
  padding: 0;
}
form br {
  display: none;
}

label,
input,
button,
select,
textarea {
  font-size: 0.625rem;
  border-radius: 3px;
  vertical-align: baseline;
}

input,
button,
select,
textarea {
  font-family: "Poppins", sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

label {
  display: inline-block;
  margin-bottom: 0.1875;
  font-family: 0.625rem;
  font-weight: bold;
  color: #4d4d4d;
  cursor: pointer;
}

input,
textarea,
select {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 4px;
  margin-bottom: 1.5;
  background-color: rgb(255, 255, 255);
  border: 1px solid #bfbfbf;
  color: #4d4d4d;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input:hover,
textarea:hover,
select:hover {
  border-color: gray;
}

.input-small {
  width: 60px;
}

.input-medium {
  width: 150px;
}

.input-big {
  width: 300px;
}

input[type=image] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  line-height: normal;
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0 3px 0 0;
  line-height: normal;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  background-color: #bfbfbf;
  border-color: rgb(255, 255, 255);
  border-width: 1px;
  box-shadow: 0 0 0 1px #bfbfbf;
}
input[type=checkbox] + label,
input[type=radio] + label {
  margin-right: 20px;
}

input[type=radio] {
  border-radius: 100%;
}

label input[type=checkbox],
label input[type=radio] {
  margin-right: 5px;
}

input[type=image] {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=file] {
  width: auto;
  padding: initial;
  line-height: initial;
  border: initial;
  background-color: transparent;
  background-color: initial;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=button],
input[type=reset],
input[type=submit] {
  width: auto;
  height: auto;
  cursor: pointer;
  *overflow: visible;
}

textarea {
  resize: vertical;
  overflow: auto;
  height: auto;
  overflow: auto;
  vertical-align: top;
}

input[type=hidden] {
  display: none;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: not-allowed;
}

::-webkit-input-placeholder {
  font-size: 0.75rem;
}

input:-moz-placeholder {
  font-size: 0.75rem;
}

/**
* Validamos los formularios que son "required":
* http://coolvillage.es/ayuda-al-usuario-a-rellenar-formularios-con-css/
*/
input:required:focus:invalid {
  background-color: #fef2e7;
  border: 1px solid rgb(252, 228, 207);
}

input:required:focus:valid {
  background-color: #e9f5e9;
  border: 1px solid rgb(91, 183, 91);
}

/*------------------------------------*\
    $BOTONES
\*------------------------------------*/
/*
 * Definimos los botones y sus variantes
 */
/**
* .btn es la clase principal para definir un botón
*/
.btn--naranja, .btn--info {
  display: inline-block;
  line-height: 3;
  color: #4d4d4d;
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
  white-space: nowrap;
  background-color: transparent;
  border-top: 1px solid currentcolor;
  border-right: 1px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  border-left: 1px solid currentcolor;
  cursor: pointer;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 1em;
  padding-left: 1em;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  /**
  	* Nadie quiere un botón con texto subrayado cuando
  	* hacemos hover.
  	*/
}
.btn--naranja:hover, .btn--info:hover {
  text-decoration: none;
  color: #4d4d4d;
}
.btn--naranja:active, .btn--info:active, .btn--naranja:focus, .btn--info:focus {
  outline: none;
}
.btn--naranja:visited, .btn--info:visited {
  color: #4d4d4d;
}

/*------------------------------------*\
    $BOTONES-VARIANTES
\*------------------------------------*/
/**
 * Variantes de los botones: color para dar sensaciones.
 *
 */
/**
* Inputs con estilo de botones
*/
input[type=submit].btn:hover {
  border-color: currentcolor;
}

/**
* Botón de Info
*/
.btn--info {
  background-color: rgb(66, 184, 221);
  color: rgb(255, 255, 255);
}
.btn--info:hover {
  color: rgb(66, 184, 221);
  background-color: rgb(255, 255, 255);
}
.btn--info:visited {
  background-color: rgb(66, 184, 221);
  color: #636363;
}

/*------------------------------------*\
    $BOTONES-TAMAÑOS
\*------------------------------------*/
/**
 * Variantes de los botones por tamaño.
 *
 */
.btn--mini {
  padding-right: 0.5em;
  padding-left: 0.5em;
  line-height: 1.5;
  font-size: 0.625rem;
}

.btn--small {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 2;
  font-size: 0.75rem;
}

/*------------------------------------*\
    $BOTONES-GRUPOS
\*------------------------------------*/
/**
 * Con esta clase podemos agrupar los botones
 * en grupos horizontales.
 *
 */
/*------------------------------------*\
    $IMÁGENES
\*------------------------------------*/
/*------------------------------------*\
    $LINKS
\*------------------------------------*/
a {
  text-decoration: none;
  color: color-brand(color-brand);
}
a:hover {
  text-decoration: underline;
  color: color-brand(color-brand);
}
a:focus {
  outline: thin dotted;
  color: color-brand(color-brand);
}
a:hover, a:active {
  outline: 0;
}

/*------------------------------------*\
    $TIPOGRAFÍA
\*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizelegibility;
}
h1.altheader,
h2.altheader,
h3.altheader,
h4.altheader,
h5.altheader,
h6.altheader {
  color: #4d4d4d;
  text-transform: uppercase;
  display: block;
}

h1, .h1 {
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 1.2;
}

h2, .h2 {
  margin-bottom: 0;
  font-size: 2.4rem;
  line-height: 1.2;
}

h3, .h3 {
  margin-bottom: 0;
  font-size: 2.1rem;
  line-height: 1.2;
}

h4, .h4 {
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 1.2;
}

h5, .h5 {
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.2;
}

h6, .h6 {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

p,
ol,
ul,
dl,
address {
  margin-bottom: 1.5;
  line-height: 1.5;
}

small {
  font-size: 0.625rem;
  color: #4d4d4d;
}

ul,
ol {
  margin: 0 0 1.5 0;
  padding: 0 0 0 20px;
}

li ul,
li ol {
  margin: 0;
}

blockquote, .blockquote {
  margin: 0 0 1.5 0;
  padding-left: 20px;
  border-left: 1px solid #f2f2f2;
  font-style: normal;
}
blockquote p, .blockquote p {
  font-size: 0.75rem;
  color: #4d4d4d;
  font-style: italic;
  line-height: 1.5;
}

q {
  quotes: none;
  font-style: italic;
}

blockquote p::before,
blockquote p::after,
q:before,
q:after {
  content: "";
}

cite {
  font-style: normal;
}

dl,
dd {
  margin-bottom: 1.5;
}

dt {
  font-weight: bold;
}

abbr[title] {
  border-bottom: 1px dotted #f2f2f2;
  cursor: help;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

ins {
  background-color: white;
  color: #4d4d4d;
  text-decoration: none;
}

mark {
  background-color: yellow;
  color: #4d4d4d;
}

pre,
code,
kbd,
samp {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  line-height: 1.5;
}

code {
  background-color: #f5f2f0;
  padding: 0.1em 0.3em;
  border-radius: 3px;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

sub,
sup {
  position: relative;
  font-size: 0.625rem;
  line-height: 0;
  vertical-align: 1.5;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  clear: both;
  display: block;
  margin: 1.5 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #f2f2f2;
}

.intro {
  font-weight: bold;
}

/*
 * Creamos clases para cada uno de los tamaños de fuentes. Se pueden ver en Settings.
 * Son los nombres de las varables con el prefijo font-
 * Por ejemplo:

        .font-x-small {
            font-size: .8rem;
        }


 */
.font-f_8 {
  font-size: 0.5rem;
}

.font-f_9 {
  font-size: 0.5625rem;
}

.font-f_10 {
  font-size: 0.625rem;
}

.font-f_11 {
  font-size: 0.6875rem;
}

.font-f_12 {
  font-size: 0.75rem;
}

.font-f_13 {
  font-size: 0.8125rem;
}

.font-f_14 {
  font-size: 0.875rem;
}

.font-f_15 {
  font-size: 0.9375rem;
}

.font-f_16 {
  font-size: 1rem;
}

.font-f_17 {
  font-size: 1.063rem;
}

.font-f_18 {
  font-size: 1.125rem;
}

.font-f_20 {
  font-size: 1.25rem;
}

.font-f_21 {
  font-size: 1.3125rem;
}

.font-f_22 {
  font-size: 1.375rem;
}

.font-f_24 {
  font-size: 1.5rem;
}

.font-f_26 {
  font-size: 1.625rem;
}

.font-f_28 {
  font-size: 1.75rem;
}

.font-f_30 {
  font-size: 1.875rem;
}

.font-f_32 {
  font-size: 2rem;
}

.font-f_34 {
  font-size: 2.125rem;
}

.font-f_36 {
  font-size: 2.25rem;
}

.font-f_38 {
  font-size: 2.375rem;
}

.font-f_40 {
  font-size: 2.5rem;
}

.font-f_42 {
  font-size: 2.625rem;
}

.font-f_44 {
  font-size: 2.75rem;
}

.font-f_46 {
  font-size: 2.875rem;
}

.font-f_48 {
  font-size: 3rem;
}

.font-f_50 {
  font-size: 3.125rem;
}

.font-f_52 {
  font-size: 3.25rem;
}

.font-f_60 {
  font-size: 3.75rem;
}

.font-f_65 {
  font-size: 4.063rem;
}

.font-f_70 {
  font-size: 4.375rem;
}

/*------------------------------------*\
    $TABLAS
\*------------------------------------*/
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
}
table th,
table td {
  padding: 8px;
  vertical-align: top;
  border-top: 1px solid #4d4d4d;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: left;
}
table th {
  font-weight: bold;
}
table thead th {
  vertical-align: bottom;
}
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
  border-top: 0;
}
table tbody + tbody {
  border-top: 2px solid #4d4d4d;
}
table tbody tr td,
table tbody tr th {
  -webkit-transition: background-color 0.25s 0 linear;
  -moz-transition: background-color 0.25s 0 linear;
  -ms-transition: background-color 0.25s 0 linear;
  -o-transition: background-color 0.25s 0 linear;
  transition: background-color 0.25s 0 linear;
}
table tbody tr:hover td,
table tbody tr:hover th {
  background-color: #f2f2f2;
}

/**
* Vendor elements
**/
/**
* Layout and general styles
**/
/*------------------------------------*\
    $SITIO
\*------------------------------------*/
@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
html {
  background: rgb(255, 255, 255);
  font-size: 16;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #f9f9f9;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: rgb(0, 0, 0);
}

/**
* A partir de aquí es donde debes escribir los estilos de posicionamiento
* y detalles que forman tu web. Disfruta!
*/
html {
  font-size: 16px;
}

a {
  color: #000;
}

a, button {
  outline: none !important;
}
a:active, a:focus, a:hover, button:active, button:focus, button:hover {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style: none;
}

.icon {
  display: inline-block;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: middle;
}

.gif_cont {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 60.86%;
  height: 0;
  overflow: hidden;
  clear: left;
  width: 100%;
}
.video-wrapper iframe, .video-wrapper video, .video-wrapper img, .video-wrapper a, .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
}
.video-wrapper iframe, .video-wrapper video, .video-wrapper a, .video-wrapper iframe {
  height: 100% !important;
}

.media iframe {
  margin: 0 !important;
  max-width: 100%;
  max-height: 100%;
}

.fb-video {
  background-color: black;
  /*display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;*/
}
.fb-video span {
  position: relative !important;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 56% !important;
}
.fb-video span iframe {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  left: 0 !important;
  top: 0 !important;
}

.contenedor {
  overflow: hidden;
}

.espaciador {
  padding: 15px;
}

@media (min-width: 768px) {
  .column_330 {
    max-width: 330px;
    width: 100%;
  }
}

.mt-30 {
  margin-top: 30px;
}

.neg-mb {
  margin-bottom: -30px;
}

.mb {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .mb {
    margin-bottom: 40px;
  }
}

.contenedor__publicidad {
  margin-bottom: 30px;
  overflow: hidden;
}
.contenedor__publicidad .publicidad {
  text-align: center;
}

.container-spot-back {
  min-width: 200px;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 25px 20px 15px 20px;
  background-color: #F1F1F1;
  border: 1px solid #9D9D9D;
  position: relative;
}
@media (max-width: 407px) {
  .container-spot-back {
    padding: 25px 0 15px;
  }
}
@media (min-width: 992px) {
  .container-spot-back {
    padding: 28px 24px 20px;
  }
}
.container-spot-back .container-spot-back-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
}
.container-spot-back .container-spot-back-text span {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1.1px;
}
@media (min-width: 992px) {
  .container-spot-back .container-spot-back-text span {
    font-size: 14px;
  }
}
.container-spot-back .container-spot-back-publi {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}
.container-spot-back .container-spot-back-publi > div {
  margin: 10px auto;
}
.container-spot-back .container-spot-back-publi img {
  max-width: unset;
}
@media (min-width: 992px) {
  .container-spot-back .container-spot-back-publi {
    flex-direction: row;
  }
}

.cont_mediakit {
  max-width: 970px;
  margin: 0 auto 30px;
}
.cont_mediakit .mediakit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cont_mediakit .mediakit p {
  font-size: 1.125rem;
  width: 100%;
  text-align: center;
}
.cont_mediakit .mediakit p span {
  font-size: 1rem;
}
.cont_mediakit .mediakit.ocupado {
  border: 1px dashed red;
}
.cont_mediakit .mediakit.ocupado p {
  color: red;
}
.cont_mediakit .mediakit.libre {
  border: 1px dashed green;
}
.cont_mediakit .mediakit.libre p {
  color: green;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FF6225;
  z-index: 9009;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s;
}
.loading .contenedor {
  animation: pulse 2s infinite;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
  padding: 20px;
  text-align: center;
  width: 180px;
}
.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.dm-story-mobile.loading {
  background-color: transparent;
}

/*-----------------------voto--------------------------------------*/
.voto {
  text-align: center;
  background-color: rgb(255, 255, 255);
}
.voto #button-content {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  top: -1em;
}
.voto .btn-no label {
  box-shadow: 0px 0px 0px 0px rgba(226, 32, 44, 0.5);
}
.voto .btn-no label .icon {
  width: 100%;
  height: 100%;
}
.voto .btn-no input:checked + label {
  background-color: #e2202c;
  border-color: #e2202c;
  box-shadow: 0px 0px 0px 0.5em rgba(226, 32, 44, 0);
}
.voto .btn-no input:checked + label:after {
  color: #e2202c;
}
.voto .btn-nulo label {
  box-shadow: 0px 0px 0px 0px rgba(253, 192, 47, 0.5);
}
.voto .btn-nulo label .icon {
  width: 100%;
  height: 100%;
}
.voto .btn-nulo input:checked + label {
  background-color: #fdc02f;
  border-color: #fdc02f;
  box-shadow: 0px 0px 0px 0.5em rgba(253, 192, 47, 0);
}
.voto .btn-nulo input:checked + label:after {
  color: #fdc02f;
}
.voto .btn-si label {
  box-shadow: 0px 0px 0px 0px rgba(13, 165, 142, 0.5);
}
.voto .btn-si label .icon {
  width: 100%;
  height: 100%;
}
.voto .btn-si input:checked + label {
  background-color: #0da58e;
  border-color: #0da58e;
  box-shadow: 0px 0px 0px 0.5em rgba(13, 165, 142, 0);
}
.voto .btn-si input:checked + label:after {
  color: #0da58e;
}
.voto .anim-icon {
  width: 40px;
  height: 40px;
  margin: 17px;
  font-size: 13px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.voto .anim-icon input {
  display: none;
}
.voto .anim-icon label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: block;
  color: #ccc;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.voto .anim-icon label:after {
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  display: block;
  position: relative;
  text-align: center;
}
.voto .anim-icon input:checked + label {
  animation: check-in 0.3s forwards;
  transition: background-color 0.1s 0.2s, box-shadow 1s;
}
.voto .anim-icon input:checked + label:after {
  animation: icon 0.3s forwards;
}
.voto .anim-icon-md {
  font-size: 20px;
}
.voto .anim-icon-lg {
  font-size: 20px;
}

@keyframes icon {
  0% {
    margin-top: -0.5em;
    font-size: 1.5em;
  }
  100% {
    font-size: 1em;
    opacity: 1;
    color: white;
  }
}
@keyframes check-in {
  0% {
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
  }
  80% {
    left: -5%;
    top: -5%;
    width: 110%;
    height: 110%;
  }
  100% {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
@keyframes check {
  0% {
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
  }
  10% {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  80% {
    left: -5%;
    top: -5%;
    width: 110%;
    height: 110%;
  }
  90% {
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
  }
  100% {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.comentarios {
  background-color: rgb(255, 255, 255);
}

.cont_boton_editar {
  position: fixed;
  left: 6px;
  top: 104px;
  z-index: 9999999;
}

.cont_boton_publi {
  z-index: 900;
  line-height: 1.8;
  display: inline-block;
  font-size: 1rem;
  white-space: nowrap;
  padding: 0 1rem;
  max-width: 70px;
}
.cont_boton_publi.libre {
  border: 1px dashed green;
  color: green;
}
.cont_boton_publi.ocupado {
  border: 1px dashed red;
  color: red;
}

.iframelive {
  width: 100%;
  max-height: 100%;
}

.mustang {
  text-align: center;
}
.mustang a {
  color: #7B8591;
  font-size: 0.75rem;
}
.mustang a:focus, .mustang a:hover {
  text-decoration: none;
}
.mustang a img {
  width: 30px;
  margin-right: 5px;
}

.btn--naranja {
  background-color: #FF6225;
  color: black;
}
.btn--naranja:hover {
  background-color: #FF6225;
  color: black;
}
.btn--naranja:visited {
  background-color: #FF6225;
  color: black;
}

.error {
  color: red;
}

.valido {
  color: green;
}

.publicidad_footer_sticky {
  position: fixed;
  display: flex;
  justify-content: center;
  z-index: 1000;
  width: 100%;
  bottom: 0;
  max-width: 100vw;
}
.publicidad_footer_sticky .cont_sticky {
  display: inline-block;
  position: relative;
}
.publicidad_footer_sticky .cont_sticky .close_sticky {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.publicidad_footer_sticky .cont_sticky .contenedor__publicidad {
  margin: 0;
}

.ppp__scroll {
  display: flex;
  justify-content: center;
  z-index: 900;
  width: 100%;
  bottom: 0;
}
.ppp__scroll .contenedor__publicidad {
  background: white;
  width: 100%;
  z-index: 999999;
}
.ppp__scroll .contenedor__publicidad.interstitial-container.SCROLL_OH {
  height: 100vh;
}
.ppp__scroll .contenedor__publicidad.interstitial-close {
  margin: 0;
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-fill-mode: forwards;
}
.ppp__scroll .contenedor__publicidad .interstitial-inner {
  position: relative;
  z-index: 9999999;
  background: white;
}
.ppp__scroll .contenedor__publicidad .interstitial-inner .interstitial-next {
  cursor: pointer;
  position: absolute;
  right: 0;
  left: 0;
  top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ppp__scroll .contenedor__publicidad .interstitial-inner .interstitial-next span {
  font-family: "Poppins", sans-serif, sans-serif;
  background: #f88800;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: white;
  padding: 17px 8px;
  line-height: 0;
  border-radius: 6px;
}
.ppp__scroll .contenedor__publicidad .interstitial-inner .interstitial-next img {
  filter: hue-rotate(138deg);
}

@media (min-width: 768px) {
  .reproductor_radio {
    width: 90px;
    height: 90px;
  }
  .control.play .right {
    background-image: url("/img/icono-radio.svg");
  }
  .control.pause .left, .control.pause .right {
    margin: 0;
    border-left: 17.96px solid #df4a00;
    border-top: 0 solid transparent;
    border-bottom: 0 solid transparent;
    height: 48.992px;
  }
  .control.pause .left {
    border-right: 12.4px solid transparent;
  }
  .cont-p {
    flex: 0 0 calc(100% - 320px);
    padding: 0 !important;
    margin: 0 !important;
  }
  .left-p {
    width: calc(30% - 10px);
    height: calc(100% - 10px);
    float: left;
  }
  .right-p {
    width: calc(70% - 10px);
    height: calc(100% - 10px);
    float: left;
  }
  .cont-300 {
    flex: 0 0 320px;
    padding: 0 10px;
  }
  .cont-300 > * {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .popup-inner {
    width: auto !important;
  }
}
.publicidad.H0 {
  padding-bottom: 30px;
}

.noscroll-html {
  overflow: hidden;
}

.noscroll-body {
  overflow: visible;
  height: 100%;
}

/*-------------------------------------Nota-------------------------------------------------*/
.container-responsive {
  margin-inline: auto;
  max-width: 1140px;
  width: calc(100% - 45px);
}
@media (min-width: 1160px) {
  .container-responsive {
    width: 100%;
  }
}

.hide {
  display: none !important;
}

.vivo.Byelive {
  display: none;
}

.vivo {
  height: auto;
  z-index: 999;
  background-color: #FF6225;
  position: fixed;
  width: 100%;
  bottom: 33px;
  min-height: 85px;
}
.vivo .contenedor {
  padding: 0;
}
.vivo .contenedor .close-button {
  height: 30px;
  width: 30px;
  cursor: pointer;
  position: absolute;
  box-sizing: border-box;
  line-height: 50px;
  display: inline-block;
  top: 7px;
  left: 23px;
}
.vivo .contenedor .close-button:hover:before, .vivo .contenedor .close-button:hover:after {
  transform: rotate(0deg);
}
.vivo .contenedor .close-button:before, .vivo .contenedor .close-button:after {
  transform: rotate(-45deg);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -25px;
  display: block;
  height: 2px;
  width: 17px;
  background-color: #fff;
  transition: all 0.08s ease-out;
}
.vivo .contenedor .close-button:after {
  transform: rotate(45deg);
}
.vivo .contenedor .texto {
  padding: 24px 0 0px 10px;
  color: rgb(255, 255, 255);
}
.vivo .contenedor .texto p {
  display: none;
  margin: 18px 0 0 0px;
  font-size: 0.9rem;
  font-weight: bolder;
}
.vivo .contenedor .texto p .viendo {
  font-size: 17px;
  margin: 0 10px;
}
.vivo .contenedor .texto p svg {
  width: 0px;
  height: 26px;
  margin-right: 7px;
}
.vivo .contenedor .texto .verotro {
  font-size: 18px;
  margin: 0;
  padding: 0px 0 8px 40px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0px;
  cursor: pointer;
}
.vivo .contenedor .texto .titulo {
  width: calc(100% - 225px);
  line-height: 1.2;
  font-weight: initial;
  margin: 0;
  display: block;
  text-transform: capitalize;
  position: absolute;
  top: 30px;
  left: 40px;
}
.vivo .contenedor .texto .titulo a {
  font-size: 1.125rem;
  color: rgb(255, 255, 255);
}
.vivo .contenedor .video {
  padding-bottom: 46.25%;
  height: auto;
  position: absolute;
  top: initial;
  bottom: 60px;
  overflow: hidden;
  width: 80%;
  right: 10%;
}
.vivo .contenedor .video .wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}
.vivo .contenedor .video .wrapper iframe {
  width: 100%;
  height: 100%;
}

.nota-full {
  margin-bottom: 0.625rem;
  display: table;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.nota-full .media {
  height: 100%;
}
.nota-full .media .bottom {
  top: 75px !important;
  overflow: visible;
}
.nota-full .data {
  position: absolute;
  padding: 0px 10px 12px 10px;
  bottom: 0px;
  left: 0;
  right: 0;
  max-height: 100%;
  background-color: rgba(0, 0, 0, 0.8) 100%;
  background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 100%);
  background-image: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 100%);
  background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 100%);
  background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 100%);
  background-repeat: repeat-x;
}
.nota-full .data .bottom {
  margin-top: 90px;
  overflow: visible;
}
.nota-full .data .titulo h2 {
  color: rgb(255, 255, 255);
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 0.09375rem;
  line-height: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nota-full .data .titulo h2 a {
  color: rgb(255, 255, 255);
}
.nota-full .data .introduccion {
  display: none;
}
.nota-full .data .autor {
  display: none;
}

.libre {
  display: flex;
  flex-direction: column;
}
.libre .titulo h2 a {
  color: rgb(0, 0, 0);
}
.libre .introduccion {
  padding: 0 10px;
  margin-top: 8px;
  font-size: 1rem;
}
.libre .autor {
  padding: 0 10px;
  margin-top: 11px;
  font-size: 0.75rem;
}
.libre .autor a {
  color: #4d4d4d;
}

/*-------------------------------------HEADER-------------------------------------------------*/
.color-naranja {
  background-color: #FF6225;
}

.color-celeste {
  background-color: #00AEEF;
}

/*-------------------------------------FOOTER-------------------------------------------------*/
/*-------------------------------------CUERPO-------------------------------------------------*/
.espaciador.titulo {
  font-weight: bold;
  font-size: 0.8125rem;
  color: #636363;
  margin-bottom: 0.625rem;
}

.publicidad_fly {
  display: none;
}

.error-page .error_img {
  width: 100%;
  max-width: 534px;
  margin: auto;
  margin-bottom: 30px;
  display: grid;
  gap: 20px;
}
@media (min-width: 1024px) {
  .error-page .error_img {
    margin-bottom: 40px;
  }
}
.error-page .error_img .text {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #FF6225;
}

.compartir_notapage {
  position: absolute;
  z-index: 997;
  background-color: rgb(255, 255, 255);
  display: none;
  left: 0;
  top: 8px;
}
.compartir_notapage .icon {
  width: 25px;
  height: 25px;
  color: #636363;
}
.compartir_notapage .btn--red {
  padding: 6px;
  display: block;
  line-height: 0;
  cursor: pointer;
}
.compartir_notapage .redes {
  display: flex;
  flex-wrap: wrap;
  width: 37px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.modulo {
  margin-bottom: 30px;
}

.modulo_publi {
  margin: 0;
}
.modulo_publi .contenedor__publicidad .desktop {
  display: none;
}

.modulo_newsletter {
  margin-bottom: 30px;
  border: 0px;
}
.modulo_newsletter .newsletter_home {
  padding: 0;
}
.modulo_newsletter .newsletter_home .contenedor {
  background: #EBEBEB;
  padding: 29px 21px 20px 21px;
  border-radius: 0;
}
.modulo_newsletter .newsletter_home .contenedor .titulo {
  margin-bottom: 38px;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgb(0, 0, 0);
}
.modulo_newsletter .newsletter_home .contenedor .titulo img {
  width: 27px;
  height: 22px;
  margin-right: 17px;
}
.modulo_newsletter .newsletter_home .contenedor .newsletter_email {
  border-radius: 16px;
  padding-left: 10px;
  font-size: 1.25rem;
  width: 100%;
  border: none;
}
.modulo_newsletter .newsletter_home .contenedor .newsletter_email::-webkit-input-placeholder {
  font-size: 1.25rem;
  color: #A1A1A1;
}
.modulo_newsletter .newsletter_home .contenedor .newsletter_email:-moz-placeholder {
  font-size: 1.25rem;
  color: #A1A1A1;
}
.modulo_newsletter .newsletter_home .contenedor .newsletter_email::-moz-placeholder {
  font-size: 1.25rem;
  color: #A1A1A1;
}
.modulo_newsletter .newsletter_home .contenedor .newsletter_email:-ms-input-placeholder {
  font-size: 1.25rem;
  color: #A1A1A1;
}
.modulo_newsletter .newsletter_home .contenedor .cont-mail {
  min-width: 100%;
}
.modulo_newsletter .newsletter_home .contenedor .is-2 {
  display: flex;
  justify-content: center;
}
.modulo_newsletter .newsletter_home .contenedor .is-2 .cont-submit .btn--naranja {
  letter-spacing: 0.1em;
  height: 45px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  width: 130px;
  border: 0px;
  border-radius: 6px;
  font-size: 13px;
}
.modulo_newsletter .newsletter_home .contenedor .checked_terminos {
  margin: 10px 0 33px 10px;
  text-align: start;
}
.modulo_newsletter .newsletter_home .contenedor .checked_terminos a {
  color: rgb(0, 0, 0);
  font-size: 0.75rem;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.modulo_newsletter .newsletter_home .contenedor .checked_terminos a span {
  color: #FF6225;
  margin: 3px;
  line-height: 1;
  margin-right: 10px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
}
.modulo_newsletter .newsletter_home .contenedor .checked_terminos .checked_inputasd {
  background-color: transparent;
  box-shadow: none;
  border: 2px solid #747474;
}
.modulo_newsletter .newsletter_home .contenedor .checked_terminos .checked_inputasd:checked {
  background-color: #FF6225;
}

.masLeidas {
  margin-bottom: 30px;
}
.masLeidas .bloque__titulo-item {
  text-align: center;
}
.masLeidas .mas_visto-notas {
  display: grid;
  gap: 20px;
}
.masLeidas .nota {
  box-shadow: none;
}
.masLeidas .nota .data {
  padding: 0 0 0 10px;
}
.masLeidas .nota .data .titulo h2 {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fondo {
  padding: 30px 15px 15px 15px;
  background-color: #E7E7E7;
}

/*----------------------------------------seccion----------------------------------------------*/
.np_mas_noticias {
  margin: 20px 0;
}
.np_mas_noticias button {
  cursor: pointer;
  background-color: #FF6225;
  border: none;
  border-radius: 6px;
  width: 103px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin: auto;
}

/*----------------------------------------Detalle nota-------------------------------------------------*/
.detalle--nota {
  position: relative;
}
.detalle--nota .cont_radio_nota {
  width: 100%;
  background: #f1f3f4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
}
.detalle--nota .cont_radio_nota audio {
  width: 100%;
}
.detalle--nota .nota-full {
  margin-bottom: 20px;
}
.detalle--nota .nota-full .data .fecha {
  color: #FF6225;
  margin-top: 20px;
}
.detalle--nota .nota-full .data .titulo h2 {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 0.0859375rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgb(255, 255, 255);
}
.detalle--nota .nota-full .data .introduccion {
  font-weight: lighter;
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 0.046875rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgb(255, 255, 255);
}
.detalle--nota .galeria_link {
  padding: 20px 0;
}
.detalle--nota .galeria_link * {
  margin: 0px !important;
}
.detalle--nota .galeria_link .modulo-galeria .imagen {
  padding: 5px;
}
.detalle--nota .contenedor {
  padding: 15px;
  position: relative;
}
.detalle--nota .contenedor .cuerpo {
  font-weight: lighter;
  color: #636363;
  margin-bottom: 1rem;
}
.detalle--nota .contenedor .cuerpo * {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.detalle--nota .contenedor .cuerpo .modulo-galeria * {
  margin: 0px !important;
}
.detalle--nota .contenedor .cuerpo .modulo-galeria .PrevArrow, .detalle--nota .contenedor .cuerpo .modulo-galeria .NextArrow {
  top: 46%;
}
.detalle--nota .contenedor .cuerpo .autor {
  padding: 0 10px 0 0;
  width: 100px;
  float: left;
  margin-bottom: 0;
}
.detalle--nota .contenedor .cuerpo .autor .video-wrapper {
  margin-bottom: 0.625rem;
  padding-bottom: 89%;
}
.detalle--nota .contenedor .cuerpo .autor .video-wrapper img {
  width: 80px;
}
.detalle--nota .contenedor .cuerpo .autor .nombre, .detalle--nota .contenedor .cuerpo .autor .cargo, .detalle--nota .contenedor .cuerpo .autor .tiempo {
  font-weight: bold;
  font-size: 0.5625rem;
  color: #636363;
  margin-bottom: 0;
}
.detalle--nota .contenedor .cuerpo .autor .cargo {
  font-weight: lighter;
  margin-bottom: 0.625rem;
}
.detalle--nota .contenedor .cuerpo .autor .tiempo {
  font-weight: lighter;
  color: #FF6225;
}
.detalle--nota .contenedor .cuerpo blockquote {
  margin: 20px 0;
}
.detalle--nota .columna-left .fondo .titulo {
  font-size: 1.625rem;
  margin-bottom: 0.625rem;
  position: relative;
  padding-right: 45px;
}
.detalle--nota .columna-left .fondo .titulo .compartir {
  background-color: rgb(255, 255, 255);
}
.detalle--nota .columna-left .fondo .intro {
  margin-bottom: 15px;
}
.detalle--nota .columna-left .fondo .media {
  margin-bottom: 1rem;
}
.detalle--nota .columna-right {
  background-color: #F0EFEF;
  display: none;
}
.detalle--nota .relacionadas {
  background-color: rgb(255, 255, 255);
}
.detalle--nota .relacionadas .titulo {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  padding-left: 15px;
}
.detalle--nota .relacionadas .PrevArrow, .detalle--nota .relacionadas .NextArrow {
  background-color: #FF6225;
  color: rgb(255, 255, 255);
}

/*-----------------------------------------Paginas estaticas------------------------------------------*/
.estatico {
  margin-bottom: 3rem;
}

/*----------------------------------------- Minuto a minuto ------------------------------------------*/
.minuto_a_minuto.home {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 222;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 155px;
  height: auto;
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
}
.minuto_a_minuto.home > div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.minuto_a_minuto.home > div.barra-torneo-dos {
  margin: 0;
  background: rgba(0, 0, 0, 0.76);
  padding: 4px 0px;
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
}
.minuto_a_minuto.home > div.barra-torneo-dos .space {
  margin: 0 8px;
}
.minuto_a_minuto.home > div.resultado-partido {
  margin: 4px 0px;
}
.minuto_a_minuto.home > div.resultado-partido .escudo {
  width: 23px;
  height: 23px;
}
.minuto_a_minuto.home > div.resultado-partido .escudo img {
  position: relative;
  width: 100%;
}
.minuto_a_minuto.home > div.resultado-partido .resultado {
  margin: 0 5.14%;
  font-size: 20px;
  line-height: 1;
}

.modulo_minuto.futbol .titulo-general {
  margin: 1.2em 0px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  color: #FF6225;
}
.modulo_minuto.futbol .resumen_mam:last-child {
  margin-bottom: 0px;
}
.modulo_minuto.futbol .resumen_mam .vsequipos {
  color: white;
  background: #3e3c3c;
  padding: 15px 18px;
  display: flex;
  justify-content: center;
  line-height: 1;
  border-radius: 30px;
  width: 90%;
  margin: 1.5em auto;
}
.modulo_minuto.futbol .resumen_mam .vsequipos span {
  margin: 0;
  font-size: 20px;
}
.modulo_minuto.futbol .resumen_mam .partidos_resumen {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  flex-direction: column;
  margin-bottom: 25px;
}
.modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f {
  height: auto;
  margin: 0px auto;
  width: 100%;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 5px;
}
.modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f:nth-child(odd) {
  -webkit-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.39);
}
.modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f .info_t {
  display: flex;
  flex-direction: column-reverse;
  line-height: 1.4;
  margin: 0;
  font-size: 16px;
}
.modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f .info_t span {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: bold;
}
.modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f .info_im {
  width: 25px;
  margin: 0px;
  font-size: 0px;
}
.modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f .info_im img {
  width: 100%;
  margin: 0;
}
.modulo_minuto.futbol .descripcion-torneo {
  text-align: center;
}
.modulo_minuto.futbol .descripcion-torneo span {
  padding: 6px 0;
  line-height: 1.2;
  display: inline-block;
  font-size: 14px;
  color: white;
  background: #FF6225;
  width: 80%;
  border-radius: 30px;
  margin: 0;
}
.modulo_minuto.futbol .fechahora-torneo {
  text-align: center;
  margin: 0 0 0 0;
}
.modulo_minuto.futbol .fechahora-torneo span {
  margin: 0;
  font-size: 14px;
}
.modulo_minuto.futbol .resultado-partido {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1em 0;
  margin: 1em auto;
  width: 100%;
  background: #f2f2f2;
  border-radius: 20px;
}
.modulo_minuto.futbol .resultado-partido .escudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 80px);
  text-align: center;
  margin: 0;
}
.modulo_minuto.futbol .resultado-partido .escudo img {
  width: 64px;
  height: 64px;
}
.modulo_minuto.futbol .resultado-partido .escudo span {
  font-size: 17px;
  line-height: 1.2;
  margin: 0;
}
.modulo_minuto.futbol .resultado-partido p.resultado {
  letter-spacing: 3px;
  margin: 0px 10px;
  align-self: self-start;
}
.modulo_minuto.futbol .resultado-partido p.resultado span {
  font-size: 46px;
  letter-spacing: 2px;
  color: black;
}
.modulo_minuto.futbol .jugadores_mam {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.modulo_minuto.futbol .jugadores_mam > div {
  margin-bottom: 0px;
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.modulo_minuto.futbol .jugadores_mam > div .jugador {
  display: flex;
  align-items: center;
  font-size: 0;
  margin-bottom: 21px;
  min-width: 48%;
  font-weight: bold;
}
.modulo_minuto.futbol .jugadores_mam > div .jugador span {
  margin: 0;
  margin-left: 7px;
  font-size: 19px;
  line-height: 1;
}
.modulo_minuto.futbol .jugadores_mam > div .jugador .ima {
  width: 35px;
  height: 40px;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}
.modulo_minuto.futbol .jugadores_mam > div .jugador .ima img {
  width: 35px;
  height: 40px;
}
.modulo_minuto.futbol .jugadores_mam > div .jugador .ima .jugador-numero {
  position: absolute;
  top: 12px;
  width: 100%;
  text-align: center;
  margin: 0 !important;
  color: white;
  font-size: 12px;
  color: #FF6225;
}
.modulo_minuto.futbol .jugadores_mam > div .jugador .ima .jugador-numero.black {
  color: black;
}
.modulo_minuto.futbol .jugadores_mam > div .jugador.alineacion {
  margin: 0 auto;
}
.modulo_minuto.futbol .jugadores_mam > div .jugador.alineacion img {
  margin: 0 10px;
  line-height: 0;
}
.modulo_minuto.futbol .jugadores_mam > div .jugador.alineacion span {
  font-size: 15px;
}
.modulo_minuto.futbol .jugadores_mam > div .referencia_j {
  margin: 30px 0;
  width: 100%;
}
.modulo_minuto.futbol .jugadores_mam > div .referencia_j span {
  display: block;
  background: black;
  padding: 7px 20px;
  border-radius: 32px;
  color: white;
  line-height: 1;
  text-align: center;
  margin-bottom: 0px;
  font-size: 25px;
}
.modulo_minuto.futbol .cambios .datosextra {
  text-align: center;
  margin-bottom: 45px;
  font-size: 19px;
  line-height: 1.5;
  font-weight: bold;
}
.modulo_minuto.futbol .tabs_estadisticas {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background: #fffefe;
  padding: 0;
  color: black;
  font-size: 15px;
  align-items: center;
  border-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.39);
  width: calc(100% - 4px);
  margin: 0 auto;
}
.modulo_minuto.futbol .tabs_estadisticas span {
  text-align: center;
  padding: 13px 10px;
  margin-bottom: 0px;
}
.modulo_minuto.futbol .tabs_estadisticas span:first-child {
  font-size: 20px;
  text-align: start;
  padding: 10px 30px;
}
.modulo_minuto.futbol .tabs_estadisticas span.active {
  background: black;
  color: white;
  border-radius: 40px;
}
.modulo_minuto.futbol .tabs_estadisticas span:last-child.active {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.modulo_minuto.futbol .detalles-bloque.estadisticas {
  display: none;
  margin-bottom: 0px;
  padding-bottom: 5px;
}
.modulo_minuto.futbol .detalles-bloque.estadisticas.active {
  display: block;
}
.modulo_minuto.futbol .detalles-bloque.estadisticas .celda-estadistica {
  display: flex;
  justify-content: space-evenly;
  padding: 13px 0;
  text-align: center;
  font-size: 14px;
  border-top: 0px;
  width: calc(100% - 6px);
  margin: 0 auto;
}
.modulo_minuto.futbol .detalles-bloque.estadisticas .celda-estadistica:nth-child(even) {
  -webkit-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.39);
}
.modulo_minuto.futbol .detalles-bloque.estadisticas .celda-estadistica > p {
  margin-bottom: 0px;
  text-align: center;
  width: 80px;
}
.modulo_minuto.futbol .detalles-bloque.estadisticas .celda-estadistica > p:first-child {
  text-align: start;
  width: calc(100% - 200px);
  text-align: start;
}
.modulo_minuto.futbol .detalles-bloque.estadisticas .celda-estadistica > p span {
  margin-bottom: 0px;
}

.mobile_grande.notabig_mobile .minuto_a_minuto.home > div.resultado-partido .resultado {
  font-size: 23px;
}
.mobile_grande.notabig_mobile .minuto_a_minuto.home > div.resultado-partido .escudo {
  width: 32px;
  height: 32px;
}

.pulse {
  -webkit-animation: pulse 2s ease-out infinite;
  animation: pulse 2s ease-out infinite;
  box-shadow: 0 0 0 0.6em rgba(255, 255, 255, 0);
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
.pulse {
  --color: #151515;
  --hover: #090909;
}

.pulse {
  color: var(--color);
  transition: 0.5s;
}

.pulse:hover, .pulse:focus {
  color: #fff;
}

.pulse {
  margin: 0px;
  background: none;
  /*border: 2px solid #0099cc;*/
  font: inherit;
  line-height: 1;
  /*padding: 1em 2em;*/
}

/*----------------------------------------- Linea de Tiempo Nota ------------------------------------------*/
#linea_tiempo {
  width: 90%;
  margin: 2rem auto;
}
#linea_tiempo .timeline-item {
  padding: 3em 2em 2em;
  margin: 0 auto;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
  border-left: 2px solid #E04900;
}
#linea_tiempo .timeline-item h1 {
  top: -0.5rem;
  position: absolute;
  font-size: 1.2rem;
  left: 2em;
  font-weight: bold;
  display: block;
}
#linea_tiempo .timeline-item p {
  font-size: 1rem;
  margin: 0 auto;
}
#linea_tiempo .timeline-item::before {
  width: 10px;
  height: 10px;
  display: block;
  top: 0;
  position: absolute;
  left: -6px;
  border-radius: 10px;
  content: "";
  border: 2px solid #E04900;
  background: white;
}
#linea_tiempo .timeline-item:last-child {
  border-image: linear-gradient(to bottom, #E04900 60%, rgba(224, 73, 0, 0)) 1 100%;
}
#linea_tiempo .timeline-item iframe {
  width: 100%;
}

/*Popup*/
div.ppp.popup {
  width: 100% !important;
  height: 100% !important;
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.75);
  float: none !important;
}

/* Inner */
.popup-inner {
  width: 80%;
  max-width: 100%;
  height: auto;
  padding: 2px 2px 0px 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0px 2px 6px rgb(0, 0, 0);
  border-radius: 2px;
  /*background:#fff*/
}

/* Cerrar */
.popup-close {
  width: 30px;
  height: 30px;
  padding-top: 0px;
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 1000px;
  transition: ease 0.25s all;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  font-family: Arial, Sans-Serif;
  font-size: 20px;
  text-align: center;
  line-height: 100%;
  color: #fff;
  z-index: 99999;
  cursor: pointer;
  overflow: hidden;
}

.popup-close img {
  max-width: 100%;
}

.popup-close:hover {
  background: rgb(0, 0, 0);
}

.reproductor_radio {
  position: relative;
  width: 34px;
  height: 34px;
  margin: 5px;
  float: right;
}

.reproductor_radio.off {
  display: none;
}

.reproductor_radio .cont_radio {
  /* position: relative; */
  width: 100%;
  height: 100%;
}

.reproductor_radio .cont_radio img {
  width: 100%;
  border-radius: 100%;
  position: absolute;
}

.reproductor_radio .titulo-radio {
  color: #FFFFFF;
  font-size: 14px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  box-sizing: border-box;
  border-radius: 15px;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: absolute;
  left: -41px;
  right: 0;
  margin: 5px auto;
  width: 230px;
}

/*PLAY PAUSE*/
.control {
  border-radius: 50%;
  margin: 20px;
  padding: 28px;
  width: 112px;
  height: 112px;
  font-size: 0;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.control,
.control .left,
.control .right,
.control:before {
  display: inline-block;
  vertical-align: middle;
  transition: border 0.4s, width 0.4s, height 0.4s, margin 0.4s;
  transition-tiomig-function: cubic-bezier(1, 0, 0, 1);
}

.control:before {
  content: "";
  height: 112px;
}

.control.pause .left, .control.pause .right {
  margin: 0;
  border-left: 3px solid #FF6225;
  border-top: 0 solid transparent;
  border-bottom: 0 solid transparent;
  height: 19px;
}

.control.pause .right {
  width: 0;
}

.control.pause .left {
  border-right: 5px solid transparent;
}

.control.play .right {
  background-image: url("/img/icono-radio.svg");
  background-position: center;
  background-repeat: no-repeat;
  height: 20px;
  width: 24px;
}

.control {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6196078431);
}

/*PLAY PAUSE*/
/*BLOQUE URGENTE*/
.contenedor.cont-urgente .grid {
  background-color: #E6E6E6;
  padding: 5px 0;
  align-items: center;
}
.contenedor.cont-urgente .grid .is-2 {
  margin: 0 15px;
  flex-basis: 20%;
}
.contenedor.cont-urgente .grid .is-2 a {
  font-size: 16px;
  color: #FF6225;
  font-weight: 700;
}
.contenedor.cont-urgente .grid .separador-urgente {
  height: 78px;
  border-right: 1px solid #FF6225;
}
.contenedor.cont-urgente .grid .is-10 {
  flex-basis: 55%;
  margin: 0 15px;
}
.contenedor.cont-urgente .grid .is-10 a {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

@media (max-width: 760px) {
  .urgente {
    margin: 0px 12px !important;
    min-height: 60px !important;
  }
  .urgente .chapita {
    line-height: 1.3;
  }
  .urgente .descripcion {
    margin: 5px 12px;
    line-height: 1.2;
  }
  .urgente .descripcion p, .urgente .descripcion a {
    font-size: 14px;
  }
}
/*-----------------------------------------------------------------------------------------*/
.box-container {
  background-color: #F9F9F9;
  position: relative;
  display: -webkit-flex;
  align-items: flex-start;
  display: flex;
  justify-content: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  flex-flow: nowrap;
  width: 100%;
}

.box-cuerpo {
  display: block;
  flex-basis: 0;
  flex-shrink: 0;
  flex-grow: 1;
  width: 100%;
  max-width: 1140px;
}

.H20, .H21 {
  width: 160px;
  height: 600px;
  margin: auto;
}

.publi_sticky {
  position: sticky;
  margin-top: 30px;
  top: 135px;
  display: none;
}
@media (min-width: 1300px) {
  .publi_sticky {
    display: block;
  }
}

@media (min-width: 1120px) {
  .is-narrow {
    width: 180px;
  }
}

/*---------------------- BLOQUES HOME ----------------------------*/
.bloque__titulo {
  width: 100%;
  background-color: #FF6225;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.bloque__titulo-item {
  font-size: 24px;
  line-height: 2.25rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .bloque__titulo {
    margin-bottom: 25px;
    padding: 10px 27px;
  }
  .bloque__titulo-item {
    font-size: 26px;
    line-height: 2.4375rem;
  }
}

@media (min-width: 768px) {
  .publi_gtp_468_300 {
    max-width: initial;
  }
  .contenedor {
    max-width: 1180px;
    margin: auto;
  }
  .espaciador {
    padding: 0;
  }
  .vivo {
    bottom: 34px;
  }
  .vivo .contenedor {
    width: calc(100% - 390px);
    margin-left: 1%;
    padding: 0;
  }
  .vivo .contenedor .close-button {
    right: 0;
    left: initial;
  }
  .vivo .contenedor .close-button:before, .vivo .contenedor .close-button:after {
    height: 5px;
    width: 23px;
  }
  .vivo .contenedor .texto {
    margin: 0 10px;
    padding: 0;
  }
  .vivo .contenedor .texto p {
    margin: 8px 0 0 0px;
    padding: 0;
    display: block;
    margin-bottom: 5px;
    font-size: 1.3rem;
  }
  .vivo .contenedor .texto p svg {
    width: 26px;
  }
  .vivo .contenedor .texto .verotro {
    margin: 4px 0;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    padding: 11px 0;
    left: initial;
    bottom: initial;
  }
  .vivo .contenedor .texto .titulo {
    top: 15px;
    color: white;
    width: 100%;
    line-height: 1.2;
    padding: 0;
    margin: 6px 0px;
    position: relative;
    left: initial;
    bottom: initial;
  }
  .vivo .contenedor .texto .titulo a {
    color: white;
  }
  .vivo .contenedor .video {
    width: 300px;
    position: absolute;
    padding-bottom: 0;
    right: 78px;
    bottom: 0px;
    top: initial;
    height: auto;
  }
  .vivo .contenedor .video .wrapper {
    position: relative;
  }
  .modulo_newsletter {
    margin-bottom: 40px;
  }
  .modulo_newsletter .newsletter_home .contenedor {
    padding: 30px 50px 25px 40px;
    margin: 40px auto;
    max-width: 1250px;
  }
  .modulo_newsletter .newsletter_home .contenedor .titulo {
    font-size: 3.125rem;
    color: rgb(0, 0, 0);
    font-weight: bold;
  }
  .modulo_newsletter .newsletter_home .contenedor .titulo img {
    width: 37px;
    height: 30px;
    margin-right: 25px;
  }
  .modulo_newsletter .newsletter_home .contenedor .grid {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .modulo_newsletter .newsletter_home .contenedor .is-10 .newsletter_email {
    border-radius: 22px;
    padding: 9px 0;
    padding-left: 30px;
  }
  .modulo_newsletter .newsletter_home .contenedor .is-10 .checked_terminos {
    text-align: end;
    margin: 10px 0 0 10px;
  }
  .detalle--nota .nota-full {
    margin-bottom: 40px;
  }
  .detalle--nota .nota-full .media .video-wrapper {
    padding-bottom: 42.82%;
  }
  .detalle--nota .nota-full .data .volanta span {
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 0.1015625rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .detalle--nota .nota-full .data .titulo h2 {
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 0.15625rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .detalle--nota .nota-full .data .introduccion {
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 0.0859375rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .detalle--nota .contenedor {
    padding: 0;
  }
  .detalle--nota .columna-left .fondo {
    padding: 30px 40px 15px 15px;
    background-color: rgb(255, 255, 255);
  }
  .detalle--nota .columna-left .fondo .volanta span {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
    line-height: 1.2;
  }
  .detalle--nota .columna-left .fondo .titulo {
    font-size: 2.5rem;
    color: rgb(0, 0, 0);
    line-height: 1;
  }
  .detalle--nota .columna-left .fondo .intro {
    font-size: 1.375rem;
    font-weight: lighter;
    line-height: 1.2;
  }
  .detalle--nota .columna-left .contenedor {
    padding: 15px 40px 15px 15px;
  }
  .detalle--nota .columna-left .contenedor .cuerpo {
    padding-left: 37px;
  }
  .detalle--nota .columna-left .contenedor .cuerpo * {
    font-size: 1.125rem;
  }
  .detalle--nota .columna-left .contenedor .cuerpo .autor .video-wrapper {
    padding-bottom: 100%;
  }
  .detalle--nota .columna-left .contenedor .cuerpo .autor .video-wrapper img {
    width: 100px;
  }
  .detalle--nota .columna-left .contenedor .cuerpo .autor .nombre {
    font-size: 0.9375rem;
  }
  .detalle--nota .columna-left .contenedor .cuerpo blockquote {
    margin: 20px 0;
  }
  .detalle--nota .columna-right {
    display: block;
  }
  .detalle--nota .columna-right .contenedor {
    padding-top: 190px;
  }
  .detalle--nota .columna-right .contenedor .programacion {
    max-width: 300px;
    margin-top: 20px;
    padding-top: 40px;
    margin: auto;
  }
  .detalle--nota .columna-right .contenedor .programacion .titulo {
    padding-left: 10px;
    font-size: 1.125rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: #FF6225;
    margin-bottom: 1rem;
  }
  .detalle--nota .relacionadas .titulo {
    padding-left: 0px;
  }
  .detalle--nota .relacionadas .PrevArrow, .detalle--nota .relacionadas .NextArrow {
    top: 31%;
  }
  .nota-full .minuto_a_minuto.home {
    top: 0;
    bottom: initial;
    left: 0px;
    right: initial;
    width: 200px;
  }
  .nota-full .media .bottom {
    overflow: hidden;
    position: absolute;
    top: 70px !important;
    margin-top: 0;
    height: max-content;
    height: -moz-max-content;
    height: -webkit-max-content;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .nota-full .media .bottom {
    top: 58px !important;
  }
}
@media (min-width: 768px) and (min-width: 1560px) {
  .nota-full .media .bottom {
    top: 93px !important;
  }
}
@media (min-width: 768px) {
  .nota-full .data .bottom {
    overflow: hidden;
    position: absolute;
    bottom: 71px;
    margin-top: 0;
  }
  .minuto_a_minuto.home {
    border-radius: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .minuto_a_minuto.home > div.barra-torneo-dos {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .modulo_minuto.futbol .resultado-partido {
    max-width: 680px;
  }
  .modulo_minuto.futbol .resultado-partido .escudo {
    min-width: 170px;
    width: auto;
  }
  .modulo_minuto.futbol .jugadores_mam {
    flex-direction: row;
  }
  .modulo_minuto.futbol .jugadores_mam > div {
    flex-wrap: nowrap;
    width: 50%;
    flex-direction: column;
  }
  .modulo_minuto.futbol .jugadores_mam > div .referencia_j {
    width: auto;
  }
  .modulo_minuto.futbol .jugadores_mam > div .referencia_j span {
    padding: 12px 40px;
    display: inline-block;
  }
  .modulo_minuto.futbol .jugadores_mam > div .jugador.alineacion {
    margin: 0;
  }
  .modulo_minuto.futbol .jugadores_mam > div .jugador.alineacion img {
    margin: 0 10px 0 0;
  }
  .modulo_minuto.futbol .jugadores_mam > div.equ_2 .referencia_j {
    text-align: end;
  }
  .modulo_minuto.futbol .jugadores_mam > div.equ_2 .jugador {
    justify-content: flex-end;
  }
  .modulo_minuto.futbol .jugadores_mam > div.equ_2 .alineacion img {
    margin: 0 0 0 10px;
  }
  .modulo_minuto.futbol .descripcion-torneo span {
    font-size: 20px;
    display: inline;
    padding: 8px 80px;
    height: line;
    line-height: 2;
  }
  .modulo_minuto.futbol .detalles-bloque.estadisticas .celda-estadistica {
    justify-content: space-between;
    padding: 13px 20px;
  }
  .modulo_minuto.futbol .detalles-bloque.estadisticas .celda-estadistica > p:first-child {
    width: 195px;
  }
  .modulo_minuto.futbol .tabs_estadisticas span {
    padding: 13px 40px;
  }
  .modulo_minuto.futbol .tabs_estadisticas span:first-child {
    padding: 10px 120px 10px 30px;
  }
  .modulo_minuto.futbol .resumen_mam .vsequipos {
    width: 100%;
    justify-content: space-between;
    padding: 13px 19px;
  }
  .modulo_minuto.futbol .resumen_mam .partidos_resumen {
    flex-direction: row;
    width: calc(100% - 10px);
    margin: 0 auto;
  }
  .modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f {
    width: 48%;
    margin: 0px;
  }
  .modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f:nth-child(odd) {
    box-shadow: none;
  }
  .modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f.dos {
    flex-direction: row-reverse;
  }
  .modulo_minuto.futbol .resumen_mam .partidos_resumen .accion_f.dos .info_t {
    text-align: end;
  }
  .modulo_minuto.futbol .resumen_mam .partidos_resumen:nth-child(even) {
    -webkit-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.39);
  }
}
@media (min-width: 992px) {
  .contenedor {
    max-width: 1270px;
    width: 100%;
    margin: auto;
  }
  .nota-container {
    padding: 0px 30px;
  }
  .modulo_publi .contenedor__publicidad .mobile {
    display: none;
  }
  .modulo_publi .contenedor__publicidad .desktop {
    display: block;
  }
  .contenedor.cont-urgente .grid {
    padding: 19px 0;
  }
  .contenedor.cont-urgente .grid .is-2 {
    margin: 0 0 0 28px;
  }
  .contenedor.cont-urgente .grid .is-2 a {
    font-size: 20px;
  }
  .contenedor.cont-urgente .grid .separador-urgente {
    height: 56px;
  }
  .contenedor.cont-urgente .grid .is-10 {
    flex-basis: 66%;
    margin: 0 0 0 30px;
  }
  .contenedor.cont-urgente .grid .is-10 a {
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 1.5rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /*----------------------------------------NEW SECCION----------------------------------------------*/
  /*----------------------------------------FIN NEW SECCION----------------------------------------------*/
}
@media (min-width: 1200px) {
  .navidad_icono {
    display: block;
  }
  .monedas__publi {
    max-width: 939px;
  }
}
@media (min-width: 1560px) {
  .item-12.clima_extendido .data1,
  .item-12.clima_extendido .data2 {
    max-width: 1050px;
    margin: 50px auto 90px auto;
  }
}
@media (min-width: 1120px) {
  .contenedor_fly {
    display: block;
    width: 1345px;
    margin: auto;
  }
  .contenedor_fly .publicidad_fly {
    display: block;
    position: fixed;
    width: 1345px;
    z-index: 1;
    top: 145px;
  }
  .contenedor_fly .publicidad_fly div {
    display: block;
    width: 160px;
    height: 600px;
    position: absolute;
    top: 0;
  }
  .contenedor_fly .publicidad_fly div .contenedor__publicidad {
    margin: 0;
  }
  .contenedor_fly .publicidad_fly div.mediakit,
  .contenedor_fly .publicidad_fly div.boton_editar {
    position: initial;
  }
  .contenedor_fly .publicidad_fly div.boton_editar {
    width: auto;
    height: auto;
  }
  .contenedor_fly .publicidad_fly .left {
    left: -172px;
    margin-top: 120px;
  }
  .contenedor_fly .publicidad_fly .right {
    right: -172px;
    margin-top: 120px;
  }
  .contenedor_fly .publicidad_fly .right.enseccion {
    right: -96px;
  }
}
@media (min-width: 1648px) {
  .footer__publi {
    width: 100%;
    max-width: 1270px;
  }
}
/*------------------------------------*\
    $TEXTURAS
\*------------------------------------*/
.alert--block, .alert--info, .alert--error, .alert--warning, .alert--success {
  margin-bottom: 1.5;
  padding: 8px 35px 8px 14px;
  background-color: rgb(252, 228, 207);
  border: 1px solid #f6ae6f;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: #904809;
  border-radius: 3px;
  position: relative;
}
.alert--block .alert--heading, .alert--info .alert--heading, .alert--error .alert--heading, .alert--warning .alert--heading, .alert--success .alert--heading {
  color: inherit;
}
.alert--block .close, .alert--info .close, .alert--error .close, .alert--warning .close, .alert--success .close {
  position: absolute;
  top: -2px;
  right: 2px;
  float: right;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 18px;
  color: inherit;
}

.alert--success {
  background-color: #c5e6c5;
  border-color: #a2d6a2;
  color: #347834;
}

.alert--warning {
  background-color: #f7d6b9;
  border-color: #f2bc8b;
  color: #9f5512;
}

.alert--error {
  background-color: #f4cac8;
  border-color: #eba19e;
  color: rgb(218, 79, 73);
}

.alert--info {
  background-color: #6dc8e5;
  border-color: #24a1c8;
  color: #05161b;
}

.alert--block {
  padding-top: 14px;
  padding-bottom: 14px;
}
.alert--block .alert--heading {
  margin-bottom: 0.1875;
  font-size: inherit;
  font-weight: bold;
}
.alert--block > p,
.alert--block > ul {
  margin-bottom: 0;
}
.alert--block p + p {
  margin-top: 5px;
}

.badge--info, .badge--success, .badge--warning, .badge--error, .badge--primary {
  padding: 0.1em 0.3em;
  margin-right: 3px;
  font-size: 0.75rem;
  white-space: nowrap;
  border: 1px solid currentcolor;
  border-radius: 3px;
  color: #4d4d4d;
  background-color: transparent;
  -webkit-transition: background-color 0.25s 0 linear;
  -moz-transition: background-color 0.25s 0 linear;
  -ms-transition: background-color 0.25s 0 linear;
  -o-transition: background-color 0.25s 0 linear;
  transition: background-color 0.25s 0 linear;
}
.badge--info:hover, .badge--success:hover, .badge--warning:hover, .badge--error:hover, .badge--primary:hover {
  color: #4d4d4d;
  text-decoration: none;
  cursor: pointer;
}

.badge--error {
  color: rgb(218, 79, 73);
}

.badge--warning {
  color: rgb(231, 135, 48);
}

.badge--success {
  color: rgb(91, 183, 91);
}

.badge--info {
  color: rgb(66, 184, 221);
}

.badge--icon {
  display: inline-block;
  color: #4d4d4d;
  border: 1px solid #f2f2f2;
  border-radius: 3px;
  padding: 10px;
  background-color: transparent;
  text-align: center;
}

::-moz-selection {
  background-color: white;
  color: #FF6225;
  text-shadow: none;
}

/**
* Structure styles
**/
@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide {
  0% {
    margin-left: 0px;
  }
  33% {
    margin-left: 0px;
  }
  40% {
    margin-left: -237px;
  }
  73% {
    margin-left: -237px;
  }
  78% {
    margin-left: -474px;
  }
  95% {
    margin-left: -474px;
  }
  100% {
    margin-left: 0px;
  }
}
.header {
  display: block;
  background-color: white;
  z-index: 98;
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (min-width: 1024px) {
  .header {
    box-shadow: unset;
  }
}
.header .h-top-cont {
  background: #FF6225;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .header .h-top-cont {
    height: 35px;
  }
}
.header .h-top-cont .h-top {
  max-width: 1040px;
  width: 100%;
  margin: auto;
  display: flex;
  position: relative;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif, sans-serif;
  text-transform: uppercase;
  overflow: hidden;
}
.header .h-top-cont .h-top .h-top-title {
  white-space: nowrap;
  z-index: 99;
  background-color: #FF6225;
  padding: 0 7px 0 15px;
  font-weight: 700;
  color: black;
}
.header .h-top-cont .h-top .h-top-text {
  color: black;
  white-space: nowrap;
  padding-left: 12px;
  font-weight: 400;
  font-size: 13px;
  animation: marquee 25s linear infinite;
  display: flex;
  align-items: center;
  animation-play-state: running;
}
.header .h-top-cont .h-top .h-top-link:hover {
  font-weight: bold;
}
.header .h-top-cont .h-top .h-top-link {
  margin-right: 40px;
}
.header .h-top-cont .h-top .h-top-text:hover {
  animation-play-state: paused;
}
@media (min-width: 992px) {
  .header .h-top-cont .h-top {
    font-size: 1rem;
  }
}
@media (min-width: 1220px) {
  .header .h-top-cont .h-top .h-top-title {
    padding-left: 0;
  }
}
.header__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 65px;
  width: calc(100% - 32px);
  margin: auto;
}
@media (min-width: 1024px) {
  .header__container {
    max-width: 1275px;
    height: 95px;
  }
}
.header__controls {
  display: flex;
  gap: 20px;
}
.header__controls .clima-header {
  display: none;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  gap: 25px;
}
@media (min-width: 1024px) {
  .header__controls .clima-header {
    display: flex;
  }
}
.header__controls .clima-header #slideshow {
  text-align: center;
  overflow: hidden;
  width: 237px; /* Ajustado al ancho de un slide */
  margin: 0 auto;
}
.header__controls .clima-header .slide-wrapper {
  width: 711px; /* 237px * 3 slides */
  -webkit-animation: slide 12s ease infinite; /* Ajustado a 12s para reflejar el menor número de slides */
}
.header__controls .clima-header .slide {
  float: left;
  width: 237px;
}
.header__controls .clima-header .slide-number {
  font-size: 13px;
  font-weight: 700;
  text-align: start;
}
.header__logo {
  align-items: center;
  justify-content: center;
  display: flex;
}
.header__logo .logo {
  height: 36px;
}
.header__logo .logo svg {
  max-height: 36px;
}
@media (min-width: 1024px) {
  .header__logo .logo {
    height: 64px;
  }
  .header__logo .logo svg {
    max-height: 64px;
  }
}
.header__derecha {
  align-items: center;
  justify-content: end;
  display: flex;
}
.header__derecha .objetos {
  display: none;
  gap: 15px;
}
.header__derecha .objetos.mobile {
  display: block;
}
.header__derecha .objetos.mobile .s_envivo img {
  width: 45px;
  height: 45px;
}
@media (min-width: 1024px) {
  .header__derecha .objetos {
    display: flex;
  }
  .header__derecha .objetos.mobile {
    display: none;
  }
}
.header__derecha .senal_play, .header__derecha .senal_envivo {
  font-size: 13px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #131314;
  height: 45px;
  width: 111px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
}
.header__derecha .senal_play {
  border: 1px solid #131314;
}
.header__derecha .senal_envivo {
  background-color: #FF6225;
}
.header button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.subheader {
  background-color: rgb(255, 255, 255);
  color: #FF6225;
  height: 72px;
  align-items: center;
  display: none;
  padding-bottom: 22px;
  position: sticky;
  top: 130px;
  width: 100%;
  z-index: 9;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.subheader__titulo {
  margin-right: 0.8125rem;
  color: #FF6225;
  letter-spacing: 0.08em;
  font-size: 0.9375rem;
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
}
.subheader__box {
  height: 100%;
  width: calc(100% - 32px);
  max-width: 1275px;
  align-items: center;
  display: flex;
  border-top: 1px solid #FF6225;
  border-bottom: 1px solid #FF6225;
  margin: auto;
}
.subheader__box .navbar__container {
  width: 100%;
  height: 100%;
}
.subheader__box .navbar__container .navbar__links {
  height: 100%;
  align-items: center;
}
.subheader__box .navbar__container .navbar__links .navbar__links_cont {
  height: 101%;
  display: flex;
  align-items: center;
}
.subheader__redes {
  display: flex;
  justify-content: space-between;
  margin-top: 1.125rem;
}
@media (min-width: 768px) {
  .subheader__redes {
    display: none;
  }
}
@media (min-width: 992px) {
  .subheader__carousel.mobile {
    display: none;
  }
}
.subheader .carousel__box {
  display: flex;
  width: 48%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .subheader .carousel__box {
    width: 100%;
  }
}
.subheader .tablet {
  display: none;
}
@media (min-width: 768px) {
  .subheader .tablet {
    display: flex;
  }
}
.subheader .desktop {
  display: none;
}
@media (min-width: 992px) {
  .subheader .desktop {
    display: flex;
  }
}
.subheader .separador {
  height: 1.5rem;
  border: 0.5px solid rgb(255, 255, 255);
  background: rgb(255, 255, 255);
  display: inline-block;
  margin: 0 0.625rem;
}
.subheader .subheader_fondo {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 34px;
  height: 40px;
  background: white;
  top: 50px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (min-width: 992px) {
  .subheader {
    display: flex;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
  }
}

.navbar__container {
  display: none;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .navbar__container {
    display: flex;
  }
}
.navbar__links {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.navbar__links__cont {
  position: relative;
}
.navbar__link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 5px 3px;
  height: fit-content;
  transition: background-color 0.4s ease;
}
.navbar__link svg {
  margin-left: 12px;
}
@media (min-width: 1162px) {
  .navbar__link {
    padding: 5px 10px;
  }
}
.navbar__link_activo {
  display: none;
  opacity: 0;
  position: absolute;
}
.navbar__links_cont .subheader_fondo_hov.visible {
  display: flex;
  opacity: 1;
}
.navbar__links_cont .navbar__link_desactivo.visible {
  display: none;
  opacity: 0;
  position: absolute;
}
.navbar__links_cont .navbar__link_activo.visible {
  display: flex;
  opacity: 1;
  position: relative;
  border-radius: 5px;
}
.navbar__links_cont .subheader_fondo_hov.show {
  display: block;
  opacity: 1;
  z-index: -1;
}
.navbar__links .subheader_fondo_extra.show {
  display: block;
  opacity: 1;
  z-index: -1;
}
.navbar__sub_nav {
  width: 100%;
  color: rgb(255, 255, 255);
  padding: 5px 0;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  max-width: 1290px;
  margin: auto;
}
@media (min-width: 768px) {
  .navbar__sub_nav {
    width: calc(100% - 68px);
  }
}
@media (min-width: 1200px) {
  .navbar__sub_nav {
    width: calc(100% - 284px);
  }
}
.navbar__sub_nav.show {
  display: flex;
}
.navbar__sub_title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.navbar__sub_sep {
  margin: 0 24px;
  height: 16px;
  border: 1px solid #fff;
}
.navbar__sub_links {
  display: flex;
  width: 100%;
}
.navbar__sub_links-jcb {
  justify-content: space-between;
}
.navbar__sub_links-jcb .navbar__sub_link {
  margin-right: 0;
}
.navbar__sub_link {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-right: 45px;
  padding: 3px 10px;
  white-space: nowrap;
}
.navbar__sub_link.selected {
  background: #730023;
}

.button {
  cursor: pointer;
}

.sidebar {
  position: fixed;
  z-index: 98;
  width: 100%;
  max-width: 375px;
  text-align: center;
  background-color: #fff;
  padding: 35px 0 5rem;
  top: 95px;
  height: calc(100vh - 95px);
  transform: translateX(-100%);
  transition: 0.4s ease;
  overflow-y: scroll;
}
.sidebar__container {
  max-width: 226px;
  margin: auto;
}
@media (min-width: 768px) {
  .sidebar {
    top: 94px;
    height: calc(100vh - 94px);
  }
}
@media (min-width: 992px) {
  .sidebar {
    top: 130px;
    height: calc(100vh - 130px);
  }
  .sidebar .container-responsive {
    width: calc(100% - 15px);
  }
}
.sidebar__secciones {
  color: black;
  display: flex;
  flex-direction: column;
  text-align: initial;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  row-gap: 30px;
  max-width: 193px;
  margin: auto;
}
.sidebar__secciones .navbar__UH a {
  font-size: 16px;
}
.sidebar__secciones-link {
  font-size: 16px;
  font-weight: 600;
}
.sidebar__secciones-link a {
  transition: background-color 0.4s ease;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar__secciones-link .desktop {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar__secciones-link .desktop {
    display: block;
  }
  .sidebar__secciones-link .mobile {
    display: none;
  }
}
.sidebar__secciones-link.first {
  font-weight: 900;
}
.sidebar__secciones-link.active svg {
  transform: rotate(90deg);
}
.sidebar__subsecc {
  display: none;
}
.sidebar__subsecc ul {
  list-style: disc;
  padding: 0 0 0 25px;
}
.sidebar__subsecc li {
  padding: 5px 0;
}
.sidebar__subsecc-link {
  font-size: 14px;
  font-weight: 600;
}
.sidebar__subsecc.active {
  display: block;
  margin-top: -20px;
}
.sidebar__redes {
  margin-top: 40px;
  display: flex;
  justify-content: start;
  gap: 30px;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar.show {
  transform: translateX(0);
}

.bloque-negro {
  display: none;
  z-index: 99;
  background: #000000;
  opacity: 0.4;
  width: 100%;
  position: absolute;
  top: 95px;
  height: calc(100vh - 130px);
  z-index: 97;
  backdrop-filter: blur(10px);
}
.bloque-negro.show {
  display: flex;
}
@media (min-width: 1024px) {
  .bloque-negro {
    top: 130px;
  }
}

.buscador__container {
  display: none;
  position: absolute;
  width: 100%;
  max-width: 332px;
  top: 70px;
}
@media (min-width: 768px) {
  .buscador__container {
    top: 88px;
  }
}
@media (min-width: 992px) {
  .buscador__container {
    top: unset;
    left: unset;
  }
  .buscador__container.show {
    display: flex;
  }
}
.buscador__container_mobile {
  display: flex;
  margin-bottom: 40px;
}
.buscador__form {
  display: grid;
  grid-template-columns: 1.375rem 2fr 1.375rem;
  align-items: center;
  padding: 0.3125rem 0.75rem;
  border-radius: 4rem;
  width: 100%;
  background: #EEEEEE;
  margin-inline: auto;
  transition: all 1s linear;
}
@media (min-width: 768px) {
  .buscador__form {
    width: 100%;
  }
}
.buscador__form svg path {
  fill: transparent;
}
.buscador__input {
  color: #000;
  margin: 0 0.625rem;
  background: transparent;
  outline: 0;
  border: 0;
}
.buscador__input::placeholder {
  color: rgb(255, 255, 255);
}

.footer {
  margin-top: 0.9375rem;
  padding: 2.375rem 0;
  padding-bottom: 0;
  color: black;
  text-align: center;
  position: relative;
  z-index: 97;
  background-color: white;
}
.footer__container {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}
.footer .f_redes {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 9px;
  max-width: 190px;
  flex-wrap: wrap;
  padding: 0;
}
.footer .f_redes.desktop {
  display: none;
}
.footer .f_redes_follow {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
}
.footer .f_nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  align-items: center;
  padding: 39px 0 50px 0;
}
.footer .f_nav_link {
  font-size: 12px;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
.footer .f_nav_separador {
  display: none;
  min-width: 2px;
  height: 21px;
  background-color: #FF6225;
}
.footer .f_mustang {
  background: #FF6225;
  padding: 15px 0;
}
.footer .f_mustang_link {
  display: flex;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  color: black;
  gap: 10px;
}
.footer .f_mustang_text {
  font-size: 11px;
  color: black;
}
@media (min-width: 470px) {
  .footer .f_mustang_link {
    font-size: 14px;
  }
  .footer .f_mustang_text {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .footer {
    padding-top: 24px;
  }
  .footer__container {
    max-width: 960px;
    padding: 0;
  }
  .footer .f_logo_y_redes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .footer .f_redes.desktop {
    display: flex;
  }
  .footer .f_redes.mobile {
    display: none;
  }
  .footer .f_nav {
    padding: 25px 0;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
  }
  .footer .f_nav_separador {
    display: block;
  }
  .footer .f_mustang {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 0 10px 0;
  }
  .footer .f_mustang_separador {
    height: 15px;
    border: 1px solid #0B3F99;
    margin: 0 10px;
  }
}

.f_redes_icons {
  display: flex;
  column-gap: 10px;
}
.f_redes_icons_link {
  display: flex;
  align-items: center;
}

.nota {
  position: relative;
  height: 100%;
  overflow: hidden;
  box-shadow: 5px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.nota .media figure {
  margin: 0;
}
.nota .media figure a img {
  width: 100%;
}
.nota .nota__media {
  position: relative; /* Para posicionar la imagen absolutamente dentro del contenedor */
  width: 100%; /* Ancho del contenedor */
  padding-bottom: 56.25%; /* Altura calculada para la relación 16:9 (9/16 = 0.5625 o 56.25%) */
  overflow: hidden;
  height: 0;
}
.nota .nota__media img {
  position: absolute; /* Para que la imagen se ajuste dentro del contenedor */
  top: 0;
  left: 0;
  width: 100%; /* Asegura que la imagen cubra todo el ancho del contenedor */
  height: 100%; /* Asegura que la imagen cubra toda la altura del contenedor */
  object-fit: cover; /* Hace que la imagen se ajuste correctamente manteniendo su relación de aspecto */
}
.nota .nota__contador {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FF6225;
  font-size: 24px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nota .data {
  padding: 10px 8px;
}
.nota .data .volanta {
  background-color: #FF6225;
  border-radius: 6px;
  padding: 0 5px;
  height: 21px;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
}
.nota .data .volanta span {
  font-size: 0.8125rem;
  color: black;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nota .data .titulo {
  overflow: hidden;
}
.nota .data .titulo h2 {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1.125rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}
.nota .data .introduccion {
  overflow: hidden;
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.2;
}
.nota .data .tiempo {
  font-size: 0.75rem;
}
.nota .nota__autor {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #000;
}
.nota .nota__autor span {
  text-transform: capitalize;
}
.nota .tiempo {
  font-size: 0.75rem;
}

.nota--degrade {
  cursor: pointer;
}
.nota--degrade .data {
  padding: 30px 13px;
  position: absolute;
  bottom: 0;
}
.nota--degrade .data .titulo h2 {
  color: #fff;
}
.nota--degrade .data .introduccion {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}
.nota--degrade .data .tiempo {
  display: none;
}
.nota--degrade .data .nota__autor {
  display: none;
}
@media (min-width: 992px) {
  .nota--degrade .data {
    padding: 30px 38px;
  }
  .nota--degrade .data .titulo h2 {
    font-size: 36px;
  }
  .nota--degrade .data .introduccion {
    font-size: 20px;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    text-overflow: unset;
  }
}
.nota--degrade .media {
  position: relative;
}
.nota--degrade .media figure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* ajusta la altura del degradado según tus necesidades */
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgb(0, 0, 0) 100%);
}
.nota--degrade img {
  min-height: 210px;
}

.nota-opinion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nota-opinion .video-wrapper {
  height: 130px;
  min-height: 130px;
  width: 130px;
  min-width: 130px;
  border-radius: 50%;
  padding: 30px;
}
.nota-opinion .media {
  display: none;
}
.nota-opinion .data .volanta {
  display: none;
}
.nota-opinion .data .titulo {
  text-align: center;
}
.nota-opinion .data .titulo h2 a {
  color: black;
  font-weight: 600;
  font-size: 20px;
}
.nota-opinion .data .autor {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  gap: 3px;
  margin-top: 30px;
  font-weight: 500;
  font-size: 14px;
  padding: 0;
}
.nota-opinion .data .autor span {
  color: #FF6225;
}
.nota-opinion.linea {
  flex-direction: row;
}

.nota--lista {
  display: flex;
}
.nota--lista .media {
  max-width: 200px;
  width: 100%;
  min-width: 174px;
}
.nota--lista .data .volanta {
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .nota--duo {
    display: flex;
  }
  .nota--duo .media {
    max-width: 200px;
    width: 100%;
    min-width: 200px;
  }
  .nota--duo .data .volanta {
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .nota--duo--inverse {
    display: flex;
  }
  .nota--duo--inverse .media {
    display: grid;
  }
  .nota--duo--inverse .data .volanta {
    display: none;
  }
}

.b_c_Amarillo .bloque__titulo, .b_c_Amarillo .nota__contador {
  background-color: #FBD601;
}
.b_c_Amarillo .nota .data .volanta {
  background-color: #FBD601;
}
.b_c_Amarillo .nota.nota-opinion .separador {
  background-color: #FBD601;
}

.b_c_Negro .bloque__titulo-item, .b_c_Negro .nota .data .volanta span {
  color: white;
}
.b_c_Negro .bloque__titulo, .b_c_Negro .nota__contador {
  background-color: #000;
}
.b_c_Negro .nota .data .volanta {
  background-color: #000;
}

.b_c_Naranja .bloque__titulo, .b_c_Naranja .nota__contador {
  background-color: #FF6225;
}
.b_c_Naranja .nota .data .volanta {
  background-color: #FF6225;
}

.b_c_Rosa .bloque__titulo, .b_c_Rosa .nota__contador {
  background-color: #FF75C8;
}
.b_c_Rosa .nota .data .volanta {
  background-color: #FF75C8;
}
.b_c_Rosa .nota.nota-opinion .separador {
  background-color: #FF75C8;
}

.b_c_Marino .bloque__titulo, .b_c_Marino .nota__contador {
  background-color: #8197CB;
}
.b_c_Marino .nota .data .volanta {
  background-color: #8197CB;
}
.b_c_Marino .nota.nota-opinion .separador {
  background-color: #8197CB;
}

.b_c_Celeste .bloque__titulo, .b_c_Celeste .nota__contador {
  background-color: #38BBE6;
}
.b_c_Celeste .nota .data .volanta {
  background-color: #38BBE6;
}
.b_c_Celeste .nota.nota-opinion .separador {
  background-color: #38BBE6;
}

/**
* Desings styles
**/
.bloque-sabana .notas-cont {
  display: flex;
  flex-direction: column;
  row-gap: 0.9375rem;
}
@media (min-width: 768px) {
  .bloque-sabana .notas-cont {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
  }
}
@media (min-width: 992px) {
  .bloque-sabana .nota .data .titulo h2 {
    font-size: 20px;
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 1.25rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.bloque-sabana-cuatro .notas-cont {
  display: flex;
  flex-direction: column;
  row-gap: 0.9375rem;
}
@media (min-width: 768px) {
  .bloque-sabana-cuatro .notas-cont {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5625rem;
  }
}

.bloque-cincoycuatro .nota-ppal .data .titulo h2 {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1.4375rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: black;
}
.bloque-cincoycuatro .notas-cont, .bloque-cincoycuatro .notas-side, .bloque-cincoycuatro .sabana {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bloque-cincoycuatro .notas-cont {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .bloque-cincoycuatro .sabana {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .bloque-cincoycuatro .notas-cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
  }
  .bloque-cincoycuatro .notas-side {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .bloque-cincoycuatro .notas-side .nota .data .titulo h2 {
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 1.125rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.bloque-unaycuatro .nota-ppal .data .titulo h2 {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1.4375rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: black;
}
.bloque-unaycuatro .notas-cont, .bloque-unaycuatro .notas-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .bloque-unaycuatro .notas-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .bloque-unaycuatro .notas-cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
  }
  .bloque-unaycuatro .nota-ppal .data .titulo h2 {
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 1.5rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.bloque-dosycuatro .nota-ppal .data .titulo h2 {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1.4375rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}
.bloque-dosycuatro .notas-cont, .bloque-dosycuatro .notas-side, .bloque-dosycuatro .sabana {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bloque-dosycuatro .notas-cont {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .bloque-dosycuatro .sabana {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .bloque-dosycuatro .nota-ppal .data .nota__autor, .bloque-dosycuatro .nota-ppal .data .introduccion {
    display: none;
  }
  .bloque-dosycuatro .nota-ppal .data .titulo h2, .bloque-dosycuatro .notas-side .data .titulo h2 {
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 1.5rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
  }
  .bloque-dosycuatro .notas-cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
  }
}

.bloque-opinion .swiper-opinion {
  position: relative;
  overflow: hidden;
  height: 460px;
}
.bloque-opinion .swiper-slide {
  width: 265px;
  display: flex;
  justify-content: center;
}
.bloque-opinion .nota-container {
  padding: 0;
}
.bloque-opinion .nota-opinion {
  flex-direction: column-reverse;
  padding: 20px 6px;
  max-width: 265px;
  height: fit-content;
}
.bloque-opinion .nota-opinion .data {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.bloque-opinion .nota-opinion .data .titulo h2 {
  min-height: 100px;
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bloque-opinion .nota-opinion .data .introduccion {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bloque-opinion .nota-opinion .data .nota__autor {
  display: none;
}
.bloque-opinion .nota-opinion .nota__autor {
  font-weight: 400;
  font-size: 18px;
  margin-top: 15px;
  height: 54px;
}
.bloque-opinion .nota-opinion .nota__autor span {
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bloque-opinion .nota-opinion .separador {
  width: 216px;
  height: 2px;
  background-color: #FF6225;
  margin-top: 22px;
}

.swiper-button-next, .swiper-button-prev {
  width: 35px;
  height: 35px;
  top: unset;
  bottom: 0;
}

.swiper-button-prev {
  transform: rotate(180deg);
  right: 70px;
  left: unset;
}

.swiper-button-next:after, .swiper-button-prev:after {
  content: "";
}

.bloque-slide .swiper-bloqueSlide {
  position: relative;
  overflow: hidden;
  height: 315px;
}
.bloque-slide .swiper-slide {
  width: 266px;
  height: 260px;
  display: flex;
  justify-content: center;
}
.bloque-slide .nota-container {
  height: 100%;
  width: 100%;
  padding: 0;
  max-width: 266px;
}

.bloque-apertura .bloque-cont {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.bloque-apertura .notas-cont, .bloque-apertura .notas-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bloque-apertura .nota .data .titulo h2 {
  color: #1B1B1B;
}
.bloque-apertura .notas-side .nota .data .titulo h2 {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1.125rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}
.bloque-apertura .nota-ppal .nota .data .titulo h2 {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1.4375rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
}
.bloque-apertura .nota-ppal .introduccion {
  font-weight: 300;
}
.bloque-apertura .bloque__titulo-item {
  text-align: center;
}
.bloque-apertura .desktop {
  display: none;
}
.bloque-apertura .swiper-bloqueApertura {
  position: relative;
  overflow: hidden;
  height: 315px;
}
.bloque-apertura .swiper-slide {
  width: 266px;
  height: 260px;
}
.bloque-apertura .nota-container {
  height: 100%;
  padding: 0;
}
.bloque-apertura .custom-notas .notas-uh {
  padding: 0px 10px;
  display: grid;
  overflow: hidden;
}
.bloque-apertura .custom-notas .notas-uh .cont-titulo {
  display: flex;
  align-items: center;
  position: relative;
}
.bloque-apertura .custom-notas .notas-uh .cont-titulo::before {
  content: "";
  display: inline-block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FF6225;
  margin-right: 20px;
  z-index: 1;
}
.bloque-apertura .custom-notas .notas-uh .cont-titulo-uh {
  align-items: normal;
  padding: 10px 0 20px;
}
.bloque-apertura .custom-notas .notas-uh .cont-titulo-uh::before {
  margin-top: 5px;
  margin-right: 0;
}
.bloque-apertura .custom-notas .notas-uh .detail {
  margin: 2px 0 0 15px;
}
.bloque-apertura .custom-notas .notas-uh .hora-uh {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.bloque-apertura .custom-notas .notas-uh .titulo {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
}
.bloque-apertura .custom-notas .notas-uh .separador-uh {
  border-left: 1px dashed black;
  margin: 15px 0;
  height: 100%;
  left: 7px;
  top: 5px;
  position: absolute;
}
.bloque-apertura .bloque__titulo {
  grid-column: 1/3;
  height: fit-content;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .bloque-apertura .notas-cont {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .bloque-apertura .nota-bottom {
    grid-column: 1/3;
  }
}
@media (min-width: 1024px) {
  .bloque-apertura .bloque-cont {
    flex-direction: row;
    gap: 25px;
  }
  .bloque-apertura .nota-ppal .nota .data .titulo h2 {
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 1.625rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1B1B1B;
  }
  .bloque-apertura .nota-ppal .introduccion {
    font-size: 16px;
  }
  .bloque-apertura .notas-cont {
    gap: 25px;
  }
  .bloque-apertura .custom-cont {
    min-width: 362px;
  }
  .bloque-apertura .nota-bottom {
    max-height: 112px;
  }
  .bloque-apertura .desktop {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .bloque-apertura .swiper-bloqueApertura.mobile {
    display: none;
  }
}

.apertura-bomba {
  padding-top: 1.5rem;
  padding-bottom: 2.75rem;
}
.apertura-bomba .bloque-cont .nota__media {
  height: 356px;
}
.apertura-bomba .nota--degrade .nota__titulo-item {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  line-height: 1.75rem;
  letter-spacing: -0.2px;
  font-weight: 900;
  text-transform: inherit;
}
.apertura-bomba .nota .nota__volanta {
  position: relative;
  bottom: 15px;
}
@media (min-width: 768px) {
  .apertura-bomba {
    padding-top: 1.5rem;
    padding-bottom: 2.75rem;
  }
  .apertura-bomba .bloque-cont .nota__media {
    height: unset;
  }
}
@media (min-width: 992px) {
  .apertura-bomba {
    padding-top: unset;
    padding-bottom: unset;
  }
  .apertura-bomba .nota__degrade:hover {
    background-color: #FF6225;
    opacity: 0.5;
    transition: all 1s;
  }
  .apertura-bomba .nota__titulo {
    z-index: 4;
  }
  .apertura-bomba .nota--degrade .nota__titulo-item {
    font-size: 44px;
    line-height: 3.25rem;
  }
}
.apertura-bomba .bloque-sabana {
  margin-top: 20px;
}

.home-0:not(.isFull) .apertura-bomba {
  width: 100%;
}

.bloque-stories .para {
  margin-bottom: 20px;
}

/*---------------------- SECCION ----------------------------*/
.seccionNew__portada {
  margin-bottom: 30px;
}
.seccionNew__portada.notas-cont, .seccionNew__portada .notas-side {
  display: grid;
  gap: 20px;
}
.seccionNew__portada .notas-side {
  grid-template-rows: 1fr 1fr;
}
.seccionNew__portada .iframe-side {
  max-height: 550px;
}
.seccionNew__portada .iframe-side iframe {
  max-height: 100%;
}
.seccionNew__portada .nota-ppal .nota .data .titulo h2 {
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1.4375rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
}
.seccionNew__portada .nota-ppal .introduccion {
  font-weight: 300;
}
.seccionNew__sabana {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.seccionNew .embeded-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.seccionNew.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .seccionNew .notas-cont {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .seccionNew__sabana {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 25px;
  }
}
@media (min-width: 1024px) {
  .seccionNew__portada {
    margin-bottom: 40px;
  }
  .seccionNew .nota-ppal .nota .data .titulo h2 {
    background: transparent;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    font-size: 1.625rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .seccionNew .nota-ppal .introduccion {
    font-size: 16px;
  }
  .seccionNew .notas-cont {
    gap: 25px;
  }
}
@media (min-width: 768px) {
  .seccionNew__portada.isTag.notas-cont {
    grid-template-columns: 1fr 1fr;
  }
  .seccionNew__portada.isTag.notas-cont .notas-side {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .seccionNew__portada.isSocial.notas-cont {
    grid-template-columns: 1fr;
  }
  .seccionNew__portada.isSocial.notas-cont .notas-side {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
}
.seccionNew__iframe {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
.seccionNew__iframe .cont__notas {
  display: grid;
  gap: 20px;
}
.seccionNew__dosnotas {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
.seccionNew__fondo {
  background-color: black;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 40px;
}
.seccionNew .notasfondo {
  display: grid;
  padding: 15px 0;
  gap: 20px;
}
.seccionNew .notasfondo .nota .data .titulo h2 {
  color: white;
}
.seccionNew .notasfondo .data {
  border-top: 1px solid white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
@media (min-width: 768px) {
  .seccionNew__iframe {
    grid-template-columns: 2fr 1fr;
    margin-bottom: 40px;
  }
  .seccionNew__iframe .cont__notas {
    grid-template-columns: 1fr 1fr;
  }
  .seccionNew__dosnotas {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .seccionNew .notasfondo {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1300px) {
  .seccionNew .notasfondo {
    width: calc(100% - 360px);
  }
}

.opinion-apertura {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .opinion-apertura {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 40px;
  }
}
.opinion-apertura .nota-opinion {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 30px 0;
  max-width: 270px;
  margin: auto;
  justify-content: start;
}
.opinion-apertura .nota-opinion .video-wrapper {
  height: 156px;
  width: 156px;
}
.opinion-apertura .nota-opinion .data {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.opinion-apertura .nota-opinion .data .titulo h2 {
  padding: 0 20px;
  background: transparent;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  font-size: 1.0625rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.opinion-apertura .nota-opinion .data .nota__autor {
  font-size: 22px;
  font-weight: 700;
  border-bottom: 2px solid #FF6225;
  margin-bottom: 15px;
  text-align: center;
}
.opinion-apertura .nota-opinion .data .nota__autor p {
  display: none;
}
.opinion-cuerpo .nota-opinion {
  box-shadow: none;
  padding: 25px 0;
  border-bottom: 2px solid #FF6225;
  justify-content: start;
}
.opinion-cuerpo .nota-opinion .data .titulo {
  text-align: start;
}
.opinion-cuerpo .nota-opinion .data .titulo h2 {
  font-weight: 700;
}
.opinion-cuerpo .card.linea {
  display: grid;
  gap: 15px;
}
.opinion-cuerpo .video-wrapper {
  width: 91px;
  height: 91px;
  min-width: 91px;
  min-height: 91px;
  margin: 0;
}
@media (min-width: 1024px) {
  .opinion-cuerpo .video-wrapper {
    width: 117px;
    height: 117px;
    min-width: 117px;
    min-height: 117px;
  }
}
.opinion-cuerpo .nota__autor {
  display: none;
}
@media (min-width: 768px) {
  .opinion-cuerpo {
    display: flex;
  }
  .opinion-cuerpo .notas-contenedor {
    width: calc(100% - 330px);
    padding-right: 30px;
  }
}

.autor {
  margin: 30px auto;
}
.autor .autor--titulo {
  position: relative;
  width: 100%;
  background: #f8f8f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #FF6225;
  margin-bottom: 26px;
  padding-bottom: 17px;
}
.autor .autor--titulo .descr {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.autor .autor--titulo .descr img {
  width: 70px;
  border-radius: 100%;
}
.autor .autor--titulo .descr .naane {
  font-weight: 700;
  font-size: 20px;
  color: rgb(0, 0, 0);
  text-transform: capitalize;
}
.autor .autor--titulo .descr__detalle p {
  color: #FF6225;
  font-size: 13px;
  font-weight: 700;
  padding-top: 5px;
}
.autor .autor--titulo .soc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 56px;
  column-gap: 18px;
  row-gap: 18px;
}
.autor .autor--titulo .soc .icon-redSocial {
  width: 19px;
  display: flex;
  justify-content: center;
}
.autor .autor--titulo .soc .arroba {
  font-size: 24px;
  color: #a2a2a2;
  background: #505451;
  padding: 5px 10px;
  border-radius: 100%;
  font-weight: bold;
  margin: 0 6px;
}
.autor .autor--titulo .soc svg {
  width: 38px;
  margin: 0 6px;
}
@media (min-width: 768px) {
  .autor .autor--titulo .soc {
    max-width: 130px;
  }
}
.autor__biografia {
  margin-bottom: 30px;
}
.autor__biografia .b_description {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 400;
}
.autor__biografia .b_description span {
  color: #FF6225;
  font-weight: 700;
}
@media (min-width: 768px) {
  .autor .autor--titulo .descr {
    column-gap: 20px;
  }
  .autor .autor--titulo .descr img {
    width: 90px;
  }
  .autor .autor--titulo .descr .naane {
    font-size: 24px;
  }
  .autor .autor--titulo .descr__detalle p {
    font-size: 16px;
  }
}

.selectores_C {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.selectores_C span {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  cursor: pointer;
}
.selectores_C span.act_clima {
  border-bottom: 2px solid #FF6225;
  padding-bottom: 5px;
}

.clima_extendido {
  display: none;
  max-width: 100%;
  margin: 0px;
  padding: 30px 0px;
}
.clima_extendido.act_clima {
  display: block;
}
.clima_extendido .data1 {
  text-align: center;
  padding: 0px 48px;
}
.clima_extendido .data1 h2, .clima_extendido .data1 p, .clima_extendido .data1 span {
  font-weight: 500;
}
.clima_extendido .data1 h2 {
  font-size: 1.875rem;
}
.clima_extendido .data1 p {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1;
  font-size: 16px;
}
.clima_extendido .data2 {
  display: flex;
  flex-direction: column;
  padding: 0px 48px;
  align-items: center;
}
.clima_extendido .data2 .climareferencia {
  display: flex;
  align-items: center;
  margin: 40px 0;
}
.clima_extendido .data2 .climareferencia .icon {
  width: 60px;
  height: 60px;
  color: #FF6225;
  margin-right: 23px;
}
.clima_extendido .data2 .climareferencia p {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
}
.clima_extendido .data2 .estados {
  margin-bottom: 40px;
  text-align: center;
}
.clima_extendido .data2 .estados p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}
.clima_extendido .data2 .estados p span {
  margin-left: 4px;
}
.clima_extendido .contenedor_mobile {
  margin: 0 16px;
}
.clima_extendido .contenedor_mobile .extendido_mobile {
  display: flex;
  overflow-x: scroll;
  padding-bottom: 34px;
}
.clima_extendido .contenedor_mobile .extendido_mobile .item_clima {
  margin: 5px 20px 5px 5px;
}
.clima_extendido .contenedor_mobile .extendido_mobile::-webkit-scrollbar {
  height: 3px;
  margin-left: 15px;
}
.clima_extendido .contenedor_mobile .extendido_mobile::-webkit-scrollbar-thumb {
  background-color: #FF6225;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.clima_extendido .contenedor_mobile .extendido_mobile::-webkit-scrollbar-track {
  background-color: #E5E5E5;
}
.clima_extendido .item_clima {
  min-width: 191px;
  min-height: 242px;
  padding: 15px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}
.clima_extendido .item_clima .data1, .clima_extendido .item_clima .data2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.clima_extendido .item_clima .data1 p {
  margin-top: 0;
  color: #FF6225;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: bold;
}
.clima_extendido .item_clima .data1 span {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.clima_extendido .item_clima .data2 .climareferencia {
  margin: 0;
}
.clima_extendido .item_clima .data2 .climareferencia .icon {
  width: 46px;
  height: 46px;
  margin: 20px 0px;
}
.clima_extendido .item_clima .data2 .estados {
  text-align: center;
  margin-bottom: 0;
  min-height: 67px;
}
.clima_extendido .item_clima .data2 .estados p {
  font-size: 21px;
}
.clima_extendido .item_clima .data2 .estados p span:first-child {
  font-weight: bolder;
}
.clima_extendido .item_clima .data2 .estados > span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  display: block;
  text-align: start;
  padding: 0 20px;
  margin-top: 0px;
  text-align: center;
}
.clima_extendido .swiper-climaextendido {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.clima_extendido .swiper-climaextendido .swiper-wrapper {
  height: auto;
  padding-top: 5px;
}

@media (min-width: 1024px) {
  .selectores_C {
    margin: 0px 77px;
    gap: 65px;
    justify-content: start;
  }
  .selectores_C span {
    font-size: 1rem;
  }
  .clima_extendido {
    padding: 30px 0px;
  }
  .clima_extendido .data1 {
    text-align: initial;
    padding: 0 40px 0 0;
    margin: 0px 77px;
  }
  .clima_extendido .data1 h2 {
    font-size: 2.5rem;
  }
  .clima_extendido .data1 p {
    font-size: 1.25rem;
    margin: 20px 0 15px 0;
  }
  .clima_extendido .data2 {
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
    padding: 0px;
    margin: 50px 77px 90px 77px;
  }
  .clima_extendido .data2 .climareferencia {
    margin: 0;
    align-items: flex-end;
  }
  .clima_extendido .data2 .climareferencia .icon {
    width: 87px;
    height: 87px;
    margin-bottom: -7px;
  }
  .clima_extendido .data2 .climareferencia p {
    font-size: 3.75rem;
  }
  .clima_extendido .data2 .estados {
    margin-bottom: 0px;
    text-align: initial;
  }
  .clima_extendido .data2 .estados p {
    font-size: 18px;
  }
  .clima_extendido .swiper-climaextendido {
    height: 360px;
    margin: 0 60px;
    padding: 0 5px;
  }
  .clima_extendido .swiper-climaextendido .item_clima {
    display: flex;
    flex-direction: column;
    padding: 20px 0px;
    justify-content: space-between;
    min-height: 299px;
  }
  .clima_extendido .swiper-climaextendido .item_clima .data1 {
    margin: 0;
  }
  .clima_extendido .swiper-climaextendido .item_clima .data1 p {
    margin: 0;
  }
  .clima_extendido .swiper-climaextendido .item_clima .data2 {
    margin: 0px;
  }
  .clima_extendido .swiper-climaextendido .item_clima .data2 .climareferencia {
    margin: 0;
  }
  .clima_extendido .swiper-climaextendido .item_clima .data2 .climareferencia .icon {
    margin: 0;
    height: 64px;
    width: 64px;
  }
  .clima_extendido .swiper-climaextendido .item_clima .data2 .estados {
    min-height: 67px;
    margin-top: 35px;
  }
  .clima_extendido .swiper-climaextendido .item_clima .data2 .estados > span {
    margin: 0px;
    text-align: center;
  }
}
.horoscopo_extendido {
  color: black;
}
.horoscopo_extendido .contenedor:first-child {
  padding: 25px 10px;
}
.horoscopo_extendido .contenedor:first-child h1 {
  text-transform: uppercase;
}
.horoscopo_extendido .contenedor_h {
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo {
  width: 90%;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem {
  box-shadow: 0px 4px 18px -2px rgba(21, 21, 21, 0.69);
  display: flex;
  margin-bottom: 40px;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 500px;
  padding: 40px 0;
  overflow: initial;
  color: black;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem.full_h {
  height: auto;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .icon {
  height: 111px;
  color: #FF6225;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .h_name {
  font-size: 35px;
  text-transform: uppercase;
  margin: 20px 0;
  line-height: 1;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .rango_h {
  margin-bottom: 20px;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .relative {
  width: 100%;
  position: relative;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .relative .texto_h {
  height: 100px;
  overflow: hidden;
  height: 100px;
  overflow: hidden;
  padding: 0px 40px;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .relative .texto_h .descripcion_h {
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.6;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .relative .texto_h .descripcion_h span {
  color: #FF6225;
  font-weight: bold;
  letter-spacing: 1px;
  margin-right: 5px;
  font-size: 16px;
  text-transform: uppercase;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .relative .texto_h.act {
  height: auto;
  overflow: initial;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .relative .texto_h .little {
  width: 30px;
  margin: 20px auto;
  height: 30px;
  background: #FF6225;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 21px 21px;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .relative .texto_h .little span {
  font-size: 45px;
  line-height: 0;
  cursor: pointer;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .more {
  width: 30px;
  height: 30px;
  background: #FF6225;
  position: absolute;
  bottom: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 21px 21px;
}
.horoscopo_extendido .contenedor_h .colm_horoscopo .horoscopo_elem .more span {
  font-size: 45px;
  line-height: 0;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .horoscopo_extendido .contenedor_h {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 15px;
  }
  .horoscopo_extendido .contenedor_h .colm_horoscopo {
    width: calc(50% - 20px);
  }
  .horoscopo_extendido .contenedor:first-child h1 {
    font-size: 55px;
  }
}
/*-----------------------------------------Busqueda------------------------------------------*/
.busqueda .notas-cont {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .busqueda .notas-cont {
    margin-bottom: 25px;
  }
}

/**
* Componets used for layouts, headers, articles, etc...
**/
/*------------------------------------*\
    $grid
\*------------------------------------*/
* {
  box-sizing: border-box;
}

.grid {
  position: relative;
  display: -webkit-flex;
  align-items: flex-start;
  display: flex;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.justify-start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.justify-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.justify-center {
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-space {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.justify-around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.vertical {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.vertical.reverse {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.align-top {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}

.align-bottom {
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}

.align-center {
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-self: center;
  align-self: center;
}

.align-baseline {
  -webkit-align-items: baseline;
  align-items: baseline;
}

.align-stretch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

[class^=item], [class*=" item"] {
  display: block;
  flex-basis: 0;
  flex-shrink: 0;
  flex-grow: 1;
  align-items: flex-start;
}

.item.grid {
  display: block;
  width: 100%;
  flex-basis: 100%;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .item.grid {
    flex-basis: 0;
    display: flex;
  }
}

.item.is-narrow {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-narrow {
    flex: none;
  }
}

.item.clear {
  margin: 0;
  padding: 0;
}

.item.is-1 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-1 {
    flex: 0 0 8.3333333333%;
  }
}

.item.is-2 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-2 {
    flex: 0 0 16.6666666667%;
  }
}

.item.is-3 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-3 {
    flex: 0 0 25%;
  }
}

.item.is-4 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-4 {
    flex: 0 0 33.3333333333%;
  }
}

.item.is-5 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-5 {
    flex: 0 0 41.6666666667%;
  }
}

.item.is-6 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-6 {
    flex: 0 0 50%;
  }
}

.item.is-7 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-7 {
    flex: 0 0 58.3333333333%;
  }
}

.item.is-8 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-8 {
    flex: 0 0 66.6666666667%;
  }
}

.item.is-9 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-9 {
    flex: 0 0 75%;
  }
}

.item.is-10 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-10 {
    flex: 0 0 83.3333333333%;
  }
}

.item.is-11 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-11 {
    flex: 0 0 91.6666666667%;
  }
}

.item.is-12 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .item.is-12 {
    flex: 0 0 100%;
  }
}

.has-margin-top-0 {
  margin-top: 0;
}

.has-padding-top-0 {
  padding-top: 0;
}

.has-margin-left-0 {
  margin-left: 0;
}

.has-padding-left-0 {
  padding-left: 0;
}

.has-margin-bottom-0 {
  margin-bottom: 0;
}

.has-padding-bottom-0 {
  padding-bottom: 0;
}

.has-margin-right-0 {
  margin-right: 0;
}

.has-padding-right-0 {
  padding-right: 0;
}

/*------------------------------------*\
    $UTILITIES
\*------------------------------------*/
/*
*
* Selectors repeated constantly
*/
/*
 * Classes for font- sizes, you can check them in Settings.scss
 * Same name of the variables with the `font-` prefix

		.font-x-small {
			font-size: .9rem;
		}


 */
.font-f_8 {
  font-size: 0.5rem;
  line-height: 1.5;
}

.font-f_9 {
  font-size: 0.5625rem;
  line-height: 1.5;
}

.font-f_10 {
  font-size: 0.625rem;
  line-height: 1.5;
}

.font-f_11 {
  font-size: 0.6875rem;
  line-height: 1.5;
}

.font-f_12 {
  font-size: 0.75rem;
  line-height: 1.5;
}

.font-f_13 {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.font-f_14 {
  font-size: 0.875rem;
  line-height: 1.5;
}

.font-f_15 {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.font-f_16 {
  font-size: 1rem;
  line-height: 1.5;
}

.font-f_17 {
  font-size: 1.063rem;
  line-height: 1.5;
}

.font-f_18 {
  font-size: 1.125rem;
  line-height: 1.5;
}

.font-f_20 {
  font-size: 1.25rem;
  line-height: 1.5;
}

.font-f_21 {
  font-size: 1.3125rem;
  line-height: 1.5;
}

.font-f_22 {
  font-size: 1.375rem;
  line-height: 1.5;
}

.font-f_24 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.font-f_26 {
  font-size: 1.625rem;
  line-height: 1.5;
}

.font-f_28 {
  font-size: 1.75rem;
  line-height: 1.5;
}

.font-f_30 {
  font-size: 1.875rem;
  line-height: 1.5;
}

.font-f_32 {
  font-size: 2rem;
  line-height: 1.5;
}

.font-f_34 {
  font-size: 2.125rem;
  line-height: 1.5;
}

.font-f_36 {
  font-size: 2.25rem;
  line-height: 1.5;
}

.font-f_38 {
  font-size: 2.375rem;
  line-height: 1.5;
}

.font-f_40 {
  font-size: 2.5rem;
  line-height: 1.5;
}

.font-f_42 {
  font-size: 2.625rem;
  line-height: 1.5;
}

.font-f_44 {
  font-size: 2.75rem;
  line-height: 1.5;
}

.font-f_46 {
  font-size: 2.875rem;
  line-height: 1.5;
}

.font-f_48 {
  font-size: 3rem;
  line-height: 1.5;
}

.font-f_50 {
  font-size: 3.125rem;
  line-height: 1.5;
}

.font-f_52 {
  font-size: 3.25rem;
  line-height: 1.5;
}

.font-f_60 {
  font-size: 3.75rem;
  line-height: 1.5;
}

.font-f_65 {
  font-size: 4.063rem;
  line-height: 1.5;
}

.font-f_70 {
  font-size: 4.375rem;
  line-height: 1.5;
}

.float-right {
  float: right;
}

.inline-block {
  display: inline-block;
}

.nomargin-bottom {
  margin-bottom: 0;
}

.margin-bottom {
  margin-bottom: 20px;
}

/*------------------------------------*\
    $PLACEHOLDERS
\*------------------------------------*/
/**
* The ghost, nudged to maintain perfect centering
*/
/**
* Escondemos el texto solo VISUALMENTE
*/
/**
* Escondemos el texto de VISUALMENTE y SCREENREADERS
*/
/**
* Escondemos pero mantenemos layout.
*/
/**
* Visualmente escondido, pero se puede detectar con teclado (focus).
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  overflow: visible;
}

/**
* Clear floats.
* http://bit.ly/1e3YaBH
*/
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 1rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.mx-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.my-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.m-2 {
  margin: 1.5rem !important;
}

.mt-2 {
  margin-top: 1.5rem !important;
}

.mr-2 {
  margin-right: 1.5rem !important;
}

.mb-2 {
  margin-bottom: 1.5rem !important;
}

.ml-2 {
  margin-left: 1.5rem !important;
}

.mx-2 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.my-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.mx-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.my-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 1rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.px-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-2 {
  padding: 1.5rem !important;
}

.pt-2 {
  padding-top: 1.5rem !important;
}

.pr-2 {
  padding-right: 1.5rem !important;
}

.pb-2 {
  padding-bottom: 1.5rem !important;
}

.pl-2 {
  padding-left: 1.5rem !important;
}

.px-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.py-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.px-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}