.radio__select {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.radio__select--grid {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: auto;
}

.radio__label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/*.radio__label::before,*/
/*.radio__label::after {*/
/*    content: "";*/
/*    display: flex;*/
/*    height: 24px;*/
/*    width: 24px;*/
/*    border: 1px solid #000;*/
/*}*/

/*.radio__label::after {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    transform: translate(0, -50%);*/

/*    clip-path: inset(0 100% 0 0);*/
/*    background: url(/public/images/svgs/check.svg) center center / 24px 24px no-repeat;*/
/*    transition: clip-path .5s ease-in-out;*/
/*}*/

/*.radio__select input[type="radio"]:checked + .radio__label::after {*/
/*    clip-path: inset(0 0 0 0);*/
/*}*/

.radio__title {
    font-size: 16px;
    font-weight: 500;
}

.radio__input {
    flex: 0 0 100%;
    transition: background-color .5s ease-in-out;
}

.radio__input--disabled {
    cursor: not-allowed;
    pointer-events: none;

    background: #e3e3e3;
}

.radio__option {
    display: flex;
    gap: 8px;
}

@media (max-width: 888px){
    section.request-form.page {
        background-image: none;
        background-color: var(--color-cinza-claro) !important;
        width: 100%;
        min-height: 950px;
        padding: 56px 0;
        display: block;
    }
}

.request-form .container {
    max-height: unset !important;
}
