@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
*{
  font-family: 'Poppins', sans-serif;
}
*,
::after,
::before{
  box-sizing: border-box;
}
body{
  padding: 0;
  margin: 0;
  background: whitesmoke;
}
p{
  margin-top: 0;
  color:#363636;
}
.s-body{
  margin: 0 auto;
  background: #2E50A2;
  max-width: 500px;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
.s-body::before{
  content:'';
  display: block;
  position: absolute;
  left:0;
  top:280px;
  width: 100%;
  height: 800px;
  background-image: url(../../assets/img/bg-green.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 0;
}
.splashscreen{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999999;
  background-color: #57B33A;
}
.splashscreen.desactivar{
  left: -102%;
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
}
@media (max-width: 500px){
  .splashscreen{
    width: 100vw;
    position: fixed;
  }
}
.splashscreen .box{
  position: absolute;
  top: 45vh;
  left:50%;
  width: 281px;
  height: 281px;
  background: #fff;
  border-radius:50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  z-index: 2;
  overflow: hidden;
}
.splashscreen::before{
  content: '';
  display: block;
  background: #2E50A2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2222;
  z-index: 1;
  height: 20vh;
}
.splashscreen .box .logo{
  max-width: 155px;
  margin: 0 auto;
  display: table;
  height: auto;
}
.splashscreen .fondo{
  left: 0;
  width: 100%;
  height: 800px;
  position: absolute;
  z-index: 0;
  top:280px;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.text-center{
  text-align: center;
}
.splashscreen .content{
  position: absolute;
  bottom: 15vh;
  z-index: 1;
  color:#fff;
  text-transform: uppercase;
}
.splashscreen .content p{
  font-size: 18px;
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
  color:#fff;
}
.nav-header{
  height: 74px;
  position: relative;
  background: #fff;
  text-align: center;
  padding-top: 7px;
}
.nav-header .logo{
  max-width: 70px;
}
.body-white{
  margin: 10px 10px 10px 10px;
  padding: 10px 10px 10px 10px;
  min-height: 285px;
  border-radius: 16px;
  background: #fff;
  z-index: 1;
  position: relative;
}
.row{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.col-12{
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 10px;
}
.col-7{
  -ms-flex: 0 0 58.33%;
  flex: 0 0 58.33%;
  max-width: 58.33%;
  padding: 0 10px;
}
.col-6{
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
}
.col-5{
  -ms-flex: 0 0 41.66%;
  flex: 0 0 41.66%;
  max-width: 41.66%;
  padding: 0 10px;
}
.col-4{
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 10px;
}
.color-green{
  color: #57B33A;
}
.text-green{
  font-size: 24px;
  font-weight: 700;
  color: #57B33A;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 34px;
  letter-spacing: -1px;
}
.text-black,
.text-black p{
  font-size: 14px;
  color:#363636;
}
.text-blue,
.text-blue p{
  color:#2E50A2;
}
.text-gray,
.text-gray p{
  color: #777777;
}
.font-11 p{
  font-size: 11px;
}
.font-12 p{
  font-size: 12px;
}
.font-14 p{
  font-size: 14px;
}
.grupo-form{
  margin-bottom: 10px;
}
.grupo-form label{
  font-size: 14px;
  color:#363636;
  display: block;
  margin-bottom: 2px;
}
.grupo-form .field{
  width: 100%;
  height: 53px;
  background: #FFFFFF;
  border: 2px solid #D0DAED;
  border-radius: 5px;
  padding: 15px 10px 15px 15px;
  display: block;
  font-size: 15px;
  line-height: 1;
}
.grupo-form .field::placeholder{
  color:#8A8A8A;
}
.grupo-form.grupo-form-valor .field{
  padding: 15px 10px 15px 45px;
}
.grupo-form .field:focus{
  border-color: #57B33A;
  outline: 0;
}
.p-relative{
  position: relative;
}
.grupo-form .valor{
  position: absolute;
  top: 14px;
  left: 20px;
  color: #57B33A;
  width: 20px;
  font-weight: 500;
  text-align: center;
}
.grupo-form .valor.dolar{
  font-size: 18px;
  top: 12px;
}
.bloque-venta{
  height: 40px;
  background: rgba(46, 80, 162, 0.1);
  border-radius: 10px;
  position: relative;
  padding: 5px 20px;
  margin-bottom: 19px;
  margin-top: 3px;
}
.bloque-venta .precio{
  position: absolute;
  right: 20px;
  top: 6px;
  z-index: 1;
  font-size: 20px;
  color: #2E50A2;
  font-weight: 600;
}
.bloque-venta .text{
  color: #2E50A2;
  margin: 4px 0 0 0;
}
.no-tocar{
  pointer-events: none;
}
.btn-0{
  font-weight: 700;
  font-size: 16px;
  height: 56px;
  padding: 16px 10px;
  border-radius: 16px;
  text-decoration: none;
  color:#fff;
  text-align: center;
  width: 100%;
  display: table;
  border: none;
}
.btn-0.disabled {
  opacity: .6;
}
.mt-3 {
  margin-top: 15px;
}
.bg-blue{
  background: #2E50A2;
}
.bg-green{
  background: #57B33A;
}
.pr-5{
  padding-right: 5px;
}
.pl-5{
  padding-left: 5px;
}
.caja-botones-a{
  margin-top: 5px;
  margin-bottom: 20px;
}
.caja-botones-b{
  margin-top: 7px;
}
.caja-titulo-1{
  position: relative;
  padding-right: 80px;
  margin-bottom: 12px;
  min-height: 66px;
}
.caja-titulo-1 .caja{
  position: absolute;
  top:0;
  right:0;
}
.caja-botones-c{
  max-width: 220px;
  margin: 20px auto 0 auto;
}
.caja-titulo-2{
  position: relative;
  padding-right: 80px;
  margin-bottom: 12px;
  height: 66px;
  display: flex;
  align-items: center;
}
.caja-titulo-2 .caja{
  position: absolute;
  top:0;
  right:0;
}
.caja-titulo-2 .text-green{
  position: relative;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  font-size: 28px;
}
.caja-titulo-4{
  position: relative;
  padding-right: 0;
  margin-bottom: 12px;
  height: 66px;
  display: flex;
  align-items: center;
}
.caja-titulo-4 .caja{
  position: relative;
  top:0;
  right:0;
  margin-right: auto;
}
.caja-titulo-4 .text-green{
  position: relative;
  top: 1px;
  margin-left: auto;
  margin-right: 12px;
}
.mb-0{
  margin-bottom:0;
}
.mt-10{
  margin-top: 10px;
}
.box-gray{
  background: #EFEFEF;
  min-height: 70px;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 12px 10px 10px 15px;
}
.box-gray label{
  color: #363636;
  line-height: 1.2;
  display: inline-block;
}
.box-gray p{
  margin: 0;
  color:#8A8A8A;
}
@media (max-width: 480px){
  .box-gray p,
  .box-gray label{
    font-size: 15px;
  }
}
@media (max-width: 400px){
  .box-gray p,
  .box-gray label{
    font-size: 14px;
  }
  .box-gray{
    padding: 10px 10px 10px 15px;
  }
}
@media (max-width: 380px){
  .box-gray p,
  .box-gray label{
    font-size: 13px;
  }
  .box-gray{
    padding: 10px 10px 10px 10px;
  }
}
@media (max-width: 350px){
  .box-gray{
    padding: 10px 8px 10px 8px;
  }
}
.bloque-archivos input[type=file]{
  color: #000;
  margin-left: 110px;
  margin-top: 5px;
  font-size: 13px;
}
.bloque-archivos br{
  display: none;
}
.bloque-archivos input[type=file]::file-selector-button {
  display: none;
}
.bloque-archivos{
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 14px;
  border:2px solid #D0DAED;
  height: 54px;
  border-radius: 8px;
  position: relative;
  margin: 4px 0;
  overflow: hidden;
}
.bloque-archivos p{
  font-size: 16px !important;
}
.bloque-archivos label{
  color: #8A8A8A;
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
  position: absolute;
  text-align: left;
  margin-right: 5px;
  display: table;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  padding: 15px;
}
.bloque-parrafo-1{
  margin: 25px 0 15px 0;
}
.bloque-parrafo-1 p{
  font-size: 14px;
  margin: 0;
}
.bloque-parrafo-1 b{
  font-size: 16px;
  margin-top: 3px;
  display: block;
}
.barra-progreso{
  position: relative;
  height: 34px;
  background: #2E50A2;
  border-radius: 8px;
  text-align: center;
  color:#fff;
  padding: 5px 10px;
  margin: 5px 0 15px 0;
  overflow: hidden;
}
.barra-progreso span{
  position: absolute;
  z-index: 2;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.barra-progreso .barra{
  position:relative;
  left: 0;
  top: 0;
  background: #57B33A;
  z-index: 0;
  height: 24px;
  border-radius: 8px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.bg-white{
  background: #fff !important;
}
.font-600{
  font-weight: 600;
}
.font-500{
  font-weight: 500;
}
.check-logo{
  margin: 5px 0 10px 0;
}
.check-logo img{
  width: 29px;
  height: 29px;
}
.mb-12{
  margin-bottom: 12px;
}
.grupo-form select.field{
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98.5%;
  background-position-y: 11px;
  background-color: #fff;
}
.caja-titulo-5{
  margin-bottom: 10px;
}
.btn-specials span{
  height: 34px;
  background: rgba(87, 179, 58, 0.1);
  border-radius: 8px;
  text-align: center;
  display: block;
  font-size: 16px;
  color: #57B33A;
  padding: 5px 0;
}
.btn-specials{
  margin: 15px -5px 20px -5px;
}
.btn-specials .col-4{
  padding: 0 5px;
}
.btn-specials .current{
  background: #57B33A !important;
  color:#fff !important;
}
.btn-specials .ok,
.btn-specials .current.ok{
  background: #2E50A2 !important;
  color:#fff !important;
}
.bloque-documento{
  width: 100%;
  height: 162px;
  background: #FFFFFF;
  border: 2px solid #D0DAED;
  border-radius: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 8px;
}
.bloque-documento .text{
  color: #8A8A8A;
  font-size: 13px;
  margin-bottom: 10px;
}
.bloque-documento > div{
  margin: 0 auto;
}
.bloque-documento .img{
  margin: 0 auto;
  max-width: 100%;
  padding: 0 10px;
}
.mb-10{
  margin-bottom: 10px;
}
.file-click{
  width: 100%;
  height: 162px;
  background-color: #FFFFFF;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #D0DAED;
  border-radius: 5px;
  align-items: center;
  padding: 0 8px;
  overflow: hidden;
  position: relative;
  background-origin: content-box;
}
.file-click label{
  color: #8A8A8A;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  height: 100%;
  left:0;
  top:0;
  position: absolute;
}
.file-click label span{
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  left:50%;
  top:50%;
  position: absolute;
  width: 100%;
}
.file-click input{
  z-index: 2;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.file-click .img-center{
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  left:50%;
  top:50%;
  position: absolute;
  z-index: 0;
  max-width: 93%;
}
img.img-80{
  max-width: 80px !important;
}
.mt-40{
  margin-top: 40px !important;
}
.mb-20{
  margin-bottom: 20px;
}

.text-center{
  text-align: center;
}
.d-block{
  display: block!important;
}
.modal{
  display: none; /* Por defecto, estará oculto */
  position: fixed; /* Posición fija */
  z-index: 2; /* Se situará por encima de otros elementos de la página*/
  left: 0;
  top: 0;
  width: 100%; /* Ancho completo */
  height: 100%; /* Algura completa */
  overflow: auto; /* Se activará el scroll si es necesario */
  background-color: rgba(0,0,0,0.5); /* Color negro con opacidad del 50% */
}
.modal .inner{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  padding: 0 15px;
}
.modal .capa{
  position: fixed;
  top:0;
  left:0;
  background: transparent;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.contenido-modal {
  position: relative; /* Relativo con respecto al contenedor -modal- */
  background-color: white;
  margin: auto; /* Centrada */
  padding: 20px;
  width: 100%;
  max-width: 470px;
  -webkit-animation-name: animarsuperior;
  -webkit-animation-duration: 0.5s;
  animation-name: animarsuperior;
  animation-duration: 0.5s;
  border-radius: 12px;
}
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
@keyframes animarsuperior {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
.close {
  color: black;
  float: right;
  font-size: 30px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modal-servicio .contenido-modal{
  background: #2E50A2;
  color:#fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.modal-servicio .contenido-modal p{
  color:#fff;
}
.modal-servicio .titulo{
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
}
.modal-servicio .btn-cerrar{
  text-decoration: none;
  background: #fff;
  color: #2E50A2;
  padding: 6px 20px;
  border-radius: 5px;
  margin-top: 5px;
  display: inline-block;
}
.modal-servicio .ico-info{
  margin: 5px auto;
  border: 2px solid #fff;
  border-radius: 100%;
  margin-bottom: 15px;
}
.validacion {
  width: 100%;
  display: flex;
  justify-content: center;
  font-weight: 300;
  font-size: 11px;
  line-height: 1;
  color: red;
  border-top: 1px solid red;
  margin-top: 3px;
  padding-top: 4px;
}
.none_vali {
  display: none !important;
}
#tiempo {
  width: 100%;
  margin-bottom: 15px;
  background: #57B33A;
  color: white;
  padding: 5px;
  font-weight: 600;
  border-radius: 50px;
  margin-top: -6px;
}
.regresar_h {
  color: white;
  line-height: 1;
  text-decoration: none;
  background-color: #57B33A;
  padding: 10px;
  border-radius: 10px;
}
.error {
  border-color: red !important;
}
.logout {
  display: block;
  text-align: center;
  padding-top: 10px;
}
.logout a {
  text-decoration: none;
  color: #2e50a2;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .4px;
}
#voucher-adjuntado {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#dni-usado {
  background: #f1d6d6;
  border: 1px solid #aa3a3a;
  color: #aa3a3a;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 10px;
  margin-top: 15px;
  display: none;
}
#dni-usado a {
  color: #aa3a3a;
  font-weight: bold;
}
.caja-titulo-2 .text-green.titulo-registro{
  font-size: 38px;
}
.radio-sino {
  width: 60px;
  display: inline-block !important;
}
.alert-warning {
  background: #ffe3d0;
  margin: 0 15px;
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #cb936c;
  color: #af5719;
}
.alert-warning a {
  color: #af5719;
}
.btn-copy {
  width: fit-content;
  height: 30px;
  padding: 3px 10px;
  border-radius: 8px;
  display: inline-block;
  background: #626262;
  margin-left: 7px;
}
.mt-15 {
  margin-top: 15px;
}
.form-control {
  width: 100%;
  height: 50px;
  border: 2px solid #d0daed;
  border-radius: 10px;
  margin-bottom: 15px;
}
@media (max-width: 345px){
  .caja-titulo-2 .text-green{
    font-size: 24px;
  }
}
.font-11 p a{
  color: #363636;
}
.color-green b a{
  color: #57B33A;
  text-decoration: none;
}
.color-green .fa-whatsapp{
  font-size: 22px;
  position: relative;
  top: 2px;
  margin-right: 2px;
}
.img-100{
  max-width: 100px !important;
}
@media (max-width: 480px) {
  .bloque-venta {
    height: initial;
  }
  .bloque-venta .precio {
    position: initial;
  }
}