﻿/* =========================
   BELL
========================= */

#notifBellWrapper {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 99998;
    color: #ffc107;
    font-size: 22px;
    cursor: pointer;
    animation: notifPulse 2s infinite;
}

#notifCount {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    text-align: center;
}

/* ANIMATION */
@keyframes notifPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================
   TOAST
========================= */

#appToast {
    position: fixed;
    top: 75px;
    right: 20px;
    z-index: 99999;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: rgba(24,30,36,.96);
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.45);
}

    #appToast .toast-header {
        background: rgba(255,255,255,.05);
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

#toastBody {
    max-height: 250px;
    overflow-y: auto;
    font-size: 10px;
}

.notification-item {
    padding: 4px 0;
    font-size: 10px;
    line-height: 1.15;
}

    .notification-item:last-child {
        border-bottom: none;
    }
