:root {
    --clr-form-active: #f00;
    --clr-form-border: #000;
    --clr-form-check: forestgreen;
    --clr-form-cross: darkred;
    --clr-form-submit: lawngreen;
}


@media screen and (min-width: 1200px) {
    .cols--12 {
        width: 100%;
    }

    .cols--11 {
        width: 91.63%;
    }

    .cols--10 {
        width: 83.33%;
    }

    .cols--9 {
        width: 75%;
    }

    .cols--8 {
        width: 66.66%;
    }

    .cols--7 {
        width: 58.31%;
    }

    .cols--6 {
        width: 50%;
    }

    .cols--5 {
        width: 41.65%;
    }

    .cols--4 {
        width: 33.33%;
    }

    .cols--3 {
        width: 25%;
    }

    .cols--2 {
        width: 16.66%;
    }

    .cols--1 {
        width: 8.33%;
    }

    .form__row {
        display: flex;
        flex-wrap: wrap;
    }
}

.discovery-forms__response {
    height: 10rem;
    border: 1px solid;
    width: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__cell {
    margin-top: 0;
    padding: 0 6px;
}
    .form__cell input,
    .form__cell .checkbox__faux,
    .form__cell select,
    .form__cell textarea {
        margin-top: 0;
    }

        .form__cell input:active,
        .form__cell input:focus,
        .form__cell .checkbox__faux:active,
        .form__cell .checkbox__faux:focus,
        .form__cell select:active,
        .form__cell select:focus,
        .form__cell textarea:active,
        .form__cell textarea:focus {
            outline: 2px solid var(--clr-form-active);
        }

    .form__cell .checkbox .checkbox__faux {
        aspect-ratio: 1/1;
        border: 1px solid var(--clr-form-border);
        cursor: pointer;
        height: 30px;
        width: 30px;
    }

        .form__cell .checkbox .checkbox__faux .check,
        .form__cell .checkbox .checkbox__faux .cross {
            color: #fff;
            display: inline-block;
            font-size: 18px;
            height: 100%;
            pointer-events: none;
            text-align: center;
            user-select: none;
            width: 100%;
        }

        .form__cell .checkbox .checkbox__faux .check {
            background-color: var(--clr-form-check);
        }

        .form__cell .checkbox .checkbox__faux .cross {
            background-color: var(--clr-form-cross);
        }

        .form__cell .checkbox .checkbox__faux.checked .cross {
            display: none !important;
        }

        .form__cell .checkbox .checkbox__faux.unchecked .check {
            display: none !important;
        }

    .form__cell input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    .form__cell select,
    .form__cell textarea {
        padding: 8px;
        width: 100%;
    }
    
    .form__cell input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    .form__cell select {
        height: 40px;
    }

    .form__submit button,
    .form__cell input[type="submit"] {
        background-color: var(--clr-form-submit);
    }

    .form__cell .cell__label__text {
        display: block;
        font-size: 12px;
        font-weight: 700;
        margin: 0 0 4px 0;
        max-width: 100%;
    }

    .form__cell .radio-buttons,
    .form__cell .radio-input {
        display: flex;
    }

    .form__cell .radio-buttons {
        gap: 16px;
    }

    .form__cell .radio-input input {
        margin-top: 0;
    }

    .form__cell .radio-input label {
        margin-bottom: 0;
        margin-right: 6px;
    }

.form__row {
    margin-bottom: 12px;
}

.sr-only {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}
