/*!
 * Styles v1.0.0 (https://tecalis.com/)
 * Author: Alberto Fernández
 * Copyright 2020 Tecalis */


/* LISTADO ESTILOS MOVISTAR
*************************************************************************************
1.- FONTS BY TELEFONICA 
2.- GENERAL
3.- NAVBAR
4.- BUTTONS
5.- SHAPES
6.- CONTENTS
7.- CHECKS
8.- FORMS
9.- KYC
10.- CAROUSEL / TARIFAS
11.- CARDS
*************************************************************************************/



/* 1.- FONTS BY TELEFONICA 
*************************************************************************************/

/* Extra Light */
@font-face {
	font-weight: 100;
	font-style: normal;
	font-family: 'Telefonica';
	src:url('../fonts/ExtraLight/TelefonicaWeb-ExtraLight.eot') format('embedded-opentype'),
		url('../fonts/ExtraLight/TelefonicaWeb-ExtraLight.woff') format('woff'),
		url('../fonts/ExtraLight/TelefonicaWeb-ExtraLight.svg') format('svg');
}

/* Light */
@font-face {
	font-weight: 300;
	font-style: normal;
	font-family: 'Telefonica';
	src:url('../fonts/Light/TelefonicaWeb-Light.eot') format('embedded-opentype'),
		url('../fonts/Light/TelefonicaWeb-Light.woff') format('woff'),
		url('../fonts/Light/TelefonicaWeb-Light.svg') format('svg');
}

/* Regular */
@font-face {
	font-weight: 400;
	font-style: normal;
	font-family: 'Telefonica';
	src:url('../fonts/Regular/TelefonicaWeb-Regular.eot') format('embedded-opentype'),
		url('../fonts/Regular/TelefonicaWeb-Regular.woff') format('woff'),
		url('../fonts/Regular/TelefonicaWeb-Regular.svg') format('svg');
}

/* Bold */
@font-face {
	font-weight: 600;
	font-style: normal;
	font-family: 'Telefonica';
	src:url('../fonts/Bold/TelefonicaWeb-Bold.eot') format('embedded-opentype'),
		url('../fonts/Bold/TelefonicaWeb-Bold.woff') format('woff'),
		url('../fonts/Bold/TelefonicaWeb-Bold.svg') format('svg');
}

/************************************************************************************/



/* 2.- GENERAL 
*************************************************************************************/

body{
    margin: 0;
	padding: 0;
	width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	font-family: 'Telefonica' !important;
	transition: .5s;
	background: rgba( 233, 234, 232, 0.4);
}

