/* Newtoko notification bell */
.notification-widget{
    position:relative !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin-left:6px !important;
    vertical-align:middle !important;
    z-index:9999 !important;
}
.notification-bell{
    position:relative !important;
    width:38px !important;
    height:38px !important;
    border:0 !important;
    border-radius:999px !important;
    background:#1d0e0a !important;
    color:#ffe1b2 !important;
    cursor:pointer !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    box-shadow:0 6px 16px rgba(0,0,0,.25) !important;
    transition:.18s ease !important;
    font-family:inherit !important;
}
.notification-bell:hover{
    transform:translateY(-1px) !important;
    filter:brightness(1.12) !important;
}
.notification-bell-icon{
    font-size:18px !important;
    line-height:1 !important;
}
.notification-badge{
    position:absolute !important;
    top:-5px !important;
    right:-5px !important;
    min-width:19px !important;
    height:19px !important;
    padding:0 5px !important;
    border-radius:999px !important;
    background:#e43d35 !important;
    color:#fff !important;
    font-size:11px !important;
    font-weight:900 !important;
    line-height:19px !important;
    text-align:center !important;
    box-shadow:0 0 0 2px #2a120c !important;
}
.notification-panel{
    display:none !important;
    position:absolute !important;
    top:48px !important;
    right:0 !important;
    width:360px !important;
    max-width:calc(100vw - 24px) !important;
    border:1px solid #7b4930 !important;
    border-radius:16px !important;
    background:linear-gradient(180deg,#512c1f,#2a160f) !important;
    color:#ffe1b2 !important;
    box-shadow:0 18px 45px rgba(0,0,0,.42) !important;
    overflow:hidden !important;
}
.notification-widget.open .notification-panel{
    display:block !important;
}
.notification-panel-head{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
    padding:13px 14px !important;
    border-bottom:1px solid #7b4930 !important;
}
.notification-panel-head b{
    color:#ffe1b2 !important;
    font-size:17px !important;
}
.notification-panel-head button{
    border:0 !important;
    border-radius:999px !important;
    background:#2a160f !important;
    color:#ffd28d !important;
    padding:7px 10px !important;
    font-size:12px !important;
    font-weight:800 !important;
    cursor:pointer !important;
    font-family:inherit !important;
}
.notification-list{
    max-height:430px !important;
    overflow:auto !important;
}
.notification-item{
    display:block !important;
    padding:12px 14px !important;
    border-bottom:1px solid rgba(123,73,48,.7) !important;
    color:#f7dfb7 !important;
    text-decoration:none !important;
    transition:.15s ease !important;
}
.notification-item:hover{
    background:rgba(255,255,255,.055) !important;
}
.notification-item.unread{
    background:rgba(213,138,69,.14) !important;
}
.notification-item-title{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    color:#ffe1b2 !important;
    font-weight:900 !important;
    font-size:14px !important;
    line-height:1.35 !important;
    word-break:break-word !important;
}
.notification-dot{
    width:8px !important;
    height:8px !important;
    border-radius:999px !important;
    background:#ef5a43 !important;
    flex:0 0 auto !important;
}
.notification-item.read .notification-dot{
    background:transparent !important;
}
.notification-item-msg{
    margin-top:4px !important;
    color:#f3d4a3 !important;
    font-size:13px !important;
    line-height:1.38 !important;
    word-break:break-word !important;
}
.notification-item-time{
    margin-top:6px !important;
    color:#c79d6e !important;
    font-size:11.5px !important;
}
.notification-empty{
    padding:18px 14px !important;
    color:#f3d4a3 !important;
    text-align:center !important;
    font-size:13px !important;
}
.notification-toast{
    position:fixed !important;
    right:18px !important;
    bottom:18px !important;
    width:330px !important;
    max-width:calc(100vw - 36px) !important;
    border:1px solid #9b5d38 !important;
    border-radius:15px !important;
    padding:13px 14px !important;
    background:linear-gradient(135deg,#5b2d20,#2a160f) !important;
    color:#ffe1b2 !important;
    box-shadow:0 18px 45px rgba(0,0,0,.4) !important;
    font-weight:800 !important;
    line-height:1.35 !important;
    z-index:999999 !important;
}
.notification-toast small{
    display:block !important;
    margin-top:4px !important;
    color:#f3d4a3 !important;
    font-weight:600 !important;
}
@media(max-width:780px){
    .notification-widget{
        margin-left:0 !important;
    }
    .notification-panel{
        position:fixed !important;
        top:74px !important;
        right:10px !important;
        left:10px !important;
        width:auto !important;
        max-width:none !important;
    }
    .notification-list{
        max-height:60vh !important;
    }
}
