@include exports("notification/theme") {

    // Theme
    .k-notification {
        @extend .k-text-selection;
        @include fill(
            $notification-text,
            $notification-bg,
            $notification-border
        );
    }
    .k-notification-wrap {
        > .k-i-close {
            color: inherit;
        }
    }
    .k-notification-group .k-notification {
        box-shadow: $notification-shadow;
    }
    .k-notification-info {
        @include fill(
            $notification-info-text,
            $notification-info-bg,
            $notification-info-border
        );
    }
    .k-notification-success {
        @include fill(
            $notification-success-text,
            $notification-success-bg,
            $notification-success-border
        );
    }
    .k-notification-warning {
        @include fill(
            $notification-warning-text,
            $notification-warning-bg,
            $notification-warning-border
        );
    }
    .k-notification-error {
        @include fill(
            $notification-error-text,
            $notification-error-bg,
            $notification-error-border
        );
    }

}
