@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
**/
/*------------------------------------*\
    $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;
  }
}
 *
 */
/*------------------------------------*\
    $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(x-small);}

 *
 */
/*------------------------------------*\
    $COLORS
\*------------------------------------*/
/**
 * Brand colors
 */
/**
    * Grey Scale
    * This is mainly to hold back designers from adding 200 different greys ;)
    */
/*------------------------------------*\
    $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('small') {
    color: blue;
  }
}
*/
/**
  * Centrar y dar un ancho máximo igual a $pagemaxwidth.
  */
/*------------------------------------*\
    $FUNCIONES
\*------------------------------------*/
/*
 * Función para controlar el index

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

 * compila:

	.selector { z-index: 9001;}

 * Puedes ver las variables en el MAP en settings.scss
 */
/*
 * Función para mantener el tamaño de fuente consistente

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

 * Puedes ver en settings.scss las variables que se utilizan.
 */
/**
* 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
\*------------------------------------*/

@font-face {
  font-family: 'Mermaid1001'; /* Nombre de la fuente */
  src: url('/font/club/Mermaid1001.ttf') format('truetype'); /* Ruta de la fuente */
}
@font-face {
  font-family: 'Rockwell'; /* Nombre de la fuente */
  src: url('/font/club/Rockwell.ttc') format('truetype'); /* Ruta de la fuente */
}
@font-face {
  font-family: 'Montserrat-SemiBold'; /* Nombre de la fuente */
  src: url('/font/club/Montserrat-SemiBold.otf') format('truetype'); /* Ruta de la fuente */
}
@font-face {
  font-family: 'Roboto-BoldCondensed'; /* Nombre de la fuente */
  src: url('/font/club/Roboto-BoldCondensed.ttf') format('truetype'); /* Ruta de la fuente */
}
@font-face {
  font-family: 'Roboto-Light'; /* Nombre de la fuente */
  src: url('/font/club/Roboto-Light.ttf') format('truetype'); /* Ruta de la fuente */
}

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;
}

*{
  scroll-behavior: smooth;
}

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.8rem;
  font-style: italic;
  color: #737373;
}

/*------------------------------------*\
    $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: color-grey(lightgrey);
  border: 0;
  border-bottom: 1px solid #bfbfbf;
  white-space: normal;
}

form legend small {
  font-size: 0.6rem;
  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.6rem;
  border-radius: 3px;
  vertical-align: baseline;
}

input,
button,
select,
textarea {
  font-family: "Heebo", Helvetica, 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.6rem;
  font-weight: bold;
  color: color-grey(lightgrey);
  cursor: pointer;
}

input,
textarea,
select {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 4px;
  margin-bottom: 1.5;
  background-color: white;
  border: 1px solid #bfbfbf;
  color: color-grey(lightgrey);
  -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: 12px;
  height: 12px;
  padding: 0;
  margin: 0 3px 0 0;
  line-height: normal;
  cursor: pointer;
  background-color: white;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: #bfbfbf;
  border-color: white;
  border-width: 1px;
  box-shadow: 0 0 0 1px #bfbfbf;
}

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

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

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

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;
}

input:focus,
textarea:focus {
  border-color: #004a9a, 40%;
  box-shadow: 0 0 1px 1px #bfbfbf;
  outline: none;
}

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

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

/**
* 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 #fce4cf;
}

input:required:focus:valid {
  background-color: #e9f5e9;
  border: 1px solid #5bb75b;
}

/*------------------------------------*\
    $BOTONES
\*------------------------------------*/
/*
 * Definimos los botones y sus variantes
 */
/**
 * .btn es la clase principal para definir un botón
 */
