@charset "UTF-8";
/*------------------------------------*\
    $STYLE
\*------------------------------------*/
/**
 * Let's define the settings file here, or the partials to be included.
 * This way we can have different .css files compiled with different partials each.
 */
/*------------------------------------*\
    $PARTIALS
\*------------------------------------*/
/**
 * All files to be compiled
 */
/**
* Scss Libraries, mixins, functions and any Scss focused logic
**/
@font-face {
  font-family: 'FranklinGothicURWConDem';
  src: url("/landing-suscripcion/fonts/FranklinGothicURWCon-DemIta.woff2") format("woff2"), url("/landing-suscripcion/fonts/FranklinGothicURWCon-DemIta.woff") format("woff"), url("/landing-suscripcion/fonts/FranklinGothicURWCon-DemIta.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'FranklinGothicURWComBoo';
  src: url("/landing-suscripcion/fonts/FranklinGothicURWCom-Boo.woff2") format("woff2"), url("/landing-suscripcion/fonts/FranklinGothicURWCom-Boo.woff") format("woff"), url("/landing-suscripcion/fonts/FranklinGothicURWCom-Boo.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FranklinGothicURWConDem';
  src: url("/landing-suscripcion/fonts/FranklinGothicURWCon-Dem.woff2") format("woff2"), url("/landing-suscripcion/fonts/FranklinGothicURWCon-Dem.woff") format("woff"), url("/landing-suscripcion/fonts/FranklinGothicURWCon-Dem.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FranklinGothicURWBoo';
  src: url("/landing-suscripcion/fonts/FranklinGothicURW-Boo.woff2") format("woff2"), url("/landing-suscripcion/fonts/FranklinGothicURW-Boo.woff") format("woff"), url("/landing-suscripcion/fonts/FranklinGothicURW-Boo.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FranklinGothicURWBoo';
  src: url("/landing-suscripcion/fonts/FranklinGothicURW-BooIta.woff2") format("woff2"), url("/landing-suscripcion/fonts/FranklinGothicURW-BooIta.woff") format("woff"), url("/landing-suscripcion/fonts/FranklinGothicURW-BooIta.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

/*------------------------------------*\
    $SETTINGS
\*------------------------------------*/
/**
 *
 * Define all variables and values to use
 *
 */
/*------------------------------------*\
    $INCLUDED-COMPONENTS
\*------------------------------------*/
/**
 * We can tell the components to use here, `true` for used, `false` unused.
 * Remember you can overwrite this value anywhere else by removing the `!default` property
 */
/*------------------------------------*\
    $BREAKPOINTS
\*------------------------------------*/
/**
 * "Start with the small screen first, then expand until it looks like shit. Time to insert a breakpoint!"
 * Used with mixin `respond-to($breakpoint)`:

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

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

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

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

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

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

* Y el uso va como sigue:

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

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

 * Compiles to:

  .selector { z-index: 9001;}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
* HTML elements
**/
/*------------------------------------*\
    $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, .suscripcion .btn--generico, .suscripcion .btn--back, .suscripcion .fondo .contenido .btn--ingresar {
  display: inline-block;
  line-height: 3;
  color: #4d4d4d;
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
  white-space: nowrap;
  background-color: transparent;
  border-top: 1px solid currentcolor;
  border-right: 1px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  border-left: 1px solid currentcolor;
  cursor: pointer;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 1em;
  padding-left: 1em;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  /**
  * Nadie quiere un botón con texto subrayado cuando
  * hacemos hover.
  */
}

.btn--disabled:hover, .btn--info:hover, .btn--error:hover, .btn--warning:hover, .btn--success:hover, .btn--primary:hover, .suscripcion .btn--generico:hover, .suscripcion .btn--back:hover, .suscripcion .fondo .contenido .btn--ingresar:hover {
  text-decoration: none;
  color: #4d4d4d;
}

.btn--disabled:active, .btn--info:active, .btn--error:active, .btn--warning:active, .btn--success:active, .btn--primary:active, .suscripcion .btn--generico:active, .suscripcion .btn--back:active, .suscripcion .fondo .contenido .btn--ingresar:active, .btn--disabled:focus, .btn--info:focus, .btn--error:focus, .btn--warning:focus, .btn--success:focus, .btn--primary:focus, .suscripcion .btn--generico:focus, .suscripcion .btn--back:focus, .suscripcion .fondo .contenido .btn--ingresar:focus {
  outline: none;
}

.btn--disabled:visited, .btn--info:visited, .btn--error:visited, .btn--warning:visited, .btn--success:visited, .btn--primary:visited, .suscripcion .btn--generico:visited, .suscripcion .btn--back:visited, .suscripcion .fondo .contenido .btn--ingresar:visited {
  color: #4d4d4d;
}

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

/**
* Botón no disponible
*/
.btn--disabled {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f2f2f2;
}

/**
* 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: #007EE5;
}

.btn--primary:hover {
  color: #007EE5;
}

.btn--primary:visited {
  color: #007EE5;
}

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

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

.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
\*------------------------------------*/
/**
* Vendor elements
**/
/**
* Layout and general styles
**/
/*------------------------------------*\
    $SITIO
\*------------------------------------*/
@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

html {
  background: white;
  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: "Book Antiqua", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #4d4d4d;
}

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

a, button {
  outline: none !important;
  text-decoration: none;
  cursor: pointer;
}

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

ul {
  padding: 0;
}

/*----------------------Suscripcion------------------------------------*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.m-3 {
  margin-bottom: 30px !important;
}

body {
  background-color: #5a5959eb;
}

.suscripcion {
  overflow: hidden;
  display: block;
  position: relative;
  max-width: 1600px;
  margin: auto;
  font-family: 'Book Antiqua';
}

.suscripcion .contenido {
  max-width: 1124px;
  margin: auto;
  padding: 0 10px;
}

.suscripcion .btn--generico {
  color: white;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border-color: transparent;
  color: white;
  font-size: 20px;
  font-weight: bold;
  background: #69b6e6;
  background: -moz-linear-gradient(top, #69b6e6 0%, #4daee3 43%, #0696d4 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #69b6e6), color-stop(43%, #4daee3), color-stop(100%, #0696d4));
  background: -webkit-linear-gradient(top, #69b6e6 0%, #4daee3 43%, #0696d4 100%);
  background: -o-linear-gradient(top, #69b6e6 0%, #4daee3 43%, #0696d4 100%);
  background: -ms-linear-gradient(top, #69b6e6 0%, #4daee3 43%, #0696d4 100%);
  background: linear-gradient(to bottom, #69b6e6 0%, #4daee3 43%, #0696d4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#69b6e6', endColorstr='#0696d4', GradientType=0 );
  padding-right: 1em;
  padding-left: 1em;
  line-height: 2.5;
}

.suscripcion .btn--generico:hover {
  color: white;
}

.suscripcion .btn--generico:visited {
  color: white;
}

.suscripcion .btn--colored-1{
  padding: 6px 10px;
  font-size: 17px;
  color: white;
  font-family: 'FlamaBook';
  background: #028fbe;
  line-height: inherit;
  border: none;
  border-radius: inherit;
}
.suscripcion .btn--colored-1:hover{
  color:#6cf;
}
.btn-gral{
  padding: 6px 10px;
  font-size: 17px;
  color: white;
  font-family: 'FlamaBook';
  background: #028fbe;
  line-height: inherit;
  border: none;
  border-radius: inherit;
}
.btn-gral:hover{
  color:#6cf;
}
.suscripcion .btn--colored-2{
  padding: 6px 10px;
  font-size: 17px;
  color: white;
  font-family: 'FlamaBook';
  background: rgba(91,179,68,1);
  line-height: inherit;
  border: none;
  border-radius: inherit;
}
.suscripcion .btn--colored-2:hover{
  color:#80ff60;
}


.suscripcion .fondo-2 .cont-fondo p{
  margin: 12px 0px;
}

.suscripcion .fondo-2 .cont-fondo a{
  font-size: 24px;
}


.suscripcion .fondo-2 .cont-fondo .btn--ingresar{
  background-color: white;
  color:#23558D ;
  padding: 12px 15px;
  border: none;
  
}

.suscripcion .fondo-2 .cont-fondo a.btn--ingresar{
  font-size: 12px;
  padding: 12px 20px;
  border-radius: 3px;
  font-family: Helvetica, Arial, sans-serif;
}

#btnLogin {
  display: none;
}

#btnLogin span {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.suscripcion .btn--back {
  background: white;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  font-weight: bold;
  padding-right: 1em;
  padding-left: 1em;
  line-height: 2.5;
  border-color: #666666;
  margin-bottom: 15px;
  float: left;
  position: relative;
}

.suscripcion .fondo {
  background-color: #5490f0;
  position: relative;
  width: 100%;
}

.suscripcion .fondo-2{
  background-color: #4372C0;
  text-align: center;
  padding: 12px;
  min-height: 150px;
  height: fit-content;
  display: flex;
}

.suscripcion .fondo-3{
  background-color: #00a2ea;
}

.suscripcion .fondo-2 .cont-fondo{
  width: 45%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.suscripcion .cont-fondo form{
  margin-top: 12px;
  width: 100%;
}

.fondo-2 .cont-fondo a{
color: white;
line-height: 1.2;
}



.suscripcion .fondo .contenido .btn--ingresar {
  background: white;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  color: #009bdb;
  font-weight: bold;
  padding-right: 1em;
  padding-left: 1em;
  line-height: 2.5;
  border-color: #666666;
  margin-bottom: 20px;
  font-size: 20px;
}

.suscripcion .fondo .contenido .btn--ingresar:hover {
  color: #009bdb;
}

.suscripcion .fondo .contenido .btn--ingresar:visited {
  color: #009bdb;
}

.suscripcion .fondo .contenido .candado {
  position: absolute;
  top: -37px;
  left: -74px;
  width: 54%;
}
.suscripcion .fondo .cont-titulo{
  margin:  0 5%;
  PADDING-TOP: 30px;
}

.suscripcion .fondo .cont-titulo .titulo_principal {
  color: white;
  font-weight: bold;
  font-size: 60px;
  font-family: 'Book Antiqua Bold';
  width: 100%;
}

.suscripcion .fondo .cont-main .intro {
  color: white;
  font-family: 'Book Antiqua';
  font-size: 38px;
  line-height: 1.2;
  clear: both;
}

.suscripcion .fondo .contenido .plan {
  background-color: rgba(255, 255, 255, 0.7);
  -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;
  min-height: 274px;
  margin-bottom: 30px;
  padding: 15px;
  position: relative;
  border: 2px solid #4b4a4a;
  border-style: dashed;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding-bottom: 30px;
}

.suscripcion .fondo .contenido .plan.fondo1 {
  background-image: url("/landing-suscripcion/img/fondo_blanco1.png");
  background-repeat: no-repeat;
  background-position: center right;
}

.suscripcion .fondo .contenido .plan.fondo2 {
  background-image: url("/landing-suscripcion/img/fondo_blanco2.png");
  background-repeat: no-repeat;
  background-position: center right;
}

.suscripcion .fondo .contenido .plan .titulo {
  color: #0099cc;
  font-weight: bold;
  font-size: 50px;
  width: 100%;
  text-transform: uppercase;
}

.suscripcion .fondo .contenido .plan .lista {
  list-style: none;
  margin-bottom: 15px;
}

.suscripcion .fondo .contenido .plan .lista li {
  width: 100%;
  font-size: 25px;
  font-family: 'Book Antiqua Bold';
  line-height: 1.2;
}

.suscripcion .fondo .contenido .plan .lista li .tarjeta {
  display: none;
}

.suscripcion .fondo .contenido .plan .aclaracion {
  position: absolute;
  font-family: 'Book Antiqua Bold';
  font-size: 20px;
  bottom: 3px;
}

.suscripcion .fondo .contenido .plan .precio {
  width: 100%;
  text-align: center;
}

.suscripcion .fondo .contenido .plan .precio span {
  font-size: 72px;
  background: -webkit-linear-gradient(#4caae2, #0a6fa2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.suscripcion .fondo .contenido .plan .p_mes {
  font-size: 30px;
  font-family: 'FranklinGothicURWComBoo';
}

.suscripcion .fondo .left_div {
  padding: 0 10px;
  overflow: hidden;
  margin-left: 20px;
}

.suscripcion .fondo .left_div .left-titulo {
  color: #0099cc;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Book Antiqua Bold';
  float: left;
  clear: both;
}

.suscripcion .fondo .left_div .left-texto {
  color: white;
  font-family: 'Book Antiqua Bold';
  float: left;
  clear: both;
}

.suscripcion .fondo-2 .campos{
  background-color: #416194;
  border: none;
  margin: 0px 5px;
  padding: 5px;
  color: white;
  height: 40px;
  width: 25%;
}

.suscripcion .fondo-2 .campos::placeholder{
  color: white;
  font-size: 14px;
}

.suscripcion .gris {
  max-width: 1600px;
  max-height: 1498px;
  margin: auto;
  background: #999999;
  background: -moz-linear-gradient(top, #999999 0%, #d1d1d1 0%, #676767 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #999999), color-stop(0%, #d1d1d1), color-stop(100%, #676767));
  background: -webkit-linear-gradient(top, #999999 0%, #d1d1d1 0%, #676767 100%);
  background: -o-linear-gradient(top, #999999 0%, #d1d1d1 0%, #676767 100%);
  background: -ms-linear-gradient(top, #999999 0%, #d1d1d1 0%, #676767 100%);
  background: linear-gradient(to bottom, #999999 0%, #d1d1d1 0%, #676767 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#676767', GradientType=0 );
  padding: 84px 0;
  border-top: 6px solid #69b6e6;
}

.suscripcion .gris .impresa {
  background-color: white;
  -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;
  flex-wrap: wrap;
  min-height: 130px;
  padding: 15px;
  border: 2px solid #4b4a4a;
  border-style: dashed;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: center;
}

.suscripcion .gris .impresa * {
  display: inline-block;
}

.suscripcion .gris .impresa .diario {
  margin: 0 auto 20px auto;
  position: relative;
}

.suscripcion .gris .impresa .btn--generico {
  margin: auto;
}

.suscripcion .gris .impresa p {
  font-family: 'FranklinGothicURWComBoo';
  padding-left: 20px;
  font-size: 30px;
  width: 100%;
}

.suscripcion .cabecera .cont-right img.white-phone{
display: none;
}

.cont-main{
  display: flex;
  margin-left: 5%;
}

.cont-left{
  width: 60%;
}

.cont-right{
  width: 40%;
}

.cont-right .pc{
  position: relative;
  bottom: -35px;
}

.cont-left img.phone{
  width: 40%;
  position: relative;
  top: 210px;
}



.planes{
  background-color: white;
}

/* ESTILOS NUEVA PAGINA DE SUSCRIPCION */


/* FIN DE ESTILOS NUEVA PAGINA DE SUSCRIPCION */

.text-new-title{
  text-align: center;
  font-size: 20px;
  padding-top: 25px;
}
@media (min-width: 1024px){
  .text-new-title{
    font-size: 38px;
    padding-top: 40px;
  }

}
.cont-planes{
  justify-content: center;
  display: inline;
  text-align: center;
}

.planes .cont-planes .tablas{
  width: 100%;
  justify-content: center;
  display: flex;
  margin: 70px auto 0 auto;
  max-width: 1104px;
}

table.acceso-digital {
  background-color: #CBCBCB;
  text-align: center;
  border-collapse: collapse;
  margin: 22px 0px;
  flex: 0 0 33.33333%;
  border-radius: 5px 0px 0px 5px;
}
table.acceso-digital td, table.acceso-digital th {
  border: 1px solid #969696;
  vertical-align: middle;
  border-radius: 5px 0px 0px 0px;
}
table.acceso-digital tbody td {
  font-size: 23px;
  color: #474747;
  border: 1px solid #A3A3A3;
  border-left: none;
  border-right: none;
  height: 87px;
}
table.acceso-digital thead {
  background: rgba(160,160,160,1);
  background: -moz-linear-gradient(top, rgba(160,160,160,1) 0%, rgba(106,106,106,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(160,160,160,1)), color-stop(100%, rgba(106,106,106,1)));
  background: -webkit-linear-gradient(top, rgba(160,160,160,1) 0%, rgba(106,106,106,1) 100%);
  background: -o-linear-gradient(top, rgba(160,160,160,1) 0%, rgba(106,106,106,1) 100%);
  background: -ms-linear-gradient(top, rgba(160,160,160,1) 0%, rgba(106,106,106,1) 100%);
  background: linear-gradient(to bottom, rgba(160,160,160,1) 0%, rgba(106,106,106,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a0a0a0', endColorstr='#6a6a6a', GradientType=0 );
  border-radius: 5px 0px 0px 0px;
}
table.acceso-digital thead th {
  font-size: 33px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  padding: 14px 0px 5px 0px;
  LINE-HEIGHT: 1.4;
  height: 105px;
  border: 1px solid #A3A3A3;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 5px 0px 0px 0px;
}

table.acceso-digital td.lastchild{
  height: 120px;
  border-bottom: none;
}

table.plan-basico {
  background-color: #E0E0E0;
  text-align: center;
  border-collapse: collapse;
  margin: 22px 0px;
  flex: 0 0 33.33333%;
}
table.plan-basico td, table.plan-basico th {
  border: 1px solid #E7E7E7;
  padding: 10px 0px;
}
table.plan-basico tbody td {
  font-size: 44px;
  color: #474747;
}

table.plan-basico tbody td.last-child{
  padding: 26px 0px;
}


table.plan-basico thead {
  background: rgba(35,84,140,1);
  background: -moz-linear-gradient(top, rgba(35,84,140,1) 0%, rgba(60,114,172,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(35,84,140,1)), color-stop(100%, rgba(60,114,172,1)));
  background: -webkit-linear-gradient(top, rgba(35,84,140,1) 0%, rgba(60,114,172,1) 100%);
  background: -o-linear-gradient(top, rgba(35,84,140,1) 0%, rgba(60,114,172,1) 100%);
  background: -ms-linear-gradient(top, rgba(35,84,140,1) 0%, rgba(60,114,172,1) 100%);
  background: linear-gradient(to bottom, rgba(35,84,140,1) 0%, rgba(60,114,172,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23548c', endColorstr='#3c72ac', GradientType=0 );
  border-radius: 2px 0px 0px 0px; 
}
table.plan-basico thead th {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  padding: 0px;
  line-height: 1;
  padding: 12px 0px 5px 0px;
  border: 0.5px solid #E7E7E7;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 2px 0px 0px 0px;
}


.tablas table.plan-basico tbody{
  -webkit-box-shadow: -3px 2px 16px -5px rgba(0,0,0,0.75);
  -moz-box-shadow: -3px 2px 16px -5px rgba(0,0,0,0.75);
  box-shadow: -3px 2px 16px -5px rgba(0,0,0,0.75);
}

table.plan-basico thead th p{
  font-size: 62px;
}


table.plan-basico thead th p span.signo{
  font-size: 40px ;
  vertical-align: top;
}

table.plan-basico thead th p span.adjunto{
  font-size: 20px;
  text-transform: lowercase;
}

table.plan-full {
  background-color: #FFFFFF;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
table.plan-full td, table.plan-full th {
  border: 1px solid #DBDBDB;
  padding: 10px 0px;
  border-left: none;
    border-right: none;
}
table.plan-full tbody td {
  font-size: 46px;
  color: #474747;
}

.advertencia{
  font-size: 15px;
  color: white;
  padding: 3px 5px;
  width: fit-content;
  margin: 10px auto 0 auto;
  font-weight: 700;
} 

table.plan-full tbody td.last-child{
  padding: 26px 0px;
}

.item-full{
  -webkit-box-shadow: 0px 5px 6px -1px rgba(0,0,0,0.57);
-moz-box-shadow: 0px 5px 6px -1px rgba(0,0,0,0.57);
box-shadow: 0px 5px 6px -1px rgba(0,0,0,0.57);
height: fit-content;
}


.item-basico p{
  font-size: 66px;
  line-height: 1;
}

.item-full p{
  font-size: 66px;
  line-height: 1;
}


.item-basico p span.signo{
  font-size: 40px ;
  vertical-align: top;
}
.item-basico span.adjunto{
  font-size: 30px;
  text-transform: lowercase;
}


.item-full p span.signo{
  font-size: 40px ;
  vertical-align: top;
}

.item-full span.adjunto{
  font-size: 30px;
  text-transform: lowercase;
}

.item-full .firts-child{
  border-top: none;
}


table.plan-full thead th {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  padding: 0px;
  line-height: 1;
  padding: 5px 0px;
}

table.plan-full thead th p span{
  font-size: 36px;
}

table.plan-full thead th p span.adjunto{
  font-size: 14px;
  text-transform: lowercase;
}

table .img-table{
  width: 12%;
}

.tablas-mobile{
  width: 80%;
  margin: 0 auto;
  display: none;
}

.tablas-mobile .cuerpo,
.tablas-mobile .cuerpo-mobile{
  width: 100%;
}

.tablas-mobile .item-basico{
  -webkit-box-shadow: 0px 5px 6px -1px rgba(0,0,0,0.57);
  -moz-box-shadow: 0px 5px 6px -1px rgba(0,0,0,0.57);
  box-shadow: 0px 5px 6px -1px rgba(0,0,0,0.57);
}

.tablas-mobile .item-basico img,
.tablas-mobile .item-full img
{
  width: 100%;
}

.tablas-mobile .item-basico .cuerpo-mobile table.plan-basico tbody td{
  border: 1px solid ;
  border: 1px solid #DBDBDB;
  border-left: none;
  border-right: none;
}

.tablas-mobile .item-full table.plan-full tbody td {
  font-size: 18px;
  border: 1px solid #DBDBDB;
  border-left: none;
  border-right: none;
}

.tablas-mobile .item-full table.plan-full tbody td.firts-child {
  border-top: none;
}

.tablas-mobile .item-basico .cuerpo-mobile table.plan-basico{
  background-color: white;
  width: 100%;
  font-family: 'Book Antiqua';
}

.tablas-mobile .item-basico .cuerpo-mobile table.plan-basico tbody td {
  font-size: 18px;
  border-top: none;
}

.tablas-mobile .item-basico,
.tablas-mobile .item-full{
  margin: 40px 0px;
}

.tablas-mobile .header,
.tablas .header{
  position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}


.tablas-mobile .texto,
.tablas .texto{
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 33px;
    width: 100%;
    color: white;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
}

.tablas-mobile .item-full .texto{
  top: 45%;
}

table thead,
.item-full .header,
table.plan-basico,
.item-basico .header,
.tablas-mobile .last-child,
.item-full .last-child{
  font-family: Helvetica, Arial, sans-serif;
}
 

.preguntas-mobile{
  background-color: #416093;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid white;
  width: 100%;
  font-size: 20px;
  padding: 5px 0px;
}

.preguntas-mobile a{
color: white;
vertical-align: middle;
}


.cont-planes .aclaracion{
  text-align: left;
  width: 100%;
  max-width: 1070px;
  margin: auto;
  font-size: 24px;
}

.cont-planes .terminos{
  margin: 50px 0px;
  font-size: 24px;
}

.cont-planes .terminos a{
  color: #474747;
}

.footer-suscripcion{
  display: flex;
  justify-content: space-between;
  color: white;
  padding: 5px 2%;
  font-size: 22px;
}

.footer-suscripcion .text-right{
  margin-top: 30px;
}

.footer-suscripcion .text-right p a{
  color: white;
  font-size: 22px;
}


.soporte.text-right {
  margin: 0 20px;
}

.soporte.text-right a {
  color: #313131;
  font-size: 16pt;
}





@media (max-width:1250px){
  .cont-left img.phone {
    width: 40%;
    position: relative;
    top: 160px;
}
.suscripcion .fondo-2 .cont-fondo a {
  font-size: 22px;
}
}

@media (max-width:1100px){
  .planes .cont-planes .tablas {
    max-width: 1070px;
    margin: 0 auto;
}
}

@media (max-width:1000px){
  .cont-left img.phone {
    width: 40%;
    position: relative;
    top: 160px;
}

.tablas .item-full .texto{
  top: 45%;
}

.item-full p {
  font-size: 60px;
  line-height: 1;
}



.suscripcion .fondo .cont-titulo .titulo_principal {
  font-size: 48px;
  line-height: 1;
}
.suscripcion .fondo .cont-main .intro {
  font-size: 28px;
}
.suscripcion .fondo-2 .cont-fondo a {
  font-size: 19px;
}
.planes .cont-planes .tablas {
  width: 90%;
}
table.acceso-digital tbody td {
  font-size: 18px;
}
.footer-suscripcion {
  font-size: 18px;
}
.footer-suscripcion .text-right p a {
  font-size: 18px;
}
.footer-suscripcion .text-right {
  margin-top: 25px;
}
.cont-planes .terminos {
  font-size: 20px;
}
.cont-planes .aclaracion {
  width: 95%;
}
table.plan-basico tbody td {
  font-size: 36px;
}
.suscripcion .btn--colored-1,
.suscripcion .btn--colored-2{
  color: white;
  border: none;
  font-size: 20px;
  min-width: 12%;
}
table.acceso-digital thead th,
table.plan-basico thead th {
  font-size: 30px;
  }
  table.acceso-digital td.lastchild {
    height: 112px;
}
table.plan-full tbody td {
  font-size: 42px;
}
table.acceso-digital tbody td {
  height: 76px;
}

}


@media (max-width: 750px) {
  .jconfirm-box {
    width: 95% !important;
  }
  .cont-left img.phone {
    width: 25%;
    position: relative;
    top: 115px;
}

.suscripcion .fondo-2{
  min-height: 30px;
}

.suscripcion .fondo-2 .cont-fondo a {
  font-size: 20px;
}
.tablas-mobile{
  display: block;
}
.suscripcion .cabecera .cont-right img.white-phone{
  display:block;
  margin: 25px 0px;
  }
.suscripcion .fondo-2 .cont-fondo {
    width: 100%;
    margin: auto;
  }
  .suscripcion .fondo-2 {
    padding: 0px 5px;
  }
  .cont-left img.phone {
   display: none;
}
.suscripcion .fondo-2 .campos {
  width: 28%;
}
.suscripcion .fondo-2{
  min-width: none;
}
.suscripcion .fondo-3 {
  justify-content: center;
}
.planes .cont-planes .tablas {
  display: none;
}
.cont-right .pc {
  display: none;
}
.cont-planes .aclaracion {
  width: 80%;
  font-size:16px;
}


.footer-suscripcion.fondo{
  justify-content: center;
  background-color: #4372c0;
  font-size: 21px;
}
.footer-suscripcion .text-left{
  text-align: center;
}
.footer-suscripcion .text-right{
  display: none;
}
.suscripcion .fondo .cont-titulo .titulo_principal {
  font-size: 31px;
}
.suscripcion .fondo .cont-main .intro {
  font-size: 22px;
  line-height: 1.4;
}
.suscripcion .cont-left{
  width: 60%;
}



}

@media (max-width: 485px) {
  .item-6 {
    overflow: hidden;
    position: static !important;
  }
  .soporte.text-right {
      margin: 0 20px 20px 20px;
  }
  .cont-planes .terminos {
    width: 80%;
    margin: 100px auto 0 auto;
    font-size:16px;
    line-height: 1.2;

}
}

@media (max-width: 400px) {
  form#formDireccionCambio label {
    font-size: 18px !important;
    width: 90px !important;
  }
  .footer-suscripcion.fondo {
    font-size: 20px;
}
.suscripcion .fondo-2 .cont-fondo a {
  font-size: 16px;
}
}

@media (min-width: 750px) {
  .suscripcion .btn--back {
    display: none;
  }
  .suscripcion .contenido {
    padding: 0 10px;
  }

  .suscripcion .fondo .contenido .candado {
    top: 0;
    left: -40px;
    width: 18%;
  }
  .suscripcion .fondo .contenido .titulo_principal {
    text-align: left;
    float: left;
    padding-left: 0px;
    font-size: 50px;
  }
  .suscripcion .fondo .contenido .text-right {
    padding-top: 62px;
  }
  .suscripcion .fondo .contenido .intro {
    font-size: 24px;
    clear: both;
  }
  .suscripcion .fondo .contenido .plan .texto {
    width: 70%;
    float: left;
  }
  .suscripcion .fondo .contenido .plan .texto .lista li {
    position: relative;
    font-size: 34px;
    width: 76%;
  }
  .suscripcion .fondo .contenido .plan .texto .lista li .tarjeta {
    display: block;
    position: absolute;
    top: -22px;
    right: -147px;
  }
  .suscripcion .fondo .contenido .plan .texto .tarjeta {
    display: none;
  }
  .suscripcion .fondo .contenido .plan .precio {
    width: 30%;
    float: right;
  }
  /*
  .suscripcion .left_div {
    position: absolute;
    left: 20px;
    bottom: 20px;
  }
  */
  .suscripcion .left_div .btn--back {
    display: block !important;
  }
  .suscripcion .gris .impresa {
    flex-wrap: nowrap;
  }
  .suscripcion .gris .impresa .diario {
    height: 74px;
    margin: 0 268px 20px 59px;
  }
  .suscripcion .gris .impresa .diario img {
    position: absolute;
    max-width: initial;
    top: 50%;
    transform: translateY(-50%);
  }
  .suscripcion .gris .impresa .btn--generico {
    margin: initial;
  }
  .suscripcion .gris .impresa p {
    width: auto;
  }
  .preguntas-mobile{
    display: none;
   }
}

@media (min-width: 1000px) {
  .suscripcion .fondo .contenido .plan .texto .lista li {
    width: 80%;
  }
  .suscripcion .fondo .contenido .plan .texto .lista li .tarjeta {
    display: block;
    position: absolute;
    top: -22px;
    right: -175px;
  }


}

@media (min-width:1240px){

}


@media (min-width: 1600px) {
  .suscripcion .fondo .contenido .candado {
    top: 0;
    left: 68px;
    width: 18%;
  }

}

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.float-right {
  float: right;
}

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

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

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

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

/**
  * Clear floats.
  * http://bit.ly/1e3YaBH
  */
.btn-group:after {
  content: "";
  display: table;
  clear: both;
}

form#formDireccionCambio label {
  font-size: 21px;
  font-family: 'FranklinGothicURWComBoo';
  line-height: 1.2;
  width: 110px;
  display: inline-block;
} 

.acepta_terminos {
    text-align: center;
    color: white;
    font-size: 16pt;
    margin-top: -20px;
    margin-bottom: 20px;
}

.acepta_terminos a {
    color: #313131;
}