.notifications-staff {
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 9999;
}


.notification-letter {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-letter:hover{
    opacity: 0.8;
    transform: scale(1.1);
    transition: all 0.3s ease;
}


.notification-quantity
{
    position: absolute;
    top: -5px;
    background-color: red;
    right: -5px;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
}
.notification-letter:hover + .notification-quantity {
    opacity: 1;
    transform: translateX(5px);
}

.notifications-content{
    display: flex;
    color: var(--text-main);
    background-color: var(--bg-dark2) !important;
    
    width: max-content;
    /* padding: 20px; */
    justify-content: center;
    align-items: center;
  position: absolute;
  right: 30px;
  bottom: 90px;
}

@media (max-width:750px) {
    .notifications-staff{
        bottom:50px
    }
}