.masthead {
  height: 100vh;
  min-height: 500px;
  background-image: url('../../assets/img/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.masthead h1{
  color: #313235;
}

.masthead-mobile {
  height: 100vh;
  min-height: 500px;
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.masthead-mobile h1{
  color: #313235;
  font-size: 35px;
}

a{
	color: rgba(255, 255, 255, 1);
}

a:hover,
a:active,
a:focus{
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}

@media (min-width: 876px) {
  .container {
    max-width: 840px !important;
  }
}

@media (min-width: 1068px) {
  .container {
    max-width: 1020px !important;
  }
}

@media (max-width: 1068px) {
  .display-api{
  display: none;
}
}

@media (min-width: 1292px) {
  .container {
    max-width: 1260px !important;
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1440px !important;
  }
}


.bg-azul{
    background: rgba(0, 169, 224, 1);
}

.bg-azul-oscuro{
    background: rgba(15, 35, 51, 1);
}

.azul{
    color: rgba(0, 169, 224, 1);
}

a.azul {
    color: rgba(0, 169, 224, 1);
}

a:hover.azul {
    color: rgba(0, 169, 224, 1);
}

.verde{ 
    color: rgba(91, 197, 0, 1);
}

a.verde:hover,
a.verde:active,
a.verde:focus{ 
    color: rgb(91, 197, 0, 1);
}

.morado{
	color: rgba(149, 75, 151, 1);
}

.font-weight-light{
	font-weight: 300;
	letter-spacing: .25px;
}

.font-weight-regular{
	font-weight: 400;
	letter-spacing: .25px;
}

.font-weight-bold{
	font-weight: 600;
	letter-spacing: .25px;
}

@media (min-width: 1200px){

.container, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl {
    max-width: 1200px;
    } 
}

@media (min-width: 768px){
    .desktop {
    	display: none;
    }
    .line-a,
    .line-b {
        display: none;
    }
}

@media (max-width: 767px){
    .mobile {
    	display: none;
    }
    body{
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Telefonica' !important;
    transition: .5s;
    background: rgba( 255, 255, 255, 1);
    }

}

@media (min-width: 1200px){
    .bg-desktop {
        display: none !important;
    }
}

@media (max-width: 1199px){
    .bg-mobile {
        display: none;
    }
    .navbar-brand-img-p {
    max-height: 3.4rem;
    width: auto;
    margin-left: 10px !important;
}
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: #019DF4;
  box-shadow: none;
  outline: 0 none;
  background: #fff;
}

/************************************************************************************/



/* 3.- NAVBAR 
*************************************************************************************/

.navbar-brand-img {
    max-height: 2.4rem;
    width: auto;
}

.navbar-brand-img-p {
    max-height: 3.4rem;
    width: auto;
}

.modal-title {
	margin-top: -7px;
	font-size: 24px;
    color: #313235;
}

@media (max-width: 767px){

.navbar {
    padding: .5rem 1rem;
    }

.navbar-brand-img {
    max-height: 2rem;
    width: auto;
}
}

/************************************************************************************/



/* 4.- BUTTONS 
*************************************************************************************/

.btn{
    padding: .2rem .1rem .4rem !important;
}

.btn:hover {
    color: #fff;
    text-decoration: none;
}

.des {
  color: #fff;
  background-color:  #B6B7B7;
}

.act {
  color: #ccc;
  background-color: rgba(0, 169, 224, 1);
}


.btn-azul{
	color: rgba(255, 255, 255, 1);
	border: rgba(0, 169, 224, 1);
	background: rgba(0, 169, 224, 1);
	box-shadow: none;
	letter-spacing: .25px;
	font-size: 25px;
    width: 200px;
    border-radius: 55px !important;
}

.btn-azul:hover,
.btn-azul:focus{
	color: rgba(255, 255, 255, 1);
	border: rgba(0, 169, 224, 1);
	background: rgba(0, 169, 224, 1);
	box-shadow: none;
}

.btn-grey{
    color: rgba(255, 255, 255, 1);
    border: rgba(0, 169, 224, 1);
    background: rgba(0, 169, 224, 1);
    box-shadow: none;
    letter-spacing: .25px;
    font-size: 20px;
    border-radius: 55px !important;
}

.btn-grey:hover,
.btn-grey:focus.
.btn-grey:active{
    color: rgba(255, 255, 255, 1);
    border: rgba(0, 169, 224, 1);
    background: rgba(0, 169, 224, 1);
    box-shadow: none;
}

.scan{
	font-size: 18px !important;
}


.btn-verde{
	color: rgba(255, 255, 255, 1);
	border: #5CB615;
	background: #5CB615;
	box-shadow: none;
	font-size: 18px;
    font-weight: 400;
    height: 48px;
	width: 120px;
    border-radius: 4px !important;
    padding: 8px 8px 8px 8px !important;
    font-weight: 400 !important;
}

.btn-verde:hover,
.btn-verde:focus,
.btn-verde:active{
	color: rgba(255, 255, 255, .7);
	border: #499010;
	background: #499010;
	box-shadow: none;
}


.btn-verde-block{
    color: rgba(255, 255, 255, 1);
    border: #5CB615;
    background: #5CB615;
    box-shadow: none;
    letter-spacing: .25px;
    font-size: 18px;
    height: 48px;
    font-weight: 400;
    width: 100%;
    border-radius: 4px !important;
    padding: 8px 8px 8px 8px !important;
}

.btn-verde-block:hover,
.btn-verde-block:focus,
.btn-verde-block:active{
    color: rgba(255, 255, 255, .7);
    border: #499010;
    background: #499010;
    box-shadow: none;
}

.btn-verde-outline{
    color: #5CB615;
    border: 1px solid #5CB615 !important;
    background: transparent;
    box-shadow: none;
    letter-spacing: .25px;
    font-size: 18px;
    height: 48px;
    font-weight: 400;
    width: 100%;
    border-radius: 4px !important;
    padding: 8px 8px 8px 8px !important;
}

.btn-verde-outline:hover,
.btn-verde-outline:focus,
.btn-verde-outline:active{
    color: #499010;
    border: 1px solid #499010 !important;
    background: transparent;
    box-shadow: none;
}


.btn-blanco{
    color: rgba(0, 169, 224, 1);
    border: #ffffff;
    background: #ffffff;
    box-shadow: none;
    letter-spacing: .25px;
    font-size: 18px;
    height: 48px;
    width: 120px;
    border-radius: 4px !important;
    padding: 8px 8px 8px 8px !important;
}

.btn-blanco:hover,
.btn-blanco:focus,
.btn-blanco:active{
    color: rgba(0, 169, 224, 1);
    border: #ffffff;
    background: #ffffff;
    box-shadow: none;
}

.btn-blanco-block{
    color: rgba(0, 169, 224, 1);
    border: #ffffff;
    background: #ffffff;
    box-shadow: none;
    letter-spacing: .25px;
    font-size: 18px;
    height: 48px;
    width: 100%;
    border-radius: 4px !important;
    padding: 8px 8px 8px 8px !important;
}

.btn-blanco-block:hover,
.btn-blanco-block:focus,
.btn-blanco-block:active{
    color: rgba(0, 169, 224, 1);
    border: #ffffff;
    background: #ffffff;
    box-shadow: none;
}

.btn-verde-offer{
    color: rgba(255, 255, 255, 1);
    border: rgba(91, 197, 0, 1);
    background: rgba(91, 197, 0, 1);
    box-shadow: none;
    letter-spacing: .25px;
    font-size: 25px;
    border-radius: 55px !important;
    margin-top: 25px;
}

.btn-verde-offer:hover,
.btn-verde-offer:focus,
.btn-verde-offer:active{
    color: rgba(255, 255, 255, 1);
    border: rgba(236, 104, 56, 1);
    background: rgba(236, 104, 56, 1);
    box-shadow: none;
}


.btn-morado{
	color: rgba(255, 255, 255, 1);
	border: rgba(149, 75, 151, 1);
	background: rgba(149, 75, 151, 1);
	box-shadow: none;
	letter-spacing: .25px;
	font-size: 20px;
}

.btn-morado:hover,
.btn-morado:focus,
.btn-morado:active{
	color: rgba(255, 255, 255, 1);
	border: rgba(149, 75, 151, .8);
	background: rgba(149, 75, 151, .8);
	box-shadow: none;
}

.badge-morado {
    color: #fff;
    background: rgba(149, 75, 151, 1);
    line-height: 15px;
}

.badge-float-outside {
    top: -1.3rem;
    right: 3rem;
}





.btn-cancel{
    border: 1px solid #5CB615;
    color: #5CB615;
    background: transparent;
    box-shadow: none;
    font-size: 18px;
    font-weight: 400;
    height: 48px;
    width: 120px;
    border-radius: 4px !important;
    padding: 8px 8px 8px 8px !important;
    font-weight: 400 !important;
}

.btn-cancel:hover,
.btn-cancel:focus,
.btn-cancel:active{
    color: #499010;
    border: 1px solid #499010;
    background: transparent;
    box-shadow: none;
}

.btn-cancel-block{
    border: 1px solid #5BB514;
    color: #5BB514;
    background: transparent;
    box-shadow: none;
    letter-spacing: .25px;
    font-size: 18px;
    height: 48px;
    width: 100%;
    border-radius: 4px !important;
    padding: 8px 8px 8px 8px !important;
}

.btn-cancel-block:hover,
.btn-cancel-block:focus,
.btn-cancel-block:active{
    color: #499010;
    border: 1px solid #499010;
    background: transparent;
    box-shadow: none;
}



.btn-idioma{
    color: #161c2d;
    border: #f5f5f5;
    background: #f5f5f5;
    box-shadow: none;
    letter-spacing: .25px;
    font-size: 18px;
    width: 100%;
    border-radius: 4px !important;
    margin-top: 5px;
    margin-bottom: 5px;
}

.btn-idioma:hover,
.btn-idioma:focus,
.btn-idioma:active{
    color:  #161c2d;
    border: #f5f5f5;
    background: #f5f5f5;
    box-shadow: none;
}

.flotante-mobile{
    position: fixed;
    bottom: 0;
	z-index: 99;
	padding: 12px 17px;
	display: block;
    text-align: center;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    border: #5BB514;
    background: #5BB514;
    font-family: 'Telefonica' !important;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: .25px;
    border-radius: 4px;
}

.flotante-mobile:hover,
.flotante-mobile:focus,
.flotante-mobile:active{
    border: #5BB514;
    background: #5BB514;
    color: rgba(255, 255, 255, 1);
}

.flotante-mobile1{
    position: fixed;
    bottom: 0;
    z-index: 99;
    padding: 12px 17px;
    display: block;
    background: rgba(0, 169, 224, 1);
    text-align: center;
    width: 100%;
    color: rgba(255, 255, 255, 1);
    font-family: 'Telefonica' !important;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: .25px;
}

.flotante-mobile1:hover,
.flotante-mobile1:focus,
.flotante-mobile1:active{
    background: rgba(0, 169, 224, 1);
    color: rgba(255, 255, 255, 1);
}

.flotante-cancel{
    position: fixed;
    bottom: 55px;
    z-index: 99;
    padding: 12px 17px;
    border-top: 1px solid #f5f5f5;
    display: block;
    background: #f5f5f5;
    text-align: center;
    width: 100%;
    color: #161c2d;
    font-family: 'Telefonica' !important;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: .25px;
}

.flotante-cancel:hover,
.flotante-cancel:focus,
.flotante-calncel:active{
    background: #f5f5f5;
    color: #161c2d;
}

.flotante-desktop{
	position: fixed;
	bottom: 0;
	z-index: 99;
	padding: 15px 20px;
	display: block;
    text-align: center;
    width: 100%;
    border: #5BB514;
    background: #5BB514;
    font-family: 'Telefonica' !important;
    font-weight: 300;
    font-size: 25px;
    letter-spacing: .25px;
}


.flotante-desktop:hover,
.flotante-desktop:focus,
.flotante-desktop:active{
    border: #5BB514;
    background: #5BB514;
    color: rgba(255, 255, 255, 1);
}

.btn-continuar {
	margin-top: 30px;
	margin-bottom: 50px;
}

@media (min-width: 768px){

.flotante-mobile,
.flotante-mobile1,
.flotante-cancel{
	display: none;
    }

}

@media (max-width: 767px){

.flotante-desktop{
	display: none;
    }

}

/************************************************************************************/



/* 5.- SHAPES
*************************************************************************************/

.azul-forma{
    position: fixed; 
    left: 0px; 
    bottom: 40px;
    z-index: -1;
}

.verde-forma{
	position: fixed; 
	right: 0px; 
	top: 140px;
	z-index: -1;
}

.shape-grey{
    background: rgba( 233, 234, 232, 0.25);
    border-radius: 10px;
}

.shape-left {
    top: 0;
    right: 0;
    bottom: 0;
    left: -48px;
    position: absolute;
    z-index: 99999;
    transform: rotate(-1deg);
}

.blue-shape-1{
    position: absolute; 
    left: 10px; 
    top: 175px;
}

@media (max-width: 1499px){

.blue-shape-1{
    position: absolute; 
    left: 20px; 
    top: 165px;
    }
}

@media (max-width: 767px){

.shape-grey{
	background: rgba( 255, 255, 255, .1);
    }

}



/************************************************************************************/



/* 6.- CONTENTS 
*************************************************************************************/

.tarifa6{
    font-size: 23px !important; 
    line-height: 21.5px;
}

.tarifa6-footer{
    padding-top: 50px;
    margin-bottom: 30px;
}

.jumbotron{
	margin-top: 80px;
    background: rgba(255, 255, 255, .9);
    padding: 1rem 1rem;
}

.area-check p{
    color: #707070 !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    letter-spacing: -0.1px !important;
    line-height: 23px !important;
}

.registro p{
    color: #707070 !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    letter-spacing: -0.1px !important;
    margin-left: 8px;
    margin-top: 20px !important;
    line-height: 23px !important;
}

.conf p{
    color: #fff !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    letter-spacing: -0.1px !important;
    margin-left: 8px;
    margin-top: 20px !important;
    line-height: 23px !important;
}


.verificacion p{
    color: #707070 !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    letter-spacing: -0.1px !important;
    margin-left: 8px;
    margin-top: 10px !important;
    line-height: 23px !important;
}

.modal p{
    color: #707070 !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    letter-spacing: -0.1px !important;
    line-height: 23px;
}

.close:hover {
    outline: 0px !important;
    -webkit-appearance: none;
}

.black{color: #000; font-weight: 300;}

.text-link{
    font-weight: 400 !important;
    font-size: 18px;
    letter-spacing: -0.1px;
}

.jumbotron-line{
    margin-top: 10px;
    background: rgba(255, 255, 255, .9);
    padding: 1rem .5rem .5rem;
    border: 1px solid #f5f5f5;
    border-radius: 5px;
}

.bg-cover{
    margin-top: 80px;
}

@media (min-width: 1300px){
.w-cover {
    width: calc(100% + (100vw - 1040px)/ 2 + 80px);
 }
}

@media (max-width: 1299px){
.w-cover {
    width: calc(100% + (100vw - 1040px)/ 2 + 250px);
 }
}



.title-step{
	font-size: 24px;
    margin-top: 30px;
    color: #313235;
    font-weight: 300;
    letter-spacing: 0px;
}

.title-step-color{
	padding-top: 30px;
	letter-spacing: .25px;
	font-size: 35px;
	background: rgba(149, 75, 151, 1);
	padding: 1rem 1rem;
	width: 50%;
	margin: 0 auto;
	margin-top: 40px;
	color: #fff;
	border-top-left-radius: 0px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.condiciones{
    border: none;
    overflow: auto;
    padding: 10px;
    border-radius: 5px;
    background: #ffffff;
}

.condiciones p{
	color: rgba(80, 83, 90, 1);
	letter-spacing: .25px;
}

.info-iccid p a{
	color: #707070 !important;
	letter-spacing: -0.1px;
	font-size: 18px;
    margin-left: 7px;
    line-height: 28px;
}

.info-iccid-modal p{
	color: rgba(80, 83, 90, 1);
	letter-spacing: .25px;
	font-size: 20px;
	line-height: 28px;
}

a.text-grey{
	color: #707070 !important;
}

.spacing{
	letter-spacing: .5px;
}

.instrucciones-kyc {  
    margin-top: 35px;
	color: rgba(80, 83, 90, 1);
	letter-spacing: .25px;
	font-size: 20px;
	line-height: 28px;
}

#progressive {
    width: 100%;
    z-index: 15;
    margin-top: 45px;
    margin-left: -5px;
}

.progress {
    display: -webkit-box;
    display: flex;
    height: .45rem;
    overflow: hidden;
    font-size: .79688rem;
    background-color: #eee;
    border-radius: .5rem;
    box-shadow: none;
}

.four-sec-ease-in-out {
    -webkit-transition: width 4s ease-in-out;
    -moz-transition: width 4s ease-in-out;
    -ms-transition: width 4s ease-in-out;
    -o-transition: width 4s ease-in-out;
    transition: width 4s ease-in-out;
}

.progress-bar {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: rgba(0, 169, 224, 1);
    border: 2px solid rgba(0, 169, 224, 1);
}

.msg-ok{
    margin-top: 40px;
}

.msg-fail{
    margin-top: 30px;
}

.icon-ok{
    margin-top: 20px;
    width: 120px;
}

.icon-alert{
    margin-top: 20px;
    width: 72px;
}

.icon-alert2{
    margin-top: 15px;
    width: 80px;
}

.icon-fail{
    margin-top: 20px;
    width: 120px;
}

.title-ok{
    font-weight: 600;
    letter-spacing: .25px;
    margin-top: 30px;
    font-size: 25px;
}

.subtitle-ok{
    font-weight: 400;
    letter-spacing: .25px;
    font-size: 20px;
}

.final{
    min-height: 600px;
}

.home-title{
    margin-top: 130px;
}

@media (max-width: 767px){

    .icon-ok{
    margin-top: 20px;
    width: 120px;
    margin-bottom: 20px;
}

.icon-alert{
    margin-top: 20px;
    width: 64px;
     margin-bottom: 40px;
}

.icon-alert2{
    margin-top: 20px;
    width: 70px;
     margin-bottom: 40px;
}



.card p {
    margin-top: 0;
    margin-bottom: .5rem;
}

.tarifa6{
    font-size: 18px !important; 
    margin-top: 4px;
    padding-bottom: 4px;
}

.tarifa6-footer{
    padding-top: 25px;
    margin-bottom: 34px;
}

.title-ok{
    font-weight: 600;
    letter-spacing: .25px;
    margin-top: 30px;
    font-size: 20px;
}

.subtitle-ok{
    font-weight: 400;
    letter-spacing: .25px;
    font-size: 17px;
}


.home-title{
    margin-top: 20px;
}

.final{
    min-height: 500px;
}

.icon-ok{
    margin-top: 15px;
    width: 80px;
    }

.title-step{
	letter-spacing: .25px;
	font-size: 25px;
    margin-top: 0;
    margin-top: 0px;
    }

.title-step-color{
	letter-spacing: .25px;
	font-size: 25px;
	background: rgba(149, 75, 151, 1);
	padding: 1rem 0.2rem;
	width: 100%;
	margin: 0 auto;
	margin-top: 1px;
	color: #fff;
	border-top-left-radius: 0px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
    }

.condiciones{
    border: none;
    overflow: auto;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    background: #ffffff;
    font-size: 15px;
    line-height: 23px;
    }


.jumbotron{
	margin-top: 80px;
    }


.instrucciones-kyc {  
	color: rgba(80, 83, 90, 1);
	letter-spacing: .25px;
	margin-top: -13px;
	font-size: 17px;
	line-height: 25px;
}

.info-iccid p{
	margin-top: 10px;
	color: #707070;
	letter-spacing: .25px;
	font-size: 17px;
	line-height: 28px;
    }

.info-pers{
    font-size: 16px;
    color: #313235 !important;
    }

}

.info-pers{
    color: #313235 !important;
    }

/************************************************************************************/



/* 7.- CHECKS 
*************************************************************************************/

.area-check{
	margin-top: 0px;
}

[class*="icheck-"] {
    min-height: 18px;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    padding-left: 0px;
}

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

.icheck-inline + .icheck-inline {
    margin-left: .75rem;
    margin-top: 6px;
    }

[class*="icheck-"] > label {
    padding-left: 29px !important;
    min-height: 22px;
    line-height: 25px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    letter-spacing: .25px;
    color: rgba(80, 83, 90, 0.9);
    font-size: 17px;

}

[class*="icheck-"] > input:first-child {
    position: absolute !important;
    opacity: 0;
    margin: 0;
}

[class*="icheck-"] > input:first-child:disabled {
    cursor: default;
}

[class*="icheck-"] > input:first-child + label::before,
[class*="icheck-"] > input:first-child + input[type="hidden"] + label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 18px;
    height: 18px;
    border: none;
    background: #fff;
    border-radius: 0px;
    margin-left: -27px;
    border-radius: 0px;
    margin-top: 4px;
    border: 1px solid #999;
}

[class*="icheck-"] > input:first-child:checked + label::after,
[class*="icheck-"] > input:first-child:checked + input[type="hidden"] + label::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 7px;
    height: 9px;
    border: solid 2px #fff;
    border-left: none;
    border-top: none;
    transform: translate(7.75px, 5px) rotate(45deg);
    -ms-transform: translate(7.75px, 5px) rotate(45deg);
}

[class*="icheck-"] > input[type="radio"]:first-child + label::before,
[class*="icheck-"] > input[type="radio"]:first-child + input[type="hidden"] + label::before {
    border-radius: 50%;
}

[class*="icheck-"] > input:first-child:not(:checked):not(:disabled):hover + label::before,
[class*="icheck-"] > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
    border-width: 2px;
}

