
#notif-button {
    /*position: absolute;*/
    width: 45px;
    height: 40px;
    font-size: 20px;

}


#notif-button:active, #notif-button:hover {
    border: 0px;
    outline: 0px;
}


.notif-list-parts {
    transition: 250ms background, 250ms color;
}


.notif-list-parts:hover {
    background: #0989B3;
    color: white;

}

#notificationNumber {
    position: absolute;
    top: 7px;
    right: -17px;
}


#listOfNotifications {
    border: 1px #868686 solid;
    position: absolute;
    top: 150%;
    width: 400px;
    visibility: hidden;
    opacity: 0;
    /*z-index: 100;*/
    transition: 250ms top, 250ms opacity, 250ms max-height;
    background-color: #fcfcfc;
    border-radius: 8px;
    overflow-y: scroll;
}

.notification-list li {
    width: 100%;
    display: block;
    margin: 0;

    list-style: none;
}

.z-0 {
    z-index: 0 !important;
}


.z-10 {
    z-index: 10 !important;
}

