.notifications{
    position: relative;
}

.notifications .counter{
    position: absolute;
    top:10px;
    right:-7px;
    background-color: #d40000;
    color: #FFFFFF;
    padding: 2px 4px;
    z-index: 9999;
    font-size: 11px;
    border-radius: 10px;
    font-weight: 600;
}

.notification-wrapper{
    position: absolute;
    top: 40px;
    left:0px;
    background: #FFFFFF;
    z-index: 9999;
    border: 1px solid #555;
    width: 400px;
    max-width: 80vw;
    box-shadow: 0px 0px 15px #555;
}

.notification-wrapper::after{
    content: ' ';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 20px 15px;
    border-color: transparent transparent #000000 transparent;
    position: absolute;
    top: -20px;
    left: 62px;
}

.notification-wrapper .notification-header{
    font-size: 13px;
    color: #FFFFFF;
    background: #000000;
    padding: 10px;
}

.notification-wrapper .notification-box{
    font-size: 13px;
    color: #000000;
    background-color: #FFFFFF;
    padding: 0px;
    overflow-y: scroll;
    max-height: 341px;
}

.notification-wrapper .notification-box .notification-item{
    padding: 5px;
    border-bottom: 1px solid #a1a1a1;
    padding: 10px 5px;
}

.notification-wrapper .notification-box .notification-item:nth-child(2n){
    background-color: #ebebeb;
}

.notification-wrapper .notification-box .notification-item a{
    margin-left: 0px;
    margin-right: 0px;
    font-weight: 600;
    color: #00B405;
    font-size: 13px;
}

.notification-wrapper .notification-box .notification-item:last-child{
    border-bottom: 0px;
}