.notif-toast-container {
    position: fixed;
    top: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
}

.border-timer-notif {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    animation: shrinkWidth 3s linear forwards;
}

@keyframes shrinkWidth {
    from { width: 100%; }
    to { width: 0%; }
}

.border-timer-notif.border-error {
    background-color: #e60019;
}

.border-timer-notif.border-success {
    background-color: #00c9a7;
}

.notif-chat-card:hover .border-timer-notif {
    animation-play-state: paused;
}

.notif-card {
    margin: 8px 0;
    width: 100%;
    border: 0px;
    width: 450px;
    border-radius: 4px;
    overflow: hidden;
}

.notif-card .text-notif-status {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.notif-card .text-notif {
    font-size: 13px;
    line-height: 1.2;
}