[class*="icheck-"] > input:first-child:disabled + label,
[class*="icheck-"] > input:first-child:disabled + input[type="hidden"] + label,
[class*="icheck-"] > input:first-child:disabled + label::before,
[class*="icheck-"] > input:first-child:disabled + input[type="hidden"] + label::before {
    pointer-events: none;
    cursor: default;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

.icheck-default > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-default > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
    border: 1px solid #999;
}

.icheck-default > input:first-child:checked + label::before,
.icheck-default > input:first-child:checked + input[type="hidden"] + label::before {
   border: 1px solid #999;
}

.icheck-default > input:first-child:checked + label::after,
.icheck-default > input:first-child:checked + input[type="hidden"] + label::after {
    border: 1px solid #999;
}

.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
    border: 1px solid #999;
}

.icheck-primary > input:first-child:checked + label::before,
.icheck-primary > input:first-child:checked + input[type="hidden"] + label::before {
    background-color: #5BC500;
    border-color: #5BC500;
}

@media (max-width: 767px){

 [class*="icheck-"] > label {
    padding-left: 29px !important;
    min-height: 22px;
    line-height: 23px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    letter-spacing: .25px;
    color: rgba(80, 83, 90, 0.9);
    font-size: 15px;
    }  

  .area-check{
    margin-top: -10px;
}

}



