.notification-item {
    box-sizing:border-box;
    
    background-color:#607d8beb;
    width:200px;
    height:150px;
    border-radius:5px;
    box-shadow:var(--bs1);
    padding:5px;
}

.header .notifications{
    position:fixed;
    top:4%;
    right:1%;
    display:flex;
    flex-direction:column;
    overflow-y: auto;
    max-height: calc(100% - var(--modlist-h) - 10px);
}

.header .notifications .notification-item {
    background-color: rgba(255,255,255,0.8);
    color: black;
    backdrop-filter: blur(5px);
    
    padding: 0px;
    /* background-color: #c7c7c7; */
    border: 1px solid black;
    width: auto;
    height: auto;
    /* color: black; */
    margin: 2px;
    
    /* padding: 0px; */
    /* background-color: #4b4b4b; */
    /* border: 1px solid white; */
    /* width: auto; */
    /* height: auto; */

    /* margin: 2px; */
}

.header .notifications .notification-item .header{
    height: auto;
    box-sizing: border-box;
    background-color: transparent;
    border-bottom: 0px;
    font-weight: bold;

    display: flex;
    justify-content: center;
    box-shadow: none;
}

.header .notifications .notification-item .content{
    background-color: transparent;
    padding: 5px 10px;
    padding-top: 0;
    border-radius: 3px;
    box-sizing: border-box;
    height: auto;
}

.header .notifications .notification-item .footer{
    background-color: transparent;
    box-shadow: var(--bs1);
    border-radius: 3px;
    display: flex !important;
    height: auto !important;
    padding: 5px;
}


.header .notifications{
    z-index: 5100;
}

/* .notifications .notification-item .header { */
/*     display: none; */
/* } */

.bubble-notifications.none {
    background-color: var(--c0);
    border: 1px solid var(--c1);
    color: var(--text-color);
}

.bubble-notifications {
    position: absolute;
    right: 5px;
    bottom: -5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    background-color: rgba(255,0,0,0.6);
    width: 20px;
    padding: 5px;
    height: 20px;
    
    border-radius: 360px;
    color: white;
    box-sizing: border-box;
}

.bubble-notifications:hover {
    cursor: pointer;
}

.unhide {
    display: block !important;
    opacity: 1 !important;
}

.header .notifications .notification-item .spot {
    height: 20px;
    width: 20px;
    margin-right: 5px;

    border-radius: 360px;
    border: 1px solid white;
}

.header .notifications .notification-item.success .spot {
    background-color: rgba(46,148,46,0.8) !important;
    /* border: 2px solid rgba(46,148,46,0.8) !important; */
}

.header .notifications .notification-item.error .spot {
    background-color: rgba(140,46,46,0.8) !important;
    /* border: 2px solid rgba(140,46,46,0.8) !important; */
}

.header .notifications .notification-item.notread {
    background-color: rgba(255,255,255,0.8);
    color: black;
    backdrop-filter: blur(5px);
    
    /* background-color: #4b4b4b; */
    /* border: 1px solid white; */
    /* color: white; */
    
    transition: All 1s ease-in-out;
}

.notifications .no_notification {
    background-color: rgba(255,255,255,0.8);
    color: black;
    backdrop-filter: blur(5px);

    border: 1px solid black;
    padding: 10px;
}
