.form__fields {
    padding: 14px;
}

.form__field {
    width: 100%;
    padding: 8px 0;
}

.form__fields__double {
    display: flex;
}

.form__label {
    font-size: 14px;
    font-weight: 500;
    display: block;
    line-height: 1.1;
    color: #666;
    min-height: 19px;
    margin-bottom: 6px;
    padding: 0 1%;
}

.form__sub-label {
    opacity: .6; 
    font-size: 10px;
    padding: 0 1%;
}

.form__radios {
    display: flex;
    margin-bottom: 5px;
}

.form__radio, .form__checkbox {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    margin-left: 15px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.form__radio {
    width: 30%;
}

.form__radio *{
    margin: 0;
}

input[type=radio] {
    cursor: pointer;
    margin: 0 !important;
    height: 20px;
    background-position: -80px 0px;
    background: url(../images/check_smalln.png) no-repeat;
}

input[type=radio]::selection {
    background: #72bf44;
}

input:focus {
    border: 2px solid #48e !important;
}

select:focus {
    border-color: black !important;
    color: black !important;
    box-shadow: none !important;
}

.form__input-30 {
    width: 30% !important;
    margin-bottom: 0;
}

.form__input-80 {
    width: 80% !important;
    margin-bottom: 0;
}

.form__input-90 {
    width: 90% !important;
    margin-bottom: 0;
}

.form__input-100 {
    width: 100% !important;
    margin-bottom: 0;
}

.selRecorrido {
    display: flex; 
    justify-content: center;
    align-items: center;
}

.recorrido {
    text-align: center;
    position: relative;
    width: 15%;
    font-size: 14px; 
    color: rgb(102, 102, 102);
}

.linea1 {
    width: 15%;
}

.linea2 {
    width: 70%;
}

.show_1 {
    font-size: 18px;
    font-weight: bold;
    color: red;
    position: absolute;
    line-height: 17px;
}

.conditions {
    display: block;
    position: relative;
    white-space: pre-line;
    line-height: 140%;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 14px;
    color: rgb(102, 102, 102);
    font-style: italic;
}

.conditions__link {
    color: #72bf44;
    padding: 0 1%;
}

.submitBtn {
    background-color: rgb(221, 221, 221);
    color: black;
    font-size: 15px;
    width: 100px;
    height: 42px;  
    margin: 10px 50px;
    border-radius: 4px;
    font-weight: normal;
    outline: none !important;
}

.addBtn {
    background-color: rgb(221, 221, 221);
    color: black;
    font-size: 15px;
    width: 200px;
    height: 42px;  
    margin: 10px 0px;
    border-radius: 4px;
    font-weight: normal;
    outline: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media screen and (max-width: 560px) {
    .form__fields__double {
        flex-wrap: wrap;
    }

    .recorrido {
        width: 30%;
    }
}