/************************************************************************************/



/* 8.- FORMS
*************************************************************************************/

* {box-sizing: border-box;}

.form-inline {  
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin-top: 35px;
}

.form-inline input {
    margin: 5px 10px 5px 0;
   
}

.input-group-text {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: .3125rem .55rem;
    margin-bottom: 0;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.6;
    color: #86888C;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.input-group>.custom-select:not(:first-child), .input-group>.form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group>.custom-select:not(:last-child), .input-group>.form-control:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.notifications-error{
    color: #FF374A !important; letter-spacing: -0.1px; font-weight: 400; font-size: 12px; margin-left: 20px;
}

.notifications-ok{
    color: #499010 !important; letter-spacing: -0.1px; font-weight: 400; font-size: 12px; margin-left: 20px;
}

.valid-feedback {
    display: none;
    width: 100%;
    color: #499010 !important; letter-spacing: -0.1px; font-weight: 400; font-size: 12px; margin-left: 20px;
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #499010 !important;
    padding-right: calc(1.5em + .75rem);
    background-image: none !important;
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    color: #FF374A !important; letter-spacing: -0.1px; font-weight: 400; font-size: 12px; margin-left: 20px;
}

.form-control.is-invalid, .was-validated .form-control:valid {
    border-color: #FF374A  !important;
    padding-right: calc(1.5em + .75rem);
    background-image: none !important;
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}


