/*#region DESIGN*/

/*BUTTON NORMAL*/
.btn-primary-cc{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.004em;
  background: var(--primaryblue);
  border: 1.5px solid var(--azulCarsAndCars);
  border-radius: 8px;
  width: 100%;
  height: 52px;
  padding: 16px;
  color: #fff;
  text-align: center;
  align-items: center;

}
.btn-primary-cc:hover{
  background: #012A77;
  border: 1.5px solid #012A77;

}
.btn-primary-cc:active{
  background: #6786BF;
  border: 1.5px solid #6786BF;

}
.btn-primary-cc:disabled{
  background: #E6EBF4;
  border: 1.5px solid #E6EBF4;
  color: #99AED5;

}
.btn-tertiary-cc{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.004em;
  background: #E4EEFF;;
  border: 1.5px solid #E4EEFF;;
  border-radius: 8px;
  width: 100%;
  height: 52px;
  padding: 16px;
  color: var(--azulCarsAndCars);
  text-align: center;
  align-items: center;

}
.btn-tertiary-cc:hover{
  background: var(--azulCarsAndCars);
  color: #fff;
  border: 1.5px solid var(--azulCarsAndCars);
}
.btn-tertiary-cc:active{
  background: #CDD6E6;
  color: var(--azulCarsAndCars);
  border: 1.5px solid #CDD6E6;
}
.btn-tertiary-cc:disabled{
  background: #EFF5FF;
  border: 1.5px solid #EFF5FF;
  color: #6786BF;
}
.btn-secondary-cc{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.004em;
  background: #fff;
  border: 1.5px solid var(--azulCarsAndCars);
  border-radius: 8px;
  width: 100%;
  height: 52px;
  padding: 16px;
  color: var(--primaryblue);
  text-align: center;
  align-items: center;

}
.btn-secondary-cc:hover{
  background: var(--azulCarsAndCars);
  border: 1.5px solid var(--azulCarsAndCars);
  color: #fff;
}
.btn-secondary-cc:active{
  background: #F4F8FF;
  color: var(--primaryblue);
}
.btn-secondary-cc:disabled{
  background: #EFF5FF;;
  border: 1.5px solid #99AED5;
  color: #99AED5;
}
/*BUTTON ICON*/
.btn-primary-icon{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.004em;
  background: var(--primaryblue);
  border: 1.5px solid var(--azulCarsAndCars);
  border-radius: 8px;
  width: 100%;
  height: 52px;
  padding: 16px;
  color: #fff;
  text-align: left;
  align-items: center;

}
.btn-primary-icon:hover{
  background: #012A77;
  border: 1.5px solid #012A77;
}
.btn-primary-icon:active{
  background: #6786BF;
  border: 1.5px solid #6786BF;
}
.btn-primary-icon:disabled{
  background: #E6EBF4;
  border: 1.5px solid #E6EBF4;
  color: #99AED5;
}
.btn-primary-icon .icon-btn-primary {
  float: right;
  margin-top: -8px;
  background-image: url(/public/icon/arrow-right-w.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
}
.btn-primary-icon:disabled .icon-btn-primary {
  float: right;
  margin-top: -8px;
  background-image: url(/public/icon/arrow-right-d.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
}
.btn-secondary-icon{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.004em;
  background: #E4EEFF;;
  border: 1.5px solid #E4EEFF;;
  border-radius: 8px;
  width: 100%;
  height: 52px;
  padding: 16px;
  color: var(--azulCarsAndCars);
  text-align: left;
  align-items: center;
}
.btn-secondary-icon:hover{
  background: var(--azulCarsAndCars);
  color: #fff;
  border: 1.5px solid var(--azulCarsAndCars);
}
.btn-secondary-icon:active{
  background: #fff;
  color: var(--azulCarsAndCars);
  border: 1.5px solid var(--azulCarsAndCars);
}
.btn-secondary-icon:disabled{
  background: #EFF5FF;
  border: 1.5px solid #EFF5FF;
  color: #6786BF;
}
.btn-secondary-icon .icon-btn-secondary {
  float: right;
  margin-top: -8px;
  background-image: url(/public/icon/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
}
.btn-secondary-icon:hover .icon-btn-secondary {
  background-image: url(/public/icon/arrow-right-w.svg);
}
.btn-secondary-icon:active .icon-btn-secondary {
  background-image: url(/public/icon/arrow-right.svg);
}
.btn-tertiary-icon{
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.004em;
  background: #fff;
  border: 1.5px solid var(--azulCarsAndCars);
  border-radius: 8px;
  width: 100%;
  height: 52px;
  padding: 16px;
  color: var(--primaryblue);
  text-align: left;
  align-items: center;
}

.btn-tertiary-icon.btn-comprar:hover, 
.btn-tertiary-icon.btn-comprar:active,
.btn-tertiary-icon.btn-alquilar:hover, 
.btn-tertiary-icon.btn-alquilar:active
{
  background: #fff;
  border: 1.5px solid var(--azulCarsAndCars);
  color: var(--primaryblue);
}

.btn-tertiary-icon.btn-comprar:hover .icon-btn-tertiary, 
.btn-tertiary-icon.btn-alquilar:hover .icon-btn-tertiary {
  float: right;
  margin-top: -8px;
  background-image: url(/public/icon/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
}

.btn-tertiary-icon:hover{
  background: var(--azulCarsAndCars);
  border: 1.5px solid var(--azulCarsAndCars);
  color: #fff;
}

.btn-tertiary-icon:active{
  background: #F4F8FF;
  color: var(--primaryblue);
}

.btn-tertiary-icon:disabled:hover,
.btn-tertiary-icon:disabled{
  background: #EFF5FF;;
  border: 1.5px solid #99AED5;
  color: #99AED5;
}

.btn-tertiary-icon:disabled .icon-btn-tertiary,
.btn-tertiary-icon:disabled:hover .icon-btn-tertiary {
  background-image: url(/public/icon/arrow-right-d.svg);
}

.btn-tertiary-icon .icon-btn-tertiary {
  float: right;
  margin-top: -8px;
  background-image: url(/public/icon/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
}

.btn-tertiary-icon .icon-btn-tertiary-w{
  background-image: url(/public/icon/arrow-right-w.svg);
  float: right;
  margin-top: -8px;
  background-repeat: no-repeat;
  background-size: 32px;
  width: 32px;
  height: 32px;
}

.btn-tertiary-icon:hover .icon-btn-tertiary {
  background-image: url(/public/icon/arrow-right-w.svg);
}
.btn-tertiary-icon:active .icon-btn-tertiary {
  background-image: url(/public/icon/arrow-right.svg);
}
/*INPUT TEXT/MAIL/CONTRASEÑA*/
input.form-control-cc{
  background-color: #fff;
  border: 1.5px solid #CCD7EA;
  border-radius: 10px;
  height: 52px;
  margin-bottom: 20px;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #383737;
  padding: 0 16px;
}
input.form-control-cc.cien{
  width: 100%;
}

input.form-control-cc:disabled{
  color: #9c9c9c;
}

.descuentoAplicado {
  font-size: 13px;
  position: relative;
  text-align: left;
  width: 100%;
}
.descuentoAplicado.dACard {
  margin-top: 15px;
  padding-left: 15px;
}

input.form-control-cc:hover{
  border: 1.5px solid #99AED5;
  outline: none;
}
input.form-control-cc:focus{
  border: 1.5px solid var(--azulCarsAndCars);
  outline: none;
  color: #383737;
}
input.form-control-cc:active{
  border: 1.5px solid var(--azulCarsAndCars);
  outline: none;
  color: var(--textoGris);
}
input.form-control-cc::placeholder{
  color: #ADAAA9;
}
.inputcalendar input[type=date].form-control-cc{
  background-color: #fff;
  width: 100%;
}
/*TEXTAREA*/
textarea{
  border: 1.5px solid #CCD7EA;
  border-radius: 10px;
  height: 52px;
  margin-bottom: 32px;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #383737;
  padding: 0 16px;
}
textarea:hover{
  border: 1.5px solid #99AED5;
  outline: none;
}
textarea:focus{
  border: 1.5px solid var(--azulCarsAndCars);
  outline: none;
  color: #383737;
}
textarea:active{
  border: 1.5px solid var(--azulCarsAndCars);
  outline: none;
  color: var(--textoGris);
}
textarea::placeholder{
  color: #ADAAA9;
}
/*ACORDEON*/
.acordeon .card{
  border: 0;
}
.acordeon .card .card-header {
  display: flex;
  border-radius: 0;
  background-color: transparent;
  align-items: center;
  border-bottom: 0;
  border-top: 1px solid var(--azulCarsAndCars);
  padding: 24px 0;
  cursor: pointer;
}
.acordeon .card .card-header:hover {
  border-top: 1px solid #6786BF;
}
.acordeon .card .card-header .title {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #252627;
  width: 100%;
}
.acordeon .card .card-body .title {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #383737;
  margin-bottom: 16px;
}
.acordeon .card .card-body p, .acordeon .card .card-body li {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #383737;
}
/*DROPDOWN*/
.dropdown button {
  border: 1.5px solid #CCD7EA;
  border-radius: 10px;
  height: 52px;
  display: flex;
  background-color: #fff;
  width: 100%;
  align-items: center;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ADAAA9;
  padding: 0 16px;
}
.dropdown button:hover {
  color: var(--textoGris);
}
.dropdown button:active {
  border: 1.5px solid var(--azulCarsAndCars);
  color: #ADAAA9;
}
header .header-menu .dropdown button:active{
  border: 0;
}
.dropdown.show button {
  border: 1.5px solid var(--azulCarsAndCars);
  color: #ADAAA9;
}
.dropdown button svg {
  width: 10px;
  height: 9px;
  position: absolute;
  right: 20px;
  fill: var(--azulCarsAndCars);
}
.dropdown.show svg {
  transform: rotate(180deg);
}
.dropdown-menu {
  min-width: 100%;
  max-height: 270px;
  margin-top: 5px;
  overflow-y: auto;
  background: #FFFFFF;
  border-radius: 10px;
  border: 0;
  box-shadow: 1px 5px 18px -2px rgb(1 53 149 / 15%);
}
.dropdown-menu .dropdown-item {
  cursor: pointer;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ADAAA9;
  margin: 5px 0px;
  padding: 5px 15px;
}
.dropdown-menu .dropdown-item:active{
  background-color: #E4EEFF;
}

#ModalDK .dropdown-menu .dropdown-item:hover{
  background-color: #E4EEFF;
}

.dropdown-menu .dropdown-item.activo {
  background-color: #E4EEFF;
  color: #252627;
}
.dropdown-menu .dropdown-item-check {
  cursor: pointer;
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  height: 40px;
  padding: 10px 15px;
  background-color: transparent;
}
.dropdown-menu .dropdown-item-footer{
  overflow-y: auto;
    max-height: 203px;
}
/*RADIO / CHECKBOX BUTTON*/
.form-check-label {
  position: relative;
  padding: 0px 0px 5px 30px;
  display: block;
  color: var(--textoGris);
  cursor: pointer;
}
.form-check-label:hover {
  color: #383737;
}
.form-check-label:focus {
  color: var(--textoGris);
}
.dropdown-menu .dropdown-item-check input, .content-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.dropdown-menu .dropdown-item-check input {
  visibility: hidden;
  position: absolute;
  right: 0;
}

.checkGarantia .form-check-label input + i {
  left: 6px;
  top: 3px;
}

span.texto_ampliar_garantia {
  top: -6px;
  position: relative;
}

.form-check-label input + i {
  /*background: #fff;*/
  border: 1px solid var(--azulCarsAndCars);
  position: absolute;
  left: 0;
  top: 0;
}
.form-check-label:hover input + i{
  border: 1px solid #CCD7EA;
}
.form-check-label:hover input[type=radio]:checked + i{
  border: 1px solid var(--azulCarsAndCars);
}
.form-check-label:focus input + i{
  border: 2px solid var(--azulCarsAndCars);
}
.form-check-label:focus input + i:before{
  border: 2px solid var(--azulCarsAndCars);
}
.form-check-label::selection input + i{
  border: 1px solid var(--azulCarsAndCars);
}
.form-check-label input[type=radio] + i {
  height: 20px;
  width: 20px;
  border-radius: 100%;
}
.form-check-label input[type=radio] + i:before {
  content: '';
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
  background: var(--azulCarsAndCars);
  transform: scale(0);
  opacity: 0;
}
.form-check-label input[type=radio]:checked + i:before{
    transform: scale(1);
    opacity: 1;
}
.form-check-label:focus input[type=radio]:not(:checked)+ i{
    border:2px solid var(--azulCarsAndCars)
}
.form-check-label:focus input[type=radio]:checked + i{
  border:2px solid var(--azulCarsAndCars);
}
.form-check-label:focus input[type=radio]:checked + i:before {
  top: 4px;
  left: 4px;
}
.form-check-label input[type=checkbox] + i {
  height: 15px;
  width: 15px;
  border-radius: 2px;
}
.form-check-label input[type=checkbox] + i:before {
  content: '';
  display: block;
  height: 15px;
  width: 15px;
  border-radius: 2px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: -1px;
  background: var(--azulCarsAndCars);
  transform: scale(0);
  opacity: 0;
}
.form-check-label input[type=checkbox]:checked + i:before{
    transform: scale(1);
    opacity: 1;
}
.form-check-label:focus input[type=checkbox]:not(:checked)+ i{
    border:2px solid var(--azulCarsAndCars)
}
.form-check-label:hover input[type=checkbox]:checked + i{
  border: 1px solid var(--azulCarsAndCars);
  background: var(--azulCarsAndCars);
}
.form-check-label:focus input[type=checkbox]:checked + i{
  border:2px solid var(--azulCarsAndCars);
  background: var(--azulCarsAndCars);
}
.form-check-label:focus input[type=checkbox]:checked + i:before {
  top: 4px;
  left: 4px;
}
.form-check-label input[type=checkbox] + i::after {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  z-index:10;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}
.form-check-label input[type=checkbox]:checked + i::after {
  opacity: 1;
}
/*LINK*/
.link{
  color: var(--azulCarsAndCars);
  text-decoration: underline;
}
.link:hover{
  color: #6786BF;
}
.link:active{
  color: #012A77;
}
.link:disabled{
  color: #CCD7EA;
}
.link-secondary{
  color: #E31F1A;
  text-decoration: underline;
}
.link-secondary:hover{
  color: #881310;
}
.link-secondary:active{
  color: #AD1714 ; 
}
.link-secondary:disabled{
  color: #F9D2D1;
}

/* OCULTAR RECAPTCHA */
.grecaptcha-badge {opacity:0}
.grecaptcha-badge { visibility: hidden; }
/*#endregion DESIGN*/