.form-control,
.form-select {
    border-radius: 0;
    border-radius: 4px;
    padding: 6px 12px;
    height: 38px;
}

.form-select {
    padding-right: 35px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url('../../img/calendar-icon.svg');
    margin-left: 0;
}

.validation-message {
    text-align: start;
}

.center-validation-message {
    text-align: center !important;
}

.input-group-text {
    height: 35px;
    border-radius: 5px 0 0 5px;
}

input[type="radio"]:hover {
    cursor: pointer;
}

.form-control.invalid {
    background-position: right calc(0.775em + 0.1875rem) center;
}

.form-label {
    margin-bottom: 0;
}

.default-select {
    color: #6c757d;
}

.form-check-label {
    color: var(--slate);
}

.form-check-inline .form-check-input {
    margin-top: 3px;
}

.form-check-input:hover {
    cursor: pointer;
}

:not(.form-switch) > input[type="checkbox"].form-check-input {
    border-radius: 0 !important;
    border: 3px solid var(--dark-grey);
    height: 20px;
    width: 20px;
    margin-top: 3px;
}

:not(.form-switch) > input[type="checkbox"].form-check-input:checked[type="checkbox"] {
    background-image: url(../../img/white-check.svg);
    -ms-background-size: 11px;
    background-size: 11px;
    -ms-background-repeat: no-repeat;
    background-repeat: no-repeat;
    -ms-background-position: center 1px;
    background-position: center 1px;
    background-color: transparent;
    border: 3px solid var(--mid-blue);
}

:not(.form-switch) > input[type="checkbox"].form-check-input:disabled {
    background-color: var(--light-grey-2);
    opacity: 100;
}

:not(.form-switch) > input[type="checkbox"].form-check-input:disabled:checked {
    background-image: url(../../img/disabled-check.svg);
    background-color: var(--light-grey-2);
    border: 3px solid var(--dark-grey);
    opacity: 100;
}

:not(.form-switch) > input[type="checkbox"].form-check-input.valid.invalid {
    background-image: url(../../img/red-check-mark.svg);
}

:not(.form-switch) > input[type="checkbox"].form-check-input.invalid
{
    outline: none;
}

@media (max-width: 768px) {
    :not(.form-switch) > input[type="checkbox"].form-check-input:checked[type="checkbox"] {
        border: 2px solid var(--mid-blue);
    }
}

.form-switch .form-check-input {
    width: 40px !important;
    height: 20px;
    background-color: var(--dark-grey);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='4' fill='%23fff'/%3e%3c/svg%3e") !important;
}

    .form-switch .form-check-input:checked {
        background-color: var(--mid-blue);
    }

    .form-switch .form-check-input:disabled {
        background-color: var(--light-grey-3);
        border: 1px solid var(--light-grey-3);
    }

    .form-switch .form-check-input:checked:disabled {
        background-color: var(--mid-blue);
        opacity: 30%;
    }

.form-check-input[type=radio] {
    position: relative;
    border: 2px solid rgba(0, 0, 0, .25);
}

.form-check-input:checked[type=radio] {
    background-color: #0073AD;
    border-color: #838383;
    box-shadow: inset 0 0 0 2px white;
    background-image: none;
}