.notifications-container {
    position: absolute;
    margin-top: 65px;
    width: 300px;
    border-radius: 14px;
    background: #101626;
    padding: 10px;
}

.notifications-container .notifications-title {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 5px;
}
.notifications-container .notifications-list {
    display: flex;
    gap: 5px;
    /* max-height: calc(100vh - 80px - 80px - 15px - 30px - 20px); */
    max-height: 360px;
    overflow: hidden scroll;
    flex-direction: column;
}
.notifications-container .notifications-list .notification {
    display: flex;
    border-radius: 14px;
    background: linear-gradient(90deg, #161C2D 0%, rgba(22, 28, 45, 0.25) 100%);
    padding: 10px 0px;
}

.notifications-container .notifications-list .notification .border {
    border-radius: 0px 14px 14px 0px;
    background: #4FACFE;
    box-shadow: 0 0 20px 4px rgba(79, 172, 254, 0.25);
    width: 4px;
    height: auto;
    margin: 5px 0px;
}
.notifications-container .notifications-list .notification .notification-content {
    display: flex;
    margin-left: -4px;
    width: 100%;
}
.notifications-container .notifications-list .notification .notification-content .notification-details {
    display: flex;
    flex-direction: column;
    padding: 0px 16px;
    gap: 2px;
    width: 100%;
}
.notifications-container .notifications-list .notification .notification-content .notification-details .notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 12px;
}
.notifications-container .notifications-list .notification .notification-content .notification-details .notification-title {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}
.notifications-container .notifications-list .notification .notification-content .notification-details .notification-time {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
}
.notifications-container .notifications-list .notification .notification-content .notification-details .notification-text {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}
.notifications-container .notifications-list .notification .notification-content .notification-details .notification-text b {}

.notifications-container .notifications-list .empty {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-height: 800px) {
    .notifications-container .notifications-list {
        max-height: calc(100vh - 80px - 80px - 15px - 30px - 20px);
    }
}

@media (max-width: 500px) {
    .notifications-container {
        width: calc(100vw - 20px);
        right: 0;
        top: 15px;
        border-radius: 0px 0px 14px 14px;
        background: rgba(9, 15, 30, 0.9);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        -o-backdrop-filter: blur(6px);
        -moz-backdrop-filter: blur(6px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}