.noti-wrapper{
    position:relative;
}

.noti-bell{
    cursor:pointer;
    font-size:20px;
    padding:8px 12px;
}

/* dropdown */
.noti-dropdown{
    position:absolute;
    top:45px;
    right:0;
    width:340px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    display:none;
    z-index:9999;
    overflow:hidden;
}

/* header */
.noti-header{
    padding:12px 14px;
    color:#333;
    border-bottom:1px solid #eee;
    font-weight:600;
    background:#f8f9fa;
}

/* list */
#notiList{
    max-height:400px;
    overflow-y:auto;
    background:#fff;
}

/* item */
.noti-item{
    padding:12px 14px;
    border-bottom:1px solid #f1f1f1;
    cursor:pointer;
    background:#fff;
}

.noti-item:hover{
    background:#f5f7fb;
}

/* unread */
.noti-unread{
    background:#eef4ff;
}

/* read */
.noti-read{
    background:#fff;
}

/* title */
.noti-title{
    font-weight:600;
    color:#222;
}

/* message */
.noti-message{
    font-size:13px;
    color:#555;
    margin-top:3px;
}

/* time */
.noti-time{
    font-size:11px;
    color:#999;
    margin-top:4px;
}

.noti-badge{
    position:absolute;
    top:3px;
    right:6px;
    background:red;
    color:white;
    border-radius:50%;
    padding:2px 6px;
    font-size:11px;
}