.label-form{
    position: absolute; color: #313235; letter-spacing: -0.1px; font-weight: 400; font-size: 12px; margin-left: 20px; margin-top: 8px;
}

.form-control {
    display: block;
    width: 100%;
    height: 56px;
    padding-left: 20px;
    padding-top: 23px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    background-color: #fff;
    color: #86888C;
    background-clip: padding-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: none;
    -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    letter-spacing: .25px;
}

.form-control:active,
.form-control:focus {
    background-color: rgba(80, 83, 90, 0.05);
    color: rgba(80, 83, 90, 1);
    font-weight: 400;
}

::-webkit-input-placeholder { /* Edge */
   color: #86888C !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #86888C !important;
}

::placeholder {
   color: #86888C !important;
  font-weight: 400;
}

#input_img {
    position:absolute;
    bottom: 13px;
    right: 10px;
    width: 30px;
    height: 30px;
    z-index: 99;
}


@media (max-width: 1199px) {

.form-inline input {
    margin: 10px 0;
    }
  
.form-inline {
    flex-direction: column;
    align-items: stretch;
    }

.icon-mobile{
	display: none;
    }
}

@media (max-width: 767px) {

.form-inline {  
    margin-top: -25px;
    }

#input_img {
    position:absolute;
    bottom: 15px;
    right: 8px;
    width: 26px;
    height: 26px;
    z-index: 99;
}