.btn--disabled, .btn--info, .btn--error, .btn--warning, .btn--success, .btn--primary, .btn--brand, .btn--rojo, .btn-prode, .btn-prodec {
  display: inline-block;
  line-height: 3;
  color: color-grey(lightgrey);
  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--disabled:hover, .btn--info:hover, .btn--error:hover, .btn--warning:hover, .btn--success:hover, .btn--primary:hover, .btn--brand:hover, .btn--rojo:hover, .btn-prode:hover, .btn-prodec:hover {
  text-decoration: none;
  color: color-grey(lightgrey);
}

.btn--disabled:active, .btn--info:active, .btn--error:active, .btn--warning:active, .btn--success:active, .btn--primary:active, .btn--brand:active, .btn--rojo:active, .btn-prode:active, .btn-prodec:active, .btn--disabled:focus, .btn--info:focus, .btn--error:focus, .btn--warning:focus, .btn--success:focus, .btn--primary:focus, .btn--brand:focus, .btn--rojo:focus, .btn-prode:focus, .btn-prodec:focus {
  outline: none;
}

.btn--disabled:visited, .btn--info:visited, .btn--error:visited, .btn--warning:visited, .btn--success:visited, .btn--primary:visited, .btn--brand:visited, .btn--rojo:visited, .btn-prode:visited, .btn-prodec:visited {
  color: color-grey(lightgrey);
}

/*------------------------------------*\
    $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 no disponible
*/
.btn--disabled {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #e6e6e6;
}

/**
* Botón de Info
*/
.btn--info {
  color: #42b8dd;
}

.btn--info:hover {
  color: #42b8dd;
}

.btn--info:visited {
  color: #42b8dd;
}

/**
* Botón de Error
*/
.btn--error {
  color: #da4f49;
}

.btn--error:hover {
  color: #da4f49;
}

.btn--error:visited {
  color: #da4f49;
}

/**
* Botón de advertencia
*/
.btn--warning {
  color: #e78730;
}

.btn--warning:hover {
  color: #e78730;
}

.btn--warning:visited {
  color: #e78730;
}

/**
* Botón de OK
*/
.btn--success {
  color: #5bb75b;
}

.btn--success:hover {
  color: #5bb75b;
}

.btn--success:visited {
  color: #5bb75b;
}

/**
* Botón principal
*/
.btn--primary {
  color: #004a9a;
}

.btn--primary:hover {
  color: #004a9a;
}

.btn--primary:visited {
  color: #004a9a;
}

/*------------------------------------*\
    $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.6rem;
}

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

.btn--large {
  padding-right: 3em;
  padding-left: 3em;
  line-height: 3;
  font-size: 1.5rem;
}

/*------------------------------------*\
    $BOTONES-GRUPOS
\*------------------------------------*/
/**
 * Con esta clase podemos agrupar los botones
 * en grupos horizontales.
 *
 */
.btn-group {
  position: relative;
}

.btn-group [class^="btn--"], .btn-group [class*=" btn--"] {
  position: relative;
  border-radius: 0;
  float: left;
  margin-left: -1px;
}

.btn-group [class^="btn--"]:first-child, .btn-group [class*=" btn--"]:first-child {
  margin-left: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.btn-group [class^="btn--"]:last-child, .btn-group [class*=" btn--"]:last-child {
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

/*------------------------------------*\
    $IMÁGENES
\*------------------------------------*/
.img--rounded {
  border-radius: 12px;
}

.img--polaroid {
  padding: 12px;
  background-color: white;
  border: 1px solid color-grey(lightgrey);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.img--circle {
  border-radius: 100%;
}

/*------------------------------------*\
    $LINKS
\*------------------------------------*/
a {
  text-decoration: none;
  color: color-brand(color-brand);
}

a:visited {
  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: "Heebo", Helvetica, sans-serif;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizelegibility;
}

h1.altheader,
h2.altheader,
h3.altheader,
h4.altheader,
h5.altheader,
h6.altheader {
  color: #737373;
  text-transform: uppercase;
  display: block;
}

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

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

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

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

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

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

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

small {
  font-size: 0.6rem;
  color: #737373;
}

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

li ul,
li ol {
  margin: 0;
}

blockquote {
  margin: 0 0 1.5 0;
  padding-left: 24px;
  border-left: 2px solid color-grey(lightgrey);
  font-family: "Heebo", Helvetica, sans-serif;
  font-style: normal;
}

blockquote p {
  font-size: 0.8rem;
  color: #737373;
  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;
}

.dl-horizontal dt {
  float: left;
  clear: left;
  width: 20.25%;
  text-align: right;
}

.dl-horizontal dd {
  margin-left: 22.78%;
}

abbr[title] {
  border-bottom: 1px dotted color-grey(lightgrey);
  cursor: help;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

ins {
  background-color: white;
  color: color-grey(lightgrey);
  text-decoration: none;
}

mark {
  background-color: yellow;
  color: color-grey(lightgrey);
}

pre,
code,
kbd,
samp {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  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.6rem;
  line-height: 0;
  vertical-align: 1.5;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

hr {
  clear: both;
  display: block;
  margin: 1.5 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid color-grey(lightgrey);
}

.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-x-small {
  font-size: 0.6rem;
}

.font-small {
  font-size: 0.8rem;
}

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

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

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

/*------------------------------------*\
    $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 #737373;
  font-size: 0.8rem;
  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 #737373;
}

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: #e6e6e6;
}

.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}

.table-bordered {
  border: 1px solid #737373;
  border-left: 0;
  border-collapse: separate;
  *border-collapse: collapsed;
}

.table-bordered th,
.table-bordered td {
  border-left: 1px solid #737373;
}

.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}

.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: #e6e6e6;
}

/**
* 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: color-grey(lightgrey);
  font-size: 87.5%;
  -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: transparent;
  font-family: "Heebo", Helvetica, sans-serif;
  line-height: 1.5;
  color: color-grey(lightgrey);
}

/*

*/
.mundial {
  margin: auto;
}

.mundial .grupo {
  width: 100%;
  display: inline-block;
}

.mundial .grupo .grupo--nombre {
  width: 100%;
  float: left;
  background-color: #0289bd;
  padding-top: 6px;
  font-size: 12px;
  color: white;
  text-align: center;
}

.mundial .grupo .grupo--nombre .letra {
  font-size: 32px;
  line-height: 34px;
  font-weight: bold;
}

.mundial .grupo .grupo--equipos {
  width: 100%;
  min-height: 64px;
  float: left;
  background-color: #2c467e;
}

.mundial .grupo .grupo--equipos .equipos--list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.mundial .grupo .grupo--equipos .equipos--list .equipo {
  display: inline-block;
  vertical-align: top;
  padding-top: 10px;
  width: auto;
  text-align: center;
  width: 23%;
}

.mundial .grupo .grupo--equipos .equipos--list .equipo img {
  width: 30px;
}

.mundial .grupo .grupo--equipos .equipos--list .equipo p {
  font-size: 12px;
  color: white;
}

.mundial .grupo .gurpo--resultado {
  background-color: #bebebe47;
  border-top: 2.5px solid #5abef7;
  padding: 10px 0;
  clear: both;
}

.mundial .grupo .gurpo--resultado .partido:first-child ul .opcion span {
  display: block !important;
}

.mundial .grupo .gurpo--resultado .partido ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  vertical-align: middle;
}

.mundial .grupo .gurpo--resultado .partido ul li {
  display: inline-block;
  width: auto;
  text-align: center;
}

.mundial .grupo .gurpo--resultado .partido ul .equipo {
  display: none;
  width: 7%;
}

.mundial .grupo .gurpo--resultado .partido ul .equipo img {
  width: 20px;
}

.mundial .grupo .gurpo--resultado .partido ul .nombre {
  width: 30%;
  font-size: 12px;
  color: #464a4d;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion {
  width: 5%;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion span {
  font-size: 12px;
  display: none;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"] {
  display: none;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"] + label {
  display: inline-block;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  outline: 0;
  width: 25px;
  height: 25px;
  background-image: url("../img/prode/css_sprites.png");
  background-repeat: no-repeat;
  background-position: -55px -55px;
  text-indent: -99999px;
  cursor: pointer;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"]:checked + label[class="normal"] {
  background-position: -55px -10px;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"]:checked + label[class="acerto"] {
  background-position: -10px -55px;
}

.mundial .grupo .gurpo--resultado .partido ul .opcion input[type="radio"]:checked + label[class="no_acerto"] {
  background-position: -10px -10px;
}

.mundial .grupo .gurpo--resultado .partido ul .resultado {
  width: 5%;
  font-size: 12px;
  color: #464a4d;
}

.fase {
  max-width: 640px;
  width: 100%;
  margin: auto;
}

.fase .fase--nombre {
  width: 100%;
  float: left;
  background-color: #0289bd;
  padding-top: 6px;
  font-size: 20px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2.5px solid #5abef7;
}

.fase .fase--resultado.fase--finales {
  padding-top: 0;
}

.fase .fase--resultado.fase--finales .partido {
  padding: 10px 0;
}

.fase .fase--finales .partido ul .opcion span {
  display: block !important;
}

.fase .fase--resultado {
  background-color: #bebebe47;
  padding: 10px 0;
  clear: both;
}

.fase .fase--resultado .fase--nombre {
  width: 100%;
  float: left;
  background-color: #0289bd;
  padding-top: 6px;
  font-size: 20px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2.5px solid #5abef7;
}

.fase .fase--resultado .partido:first-child ul .opcion span {
  display: block !important;
}

.fase .fase--resultado .partido ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 97%;
  margin: auto;
}

.fase .fase--resultado .partido ul li {
  display: inline-block;
  width: auto;
  text-align: center;
  padding: 2px 0;
  vertical-align: middle;
}

.fase .fase--resultado .partido ul .equipo {
  width: 10%;
  display: none;
}

.fase .fase--resultado .partido ul .equipo img {
  width: 35px;
}

.fase .fase--resultado .partido ul .nombre {
  width: 30%;
  font-size: 12px;
  color: #464a4d;
}

.fase .fase--resultado .partido ul .opcion {
  width: 5%;
}

.fase .fase--resultado .partido ul .opcion span {
  font-size: 10px;
  display: none;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"] {
  display: none;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"] + label {
  display: inline-block;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  outline: 0;
  width: 25px;
  height: 25px;
  background-image: url("../img/prode/css_sprites.png");
  background-repeat: no-repeat;
  background-position: -55px -55px;
  text-indent: -99999px;
  cursor: pointer;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"]:checked + label[class="normal"] {
  background-position: -55px -10px;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"]:checked + label[class="acerto"] {
  background-position: -10px -55px;
}

.fase .fase--resultado .partido ul .opcion input[type="radio"]:checked + label[class="no_acerto"] {
  background-position: -10px -10px;
}

.fase .fase--resultado .partido ul .resultado {
  width: 5%;
  font-size: 12px;
  color: #464a4d;
}

.botonera {
  text-align: center;
  padding: 10px 0;
}

.separador {
  clear: both;
  height: 15px;
}

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

.btn--brand {
  background-color: #004a9a;
  color: white;
  -webkit-border-top-right-radius: 120px;
  -webkit-border-bottom-right-radius: 120px;
  -webkit-border-bottom-left-radius: 120px;
  -webkit-border-top-left-radius: 120px;
  -moz-border-radius-topright: 120px;
  -moz-border-radius-bottomright: 120px;
  -moz-border-radius-bottomleft: 120px;
  -moz-border-radius-topleft: 120px;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-left-radius: 120px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  line-height: 2.5;
}

.btn--brand:hover {
  background-color: #53abe1;
  color: white;
}

.btn--brand:visited {
  background-color: #004a9a;
  color: white;
}

.btn--rojo {
  background-color: #ff0000;
  color: white;
  -webkit-border-top-right-radius: 120px;
  -webkit-border-bottom-right-radius: 120px;
  -webkit-border-bottom-left-radius: 120px;
  -webkit-border-top-left-radius: 120px;
  -moz-border-radius-topright: 120px;
  -moz-border-radius-bottomright: 120px;
  -moz-border-radius-bottomleft: 120px;
  -moz-border-radius-topleft: 120px;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-left-radius: 120px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  line-height: 2.5;
}

.btn--rojo:hover {
  background-color: #ff0000;
  color: white;
}

.btn--rojo:visited {
  background-color: #ff0000;
  color: white;
}

.btn-prode {
  color: white;
  text-transform: uppercase;
  background-color: #AE0223;
  border: none;
}

.btn-prode:hover {
  color: white;
  background-color: #ae0223cc;
}

.btn-prode:visited {
  color: white;
  background-color: #ae0223cc;
}

.btn-prodec {
  color: white;
  text-transform: uppercase;
  background-color: #5abef7;
  border: none;
}

.btn-prodec:hover {
  color: white;
  background-color: #5abef794;
}

.btn-prodec:visited {
  color: white;
  background-color: #5abef794;
}

.caption--ranking {
  background-color: #2c467e;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

.titulo_juego {
  text-align: center;
  color: #2c467e;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 30px;
  font-family: "Heebo", Helvetica, sans-serif;
}

.ranking {
  margin: auto;
}

.ranking .resumen {
  margin: auto;
}

.ranking .resumen table {
  background-color: #2c467e;
  color: white;
  text-transform: uppercase;
  text-align: center;
}

.ranking .resumen table tbody {
  height: auto;
}

.ranking .resumen table tbody tr:hover td {
  background-color: #2c467e;
}

.ranking .resumen table tbody tr:first-child {
  border-bottom: 2px solid #5abef7;
}

.ranking .resumen table tbody tr:last-child {
  border-top: 2px solid #5abef7;
}

.ranking .resumen table tbody tr td {
  text-transform: uppercase;
  text-align: center;
  border: none;
  padding: 8px 0;
  font-size: 12px;
  width: 25%;
}

.ranking .resumen table tbody tr td img {
  vertical-align: text-bottom;
}

.ranking .usuario {
  text-align: center;
  padding: 10px 0;
}

.ranking .usuario h2 {
  padding: 10px 0;
  font-size: 20px;
}

.ranking .ranking--tabla {
  display: block;
  max-width: 640px;
  width: 100%;
  margin: auto;
}

.ranking .ranking--tabla thead, .ranking .ranking--tabla tbody, .ranking .ranking--tabla tfoot {
  display: block;
}

.ranking .ranking--tabla thead tr {
  background-color: white;
  border-bottom: 2px solid #5abef7;
}

.ranking .ranking--tabla tfoot tr {
  background-color: #2c467e;
}

.ranking .ranking--tabla tfoot tr:first-child {
  border-bottom: 2px solid #5abef7;
}

.ranking .ranking--tabla tfoot tr td {
  color: white;
  font-size: 20px;
  text-align: center;
}

.ranking .ranking--tabla tfoot tr:last-child td {
  font-size: 43px;
}

.ranking .ranking--tabla tbody {
  height: 200px;
  overflow-y: scroll;
}

.ranking .ranking--tabla tbody tr:nth-child(odd) {
  background-color: #dfe9f2;
}

.ranking .ranking--tabla tbody tr:nth-child(even) {
  background-color: #fbfbfb;
}

.ranking .ranking--tabla tr {
  border: none;
  box-sizing: border-box;
  display: block;
}

.ranking .ranking--tabla tr th, .ranking .ranking--tabla tr td {
  display: inline-block;
  margin-right: -4px;
  width: 33%;
}

.ranking .ranking--tabla tr th {
  color: #2c467e;
  text-transform: uppercase;
  text-align: center;
  border: none;
  padding: 8px 0;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.ranking .ranking--tabla tr td {
  text-align: center;
  color: #58708c;
  border: none;
  font-size: 14px;
  box-sizing: border-box;
}

.ranking .ranking--tabla tr td p {
  width: 49.9%;
  float: left;
  text-align: right;
}

.ranking .ranking--tabla tr td p:last-child {
  text-align: left;
  padding-left: 2px;
}

.ranking .ranking--tabla tr td img {
  margin-left: 5px;
}

.ranking .ranking--tabla tr td:hover {
  border: none;
}

.ranking .ranking--tabla tr td:first-child {
  font-weight: bold;
}

.con_publi {
  max-width: 960px;
  padding: 10px 0;
  margin: auto;
  margin-bottom: -20px;
  clear: both;
}

@media (min-width: 48em) {
  .mundial {
    max-width: 761px;
  }
  .caption--ranking, .titulo_juego {
    font-size: 24px;
  }
  .titulo_juego {
    font-size: 45px;
  }
  .fase .fase--resultado {
    margin: auto;
  }
  .fase .fase--resultado .partido ul .nombre {
    font-size: 16px;
    width: 25%;
  }
  .ranking .resumen table tbody tr td {
    font-size: 16px;
  }
  .ranking .ranking--tabla {
    font-size: 16px;
  }
  .ranking .ranking--tabla tr th {
    font-size: 16px;
  }
}

@media (min-width: 61.25em) {
  .ranking .resumen {
    max-width: 960px;
  }
}

@media (min-width: 88.125em) {
  .ranking .resumen {
    max-width: 1140px;
  }
}

@media (min-width: 95em) {
  .mundial {
    max-width: 1524px;
  }
  .ranking {
    max-width: 1524px;
  }
  .ranking .resumen {
    max-width: 1140px;
  }
}

.sliderfirst .slick-list {
  background: #000;
}

.sliderfirst .slick-slide img {
  margin: auto;
}

.sliderfirst .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.sliderfirst .slick-prev {
  background: transparent url(../club/slider/prev.png) no-repeat;
  background-size: contain;
  border: 0;
  font-size: 0;
  left: 16px;
  z-index: 9;
}

.sliderfirst .slick-prev:before {
  content: '';
}

.sliderfirst .slick-next {
  background: transparent url(../club/slider/next.png) no-repeat;
  background-size: contain;
  border: 0;
  font-size: 0;
  right: 16px;
}

.sliderfirst .slick-next:before {
  content: '';
}

#modal_tarjeta p {
  text-align: center;
  font-size: 20px;
  color: #0289bd;
}

#modal_tarjeta p span {
  display: inline-block;
}

/*------------------------------------*\
    $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: color-grey(lightgrey);
  font-size: 87.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@keyframes square-animation {
  0% {
    left: 0;
    top: 0;
  }
  10.5% {
    left: 0;
    top: 0;
  }
  12.5% {
    left: 32px;
    top: 0;
  }
  23% {
    left: 32px;
    top: 0;
  }
  25% {
    left: 64px;
    top: 0;
  }
  35.5% {
    left: 64px;
    top: 0;
  }
  37.5% {
    left: 64px;
    top: 32px;
  }
  48% {
    left: 64px;
    top: 32px;
  }
  50% {
    left: 32px;
    top: 32px;
  }
  60.5% {
    left: 32px;
    top: 32px;
  }
  62.5% {
    left: 32px;
    top: 64px;
  }
  73% {
    left: 32px;
    top: 64px;
  }
  75% {
    left: 0;
    top: 64px;
  }
  85.5% {
    left: 0;
    top: 64px;
  }
  87.5% {
    left: 0;
    top: 32px;
  }
  98% {
    left: 0;
    top: 32px;
  }
  100% {
    left: 0;
    top: 0;
  }
}

@keyframes hue-rotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.body_club #swipebox-overlay {
  z-index: 999999 !important;
}

.loading {
  position: relative;
  width: 96px;
  height: 96px;
  transform: rotate(45deg);
  animation: hue-rotate 10s linear infinite both;
}

.view_mobile {
  display: none;
}

.view_desktop {
  display: block;
}

.loading__square {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: 2px;
  border-radius: 2px;
  background: #07a;
  background-image: linear-gradient(45deg, #fa0 40%, #0c9 60%);
  background-image: -moz-linear-gradient(#fa0, #fa0);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: square-animation 10s ease-in-out infinite both;
}

.loading__square:nth-of-type(0) {
  animation-delay: 0s;
}

.loading__square:nth-of-type(1) {
  animation-delay: -1.42857s;
}

.loading__square:nth-of-type(2) {
  animation-delay: -2.85714s;
}

.loading__square:nth-of-type(3) {
  animation-delay: -4.28571s;
}

.loading__square:nth-of-type(4) {
  animation-delay: -5.71429s;
}

.loading__square:nth-of-type(5) {
  animation-delay: -7.14286s;
}

.loading__square:nth-of-type(6) {
  animation-delay: -8.57143s;
}

.loading__square:nth-of-type(7) {
  animation-delay: -10s;
}

.jquery-modal.blocker {
  z-index: 100001;
}

.jquery-modal.blocker #ex1 {
  width: 365px;
  max-width: 100%;
  background: linear-gradient(180deg, #004b96 84%, white 20%);
}

.jquery-modal.blocker #ex1 a.close-modal {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEkAAABJCAYAAABxcwvcAAABNWlDQ1BBZG9iZSBSR0IgKDE5OTgpAAAokZWPv0rDUBSHvxtFxaFWCOLgcCdRUGzVwYxJW4ogWKtDkq1JQ5XSJNxc//QhHN06uLj7BE6OgoPiE/gGilMHhwjBqfSbvvPjcDg/MCp23WkYZRjEWrWbjnQ9X86/MscMAHTCLLVbrSOAOIkj/iPg5wMB8LZt150G07EYpkoDY2C3G2UhiArQv9apBjECzKCfahCPgKnO2jUQz0Cpl/s7UApy/wRKyvV8EN+A2XM9H4wFwAxyXwNMHd1ogFqSDtVF71zLqmVZ0u4mQSRPh5mOBpk8jMNEpYnq6KgL5P8BsJwvtpuO3Kha1sHmlL0n4nq+zO3rBAGIlZciKwgv1dWfCmNv8lzcGK3C8QPMjots/xbut2DprsjWq1DegafRL8KzT/57sqVFAAAACXBIWXMAAB7CAAAewgFu0HU+AAAGd2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTA3LTI5VDEyOjExOjI4LTAzOjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE5LTA3LTI5VDEyOjExOjI4LTAzOjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0wNy0yOVQxMjoxMToyOC0wMzowMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpjN2JmN2UyMy01ZmI4LWU2NDAtYjI0Mi1hMGM0YzQ4MmQwNjIiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDplNTU3OTg0OS0xZTJmLTUxNDgtYjUxZC1jZDI1NjY3OWI2MzYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0OWVjMWY1Mi01YzhmLThjNGEtOTQyNC04N2ZhOTlmZTQ3NGYiIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJBZG9iZSBSR0IgKDE5OTgpIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NDllYzFmNTItNWM4Zi04YzRhLTk0MjQtODdmYTk5ZmU0NzRmIiBzdEV2dDp3aGVuPSIyMDE5LTA3LTI5VDEyOjExOjI4LTAzOjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmM3YmY3ZTIzLTVmYjgtZTY0MC1iMjQyLWEwYzRjNDgyZDA2MiIgc3RFdnQ6d2hlbj0iMjAxOS0wNy0yOVQxMjoxMToyOC0wMzowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3Mp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");
  width: 40px;
  height: 40px;
}

.jquery-modal.blocker #ex1 form {
  display: flex;
  flex-direction: column;
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
}

.jquery-modal.blocker #ex1 form .encabezado {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #6693c0;
  margin-bottom: 15px;
}

.jquery-modal.blocker #ex1 form .encabezado img {
  width: 120px;
}

.jquery-modal.blocker #ex1 form .form-group {
  margin-bottom: 12px;
  text-align: center;
}

.jquery-modal.blocker #ex1 form .form-group label {
  font-size: 13px;
  color: white;
  display: block;
}

.jquery-modal.blocker #ex1 form .form-group textarea,
.jquery-modal.blocker #ex1 form .form-group input {
  width: 86%;
  font-size: 12px;
  background-color: #00c8ff;
  border: 4px solid white;
  border-radius: 20px;
  color: white;
  letter-spacing: 1px;
}

.jquery-modal.blocker #ex1 form .cont-footer {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
}

.jquery-modal.blocker #ex1 form .cont-footer .item-6 {
  margin: 0;
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
}

.jquery-modal.blocker #ex1 form .cont-footer button {
  width: 100px;
  margin: 0 auto;
  color: #00c8ff;
  padding: 0px;
  border-radius: 85px;
  background-color: #004b96;
  border: none;
}

.jquery-modal.blocker #ex1 form .cont-footer .g-recaptcha {
  margin: 0;
  align-self: center;
  transform: scale(0.6);
  transform-origin: bottom left;
}

.jquery-modal.blocker #ex1 form .cont-footer:focus {
  color: #152c5e;
}

.jquery-modal.blocker #modal_reglamento {
  width: 100%;
  max-width: 620px;
}

.jquery-modal.blocker #modal_reglamento a.close-modal {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEkAAABJCAYAAABxcwvcAAABNWlDQ1BBZG9iZSBSR0IgKDE5OTgpAAAokZWPv0rDUBSHvxtFxaFWCOLgcCdRUGzVwYxJW4ogWKtDkq1JQ5XSJNxc//QhHN06uLj7BE6OgoPiE/gGilMHhwjBqfSbvvPjcDg/MCp23WkYZRjEWrWbjnQ9X86/MscMAHTCLLVbrSOAOIkj/iPg5wMB8LZt150G07EYpkoDY2C3G2UhiArQv9apBjECzKCfahCPgKnO2jUQz0Cpl/s7UApy/wRKyvV8EN+A2XM9H4wFwAxyXwNMHd1ogFqSDtVF71zLqmVZ0u4mQSRPh5mOBpk8jMNEpYnq6KgL5P8BsJwvtpuO3Kha1sHmlL0n4nq+zO3rBAGIlZciKwgv1dWfCmNv8lzcGK3C8QPMjots/xbut2DprsjWq1DegafRL8KzT/57sqVFAAAACXBIWXMAAB7CAAAewgFu0HU+AAAGd2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTA3LTI5VDEyOjExOjI4LTAzOjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE5LTA3LTI5VDEyOjExOjI4LTAzOjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAxOS0wNy0yOVQxMjoxMToyOC0wMzowMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpjN2JmN2UyMy01ZmI4LWU2NDAtYjI0Mi1hMGM0YzQ4MmQwNjIiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDplNTU3OTg0OS0xZTJmLTUxNDgtYjUxZC1jZDI1NjY3OWI2MzYiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0OWVjMWY1Mi01YzhmLThjNGEtOTQyNC04N2ZhOTlmZTQ3NGYiIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJBZG9iZSBSR0IgKDE5OTgpIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NDllYzFmNTItNWM4Zi04YzRhLTk0MjQtODdmYTk5ZmU0NzRmIiBzdEV2dDp3aGVuPSIyMDE5LTA3LTI5VDEyOjExOjI4LTAzOjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmM3YmY3ZTIzLTVmYjgtZTY0MC1iMjQyLWEwYzRjNDgyZDA2MiIgc3RFdnQ6d2hlbj0iMjAxOS0wNy0yOVQxMjoxMToyOC0wMzowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3Mp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");
  width: 40px;
  height: 40px;
}

.jquery-modal.blocker #modal_reglamento .header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.jquery-modal.blocker #modal_reglamento .header span {
  font-size: 32px;
  color: #797979;
  font-weight: bold;
}

.jquery-modal.blocker #modal_reglamento .header img {
  max-width: 120px;
  margin-right: 30px;
}

.jquery-modal.blocker #modal_reglamento .contenido {
  max-height: 500px;
  overflow-y: scroll;
  border-top: 1px solid #797979;
}

.jquery-modal.blocker #modal_reglamento .contenido p {
  padding: 10px 0;
}

.jquery-modal.blocker #modal_reglamento .contenido::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}

.jquery-modal.blocker #modal_reglamento .contenido::-webkit-scrollbar {
  width: 8px;
  background-color: #e5e5e5;
}

.jquery-modal.blocker #modal_reglamento .contenido::-webkit-scrollbar-thumb {
  background-color: #004a9a;
  height: 100px;
  border-radius: 20px;
}

#nav-icon4, #nav-icon5 > * {
  margin: 0;
  padding: 0;
}

#nav-icon5, #nav-icon4 {
  width: 30px;
  height: 25px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon4 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #152c5e;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  bottom: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 3px;
  left: 8px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 25px;
  left: 8px;
}

.gradientcolor {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 400px;
  background: #020024;
  background: -moz-linear-gradient(302deg, #020024 0%, #090f79 32%, #05ae76 64%, #00d4ff 100%);
  background: -webkit-linear-gradient(302deg, #020024 0%, #090f79 32%, #05ae76 64%, #00d4ff 100%);
  background: linear-gradient(302deg, #020024 0%, #090f79 32%, #05ae76 64%, #00d4ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024", endColorstr="#00d4ff", GradientType=1);
}

.gradientcolor:before {
  content: "";
  height: 100%;
  border-right: 200px solid transparent;
  border-top: 200px solid transparent;
  border-left: 200px solid #ffffff;
  border-bottom: 200px solid #ffffff;
  bottom: 0;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
}

div#loading {
  position: fixed;
  display: none;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.1);
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  text-align: center;
}

div#loading .contimg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

div#loading .contimg img {
  width: 200px;
}

.cargamas {
  text-align: center;
  margin-bottom: 20px;
}

.cargamas buttom {
  cursor: pointer;
  color: white;
  background: #152c5e;
  padding: 5px 17px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 13px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 17px;
}

.carga-mas {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 7px 0;
  -webkit-border-top-right-radius: 12px;
  -webkit-border-bottom-right-radius: 12px;
  -webkit-border-bottom-left-radius: 12px;
  -webkit-border-top-left-radius: 12px;
  -moz-border-radius-topright: 12px;
  -moz-border-radius-bottomright: 12px;
  -moz-border-radius-bottomleft: 12px;
  -moz-border-radius-topleft: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.carga-mas > div > span {
  font-size: 22px;
}

.nologin {
  display: flex;
  align-items: center;
}

.nologin .tarjeta {
  font-size: 11px;
}

.contenido_club {
  width: 100%;
  min-height: calc(100vh - 207px);
  padding-top: 52px;
  padding-top: 159px;
  margin-bottom: 10%;
}

.contenido_club .contenido.preguntas {
  margin: 20px auto 20px auto;
}
.cont-categoria{
  width: 100%;
  padding: 20px 0 20px 20px;
  position: relative;
}
.cont-categoria-background{
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: white;
  z-index: -1;
}
.cont-categoria-grey .cont-categoria-background {
  background-color: #e6ecf3;
}
.categoria-titulo{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Roboto-BoldCondensed', sans-serif;
}

.categoria-slider-item-img{
  position: relative;
  aspect-ratio: 4/3;
}

.categoria-slider-item-img-line{
  position: absolute;
  height: 34px;
  border-left: 3px solid white;
  display: inline-block;
  left: 10px;
  top: 14px;
}
.categoria-slider-item-img-text{
  position: absolute;
  bottom: 25px;
  left: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 29px;
  padding: 17px 25px 15px 30px;
  background: rgba(193, 195, 201, 0.8);
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px
}
.categoria-slider-item-pie{
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 6px 12px -3px rgba(99,99,99,0.75);
  -webkit-box-shadow: 5px 6px 12px -3px rgba(99,99,99,0.75);
  -moz-box-shadow: 5px 6px 12px -3px rgba(99,99,99,0.75);
  color: #000;
  min-height: 115px;
}
.cont-categoria-grey .categoria-slider-item-pie{
  background: white;
}

.categoria-slider-item-pie-top{
  font-size: 22px;
  font-weight: 700;
  font-family: 'Roboto-BoldCondensed', sans-serif;
}
.categoria-slider-item-pie-bot{
  font-size: 20px;
}
.categoria-slider-a{
  text-decoration: none;
  outline: none;
}
.categoria-slider-a:hover{
  text-decoration: none;
  outline: none;
}
.categoria-slider-a:focus{
  text-decoration: none;
  outline: none;
}
.categoria-slider-item{
  max-width: 330px;
  min-width: 310px;
  /* max-height: 350px; */
  min-height: 350px;
  padding: 0px 15px 15px 0;
}
.categoria-slider-item-img img{
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.categoria-slider .slick-dots li{
  margin: 0;
  width: 16px;
  height: 16px;
}
.categoria-slider .slick-dots li.slick-active{
  background: #004a9a;
  width: 35px;
  height: 10px;
  position: relative;
  top: 4px;
  border-radius: 10px;
  margin-left: 3px;
  transition: width 0.3s ease-in-out;
}
.categoria-slider .slick-dots li.slick-active button:before{
  display: none;
}
.categoria-slider .slick-dots li button:before{
  font-size: 12px;
}
.categoria-mas-descuentos{
  padding-top: 10px;
}
.categoria-mas-descuentos-text{
  font-size: 18px;
  font-weight: 700;
  color: #074788;
  font-family: 'Roboto-BoldCondensed', sans-serif;
}
.contenedor-sucursales{
  width: 100%;
  padding: 35px 10px 0 10px;
  scroll-margin-top: 100px;
}
.contenedor-sucursales-titulo{
  text-align: center;
}
.contenedor-sucursales-titulo-text{
  font-size: 30px;
  font-weight: 700;
  font-family: 'Roboto-BoldCondensed', sans-serif;
}

.contenido_club .sliderfirst {
  width: 100%;
  margin: 0 auto;
  min-height: 300px;
}

.contenido_club .sliderfirst .slick-prev,
.contenido_club .sliderfirst .slick-next {
  height: 90px;
}

.contenido_club .sliderfirst .slick-list .slick-slide {
  /* display: flex;
			flex-direction: column;
			text-align: center;
			align-items: center;
			width: 100%; */
}

.contenido_club .sliderfirst .slick-list .slick-slide a {
  display: flex;
  align-items: center;
}

.contenido_club .sliderfirst .slick-list .slick-slide a img {
  width: 100%;
  margin: 0 auto;
}

.newnota_home_cont_descuentos{
  position: absolute;
  top: 130px;
  background: #fff;
  padding: 15px 50px 15px 20px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px
}

.newnota_home{
  position: relative;
  display: none;
}
.newnota_home.show{
  display: block;
}

.newnota_home img{
  min-height: 300px;
  object-fit: cover;
}

.newnota_home_cont_descuentos_titulo{
  font-family: 'Mermaid1001', sans-serif;
  font-size: 26px;
  color: #11468e;
  text-transform: uppercase;
}

.newnota_home_cont_descuentos_items{
  display: flex;
  text-align: center;
}

.newnota_home_cont_descuentos_item{
  display: flex;
  flex-direction: column;
}
.newnota_home_cont_descuentos_item.border_right{
  border-right: 2px solid #11468e;
  padding-right: 10px;
  margin-right: 10px;
}

.newnota_home_cont_descuentos_item_descuento{
  font-size: 38px;
  font-family: 'Rockwell', sans-serif;
  color: #2d2c2b;
  font-weight: 700;
}

.newnota_home_cont_descuentos_item_titulo{
  font-family: 'Montserrat-SemiBold', sans-serif;
  white-space: nowrap;
  color: #2d2c2b;
  font-size: 10px;
  text-transform: uppercase;
  position: relative;
  top: -8px;
  font-weight: 700;
}
.newnota_home_imgmobile{

}
.newnota_home_imgdesktop{
  display: none!important;
}

.contenido_club .mapa-sucursales{
  padding: 10px;
  padding-right: 22px;
}
.contenido_club .mapa-sucursales.oculto{
 display: none;
}
.contenido_club .mapa-sucursales #map{
  height: 300px;
}

.body_club header .cont-header .menulogo .menu {
  margin-right: 10px;
  position: relative;
  top: 10px;
}

.contenido_club .contenido {
  position: relative;
  max-width: 1750px;
  width: calc(100% - 0px);
  margin: 75px auto 20px auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.submenu{
  display: none;
  padding: 20px 0;
}

.contenido_club .contenido_filtro_new{
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.filtro_new_cont_descuentos{
  display: grid;
  row-gap: 30px;
  width: 100%;
}
.contenido_filtro_new .categoria-slider-a{
  width: 100%;
}
.contenido_filtro_new .categoria-slider-item{
  padding: 0;
  min-width: auto;
  max-width: none;
  min-height: auto;
  max-height: none;
}
.contenido_filtro_new .categoria-slider-item-img{
  max-height: none;
}

.cont-titulo{
  width: 100%;
  padding-bottom: 20px;
}

.cont-titulo-text{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0px;
  font-family: 'Roboto-BoldCondensed', sans-serif;
  border-bottom: 4px solid #004a9a;
  max-width: fit-content;
  position: relative;
  z-index: 2;
}
.cont-titulo-line{
  z-index: 1;
  transform: translateY(-150%);
  border-bottom: 2px solid #797979;
  position: relative;
  width: 100%;
}

.cont-cargar-mas{
  margin-top: 40px;
}

.cargar-mas{
  padding: 15px 30px;
  background: #004a9a;
  color: white;
  cursor: pointer;
}
.cargar-mas-text{
  font-size: 22px;
}

.loader_cargar_mas {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 60px;
  height: 50px;
  margin-top: 40px;
}
.loader_cargar_mas.show {
  display: flex;
}

.loader_cargar_mas div {
  width: 12px;
  background:#004a9a;
  animation: loader 1.8s linear infinite;
}
.loader_cargar_mas div:nth-child(2) {
  animation-delay: -0.25s;
}

@keyframes loader {
  0% {
      height: 12px;
  }
  25% {
      height: 50px;
  }
  50% {
      height: 10px;
  }
  75% {
      height: 25px;
  }
  100% {
      height: 12px;
  }
}

.comercio.benefits{
  padding: 20px 15px;
}

.cont-comercios-img{
  margin-bottom: 10px;
  width: 100%;
  aspect-ratio: 4/3;
}
.cont-comercios-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cont-comercios-cuerpo{
  background: #e6ecf3;
}

.cont-comercios-cuerpo-top{
  display: flex;
  padding: 20px 10px 10px 10px;
}
.cont-comercios-cuerpo-top-porcentaje{
  padding-left: 15px;
  position: relative;
}
.cont-comercios-cuerpo-top-porcentaje-line{
  height: 50px;
  top: 1px;
  border-left: 2px solid #504e50;
  position: absolute;
  left: 5px;
}
.cont-comercios-cuerpo-top-porcentaje-text{
  line-height: 50px;
  font-size: 40px;
  font-weight: 700;
  color: #504e50;
  font-family: 'Rockwell', sans-serif;
  letter-spacing: -1px;
}
.cont-comercios-cuerpo-top-titulo{
  padding-left: 20px;
  display: flex;
  align-items: center;
}
.cont-comercios-cuerpo-top-titulo-text{
  font-size: 22px;
  line-height: 24px;
  font-family: 'Roboto-BoldCondensed', sans-serif;
  color: #074788;
}

.cont-comercios-cuerpo-dias{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cont-comercios-cuerpo-dias-text{
  font-family: 'Roboto-BoldCondensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #004a9a;
  margin: 0 5px;
}

.cont-comercios-cuerpo-descripcion{
  padding: 10px;
}
.cont-comercios-cuerpo-descripcion p{
  font-family: 'Roboto-Light', sans-serif;
  font-size: 16px;
}
.cont-comercio-unico{
  margin-bottom: 40px;
}
.cont-info-comercio.desktop{
  display: none;
}
.cont-info{
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #074788;
  color: white;
  padding: 8px;
}
.cont-info-text{
  font-size: 16px;
  line-height: 20px;
}
.cont-bases{
  margin: 35px 0;
}
.cont-bases-titulo{
  margin-bottom: 10px;
}
.cont-bases-titulo-text{
  font-size: 20px;
}
.cont-bases-cuerpo-text{
  color: #5b5b5f;
  margin-bottom: 10px;
}
.cont-bases-cuerpo-desc{
  font-weight: 700;
  font-size: 15px;
}
.cont-bases-cuerpo-legales p{
  text-align: start!important;
}
.cont-main-encabezado{
  display: none;
}
.cont-main-similares{
  display: none;
}
.cont-main{
  display: flex;
}
.cont-comercio-map-titulo{
  display: none;
}

.cont-col-der{
  width: 100%;
}

@media (min-width: 768px){
  .contenido_club .sliderfirst .slick-list .slick-slide a img {
    /* max-height: 500px;
    min-height: 500px; */
  }

  .newnota_home_cont_descuentos{
    top: 280px;
    padding: 20px 60px 20px 30px;
  }

  .contenido_filtro_new .categoria-slider-item-img{
    /* min-height: 350px; */
  }

  .contenido_club .contenido_filtro_new{
    margin-top: 40px;
  }

  .cont-titulo{
    width: 100%;
    padding-bottom: 25px;
  }
  .filtro_new_cont_descuentos{
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 20px;
  }
}
@media (min-width: 1024px){
  .contenido_club{
    padding-top: 101px;
  }
  .newnota_home_imgmobile{
    display: none!important;
  }
  .newnota_home_imgdesktop{
    display: block!important;
  }
  .newnota_home_cont_descuentos_titulo{
    font-size: 32px;
  }
  .newnota_home_cont_descuentos_item_descuento{
    font-size: 44px;
  }
  .newnota_home_cont_descuentos_item_titulo{
    font-size: 12px;
  }
  .categoria-slider-item{
    max-width: 310px;
    min-width: 310px;
    min-height: 370px;
    padding: 0px 15px 15px 0;
  }
  .categoria-slider-item-img-text{
    font-size: 42px;
    position: absolute;
    padding: 17px 25px 15px 30px;
  }
  .categoria-slider-item-img-line{
    height: 35px;
    display: inline-block;
    left: 10px;
    top: 12px;
  }
  .cont-categoria{
    padding: 20px 40px;
  }
  .categoria-slider .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .categoria-slider .slick-prev {
    background: transparent url(../club/slider/prev-grey.png) no-repeat;
    background-size: contain;
    border: 0;
    font-size: 0;
    left: -29px;
    top: 145px;
    z-index: 9;
  }
  
  .categoria-slider .slick-prev:before {
    content: '';
  }
  
  .categoria-slider .slick-next {
    background: transparent url(../club/slider/next-grey.png) no-repeat;
    background-size: contain;
    border: 0;
    font-size: 0;
    right: -38px;
    top: 146px;
    z-index: 9;
  }
  
  .categoria-slider .slick-next:before {
    content: '';
  }

  .contenedor-sucursales {
    width: 100%;
    padding: 35px 0px 0 0px;
    position: relative;
  }
  .contenido_club .mapa-sucursales{
    padding: 0;
    position: relative;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }
  .contenido_club .mapa-sucursales #map{
    height: 500px;
  }
  .contenedor-sucursales-titulo{
    text-align: start;
    padding-left: 40px;
  }

  .body_club header .cont-header .menulogo .menu{
    margin-right: 20px;
  }

  
  .categoria-mas-descuentos{
    position: absolute;
    top: 24px;
    right: 65px;
  }
  .categoria-mas-descuentos-text-simbol{
    display: none;
  }
  .contenido_club .contenido{
    margin: 0px auto 20px auto;
  }
  .submenu{
    padding: 20px 0;
    display: block;
    max-width: 1750px;
    margin: 0 auto;
  }
  .submenu-cont-links{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .submenu-link{
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto-BoldCondensed', sans-serif;
    color: black;
    margin: 0 10px;    
  }
  .submenu-link:hover{
    color: #004a9a;
    text-decoration: none;
  }
  .submenu-link-map{
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
  }
  .contenido_club .contenido_filtro_new{
    margin-top: 35px;
  }
  .filtro_new_cont_descuentos{
    grid-template-columns: repeat(4, 1fr);
  }
  .cont-titulo-text{
    font-size: 32px;
  }
  .contenido_filtro_new .categoria-slider-item-img{
    /* min-height: 250px; */
  }
  .cont-cargar-mas{
    margin-top: 70px;
  }
  .loader_cargar_mas{
    margin-top: 70px;
  }
  .cont-main{
    margin-bottom: 30px;
  }
  .cont-main-encabezado{
    display: flex;
    margin-bottom: 50px;
  }
  .cont-main-similares{
    display: block;
    width: 30%;
  }
  .cont-col-der{
    width: 70%;
  }
  .cont-main-encabezado .logo{
    aspect-ratio: 1/1;
    flex: 0 0 36%;
  }
  .cont-main-encabezado .logo img{
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .cont-main-encabezado .logo .logo-contain{
    object-fit: contain;
    padding: 20px;
  }
  .cont-main-encabezado .imagen{
    aspect-ratio: 16/9;
    flex: 0 0 64%;
  }
  .cont-main-encabezado .imagen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cont-comercio-unico{
    display: flex;
    margin-bottom: 15px;
  }
  .cont-comercios-img{
    margin-bottom: auto;
    /* min-height: 350px; */
    position: relative;
    width: 30%;
  }
  .cont-comercios-img img{
    /* height: 100%;
    position: absolute; */
  }
  .cont-comercios-cuerpo{
    width: 70%;
  }
  .cont-comercios-cuerpo-top-porcentaje-text{
    font-size: 56px;
  }
  .cont-comercios-cuerpo-top{
    padding: 35px 10px 20px 10px;
  }
  .cont-comercios-cuerpo-descripcion p{
    text-align: start!important;
  }
  .comercio.benefits{
    position: relative;
    padding-top: 35px;
  }
  .cont-info-comercio-background{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 36px;
    background-color: #074788;
    z-index: -1;
  }
  .cont-info{
    flex-direction: row;
    justify-content: center;
  }
  .cont-info-comercio.mobile{
    display: none;
  }
  .cont-info-comercio.desktop{
    display: block;
  }
  .cont-info-comercio{
    position: relative;
  }
  .cont-info-text{
    margin-left: 5px;
    white-space: nowrap;
  }
  .cont-bases{
    position: relative;
    padding: 20px 40px;
  }
  .cont-bases-titulo-text{
    font-size: 24px;
  }
  .cont-bases-cuerpo-text{
    margin-bottom: 20px;
  }
  .cont-bases-cuerpo-desc{
    font-size: 16px;
  }
  .cont-bases-cuerpo-legales p{
    font-size: 16px;
  }
  .cont-bases-background{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -0%);
    width: 100vw;
    height: 100%;
    background-color: #e5ecf4;
    z-index: -1;
  }

  .cont-main-similares{
    padding: 20px 10px;
    padding-right: 10px;
    margin-right: 30px;
    height: fit-content;
  }

  .cont-main-similares-desc{
    max-height: 1000px;
    overflow: scroll;
    padding-left: 5px;
  }

  /* Estilos para la barra de desplazamiento */
  .cont-main-similares-desc::-webkit-scrollbar {
    width: 6px; /* Ancho de la barra de desplazamiento */
  }

  .cont-main-similares-desc::-webkit-scrollbar-thumb {
    background-color: #014992; /* Color azul de la barra de desplazamiento */
  }

  /* Estilos para la barra de desplazamiento en navegadores Firefox */
  .cont-main-similares-desc {
    scrollbar-width: thin; /* Ancho del scrollbar */
  }

  .cont-main-similares-desc {
    scrollbar-color: #014992 grey; /* Color azul de la barra de desplazamiento y fondo gris */
  }

  .cont-main-similares-titulo{
    text-align: center;
    margin-bottom: 20px;
  }
  
  .cont-main-similares-titulo-text{
    font-size: 22px;
    font-family: 'Roboto-BoldCondensed', sans-serif;
  }

  .cont-main-similares .categoria-slider-item{
    padding: 0;
    min-width: auto;
    min-height: auto;
    margin-bottom: 30px;
    padding: 0 5px;
  }
  .cont-main-similares .categoria-slider-item-img{
    /* min-height: 190px;
    max-height: 190px; */
  }
  .cont-comercio-map-titulo{
    padding: 15px 50px;
    display: block;
  }
  .cont-comercio-map-titulo-text{
    font-size: 26px;
    font-family: 'Roboto-BoldCondensed', sans-serif;
  }
  .contenido_club{
    margin-bottom: 0;
  }
  .cont-titulo{
    /* display: none; */
  }
}
@media (min-width: 1440px){
  .contenido_club{
    padding-top: 101px;
  }
  .categoria-slider-item{
    max-width: 320px;
    min-width: 320px;
  }
  .categoria-slider-item-img{
    /* min-height: 300px;
    max-height: 300px; */
  }
  .body_club header .cont-header .menulogo .menu{
    margin-right: 40px;
  }
  .cont-categoria{
    padding: 20px 75px;
  }
  .categoria-slider .slick-prev {
    left: -39px;
    top: 180px;
  }
  .categoria-slider .slick-next {
    right: -48px;
    top: 180px;
  }
  .categoria-titulo{
    font-size: 32px;
  }
  .categoria-mas-descuentos{
    position: absolute;
    top: 28px;
    right: 100px;
  }
  .submenu{
    padding: 20px 75px;
  }
  .submenu-link-map{
    display: flex;
  }
  .contenido_filtro_new .categoria-slider-item-img{
    /* min-height: 350px; */
  }
  .cont-main-similares{
    width: 25%;
  }
  .cont-col-der{
    width: 75%;
  }
  .cont-main-encabezado{
    margin-bottom: 70px;
  }
  .cont-comercios-cuerpo-top{
    padding: 35px 20px 20px 20px;
  }
  .cont-comercios-cuerpo-descripcion{
    padding: 20px;
  }
}

@media (min-width: 1900px){
  .cont-categoria{
    padding: 20px 40px;
  }
  .categoria-slider-item{
    max-width: 418px;
    min-width: 418px;
  }
  .categoria-slider-item-img{
    /* min-height: 350px;
    max-height: 350px; */
  }
  .cont-main-similares{
    width: 22%;
  }
  .cont-col-der{
    width: 78%;
  }
  .cont-main-encabezado{
    /* max-height: 500px; */
  }
}

.contenido_club .sliderfirst .slick-list .slick-slide img {
  width: 100%;
  margin: 0 auto;
}

.contenido_club .filtro_mobile {
  display: none;
}

.contenido_club .filtro_mobile .icon {
  width: 20px;
  height: 20px;
  margin-left: 5px;
}
.contenido_club .cont-botones-mobile{
  display: flex;
  width: 100%;
  justify-content: space-around;
}
.contenido_club .maps-btn-mobile{
  position: relative;
  color: #004a9a;
  border: 1px solid #004a9a;
  display: flex;
  padding: 11px 16px;
  border-radius: 120px;
  height: 48px;
  cursor: pointer;
}
.contenido_club .maps-btn-mobile svg{
  width: 20px;
  display: block;
  display: inline-block;
  position: absolute;
  position: relative;
  fill: #004a9a;
}
.contenido_club .maps-btn-mobile span{
  font-weight: 700;
  font-size: 16px;
}

@media (min-width: 651px){
  .contenido_club .cont-botones-mobile{
    justify-content: flex-start;
  }
  .contenido_club .maps-btn-mobile{    
    margin-left: 10px;
    border-radius: 5px;
    padding: 11px 8px;
  }
}

.contenido_club .pie_comercio {
  background: white;
  z-index: 9;
  padding: 20px 5px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.contenido_club .pie_comercio .descripcion_v {
  background: #00ade3;
  -webkit-border-top-right-radius: 120px;
  -webkit-border-bottom-right-radius: 120px;
  -webkit-border-bottom-left-radius: 120px;
  -webkit-border-top-left-radius: 120px;
  -moz-border-radius-topright: 120px;
  -moz-border-radius-bottomright: 120px;
  -moz-border-radius-bottomleft: 120px;
  -moz-border-radius-topleft: 120px;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-left-radius: 120px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  z-index: 9;
  padding: 5px 15px;
  color: white;
  margin-bottom: 10px;
  margin-right: 5px;
  text-align: center;
}

.contenido_club .pie_comercio .descripcion_v .icon {
  color: white;
  display: none;
  margin: 0 7px;
  width: 20px;
  height: 20px;
}

.contenido_club .pie_comercio .descripcion_v span {
  display: flex;
}

.contenido_club .pie_comercio .descripcion_v a {
  color: white;
}

.contenido_club .base {
  margin-bottom: 20px;
  width: 100%;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  -moz-border-radius-topleft: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 20px;
  background-color: #e5e5e5;
}

.contenido_club .base .filter_s {
  color: #152c5e;
}

.contenido_club .base .base_cont {
  border-bottom: 1px solid #9e9e9e;
  margin-bottom: 15px;
  margin-left: 15px;
}

.contenido_club .base .base_cont > * {
  margin-bottom: 15px;
  color: #8b8b8b;
}

.contenido_club .base .base_cont > span {
  font-weight: bolder;
  font-size: 18px;
}

.contenido_club .base .base_cont > span b {
  margin: 0 6px;
}

.contenido_club .mapa-comercio #map{
  height: 400px;
}
.leaflet-container a.leaflet-popup-close-button{
  font-size: 20px;
}
.contenido_club #map .customPopup-container{
  display: flex;
}
.contenido_club #map .customPopup-img-container{
  width: 70px;
  min-width: 70px;
}
.contenido_club #map .customPopup-info-container{
  margin-left: 10px;
}
.contenido_club #map .customPopup-info-container a{
  color: #000;
}
.contenido_club #map .customPopup-info-title{
  font-size: 16px;
  font-weight: 700;
}
.contenido_club #map .customPopup-info-desc{
  font-size: 16px;
  font-weight: 700;
  color: #024999;
  line-height: 2;
}
.contenido_club #map .customPopup-info-desc span{
  color: #000;
}
.contenido_club #map .customPopup-info-address{
  font-size: 14px;
}
.contenido_club #map .customPopup-info-llegar{
  display: flex;
  font-size: 12px;
  padding-top: 10px;
  width: 230px;
}
.contenido_club #map .customPopup-info-llegar-bloque1{
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.contenido_club #map .customPopup-info-llegar-bloque1 .customPopup-info-llegar-svg{
  width: 18px;
  height: 18px;
  position: relative;
  top: -3px;
  fill: #494949;
  margin-top: 3px;
  margin-right: 3px;
}
.contenido_club #map .customPopup-info-llegar-texto{
  margin-left: 3px;
  font-weight: 700;
  color: #494949;
}
.contenido_club #map .customPopup-info-llegar-bloque2{
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contenido_club #map .customPopup-info-llegar-bloque2:hover{
  text-decoration: underline;
  text-decoration-color: #1a73e8;
}
.contenido_club #map .customPopup-info-llegar-bloque2 .customPopup-info-llegar-svg{
  width: 18px;
  height: 18px;
  position: relative;
  top: -3px;
  fill: #1a73e8;
  margin-top: 3px;
  margin-right: 3px;
}
.contenido_club #map .customPopup-info-llegar-bloque2 .customPopup-info-llegar-texto{
  white-space: nowrap;
  color: #1a73e8;
  font-weight: 700;
}

