
.registration_row{
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    gap: 15px;
}
.campo-2{
    width: 100%;
    max-width: 464px;
}
.campo-3{
    width: 100%;
    max-width: 310px;
}

.content-select{
    position: relative;
    display: flex;
    align-items: center;    
}
.content-select select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;    
}
.content-select select::-ms-expand {
    display: none;
}
.content-select i{
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    display: block;
    border-left:2px solid #103068;
    border-bottom:2px solid #103068;
    transform: rotate(-45deg); /* Giramos el cuadrado */
    transition: all 0.25s ease;
    cursor: pointer;
}
.modal-content select{
    display: block;
    width: 100%;
    height: 60px;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #F7F7F7;
    background-clip: padding-box;
    border: none;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    background-image: none;

    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 130%;
    letter-spacing: normal;
    text-align: left;
    color: #002F6C;
}
.modal-content select:disabled {
    background-color: transparent;
    padding: 19px 125px 22px 0;
    opacity: 1;
}

.option_row{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 50px;

    margin: 15px 0 40px 0;
}
.option{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;

    height: 50px;
}
.input_option{
    width: 40px;
    height: 40px;
    background: transparent;    
    border:none;
    color: transparent;
    -webkit-box-shadow: none;
    margin: 0;
    cursor: pointer;
}
.input_option:hover{
    -webkit-box-shadow: none;
}
.input_option:focus{
    -webkit-box-shadow: none;
    border:none;
}
.option_off{
    background-image: url("../img/option_off.png");
}
.option_on{
    background-image: url("../img/option_on.png");
}

@media (max-width: 520px) {
    .registration_row{
        gap: 0;
    }
    .option_row{
        display: flex;
        align-items: center;
        justify-content: start;
        flex-wrap: wrap;
        gap: 0;
    
        margin: 15px 0 40px 0;
    }
}