.sellewa-notification-box{
    position:relative;
    display:inline-block;
    margin-left:20px;
}


.sellewa-notification-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f3f7ff;
    cursor:pointer;
    font-size:20px;
    position:relative;
}


.sellewa-notification-count{
    position:absolute;
    top:-5px;
    right:-5px;
    background:red;
    color:white;
    width:20px;
    height:20px;
    border-radius:50%;
    font-size:12px;
    line-height:20px;
}


.sellewa-notification-dropdown{
    display:none !important;
    position:absolute;
    right:0;
    top:35px;
    width:320px;
    max-height:420px;
    overflow:auto;
    background:white;
    border-radius:16px;
    box-shadow:0 10px 35px rgba(0,0,0,.15);
    z-index:99999;
}


.sellewa-notification-dropdown.active{
    display:block !important;
}


.sellewa-notification-item{
    padding:15px;
    border-bottom:1px solid #eee;
    cursor:pointer;
}


.sellewa-notification-item:hover{
    background:#f5f8ff;
}


.sellewa-notification-item strong{
    display:block;
    color:#061735;
}


.sellewa-notification-item p{
    margin:5px 0;
    font-size:14px;
}


.sellewa-notification-item small{
    color:#777;
}


.sellewa-notification-empty{
    padding:20px;
    text-align:center;
}




/* Unread notification */
.sellewa-notification-item.unread {
    background:#ffffff;
    font-weight:600;
    border-left:4px solid #0E66EA;
}


/* Read notification */
.sellewa-notification-item.read {
    background:#f5f7fb;
    opacity:0.65;
    font-weight:400;
}


/* Hover */
.sellewa-notification-item:hover {
    background:#eef4ff;
}




.dispatcher-order-highlight {
    border: 2px solid #0E66EA;
    box-shadow: 0 0 0 5px rgba(14,102,234,.15);
    animation: dispatcherHighlight 1.4s ease 3;
}


@keyframes dispatcherHighlight {

    50% {
        transform: scale(1.02);
    }

}



