#notify-container {
    position: fixed;
    z-index: 999999;
    height: 0;
    top: 15px;
    left: 50%;
}

.notify__item {
    opacity: 0;
    transition: all .2s;
}

.notify__item.success {
    color: #66bb6a
}

.notify__item.error {
    color: #ef5350
}

.notify__item.info {
    color: #42a5f5
}

.notify__item.default {
    color: #bdbdbd
}

.notify__item.show {
    opacity: 1;
}

.notify__item:not(.show) {
    z-index: 0;
    opacity: 0;
    margin-bottom: -53px;
}

.notify__item-wrap {
    font-size: 12px;
    line-height: 14px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 320px;
    min-height: 50px;
    padding: 10px 40px 10px 50px;
    -webkit-transition: box-shadow .3s;
    transition: box-shadow .3s;
    -webkit-animation: showUp .4s;
    animation: showUp .4s;
    border-radius: 12px;
    background-color: #3b3f9a;
    width: 100%;
    border-left: solid 2px #6267cf;
}

.toast-error .notify__item-wrap {
    border-color: #e60663;
}

.toast-success .notify__item-wrap {
    border-color: #96c773;
}

.toast-error .notify__item-wrap:before {
    background: #e60663
}

.notify__item-wrap:before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #96c773;
    filter: blur(17px);
    opacity: .8;
}

.notify__aside,.notify__item-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center
}

.notify__aside {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    text-align: center;
    -webkit-align-items: center;
    align-items: center
}

.notify__aside img {
    -webkit-animation: showIcon .4s;
    animation: showIcon .4s
}

.notify__title {
    padding-bottom: 5px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.notify__message {
    color: #c4c7ff;
    word-break: break-word;
    font-weight: 500;
}

.notify__close {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    font-size: 22px;
    color: #bdbdbd;
    -webkit-transition: background-color .4s;
    transition: background-color .4s;
    border: none;
    outline: none;
    cursor: pointer
}

.notify__close:active,.notify__close:focus {
    outline: none
}

.notify__close:hover {
    background-color: #fafafa;
    outline: none
}

@keyframes showIcon {
    0% {
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    60% {
        -webkit-transform:scale(1.4);
        transform:scale(1.4)
    }
    to {
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}