.input-group-text {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: .3125rem .55rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(80, 83, 90, 0.9);
    text-align: center;
    white-space: nowrap;
    background-color: rgba(80, 83, 90, 0.05);
    border: none;
    border-radius: 5px;
  }

}

/************************************************************************************/



/* 9.- KYC
*************************************************************************************/

.loading-js {
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   overflow: hidden;
   z-index: 9999;
   background: #ffffff;
}

.loader {
   position: fixed;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {

.loading-js {
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   overflow: hidden;
   z-index: 9999;
   background: #ffffff;
   }

.loader {
   position: fixed;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
   }

}


/************************************************************************************/



/* 10.- CAROUSEL / TARIFAS
*************************************************************************************/

.tarifas{
	margin-top: 60px;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
}

.card-header {
    padding: 0rem 1rem;
    margin-bottom: 0;
    color: #fff;
    background: rgba(0, 169, 224, 1);
    border-bottom: none;
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
}


.card-header h1{
    font-size: 26px;
}

.card-body{
    padding: .5rem 1rem .25rem;
	background: rgba(0, 169, 224, 1);
}

.card-body h4{
    font-size: 26px;
    color: #fff !important;
    padding-top: 12px;
}

.card-footer{
    padding: 2rem 1.5rem 1.5rem;
    background: rgba(246, 246, 245, 1);
    min-height: 200px;
    border-top: none;
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.card-footer p{
    font-size: 18px;
    color: #707070;
    text-align: center;
    letter-spacing: -0.1px;
    line-height: 23px !important;
}

.tarifa-title{
	font-weight: 300;
	font-size: 22px !important;
}

.tarifa-title-2{
    font-size: 20px !important;
    letter-spacing: -0.1px;
}


hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #000;
}

.tachado{
	text-decoration: line-through;
}

.carousel-wrap {
    width: 1000px;
    margin: auto;
    position: relative;
}

.owl-carousel .owl-nav{
    overflow: hidden;
    height: 0px;
}
 
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: #2caae1;
}
 
