@import '/UI/Style.scss';

InputCheckbox {
    color: $white;
    text-transform: uppercase;
    align-items: center;
    padding: 10px 0px;

    >.text {
        flex-shrink: 0;

        >.label {
            font-size: 34px;
            margin-right: 20px;
            align-items: center;
        }
    }

    &.disabled {
        color: $smoke-gray;

        Checkbox {
            opacity: 0.3;
        }
    }
}