/****/
body {
    overflow-y: scroll;
    color: #474747;
}


label.required::before {
    content: ' *';
    color: red;
}


/****/
.form-identification-data {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.form-identification-data-selected {
    max-height: 80vh;
    margin: 0px 0px 18px 0px;
}

.form-anonymous-data,
.form-identified-data,
.form-identified-modality,
.form-attached-files {
    display: none;
}
.form-anonymous-data-selected,
.form-identified-data-selected,
.form-identified-modality-selected,
.form-attached-files-selected {
    display: initial;
}

/****/
.btn-group input[type="radio"]:checked + label {
    background-color: #6c757d; /* Color de fondo similar a btn-outline-secondary */
    border: 1px solid #6c757d; /* Color del borde similar a btn-outline-secondary */
    color: #fff; 
}

.form-modality {
    gap: 0px 14px;
}
.form-modality label {
    min-width: 120px;
}

/****** PC ******/
@media (min-width: 769px) {
    .columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .column-1 {
        grid-column: span 1;
    }
    .column-2 {
        grid-column: span 2;
    }
    .column-3 {
        grid-column: span 3;
    }
}

/**** TABLET ****/
@media (max-width: 768px) {

}

/**** MOBILE ****/
@media (max-width: 480px) {
    
}