.notifications-container {
    opacity: 0;
    visibility: hidden;
    width: 400px;
    position: absolute;
    background: #fff;
    top: 52px;
    left: -86px;
    box-shadow: 8px 8px 16px rgb(77 91 100 / 15%);
    border-radius: 12px;
    transition: opacity 0.5s ease-in-out;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.show-notifications {
    opacity: 1;
    visibility: visible;
}

.notifications-btns-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.notifications-btns-container span {
    padding: 5px 12px;
    cursor: pointer;
}

.notifications-btn {
    padding: 5px 12px;
    background: var(--rojo-tokko);
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

.notifications-btn:hover {
    text-decoration: none;
    background-color: var(--rojo-tokko-hover);
}

.notification-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.notification-icon-container span {
    height: 19px;
    width: 1px;
    background: var(--gris-8);
}

.cont-icon-notifications i {
    font-size: 18px;
    color: var(--rojo-tokko);
}

.cont-iconStar-notifications i {
    font-size: 18px;
    color: var(--gris-4);
}

.cont-icon-notifications,
.cont-iconStar-notifications {
    padding: 8px;
    border-radius: 9px;
    background-color: var(--gris-8);
}

.cont-iconStar-notifications {
    cursor: pointer;
}

.cont-iconStar-notifications {
    margin-top: 17px;
}

.cont-icon-notifications {
    border-radius: 50%;
}

.notifications-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0px 16px;
}

.notifications_height_limit {
    height: 268px;
    overscroll-behavior: contain;
    overflow: auto;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.notification-info-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 17px;
}

.decoration_none {
    text-decoration: none !important;
}

.notification-time {
    font-weight: 700;
    margin-top: 4px;
}

.notifications-container h3 {
    padding: 16px;
    padding-bottom: 0px;
}

.notifications_height_limit::-webkit-scrollbar {
    width: 2px;
}

.notifications_height_limit::-webkit-scrollbar-track {
    background-color: white;
}

.notifications_height_limit::-webkit-scrollbar-thumb {
    background-color: #6F838D;
}

.notifications-btns-container_starred {
    justify-content: end;
}

.cont-iconStar-notifications_starred {
    background-color: #3188A4;
}

.cont-iconStar-notifications_starred i {
    color: #ffffff;
}


.loading_notification {
    display: grid;
    height: 50px;
    width: 100%;
    background: #fff;
    place-items: center;
    margin-bottom: 16px;
}

.loading_notification div {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: rotation 1s linear infinite;
    background: linear-gradient(white, white), conic-gradient(#878c9b, #ffffff);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.noti_seen i {
    color: var(--gris-4);
}

.body-noti {
    font-size: 12px;
    line-height: 16px;
}

.font-bolder-noti{
    font-weight: 700;
}

.empty_notif_container {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #EFF3F5;
    margin-bottom: 16px;
}