.contenido_club .mapa-mensaje.oculto{
  display: none;
}
.contenido_club .puntos-comercio{
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 30px;
  background: #e5e5e5;
  border-radius: 10px;
  max-height: 400px;
  overflow: auto;
}
.contenido_club .puntos-comercio .item-comercio{
  color: #8b8b8b;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}
.contenido_club .puntos-comercio .item-comercio:hover{
  color: #616161;
}
.contenido_club .puntos-comercio .item-comercio .icon-comercio{
  width: 20px;
  fill: #00ade3;
  display: inline-block;
  position: relative;
  top: 5px;
  transform: rotate(45deg);
}

@media (min-width: 1224px){
  .contenido_club .mapa-container{
    display: flex;
  }
  .contenido_club .mapa-comercio{
    width: 100%;
  }
  .contenido_club .puntos-comercio{
    margin: 0;
    margin-left: 10px;
    min-width: 440px;
  }
}

.contenido_club .descuentos.oculto {
  display: none;
}
.contenido_club .descuentos {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  cursor: pointer;
  /*.desc{
		
   			 		&:nth-child(3n){
   			 			margin: 0 0px 15px 0 !important;
					}
			    	cursor: pointer;
			    	width: calc(33% - 8px);
   					margin: 0 15px 15px 0;
			    	z-index: 222;
			    	.conte_sintitulo{
				    	position: relative;
				    	min-height: 120px;
				    	border: 1px solid rgba(255, 255, 255, .6);
				    	.descuento {
						    position: absolute;
						    bottom: 0;
						    left: 0;
						    z-index: 2;
						    color: white;
						    background: $azul;
						    padding: 1px 10px;
						    font-weight: bold;
						    letter-spacing: 1px;
						    border-radius: 13px;
						    border-top-right-radius: 0;
						    border-bottom-left-radius: 0;
						    font-size: 17px;
						}
				    	.links{
				    		position: absolute;
						    top: 0;
						    bottom: 0;
						    right: 0;
						    left: 0;
						    background: $azul_rgba;
							opacity: 0;
							color: white;
						    text-align: flex-start;
						    padding: 10px;
						    *{
						    	font-weight: lighter;
						    	font-family: inherit;
	    						display: block;
	    						display: -webkit-box;
	    						margin: 7px auto;
	    						font-size: 13px;
	    						line-height: 19px;
	    						-webkit-line-clamp: 2;
	    						-webkit-box-orient: vertical;
	    						overflow: hidden;
	    						text-overflow: ellipsis;
					    		color: #f9f9f9;
						    }
						    h3{
						    	font-size: 16px;
							    font-weight: bold;
							    font-family: inherit;
							    display: block;
							    display: -webkit-box;
							    max-height: 63px;
							    margin: 0 auto;
							    font-size: 17px;
							    line-height: 1.2;
							    -webkit-line-clamp: 3;
							    -webkit-box-orient: vertical;
							    overflow: hidden;
							    text-overflow: ellipsis;
						    }
						    .card {
							    width: 100%;
	    						display: flex;
	    						justify-content: flex-end;
							    img{
							    	width: 30px ;
	   								margin: 0 0px 0 10px;
							    }
							}
				    	}
				    	&:hover {
						  .links{
						  	transition: .5s;
							opacity:1;
						  }
						}
				    	img{
				    		width: 100%;
		   					height: auto;
				    	}
			    	}					
			    	// &:nth-child(4n){
			    	// 	margin: 0 0px 20px 0;
			    	// }
			    	span{
			    		margin: 10px 0 0px 10px;
					    display: block;
					    font-size: 15px;
					    color: $azul;
					    font-weight: bold;
					    letter-spacing: .7px;
			    	}
			    }*/
}

.contenido_club .descuentos .desc {
  width: calc(32% - 10px);
  position: relative;
  margin: 0 10px 15px 10px;
}

.contenido_club .descuentos .desc .media {
  position: relative;
  overflow: hidden;
  max-height: 200px;
}

.contenido_club .descuentos .desc .media .descripcion-text {
  position: absolute;
  width: 100%;
  z-index: 9;
  display: none;
  background-color: #e1d7d4;
  -webkit-border-top-right-radius: 12px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 12px;
  -moz-border-radius-topright: 12px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 12px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 15px 10px;
  height: 100%;
  overflow: auto;
  /**  STYLE 3 */
}

.contenido_club .descuentos .desc .media .descripcion-text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

.contenido_club .descuentos .desc .media .descripcion-text::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}

