/* _custom-forms.scss:136 */

.custom-radio {
    .custom-control-label::before {
        border-radius: $custom-radio-indicator-border-radius;
    }
    .custom-control-input:checked~.custom-control-label {
        &::before {
            @include gradient-bg($custom-control-indicator-checked-bg);
        }
        &::after {
            background-image: $custom-radio-indicator-icon-checked;
        }
    }
    .custom-control-input:disabled {
        &:checked~.custom-control-label::before {
            background-color: $custom-control-indicator-checked-disabled-bg;
        }
    }
}