.test_drive .form-horizontal input {
    border: none;
    border-bottom: 2px solid #000;
    background-color: #F1F1F1;
    margin-top: 0;
    height: 60px;
    margin-left: 0;
    color: #000000;
}

.test_drive .form-horizontal select {
    background-color: #F1F1F1;
    border: none;
    border-bottom: 2px solid #000000;
    color: #000000;
    height: 60px;
    background-image: none; /* quitar flecha del background */
    appearance: none;
}

.test_drive .form-horizontal select option {
    box-shadow: none !important;
    color: #000000;
    font-family: 'AvenirNextLTPro-Demi', sans-serif;
    font-size: 16px;
    font-style: normal;
    height: 40px;
    width: 100%;
    padding: 0 0 0 10px;
    border: 1px solid #bebebe;
}

.test_drive .form-horizontal select.fieldform.required-error,
.test_drive .form-horizontal .form-control.required-error {
    border-bottom: 2px solid #00A0DC;
}

.test_drive .form-horizontal .form-control::placeholder {
  color: #969393;
}

.test_drive .form-horizontal .form-control.required-error::placeholder {
  color: #00A0DC;
}

.test_drive .form-horizontal .form-group .label-required {
    /*padding: 16px 0;*/
    font-family: 'AvenirNextLTPro-Demi', sans-serif;
    text-align: end;
    font-size: 12px !important;
    line-height: 22px;
    letter-spacing: 0.64px;
    color: #00A0DC;
    padding: 0;
}

.test_drive .form-horizontal .btn:disabled {
    background-color: #BCDAF2;
}

.test_drive .form-horizontal .btn {
    width: 100%;
    max-width: 600px;
    padding: 0.85rem 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-align: center;
    background-color: #00adee;
}


/* Ocultar el checkbox nativo */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;        /* Hace el círculo */
  border: 2px solid #999;
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

/* Estado hover */
input[type="checkbox"]:hover {
  border-color: #555;
}

/* Estado checked */
input[type="checkbox"]:checked {
  background-color: #00A0DC;
  border-color: #00A0DC;      /* Azul del borde */
  border-width: 3px;
}

/* Checkmark cuando está seleccionado */
input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #fff;  /* Punto azul interior */
  border-radius: 50%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;  
}

/* Contenedor del label */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.test_drive .form-horizontal input[type="checkbox"] {
    width: 32px;
    height: 32px;
}

.form-horizontal .form-group:has(input[type="checkbox"]) {
    margin: 0;
}

.form-horizontal #test .form-group .checkbox-wrapper #chk_info1 label,
.form-horizontal #test .form-group .checkbox-wrapper #chk_info2 label {
    padding: 0 0 15px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 22px;
    /* color: #212529; */
    /*font-family: 'notosans-regular', sans-serif;*/
}

/* Arrow */
.test_drive .form-horizontal select.open {
    background-image: url(https://www.subaru.cl/figma/select-arrow/Lg.svg);
    background-position: right 12px center;
    transform-origin: right center;
    /* La flecha está en el background, usamos un wrapper */
}

/* Wrapper relativo para controlar la flecha */
.select-wrapper {
    position: relative;
}
.select-wrapper::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(https://www.subaru.cl/figma/select-arrow/Lg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transition: transform 0.3s ease;
}
.select-wrapper.open::after {
    transform: translateY(-50%) rotate(180deg);
}

.test_drive .form-horizontal .cont_btn {
    margin: 20px 0;
}
.test_drive .form-horizontal .form-group .checkbox-wrapper label {
    font-size: 14px;
    color: #212529;
    padding-top: 0;
}

@media (max-width: 768px) {
    .test_drive .form-horizontal .btn {
        width: 400px;
    }
    
    .test_drive .form-horizontal .form-group .label-required {
        font-size: 10px;
    }
    
    .test_drive .form-horizontal .form-group .info {
        font-size: 10px !important;
    }
    
    .test_drive .form-horizontal .form-group .checkbox-wrapper label {
        font-size: 12px !important;
    }
    
    .col {
        border-left-width: 0 !important;
    }
    
    .test_drive .form-horizontal .cont_btn {
        margin: 0;
    }
}