.contenido_club .descuentos .desc .media .descripcion-text::-webkit-scrollbar-thumb {
  background-color: #004a9a;
}

.contenido_club .descuentos .desc .media .descripcion-text * {
  color: #004c97;
  height: 100%;
  font-size: 16px;
}

.contenido_club .descuentos .desc .media img {
  width: 100%;
  -webkit-border-top-right-radius: 12px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 12px;
  -moz-border-radius-topright: 12px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 12px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.contenido_club .descuentos .desc .comercio {
  position: absolute;
  top: 0;
  background-color: #f6f6f6;
  font-weight: bold;
  padding: 0 15px;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 12px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 12px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  text-transform: uppercase;
  color: #53abe1;
}

.contenido_club .descuentos .desc .descripcion {
  background-color: #53abe1;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 12px;
  -webkit-border-bottom-left-radius: 12px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 12px;
  -moz-border-radius-bottomleft: 12px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: flex;
  align-items: center;
}

.contenido_club .descuentos .desc .descripcion .descuento {
  background-color: #004c98;
  -webkit-border-top-right-radius: 12px;
  -webkit-border-bottom-right-radius: 12px;
  -webkit-border-bottom-left-radius: 12px;
  -webkit-border-top-left-radius: 12px;
  -moz-border-radius-topright: 12px;
  -moz-border-radius-bottomright: 12px;
  -moz-border-radius-bottomleft: 12px;
  -moz-border-radius-topleft: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  color: white;
  padding: 7px;
  margin: 10px;
  font-weight: bold;
  font-size: 20px;
}

.contenido_club .descuentos .desc .descripcion .titulo {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.contenido_club .descuentos .desc:hover .media .descripcion-text {
  display: block;
}

.contenido_club .descuentos .desc:hover .descripcion {
  background-color: #e1d7d4;
  border-top: 1px solid white;
}

.contenido_club .descuentos .desc:hover .descripcion .titulo {
  color: #004c97;
  font-weight: bold;
}

.contenido_club .fila {
  height: 830px;
  overflow-y: scroll;
}

.contenido_club .fila::-webkit-scrollbar-track {
  background-color: #cccccc;
  border-radius: 20px;
}

.contenido_club .fila::-webkit-scrollbar {
  width: 8px;
  background-color: #cccccc;
  border-radius: 20px;
}

.contenido_club .fila::-webkit-scrollbar-thumb {
  background-color: #2b2b2b;
  height: 100px;
  border-radius: 20px;
}

.contenido_club .fila .desc {
  width: 100%;
}

.contenido_club .contenido .encabezado-descuento {
  display: flex;
  align-items: center;
  padding: 20px 0;
  width: 98%;
  margin: auto;
  margin-bottom: 10px;
  border-bottom: 1px solid #DADADA;
}
.contenido_club .contenido .encabezado-descuento .encabezado-descuento-a{
  font-size: 24px;
  color: #797979;
  margin-left: 15px;
}


.contenido_club .contenido .encabezado-descuento img {
  margin-right: 10px;
}

.contenido_club .contenido .encabezado-descuento .encabezado-descuento-text {
  margin-left: 5px;
  color: #797979;
  font-size: 33px;
  font-weight: bold;
  font-family: 'Roboto-BoldCondensed', sans-serif;
}

.contenido_club .contenido .columna1 {
  z-index: 2;
  min-width: 300px;
  flex-basis: 310px;
}

.contenido_club .contenido .columna1 .row {
  text-align: center;
}

.contenido_club .contenido .columna1 ._descrip {
  margin-bottom: 20px;
  border: 1px solid #dadada;
  border-radius: 15px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.21);
  background: #f9f9f9;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter {
  margin-bottom: 20px;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter:last-child {
  margin-bottom: 0px;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter span {
  font-weight: bold;
  color: #004c98;
  margin: 0 0 5px 0px;
  padding: 5px 10px;
  display: block;
  font-size: 20px;
  border-radius: 15px;
  background-color: white;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter .listado {
  list-style: none;
  margin: 0;
  padding: 10px;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter .listado li {
  display: inline-block;
  position: relative;
  padding: 3px 8px;
  margin: 3px;
  background-color: #e5e5e5;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter .listado li a {
  cursor: pointer;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter .listado li .cerrar {
  display: none;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter .listado li.is-active {
  background-color: #de0109;
  padding: 8px 10px 3px 10px;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter .listado li.is-active .cerrar {
  display: block;
  position: absolute;
  color: white;
  top: -6px;
  right: 1px;
  width: 10px;
  height: 10px;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter .listado li.is-active .cerrar .icon {
  width: 10px;
  height: 10px;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter .listado li.is-active a {
  color: white;
}

.contenido_club .contenido .columna1 ._descrip .filtros .itemfilter .listado li a {
  color: #004a9a;
}

.contenido_club .contenido .columna2 {
  flex: 0 0 calc(100% - 334px);
}

.contenido_club .contenido .columna2.filtro {
  flex: 0 0 calc(100%);
  width: 100%;
}

.sinres {
  margin: 0 auto;
  color: black;
  z-index: 2;
  font-size: 22px;
}

.contenido_club .contenido .columna2 .row {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.contenido_club .contenido.buscador_section .columna2 {
  flex: 0 0 calc(100% - 12px);
}

.contenido_club .contenido .business.preguntasF {
  width: 100%;
}

.contenido_club .contenido .business.preguntasF > .pregunta_seccion {
  font-weight: bold;
  display: inline-block;
  position: relative;
  background-color: #00ade3;
  color: white;
  -webkit-border-top-right-radius: 12px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 12px;
  -moz-border-radius-topright: 12px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 12px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 10px 0 10px 24px;
  font-size: 20px;
  min-width: 270px;
  position: relative;
}

.contenido_club .contenido .business.preguntasF > .pregunta_seccion:before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  right: -56px;
  bottom: -60px;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-image: radial-gradient(circle at 100% 0, rgba(0, 0, 0, 0) 20px, #00ade3 21px);
}

.contenido_club .contenido .business.preguntasF ul {
  list-style: none;
  background-color: #00ade3;
  margin-bottom: 30px;
  padding: 10px 0 20px 24px;
  -webkit-border-top-right-radius: 12px;
  -webkit-border-bottom-right-radius: 12px;
  -webkit-border-bottom-left-radius: 12px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 12px;
  -moz-border-radius-bottomright: 12px;
  -moz-border-radius-bottomleft: 12px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.contenido_club .contenido .business.preguntasF ul li .pregunta {
  padding: 15px 0px;
  color: white;
  cursor: pointer;
  border-bottom: 1px solid white;
}

.contenido_club .contenido .business.preguntasF ul li:last-child .pregunta {
  border: none;
}

.contenido_club .contenido .business.preguntasF ul li .respuesta {
  display: none;
  width: calc(100% - 30px);
  margin: 5px 0 5px 15px;
  color: white;
}

.contenido_club .contenido .business.preguntasF ul li .respuesta p {
  letter-spacing: .5px;
}

.contenido_club .contenido .business.preguntasF ul li.oculto .pregunta {
  color: #004c97;
  border: none;
  font-weight: bold;
}

.contenido_club .contenido .business.preguntasF ul li.oculto .respuesta {
  display: block;
}

.contenido_club .contenido .business.preguntasF ul li.oculto span.toggle_resp.r1 {
  display: none;
}

.contenido_club .contenido .business.preguntasF ul li.oculto span.toggle_resp.r2 {
  display: inline-block;
}

.body_club {
  background: white;
  width: 100%;
}

.body_club .search {
  width: 500px;
  position: relative;
  margin-right: 80px;
}

.body_club .search .searchTerm {
  float: left;
  width: 100%;
  border: 3px solid #152c5e;
  padding: 0 10px;
  height: 20px;
  border-radius: 5px;
  outline: none;
  color: #9DBFAF;
  height: 35px;
  font-size: 17px;
}

.body_club .search .searchTerm:focus {
  color: #152c5e;
}

.body_club .search .searchButton {
  position: absolute;
  right: -50px;
  width: 40px;
  height: 36px;
  border: 1px solid #152c5e;
  background: #152c5e;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
}

.body_club footer {
  position: relative;
  z-index: 99999;
  background: #fff;
  width: calc(100% - 50px);
  margin: 0 auto;
}

.body_club footer .img_pie {
  width: 100%;
  height: 105px;
}

.body_club footer .img_pie img {
  bottom: 0;
  width: 100%;
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.body_club footer .cont-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 5px 0px;
  z-index: 9;
  max-width: 1450px;
  width: calc(100% - 50px);
  margin: 0 auto;
}

.body_club footer .cont-footer > div {
  width: 33%;
}

.body_club footer .cont-footer .footer_izq {
  padding: 20px 0 20px 20px;
}

.body_club footer .cont-footer .footer_izq > span {
  color: #004c98;
  font-weight: bolder;
  font-size: 20px;
  padding-bottom: 2px;
  margin-bottom: 6px;
  display: inline-block;
}

.body_club footer .cont-footer .footer_izq .secciones {
  font-size: 16px;
  color: #004c98;
  margin-bottom: 5px;
}

.body_club footer .cont-footer .footer_izq .secciones a {
  font-size: 16px;
  color: #004c98;
}

.body_club footer .cont-footer .footer_izq .secciones i {
  font-size: 14px;
  margin-right: 7px;
}

.body_club footer .cont-footer .footer_der {
  padding: 20px 20px 20px 0;
  text-align: end;
}

.body_club footer .cont-footer .footer_der > span {
  color: white;
  font-weight: bolder;
  font-size: 20px;
  padding-bottom: 2px;
  margin-bottom: 6px;
  display: inline-block;
}

.body_club footer .cont-footer .footer_der .secciones {
  color: white;
  width: 100%;
  text-align: end;
  display: flex;
  flex-direction: column;
}

.body_club footer .cont-footer .footer_der .secciones a {
  margin: 0 10px 0 0;
  color: white;
  font-size: 16px;
}

.body_club footer .cont-footer .footer_der .secciones.contact {
  cursor: pointer;
  display: inline-block;
  width: auto;
  padding: 3px 10px;
  margin-top: 20px;
  border-bottom: 1px solid;
}

.body_club footer .cont-footer .footer_der .secciones.contact i {
  margin: 0 0 0 10px;
}

.body_club footer .cont-footer .center {
  text-align: center;
}

.body_club footer .cont-footer .center span {
  width: 100%;
  color: white;
}

.body_club footer .cont-footer .center .redes {
  list-style: none;
  margin: 0 0 50px 0;
  padding: 0;
}

.body_club footer .cont-footer .center .redes li {
  display: inline-block;
  padding: 5px;
  margin: 15px 0 20px 0;
}

.body_club footer .cont-footer .center .redes li a {
  background-color: white;
  -webkit-border-top-right-radius: 120px;
  -webkit-border-bottom-right-radius: 120px;
  -webkit-border-bottom-left-radius: 120px;
  -webkit-border-top-left-radius: 120px;
  -moz-border-radius-topright: 120px;
  -moz-border-radius-bottomright: 120px;
  -moz-border-radius-bottomleft: 120px;
  -moz-border-radius-topleft: 120px;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-left-radius: 120px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 10px;
}

.body_club footer .cont-footer .center .redes li a .icon {
  width: 25px;
  height: 25px;
  color: #004c98;
}

.body_club footer .cont-footer .center p {
  color: white;
  width: 100%;
  text-align: center;
}

.body_club footer a.mustang {
  width: 100%;
  display: flex;
  background: #1a1f4c;
  border-top: 1px solid rgba(211, 211, 211, 0.41);
  justify-content: center;
  padding: 10px;
  align-items: center;
  color: white;
}

.body_club footer a.mustang img {
  width: 45px;
  height: 25px;
  margin-right: 10px;
}

.body_club header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  z-index: 100000;
  border-bottom: 1px solid #ccc;
  background-color: white;
}

.body_club header .cont-header {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  z-index: 9;
  width: calc(100% - 20px);
}
.body_club .menu-botones{
  height: 100%;
}

.body_club header .cont-header .menu-botones .menu-botones-suscribite{
  padding: 4px 4px;
  background: #004a9a;
  color: white;
  height: 100%;
  display: block;
  font-size: 12px;
  display: none;
}
@media (min-width:375px){
  .body_club header .cont-header .menu-botones .menu-botones-suscribite{
    padding: 4px 10px;
  }

}



.body_club header .cont-header .menulogo {
  display: flex;
  align-items: center;
}

.body_club header .cont-header .menulogo .logo {
  width: 100px;
  margin-left: 20px;
}

.body_club header .cont-header .menulogo .logo_mobile {
  width: 140px;
  display: none;
}

.body_club header .cont-header .menulogo .menu .menuCont {
  background: #002c5a;
  background: linear-gradient(90deg, #002c5a 0%, #004b9c 53%);
  top: 52px;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
}

.body_club header .cont-header .menulogo .menu .menuCont.open {
  display: flex;
}

.body_club header .cont-header .menulogo .menu .menuCont.open > ul {
  display: flex;
}

.body_club header .cont-header .menulogo .menu .menuCont > ul {
  display: none;
  top: 81px;
  list-style: none;
  width: 100%;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0;
  left: 0;
  right: 0;
  max-width: 1450px;
  margin: 0 auto;
}

.body_club header .cont-header .menulogo .menu .menuCont > ul .search.mobile {
  display: none;
}

.body_club header .cont-header .menulogo .menu .menuCont > ul > li {
  margin: 20px 2% 50px 1%;
}

.body_club header .cont-header .menulogo .menu .menuCont > ul > li a {
  color: #00ade3;
  font-weight: bold;
  font-size: 26px;
}

.body_club header .cont-header .menulogo .menu .menuCont > ul > li a::selection {
  color: white;
}

.body_club header .cont-header .menulogo .menu .menuCont > ul > li a:hover {
  text-decoration: none;
}

.body_club header .cont-header .menulogo .menu .menuCont .second_ul {
  list-style: none;
  padding-left: 10px;
  display: block;
  padding: 0;
}

.body_club header .cont-header .menulogo .menu .menuCont .second_ul li {
  line-height: 1.2;
  margin: 12px 0;
}

.body_club header .cont-header .menulogo .menu .menuCont .second_ul li a {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.body_club header .cont-header .menulogo .menu .menuCont .second_ul li a::selection {
  color: white;
}

.body_club header .cont-header .menulogo .menu .menuCont .second_ul li a:hover {
  text-decoration: none;
}

.body_club header .cont-header .ingresar {
  color: #152c5e;
  font-weight: bolder;
  font-size: 17px;
  letter-spacing: .5px;
  cursor: pointer;
}

.body_club header .cont-header .tarjeta-redes {
  display: flex;
  align-items: center;
}

.body_club header .cont-header .tarjeta-redes a {
  color: white !important;
  text-decoration: none;
}

.body_club header .cont-header .tarjeta-redes a.detalles_session {
  color: #014b9a !important;
  margin-right: 10px;
}

.body_club header .cont-header .tarjeta-redes .btn--brand {
  margin-right: 20px;
}

.body_club header .cont-header .tarjeta-redes .redes {
  list-style: none;
}

.body_club header .cont-header .tarjeta-redes .redes li {
  display: inline-block;
  padding: 0 5px;
}

.body_club header .cont-header .tarjeta-redes .redes li .icon {
  height: 20px;
  width: 20px;
  color: #53abe1;
}

.body_club header .cont-header .tarjeta-redes.login a {
  margin: 10px;
}

.body_club header .cont-header .tarjeta-redes.login a.pedi_tarjeta {
  background: #024999;
  padding: 5px 11px;
  border-radius: 21px;
  font-size: 12px;
}

.contenedor {
  width: 100%;
  max-width: 1450px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.backgroundBrowser {
  background-color: white;
  opacity: 0.7;
  justify-content: center;
  max-width: 945px;
  width: 100%;
  margin: auto;
  display: flex;
  -webkit-border-top-right-radius: 120px;
  -webkit-border-bottom-right-radius: 120px;
  -webkit-border-bottom-left-radius: 120px;
  -webkit-border-top-left-radius: 120px;
  -moz-border-radius-topright: 120px;
  -moz-border-radius-bottomright: 120px;
  -moz-border-radius-bottomleft: 120px;
  -moz-border-radius-topleft: 120px;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-left-radius: 120px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  position: absolute;
  min-height: 115px;
  top: -120px;
}

.buscador {
  max-width: 900px;
  width: 100%;
  margin: auto;
  display: flex;
  background-color: #00ade3;
  -webkit-border-top-right-radius: 120px;
  -webkit-border-bottom-right-radius: 120px;
  -webkit-border-bottom-left-radius: 120px;
  -webkit-border-top-left-radius: 120px;
  -moz-border-radius-topright: 120px;
  -moz-border-radius-bottomright: 120px;
  -moz-border-radius-bottomleft: 120px;
  -moz-border-radius-topleft: 120px;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-left-radius: 120px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  min-height: 75px;
  top: -100px;
  -webkit-box-shadow: 0px 0px 57px 5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 57px 5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 57px 5px rgba(0, 0, 0, 0.75);
}

.buscador span {
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.buscador .icon {
  width: 25px;
  height: 25px;
}

.buscador .field {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 50%;
  padding: 5px;
  border: 5px solid white;
  background: #00c8ff;
  position: relative;
  left: -40px;
  -webkit-border-top-right-radius: 120px;
  -webkit-border-bottom-right-radius: 120px;
  -webkit-border-bottom-left-radius: 120px;
  -webkit-border-top-left-radius: 120px;
  -moz-border-radius-topright: 120px;
  -moz-border-radius-bottomright: 120px;
  -moz-border-radius-bottomleft: 120px;
  -moz-border-radius-topleft: 120px;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-left-radius: 120px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.buscador .field input {
  background: transparent;
  border: none;
  height: 30px;
  color: white;
  margin-left: 5px;
  box-shadow: none;
  font-size: 1rem;
}

.buscador .field input:hover, .buscador .field input:focus {
  border: none;
  box-shadow: none;
}

.buscador .field input::-webkit-input-placeholder {
  color: none;
}

.buscador .field input:-moz-placeholder {
  color: none;
}

.buscador .field input::-moz-placeholder {
  color: none;
}

.buscador .field input:-ms-input-placeholder {
  color: none;
}

.buscador .field .btn--buscar {
  background-color: white;
  -webkit-border-top-right-radius: 120px;
  -webkit-border-bottom-right-radius: 120px;
  -webkit-border-bottom-left-radius: 120px;
  -webkit-border-top-left-radius: 120px;
  -moz-border-radius-topright: 120px;
  -moz-border-radius-bottomright: 120px;
  -moz-border-radius-bottomleft: 120px;
  -moz-border-radius-topleft: 120px;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-left-radius: 120px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  width: 28px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.buscador .field .btn--buscar .icon {
  color: #00c8ff;
  height: 20px;
  width: 20px;
}

.buscador .btn--rojo {
  border-color: #ff0000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.buscador .btn--rojo .icon {
  color: white;
}

.no_home {
  background-color: #00ade3;
  width: 100%;
  top: 52px;
  left: 0;
  position: absolute;
  display: none;
}

.no_home .buscador {
  -webkit-box-shadow: 0px 9px 19px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 9px 19px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 9px 19px -10px rgba(0, 0, 0, 0.75);
  max-width: none;
  width: 100%;
  left: 0;
  position: relative;
  top: 0;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  justify-content: center;
}

.no_home .buscador > span {
  margin-right: 15px;
}

.no_home .buscador .field {
  left: 0;
  max-width: 480px;
  border: 4px solid white;
}

.filter_s {
  font-size: 24px;
  font-weight: bolder;
  position: relative;
  padding: 8px 5px;
}

.filter_s a {
  text-decoration: none;
}

.filter_s .icon {
  height: 26px;
  width: 26px;
  fill: #152c5e;
}

.linea_separador {
  height: 1px;
  width: 100%;
  max-width: 1450px;
  background-color: #8b8b8b;
  margin: auto;
}

.item-3.benefits {
  background: #f4f4f4;
  height: fit-content;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  -moz-border-radius-topleft: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.item-3.benefits .beneficios {
  -webkit-border-top-right-radius: 13px;
  -webkit-border-bottom-right-radius: 13px;
  -webkit-border-bottom-left-radius: 13px;
  -webkit-border-top-left-radius: 13px;
  -moz-border-radius-topright: 13px;
  -moz-border-radius-bottomright: 13px;
  -moz-border-radius-bottomleft: 13px;
  -moz-border-radius-topleft: 13px;
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
  border-top-left-radius: 13px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  widows: 90%;
  margin: 0 auto 20px auto;
  background-color: #00ade3;
  font-weight: 600;
  font-size: 22px;
  color: white;
  padding: 10px;
}

.comercio {
  padding-top: 85px;
}

.comercio .buscador {
  width: 100%;
  position: relative;
}

.comercio .filter_s {
  max-width: 1450px;
  margin: auto;
}

.comercio .filter_s span {
  color: #8b8b8b;
  max-width: 1450px;
}

.comercio .business {
  width: 100%;
  /*max-width: calc(100% - 12px);*/
  z-index: 22;
  background: white;
}

.comercio .business .encabezado {
  display: flex;
  margin-bottom: 25px;
  max-height: 350px;
}

.comercio .business .encabezado .logo {
  width: 38%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 410px;
  -webkit-box-shadow: -5px 0px 18px 1px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: -5px 0px 18px 1px rgba(0, 0, 0, 0.49);
  box-shadow: -5px 0px 18px 1px rgba(0, 0, 0, 0.49);
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 20px;
  -moz-border-radius-topleft: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.comercio .business .encabezado .logo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.comercio .business .encabezado .imagen {
  align-items: center;
  width: 62%;
  -webkit-box-shadow: 5px 0px 18px 1px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 5px 0px 18px 1px rgba(0, 0, 0, 0.49);
  box-shadow: 5px 0px 18px 1px rgba(0, 0, 0, 0.49);
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.comercio .business .encabezado .imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.comercio .business .element_business {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #e5e5e5;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  -moz-border-radius-topleft: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.comercio .business .element_business .cont_slider {
  width: 400px;
  position: relative;
}

.comercio .business .element_business .cont_slider .desc_header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 0 10px 0;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 20px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.comercio .business .element_business .cont_slider .desc_header .descuento_text {
  font-size: 60px;
  color: #004a9a;
  line-height: 1;
  width: 40%;
  text-align: center;
}

.comercio .business .element_business .cont_slider .desc_header .separador_text {
  background-color: red;
  width: 4px;
  height: 60px;
  margin: 0 5px;
}

.comercio .business .element_business .cont_slider .desc_header .titulo_text {
  color: #004a9a;
  line-height: 1;
  width: 58%;
  text-align: center;
}

.comercio .business .element_business .cont_slider .desc_header .borde {
  position: absolute;
  width: 100%;
  height: 20px;
  background-color: #fff;
  z-index: 9;
  bottom: -12px;
  left: 0px;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.comercio .business .element_business .cont_slider .slider_comercio {
  cursor: pointer;
  width: 100%;
}

.comercio .business .element_business .cont_slider .slider_comercio .slick-list {
  background-color: none;
}

.comercio .business .element_business .cont_slider .slider_comercio .slick-list .slick-slide img {
  width: 100%;
}

.comercio .business .element_business .descripcion {
  width: calc(100% - 400px);
  padding-left: 15px;
}

.comercio .business .element_business .descripcion > * {
  width: 95%;
  margin-bottom: 10px;
}

.comercio .business .element_business .descripcion .dias {
  font-weight: bold;
}

.comercio .business .element_business .descripcion .dias span {
  color: #004a9a;
  margin-right: 7px;
  font-size: 32px;
}

.preguntas_frecuentes {
  padding-top: 75px;
}

.preguntas_frecuentes .filter_s {
  max-width: 1450px;
  margin: auto;
  color: #797979;
  border-bottom: 1px solid #797979;
  padding: 15px 10px;
}

/* nuevo del header */

.buscador-club{
  padding: 15px 10px 15px 10px;
  position: relative;
}

.buscador-club-input{
  height: 40px;
  padding: 5px 10px;
  border: 1.5px solid #808181;
  font-size: 16px;
}
.buscador-club-input::placeholder{
  font-size: 16px;
}

.buscador-icon{
  position: absolute;
  right: 15px;
  top: 20px;
}

.buscador-icon-separador{
  height: 30px;
  border-left: 1px solid #808181;
  position: absolute;
  top: 0px;
  left: -5px;
}

.buscador-btn{
  border: none;
  background: transparent;
  position: relative;
  top: 2px;
}

.buscador-club .icon-search{
  width: 18px;
  height: 18px;
  fill: #808181;
}
.cont-nombre{
  position: relative;
}
.menu-botones-user{
  height: 100%;
  display: block;
  text-align: center;
  margin-top: 5px;
  border: 1px solid #004a9a;
  font-size: 12px;
  color: #004a9a;
  padding: 2px 10px;
  text-transform: uppercase;
  display: none;
}
@media (min-width:1024px){
  .menu-botones-user{
    padding: 2px 15px;
    font-size: 13px;
    cursor: pointer;
    margin: 0;
    margin-right: 20px;
  }
}
.cont-opciones-perfil{
  position: absolute;
  background: #004a9a;
  color: white;
  display: flex;
  flex-direction: column;
  z-index: 99;
  padding: 10px;
  top: 30px;
  right: 0;
  min-width: 115px;
  display: none;
}
@media (min-width:1024px){
  .cont-opciones-perfil{
    top: 35px;
    left: 0;
    min-width: 120px;
  }
}
.cont-opciones-perfil.show{
  display: flex;
}
.cont-opciones-perfil-text{
  font-size: 16px;
  margin: 5px 0;
  cursor: pointer;
}

.menu-club{
  position: absolute;
  background: #e0e3e5;
  z-index: 99;
  top: 40px;
  min-width: 315px;
  overflow-y: scroll; /* Agregar esta propiedad */
  transition: all 0.3s ease;
  padding: 0;
  height: 0;
}
.menu-club.open{
  padding: 45px 0px 30px 0px;
  height: 85vh; /* Agregar una altura explícita */
}
.menu-club-btn-close{
  width: 18px;
  height: 18px;
  position: absolute;
  stroke: none;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.menu-club-btn-close rect{
  stroke: none;
}
.menu-club-background{
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(155,155,155,.5);
  top: 144px;
  display: none;
}
.menu-club-background.open{
  display: block;
}
.menu-club-titulo{
  font-size: 28px;
  font-weight: 700;
  padding-left: 20px;
}
.menu-club-separador{
  border-bottom: 1px solid #808181;
  margin: 5px 0 15px;
  width: 90%;
}
.menu-club-item{
  padding: 20px 15px 0 10px;
}
.menu-club-item-titulo{
  display: flex;
  align-items: center;
  position: relative;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  cursor: pointer;
}
.menu-club-item-titulo a{
  color: black;
}
.menu-club-item-titulo:before {
  content: "";
  display: inline-block;
  background-color: #c1c3c9;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  position: relative;
}
.menu-club-item-arrow{
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  transform: rotate(90deg);
}
.menu-club-subitems{
  flex-direction: column;
  padding-left: 33px;
  display: none;
}
.menu-club-subitem{
  font-size: 20px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  margin-bottom: 15px;
}

.menu-club-item.open{
  background-color: #cdd0db;
}
.menu-club-item.open .menu-club-item-arrow{
  transform: rotate(-90deg);
}
.menu-club-item.open .menu-club-subitems{
  display: flex;
}

/* fin de lo nuevo del header */

/* nuevo del footer */
.footer-desktop{
  display: none;
}
.footer-presentacion .footer-cont-img-tarjeta{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.footer-cont-img-tarjeta-line{
  position: absolute;
  border: 1px solid #004a9a;
  width: 100%;
  z-index: -1;
}

.footer-cont-img-img{
  background-color: white;
  padding-right: 18px;
}

.footer-cont-img-contacto{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.footer-secciones, .footer-ayuda{
  margin-top: 30px;
  padding: 0 20px;
}

.footer-secciones-titulo, .footer-ayuda-titulo{
  font-size: 22px;
  font-weight: 700;
  color: #5a5b5f;
  display: block;
}
.footer-secciones-items{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  margin-top: 5px;
}
.footer-secciones-item, .footer-ayuda-item{
  color: #5a5b5f;
  font-size: 18px;
}

.footer-redes{
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-redes svg{
  width: 25px;
  height: 25px;
  fill: #084788;
  margin: 0 5px;
}

.footer-redes-titulo{
  color: #084788;
  margin-right: 25px;
  font-size: 20px;
}

.footer-logo{
  width: 175px;
  margin: 20px auto;
}
/* fin de lo nuevo del footer */
.cont-header-desktop{
  display: none;
}
@media (max-width: 1600px) {
  .body_club footer .img_pie {
    height: 50px;
  }
}

@media (max-width: 1600px) {
  .body_club header .menulogo .menu .menuCont ul {
    padding: 25px 0;
  }
  .body_club header .menulogo .menu .menuCont ul > li {
    margin: 0 10px;
  }
  .contenido_club .contenido .columna2 .descuentos .desc {
    margin: 0 15px 15px 0;
    max-width: initial;
  }
  .contenido_club .contenido .columna2 .descuentos .desc:nth-child(3n) {
    margin: 0 0px 15px 0 !important;
  }
}

@media (max-width: 950px) {
  .view_mobile {
    display: block;
  }
  .view_desktop {
    display: none;
  }
  .comercio_all.grid {
    flex-wrap: wrap;
  }
  .preguntas_frecuentes {
    padding-top: 15px;
  }
  .body_club header .menulogo .menu .menuCont ul > li {
    width: 30%;
    margin: 10px;
  }
  .body_club header .menulogo .menu .menuCont.open > ul {
    height: 100vh;
    padding-bottom: 30px;
    overflow-y: auto;
  }
  .body_club header .tarjeta-redes {
    display: flex;
    align-items: center;
  }
  .body_club header .tarjeta-redes .btn--brand {
    display: block;
  }
  .body_club header .tarjeta-redes .redes {
    list-style: none;
  }
  .body_club header .tarjeta-redes .redes li {
    display: inline-block;
    padding: 0 5px;
  }
  .body_club header .tarjeta-redes .redes li .icon {
    height: 20px;
    width: 20px;
    color: #53abe1;
  }
  .body_club footer .img_pie {
    height: 30px;
  }
  .contenido_club {
    position: relative;
  }
  .contenido_club .pie_comercio .descripcion_v {
    margin: 10px 0px;
  }
  .contenido_club .contenido_club .sliderfirst .slick-next {
    height: 90px;
  }
  .contenido_club .sliderfirst {
    min-height: 300px;
    max-height: 500px;
  }
  .contenido_club .sliderfirst .slick-next,
  .contenido_club .sliderfirst .slick-prev {
    height: 35px;
    right: 0;
  }
  .contenido_club .contenido .columna1 {
    flex: 0 0 calc(100%);
  }
  .contenido_club .contenido .columna2 {
    flex: 0 0 calc(100%);
  }
  .contenido_club .contenido .columna2 .descuentos .desc {
    width: calc(50% - 10px);
    margin: 0 20px 20px 0;
    max-width: initial;
  }
  .contenido_club .contenido .columna2 .descuentos .desc:nth-child(3n) {
    margin: 0 20px 20px 0 !important;
  }
  .contenido_club .contenido .columna2 .descuentos .desc:nth-child(2n) {
    margin: 0 0px 20px 0 !important;
  }
  .contenido_club .contenido .business.preguntasF > .pregunta_seccion {
    width: 100%;
  }
  .contenido_club .contenido .business.preguntasF > .pregunta_seccion:before {
    right: -40px;
  }
  .backgroundBrowser {
    min-height: 80px;
    top: -100px;
    width: 97%;
  }
  .buscador {
    margin: auto;
    display: flex;
    background-color: #00ade3;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 10px 5px;
    min-height: 60px;
    top: -88px;
    width: 90%;
  }
  .buscador > span {
    color: white;
    display: none;
  }
  .buscador .icon {
    width: 25px;
    height: 25px;
  }
  .buscador .field {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 65%;
    padding: 5px;
    border: 2px solid white;
    background: #00c8ff;
    left: 0;
    -webkit-border-top-right-radius: 120px;
    -webkit-border-bottom-right-radius: 120px;
    -webkit-border-bottom-left-radius: 120px;
    -webkit-border-top-left-radius: 120px;
    -moz-border-radius-topright: 120px;
    -moz-border-radius-bottomright: 120px;
    -moz-border-radius-bottomleft: 120px;
    -moz-border-radius-topleft: 120px;
    border-top-right-radius: 120px;
    border-bottom-right-radius: 120px;
    border-bottom-left-radius: 120px;
    border-top-left-radius: 120px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
  }
  .buscador .field input {
    background: transparent;
    border: none;
    height: 30px;
    color: white;
    margin-left: 5px;
    box-shadow: none;
    font-size: 1rem;
  }
  .buscador .field input:hover, .buscador .field input:focus {
    border: none;
    box-shadow: none;
  }
  .buscador .field input::-webkit-input-placeholder {
    color: white;
  }
  .buscador .field input:-moz-placeholder {
    color: white;
  }
  .buscador .field input::-moz-placeholder {
    color: white;
  }
  .buscador .field input:-ms-input-placeholder {
    color: white;
  }
  .buscador .field .btn--buscar {
    background-color: white;
    -webkit-border-top-right-radius: 120px;
    -webkit-border-bottom-right-radius: 120px;
    -webkit-border-bottom-left-radius: 120px;
    -webkit-border-top-left-radius: 120px;
    -moz-border-radius-topright: 120px;
    -moz-border-radius-bottomright: 120px;
    -moz-border-radius-bottomleft: 120px;
    -moz-border-radius-topleft: 120px;
    border-top-right-radius: 120px;
    border-bottom-right-radius: 120px;
    border-bottom-left-radius: 120px;
    border-top-left-radius: 120px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    width: 35px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .buscador .field .btn--buscar .icon {
    color: #00c8ff;
    height: 20px;
    width: 20px;
  }
  .buscador .btn--rojo {
    border-color: #ff0000;
    padding: 3px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .buscador .btn--rojo .icon {
    height: 20px;
    width: 20px;
    color: white;
    padding: 0;
  }
  .buscador .texto-boton {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  .buscador.view_mobile .texto-boton span {
    font-size: 0.75rem;
  }
  .buscador.view_mobile .texto-boton .btn--rojo {
    width: 27px;
    line-height: 1.5;
    padding: 1px 1px 1px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 27px;
  }
  .buscador.view_mobile .texto-boton .btn--rojo .icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 650px) {
  .jquery-modal.blocker {
    padding: 0px;
    overflow: hidden;
  }
  .jquery-modal.blocker div#ex1 {
    padding: 10px;
  }
  .body_club footer .img_pie {
    height: 15px;
  }
  .body_club footer .img_pie img {
    top: -2%;
  }
  .comercio_all.grid {
    flex-wrap: wrap-reverse;
  }
  .tarjeta-redes {
    margin: 10px 0px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .tarjeta-redes a {
    color: white;
    color: white !important;
    text-decoration: none;
  }
  .tarjeta-redes .redes {
    position: absolute;
    right: 10px;
    top: 22px;
  }
  .tarjeta-redes .btn--brand {
    display: none;
  }
  .gradientcolor:before {
    border-right: 200px solid transparent;
    border-top: 0 solid transparent;
    border-left: 0 solid #ffffff;
    border-bottom: 125px solid #ffffff;
  }
  div#loading .contimg img {
    width: 110px;
  }
  .body_club footer .cont-footer .footer_izq {
    width: 100%;
    padding: 20px;
  }
  .body_club footer .cont-footer .footer_izq > span {
    width: 100%;
    text-align: center;
  }
  .body_club footer .cont-footer .footer_izq .secciones {
    text-align: center;
  }
  .body_club footer .cont-footer .footer_der {
    width: 100%;
    padding: 20px;
  }
  .body_club footer .cont-footer .footer_der > span {
    width: 100%;
    text-align: center;
  }
  .body_club footer .cont-footer .footer_der .secciones {
    text-align: center;
  }
  .body_club footer .cont-footer .center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .body_club footer a.mustang {
    font-size: 11px;
  }
  .body_club header .tarjeta-redes {
    display: none;
  }
  .body_club header .cont-header {
    padding-bottom: 0px;
  }
  .body_club header .cont-header .search {
    display: none;
  }
  .body_club header .cont-header .menulogo .logo {
    display: none;
  }
  
  .body_club header .cont-header .menulogo .menu .menuCont {
    width: 100%;
  }
  .body_club header .cont-header .menulogo .menu .menuCont ul .search.mobile {
    margin: 0 auto 20px auto;
    width: calc(100% - 45px);
    display: block;
  }
  .body_club header .cont-header .menulogo .menu .menuCont ul > li {
    width: calc(100% - 20px);
    margin: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }
  .body_club header .cont-header .menulogo .menu .menuCont ul > li ul {
    display: none;
  }
  .filter_s span {
    font-size: 17px;
  }
  .contenido_club {
    padding-top: 144px;
    position: relative;
  }
  .contenido_club .filtro_mobile {
    display: block;
    margin: 0 0 20px 0;
    align-self: center;
  }
  .contenido_club .filtro_mobile span {
    background: #004a9a;
    padding: 7px 16px;
    display: inline-block;
    color: white;
    font-size: 22px;
    border: 1px;
    text-align: center;
    letter-spacing: 0.5px;
    -webkit-border-top-right-radius: 120px;
    -webkit-border-bottom-right-radius: 120px;
    -webkit-border-bottom-left-radius: 120px;
    -webkit-border-top-left-radius: 120px;
    -moz-border-radius-topright: 120px;
    -moz-border-radius-bottomright: 120px;
    -moz-border-radius-bottomleft: 120px;
    -moz-border-radius-topleft: 120px;
    border-top-right-radius: 120px;
    border-bottom-right-radius: 120px;
    border-bottom-left-radius: 120px;
    border-top-left-radius: 120px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
  }
  .contenido_club .filtro_mobile span i {
    margin-left: 10px;
  }
  .contenido_club .contenido {
    position: relative;
    flex-wrap: nowrap;
    flex-direction: column;
    margin: 20px auto 20px auto;
  }
  .contenido_club .contenido .columna1 {
    margin-bottom: 20px;
  }
  .contenido_club .contenido .columna1 ._descrip {
    display: none;
  }
  .contenido_club .contenido .columna1 ._descrip.muestro {
    display: block;
  }
  .contenido_club .contenido .columna2 {
    width: 100%;
  }
  .sinres {
    font-size: 14px;
  }
  .contenido_club .contenido .columna2 .descuentos .desc {
    width: 100%;
    margin: 0 0px 20px 0 !important;
    max-width: initial;
  }
  .contenido_club .contenido .columna2 .descuentos .desc:nth-child(3n) {
    margin: 0 0px 20px 0 !important;
  }
  .contenido_club .contenido .business {
    width: 100%;
  }
  .contenido_club .contenido .business .element_business {
    flex-direction: column;
    align-items: center;
  }
  .contenido_club .contenido .business .element_business .slider_comercio {
    margin: 20px 0;
    max-width: 100%;
  }
  .contenido_club .contenido .business .element_business .descripcion {
    width: 100%;
  }
  .contenido_club .contenido .business .element_business .descripcion > * {
    margin-bottom: 10px;
  }
  .contenido_club .contenido .business .element_business .descripcion .desc_header {
    font-size: 19px;
    margin-right: 10px;
    width: 100%;
    display: inherit;
  }
  .contenido_club .contenido .business .element_business .descripcion .desc_header span {
    font-size: 22px;
    text-transform: uppercase;
    display: inline-block;
  }
  .contenido_club .contenido .business .element_business .descripcion .desc_header p {
    display: inline;
    font-weight: lighter;
  }
  .contenido_club .contenido .base .base_cont > span {
    font-size: 16px;
    line-height: 1.2;
  }
  .contenido_club .contenido .base .base_cont > * {
    margin: 10px 0;
  }
  .contenido_club .contenido.home {
    margin: 10px 0 20px 0;
  }
  .comercio .business .element_business {
    flex-wrap: wrap;
  }
  .comercio .business .element_business .cont_slider {
    width: 100%;
  }
  .comercio .business .element_business .descripcion {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 1023px){
  .body_club header .cont-header .menulogo .logo_mobile {
    display: block;
    width: 140px;
    margin-left: 10px;
  }
}
@media (min-width: 1024px){
  .cont-header-mobile{
    display: none;
  }
  .cont-header-desktop{
    display: block;
  }
  .body_club header .cont-header{
    width: calc(100% - 80px);
  }

  .logo_desktop{
    width: 150px;
  }

  .buscador-club-input{
    width: 260px;
    box-shadow: 9px 7px 12px -1px rgba(0,0,0,0.1);
    -webkit-box-shadow: 9px 7px 12px -1px rgba(0,0,0,0.1);
    -moz-box-shadow: 9px 7px 12px -1px rgba(0,0,0,0.1);
  }

  .menu-botones{
    display: flex;
    align-items: center;
    position: relative;
  }

  .menu-botones svg{
    width: 25px;
    height: 25px;
    fill: #084788;
    margin: 0 10px;
  }
  .body_club header .cont-header .menu-botones .menu-botones-suscribite{
    top: 0;
    margin-right: 15px;
    display: none;
  }

  .menu-botones-cerrar-sesion{
    margin: 0 25px;
    color: #084788;
    display: none;
  }

  .menu-club{
    top: 0;
    min-width: 760px;
  }

  .menu-club-titulo{
    font-size: 50px;
    font-weight: 700;
    padding-left: 55px;
  }

  .menu-club-item{
    padding: 20px 15px 0 30px;
  }

  .menu-club-btn-close{
    top: 20px;
    right: 20px;
  }
  .menu-club.open{
    height: 100vh;
  }
  .menu-club-background{
    top: 0;
  }
  .menu-club-item-titulo{
    font-size: 26px;
    margin-bottom: 20px;
  }
  .menu-club-subitem filter{
    font-size: 24px;
  }

  .footer-mobile{
    display: none;
  }
  .footer-desktop{
    display: block;
    padding-bottom: 40px;
    position: relative;
  }

  .footer-top{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 65px;
  }

  .footer-mid{
    display: flex;
    justify-content: space-between;
  }

  .footer-bottom{
    display: flex;
    justify-content: space-between;
    bottom: 20px;
    position: relative;
  }

  .footer-logo{
    margin: 0;
    display: flex;
    align-items: end;
  }

  .body_club footer{
    width: calc(100% - 80px);
  }

  .footer-cont-img-contacto{
    right: 65px;
  }

  .footer-redes{
    margin-top: 0px;
    flex-direction: column;
    justify-content: end;
  }

  .footer-redes-titulo{
    margin-right: 0;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .footer-redes svg{
    margin: 0 15px;
  }
}

@media (min-width: 1220px){
  .logo_desktop{
    width: 170px;
  }

  .buscador-club-input{
    width: 350px;
  }
}
@media (min-width: 1440px){
  .buscador-club-input{
    width: 450px;
  }
  .buscador-club{
    left: -40px;
  }
}

/*------------------------------------*\
    $TEXTURAS
\*------------------------------------*/
.alert--success, .alert--warning, .alert--error, .alert--info, .alert--block {
  margin-bottom: 1.5;
  padding: 8px 35px 8px 14px;
  background-color: #fce4cf;
  border: 1px solid #f6ae6f;
  font-family: "Heebo", Helvetica, sans-serif;
  font-size: 0.8rem;
  color: #904809;
  border-radius: 3px;
  position: relative;
}

.alert--success .alert--heading, .alert--warning .alert--heading, .alert--error .alert--heading, .alert--info .alert--heading, .alert--block .alert--heading {
  color: inherit;
}

.alert--success .close, .alert--warning .close, .alert--error .close, .alert--info .close, .alert--block .close {
  position: absolute;
  top: -2px;
  right: 2px;
  float: right;
  font-size: 0.8rem;
  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: #da4f49;
}

.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--primary, .badge--error, .badge--warning, .badge--success, .badge--info {
  padding: 0.1em 0.3em;
  margin-right: 3px;
  font-size: 0.8rem;
  white-space: nowrap;
  border: 1px solid currentcolor;
  border-radius: 3px;
  color: color-grey(lightgrey);
  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--primary:hover, .badge--error:hover, .badge--warning:hover, .badge--success:hover, .badge--info:hover {
  color: color-grey(lightgrey);
  text-decoration: none;
  cursor: pointer;
}

.badge--error {
  color: #da4f49;
}

.badge--warning {
  color: #e78730;
}

.badge--success {
  color: #5bb75b;
}

.badge--info {
  color: #42b8dd;
}

.badge--icon {
  display: inline-block;
  color: color-grey(lightgrey);
  border: 1px solid color-grey(lightgrey);
  border-radius: 3px;
  padding: 12px;
  background-color: transparent;
  text-align: center;
}

::-moz-selection {
  background-color: #e7f2ff;
  color: #004a9a;
  text-shadow: none;
}

::selection {
  background-color: #e7f2ff;
  color: #004a9a;
  text-shadow: none;
}

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

.grid {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}

[class^="item-"], [class*=" item-"] {
  flex-shrink: 0;
  flex-grow: 1;
  margin: 6px;
  padding: 5px;
}

.item-1 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-1 {
    flex: 0 0 calc(8.33333% - 12px);
    max-width: calc(8.33333% - 12px);
  }
}

.item-2 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-2 {
    flex: 0 0 calc(16.66667% - 12px);
    max-width: calc(16.66667% - 12px);
  }
}

.item-3 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-3 {
    flex: 0 0 calc(25% - 12px);
    max-width: calc(25% - 12px);
  }
}

.item-4 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-4 {
    flex: 0 0 calc(33.33333% - 12px);
    max-width: calc(33.33333% - 12px);
  }
}

.item-5 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-5 {
    flex: 0 0 calc(41.66667% - 12px);
    max-width: calc(41.66667% - 12px);
  }
}

.item-6 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-6 {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

.item-7 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-7 {
    flex: 0 0 calc(58.33333% - 12px);
    max-width: calc(58.33333% - 12px);
  }
}

.item-8 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-8 {
    flex: 0 0 calc(66.66667% - 12px);
    max-width: calc(66.66667% - 12px);
  }
}

.item-9 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-9 {
    flex: 0 0 calc(75% - 12px);
    max-width: calc(75% - 12px);
  }
}

.item-10 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-10 {
    flex: 0 0 calc(83.33333% - 12px);
    max-width: calc(83.33333% - 12px);
  }
}

.item-11 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-11 {
    flex: 0 0 calc(91.66667% - 12px);
    max-width: calc(91.66667% - 12px);
  }
}

.item-12 {
  flex-basis: 100%;
  width: 100%;
}

@media (min-width: 56.25em) {
  .item-12 {
    flex: 0 0 calc(100% - 12px);
    max-width: calc(100% - 12px);
  }
}

/*------------------------------------*\
    $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-x-small {
  font-size: 0.6rem;
  line-height: 1.5;
}

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

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

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

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

.float-right {
  float: right;
}

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

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

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

/*------------------------------------*\
    $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
  */
.btn-group:after {
  content: "";
  display: table;
  clear: both;
}
