@import "mixins/mixins";
@import "common/var";

@include b(notification) {
    display: flex;
    width: $--notification-width;
    padding: $--notification-padding;
    border-radius: $--notification-radius;
    box-sizing: border-box;
    border: 1px solid $--notification-border-color;
    position: fixed;
    background-color: $--color-white;
    box-shadow: $--notification-shadow;
    transition: opacity .3s, transform .3s, left .3s, right .3s, top .4s, bottom .3s;
    overflow: hidden;

    &.right {
        right: 16px;
    }

    &.left {
        left: 16px;
    }

    @include e(group) {
        margin-left: $--notification-group-margin;
    }

    @include e(title) {
        font-weight: bold;
        font-size: $--notification-title-font-size;
        color: $--notification-title-color;
        margin: 0;
    }

    @include e(content) {
        font-size: $--notification-font-size;
        line-height: 21px;
        margin: 6px 0 0 0;
        color: $--notification-color;
        text-align: justify;

        p {
            margin: 0;
        }
    }

    @include e(icon) {
        height: $--notification-icon-size;
        width: $--notification-icon-size;
        font-size: $--notification-icon-size;
    }

    @include e(closeBtn) {
        position: absolute;
        top: 18px;
        right: 15px;
        cursor: pointer;
        color: $--notification-close-color;
        font-size: $--notification-close-font-size;

        &:hover {
            color: $--notification-close-hover-color;
        }
    }

    .fa-check-circle {
        color: $--message-success-color;
    }

    .fa-times-circle {
        color: $--message-danger-color;
    }

    .fa-info-circle {
        color: $--message-info-color;
    }

    .fa-exclamation-circle {
        color: $--message-warning-color;
    }
}

.el-notification-fade-enter {
    &.right {
        right: 0;
        transform: translateX(100%);
    }

    &.left {
        left: 0;
        transform: translateX(-100%);
    }
}

.el-notification-fade-leave-active {
    opacity: 0;
}