.owl-carousel .item {
    text-align: center;
}

.owl-carousel .nav-btn{
    height: 47px;
    position: absolute;
    width: 26px;
    cursor: pointer;
    top: 220px !important;
}
 
.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled{
    pointer-events: none;
    opacity: 0.2;
}
 
.owl-carousel .prev-slide{
    background: url(nav-icon.png) no-repeat scroll 0 0;
    left: -33px;
}

.owl-carousel .next-slide{
    background: url(nav-icon.png) no-repeat scroll -24px 0px;
    right: -33px;
}

.owl-carousel .prev-slide:hover{
    background-position: 0px -53px;
}

.owl-carousel .next-slide:hover{
    background-position: -24px -53px;
}
 
span.img-text {
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    font-size: 23px;
    display: block;
    text-transform: capitalize;
}

span.img-text:hover {
    color: #2caae1;
}
 
/*@media (max-width: 767px){

.card-footer{
    padding: 2rem 1.5rem 1.5rem;
    background: rgba(246, 246, 245, 1);
    min-height: 170px;
}

.tarifas{
    margin-top: 15px;
    }

.tarifa-title{
	font-weight: 300;
	font-size: 25px;
	letter-spacing: .25px;
}

.card-header {
    padding: 0.1rem 1rem;
    margin-bottom: 0;
    color: rgba(0, 169, 224, 1);
    background: rgba(15, 35, 51, 1);
    margin-top: 30px;
    }

.card-header h1{
    font-size: 23px;
}

.card-body{
    padding: .2rem 1rem;
    background: rgba(0, 169, 224, 1);
}

.card-body h4{
    padding-top: 20px;
    font-size: 20px;
    color: #fff !important;
}


.owl-carousel .nav-btn{
    height: 47px;
    position: absolute;
    width: 26px;
    cursor: pointer;
    top: 180px !important;
}

.owl-carousel .prev-slide{
    background: url(nav-icon.png) no-repeat scroll 0 0;
    left: -25px;
    }

.owl-carousel .next-slide{
    background: url(nav-icon.png) no-repeat scroll -24px 0px;
    right: -25px;
    }
}*/


/************************************************************************************/



/* 11.- CARDS
*************************************************************************************/

.confirmacion{
	margin-top: 60px;
}

.card-body-datos{
	background: rgba( 255, 255, 255, 1);
	border: 1px solid rgba( 233, 234, 232, 0.7);
	border-radius: 5px;
}

.datos-cliente{
    padding: 1rem 2rem;
}

.conf-iccid{
    font-size: 25px;
}

.icon-conf-iccid{
    margin-top: -3px;
}

.separator{
    margin-top: 45px;
}

@media (max-width: 767px){

.confirmacion{
    margin-top: 15px;
    }

.conf-iccid{
    font-size: 15px;
    }

.separator{
    margin-top: 20px;
    }

}


.size-plan{
    font-size: 20px;
    margin: 10px;
}

.inputGroup {
  background-color: rgba(91, 197, 0, 1);
  display: block;
  margin: 10px 0;
  position: relative;
  border-radius: 4px;
}

