.ToggleTextInput {
    align-items: center;
    display: inline-flex;
    justify-content: center;

    &-error {
        border-color: $red-destroy;
    }

    &-toggle {
        align-items: center;
        display: inline-flex;
        justify-content: center;
    }

    &-label {
        color: $timberwolf;
        font-size: 9px;
        font-weight: 500;
        letter-spacing: .3px;
        transition: color .2s ease-in-out;

        &-enabled {
            color: $bluefish;
        }
    }

    /* stylelint-disable selector-class-pattern */
    &-input.form-control {
        background-color: $mouse;
        border: 0;
        border-radius: 0;
        width: 327px;
    }

    &-input-enabled.form-control {
        background-color: white;
    }
    /* stylelint-enable selector-class-pattern */
}
