
.transition_notify_time{
    transition: .2s;
}

.notify_heder{
    height: 0px;
    overflow: hidden;
    transition: .3s;
    transition-duration: .3s;
}


#notify_block{
    position: fixed;
    bottom: 5px;
    right: 15px;
    z-index: 1100;
}

.hide-all-notify{
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    opacity: .5;
    cursor: pointer;
    transition: .3s;
    display: inline-block;

    background: rgb(255,255,255);
    padding: 3px 12px;
    border-radius: 14px;
}

#notify_block:hover > #hide-all-notify-container > .hide-all-notify{
    opacity: .8;
    transition: .3s;
}

.notify-container{

    margin-top: 0px;
    transform: translateY(140px);
    transition: .3s;
    transition-delay: 0.1s;
    overflow: hidden;
    box-shadow: 0px 0px 135px -2px rgb(32 52 84 / 60%);
    border: 3px solid #23254a14;
    border-radius: 19px;

}

.notify-centered-container{
    width: 100%;
    background: rgb(255 255 255 / 90%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 17px 17px;
    transition: .3s;
}

.notify-centered-container:hover {
    background: rgb(255 255 255 / 100%);
    transition: .3s;
}

.notify-close{
    float: right;
    cursor: pointer;
    margin-top: -13px;
    margin-right: -6px;
    opacity: 0;
    transition: .4s;
}

.notify-close svg{
    width: 14px;
    height: 14px;
}

.notify-container:hover > div > .notify-close{
    opacity: .5;
    transition: .4s;
}

.notify-title{
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 5px;
}

.def > div > .notify-title{
    color: #5a608a;
}

.stat-ok > div > .notify-title, .ok > div > .notify-title{
    color: #3784ff;
}

.warn > div > .notify-title{
    color: #FFA800;
}

.err > div > .notify-title{
    color: #f00;
}

.notify-text{
    font-style: normal;
    font-size: 12px;
    color: #1e2443b0;
    font-weight: 600;
    line-height: 150%;
    max-width: calc(100% - 51px);

}

.notify-time{
    font-style: normal;
    font-weight: 600;
    font-size: 11px;
    line-height: 10px;
    text-align: right;
    color: #0b162440;
    height: 0px;
    top: -13px;
    position: relative;

}

#hide-all-notify-container{
    text-align: center;
    margin-bottom: 0px;
    height: 0px;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    min-width: 368px;
}

#notify-container-list{
    max-width: 368px;
}