.inputGroup label {
  padding: 12px 30px;
  width: 100%;
  display: block;
  text-align: left;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 2;
  -webkit-transition: color 200ms ease-in;
  transition: color 200ms ease-in;
  overflow: hidden;
  text-align: center;
  letter-spacing: .25px;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 4px;
  content: '';
  background-color: rgba(149, 75, 151, 1);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
          transform: translate(-50%, -50%) scale3d(1, 1, 1);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 32px;
  height: 32px;
  content: '';
  border: none;
  background-color: rgba(91, 197, 0, 1);
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%235BC500' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 4px 4px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label {
  color: #fff;
  border-radius: 4px;
}

.inputGroup input:checked ~ label:before {
  -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
          transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #fff;
  border-color: none;
}

.inputGroup input {
  width: 32px;
  height: 32px;
  -webkit-box-ordinal-group: 2;
          order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}


/*cambios*/

.prepago{
   color: #fff;
   font-weight: 300;
   font-size: 25px;
   margin-top: -8px;
}


     .zone {
    display: inline-block;
    position: relative;
    width:100%;
    height:150px;
    }

    .overlay-barcode {
    position: absolute;
    top:0;
    left:0;
    z-index:1;
    width:100%;
    height:100%;
    padding-top: 23px;
    background:transparent;
    opacity: .8
    }

    .barcode{
    width:100%; height:150px; margin:0; padding:0; border: none; overflow-y:hidden; z-index:98; background: #eee;
    }

    .barcode-img{
        width: 420px;
    }

@media (max-width: 767px){

       .zone {
    display: inline-block;
    position: relative;
    width:100%;
    height:100px;
    }

    .overlay-barcode {
    position: absolute;
    top:0;
    left:0;
    z-index:1;
    width:100%;
    height:100%;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    background:transparent;
    opacity: .8
    }

    .barcode{
    width:100%; height:100px; margin:0; padding:0; border: none; overflow-y:hidden; z-index:98; background: #eee;
    }

    .barcode-img{
        width: 100%;
    }

}

input:read-only {
  background: #fff !important;
}

.ver-mobile {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.selfie-img-1{
    position: absolute; right: -160px; bottom: -18px; width: 320px;
}

.selfie-img-2{
    position: absolute; right: 0px; bottom: -4px; width: 350px;
}

.bg-white-t{
  background: transparent !important;
}

@media (min-width: 768px) {
  .bg-white-t{
  background: rgba(255, 255, 255, .9) !important;
}
}

@media (max-width: 1070px) {
.selfie-img-1{
    display: none;
 }
}

.client{
    color: #86888C;
}

.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    display: -webkit-box;
    display: flex;
    max-height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
    flex-shrink: 0
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: ""
}

.modal-dialog-centered.modal-dialog-scrollable {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(22, 28, 45, .2);
    border-radius: .5rem;
    box-shadow: 0 .25rem .5rem rgba(22, 28, 45, .5);
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #161c2d
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .8
}

.modal-header {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #f1f4f8;
    border-top-left-radius: calc(.5rem - 1px);
    border-top-right-radius: calc(.5rem - 1px)
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.3;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 2.5rem
}

.modal-footer {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 2.25rem;
    border-top: 1px solid #f1f4f8;
    border-bottom-right-radius: calc(.5rem - 1px);
    border-bottom-left-radius: calc(.5rem - 1px)
}

.modal-footer>* {
    margin: .25rem
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }
    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }
    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem)
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }
    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem)
    }
    .modal-content {
        box-shadow: 0 .5rem 1rem rgba(22, 28, 45, .5)
    }
    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.fixed-bottom {
    position: fixed !important;
    right: 0 !important;
    bottom: 15px !important;
    left: 0 !important;
    z-index: 1030 !important;
}

.pos-close{
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
}

.line-a{
  padding: 30px 0;
  border: none;
  margin-top: -375px;
}
.line-a:before {
  content: "";
  display: block;
  position: absolute;
  right: 0 !important;
  left: 0 !important;
  z-index: 999999 !important;
  max-width: 100%;
  width: 100%;
  border: 4px solid #EEEEEE;
}

.line-b{
  padding: 30px 0;
  border: none;
  margin-top: 80px;
}
.line-b:before {
  content: "";
  display: block;
  position: absolute;
  right: 0 !important;
  left: 0 !important;
  z-index: 999999 !important;
  max-width: 100%;
  width: 100%;
  border: 4px solid #EEEEEE;
}


div#readonly{
    position:absolute;
    top:23px;
    left:43px;
    color: #86888C;
    font-size: 18px;
}

input#myInput { 
    padding-left: 85px;
}

.readonly--datos:focus {   
  border-color: #ddd !important;
  box-shadow: none;
  outline: 0 none;
  background: #fff;
}

.readonly--datos{   
  cursor: not-allowed !important;
}
