#notification-box {
    position: fixed;
    right: 10px;
    top: 100px;

    max-height: calc(100% - 100px);
    height: 500px;
    min-height: 200px;

    z-index: 1001;
    display: none;
    pointer-events: auto;

    width: 316px;
    background: var(--body-bg);
    box-shadow: 0 0 52px -5px #00000045;
    border-radius: 14px;
    overflow: hidden;
    resize: vertical;
    border: 1px solid var(--border-color);
}

#notification-header {
    height: 44px;
    padding: 0 12px;
    background: var(--body-bg);
    border-bottom: 1px solid var(--border-color);
    border-radius: 14px 14px 0 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: move;
    user-select: none;
}

#notification-header-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
}

#notification-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-color);
}

#notification-content {
    height: calc(100% - 44px);
    overflow-y: auto;
}

#notif-alert-player,
#notif-alert-hotel {
    background: #ff4b4b;
    color: white;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    z-index: 20;
    justify-content: center;
}

#notif-alert-player {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
}

#notif-alert-hotel {
    display: none;
    position: absolute;
    top: -7px;
    right: -10px;
}

.moduleNotificationBorder {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.moduleNotificationBubbleTitle {
    font-size: 24px;
    color: var(--text-color);
    padding: 12px;
}

.moduleNotificationContainer {
    height: 87%;
    width: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.moduleNotificationBubble {
    width: calc(100% - 20px);
    border-radius: 20px;
}

.moduleNotificationBubbleReward {
    background: #EFE3FB;
    box-shadow: 0 2px 6px #8463BE;
}

.moduleNotificationBubbleCenter {
    box-shadow: 0 2px 6px #B85E11;
    background: #FFF3D6;
}

.moduleNotificationBubbleForum {
    box-shadow: 0 2px 6px #4CA7AB;
    background: #E0FFF9;
}

.moduleNotificationBubbleMention {
    box-shadow: 0 2px 6px #ADADAD;
    background: #EBEBEB;
}

.moduleNotificationBubbleSupport {
    box-shadow: 0 2px 6px #9F4CAB;
    background: #EAD6D6;
}

.moduleNotificationBubbleVip {
    box-shadow: 0 2px 6px #ADADAD;
    background: #EBEBEB;
}

.moduleNotificationBubbleWarning {
    box-shadow: 0 2px 6px #FF5942;
    background: #FFEAE3;
}

.moduleNotificationBubbleHigh {
    padding: 10px;
    display: flex;
}

.moduleNotificationBubbleHighLeft {
    width: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.moduleNotificationBubbleHighRight {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.moduleNotificationBubbleHighRightTextBox {
    width: 95%;
    font-size: 19px;
    color: black;
}

.moduleNotificationBubbleHighRightTextDescription {
    width: 95%;
    font-size: 14px;
    color: black;
}

.moduleNotificationBubbleBubbleTime {
    margin-left: auto;
    width: auto;
    padding: 0 8px;
    height: 36px;
    border-radius: 21px;
    font-size: 19px;
    background: var(--box-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moduleNotificationBubbleBubbleTimeIcon {
    height: 24px;
    width: 24px;
    background: url(../img/center/time.png) no-repeat;
}

.moduleNotificationBubbleHighRightTextBoxLittle {
    color: #6F6F6F;
    font-size: 15px;
}

.moduleNotificationBubbleDown {
    padding: 0 0 8px 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.moduleNotificationBubbleDown:hover {
    cursor: pointer;
    opacity: 0.7;
}

.moduleNotificationBubbleButton {
    margin-right: 11px;
    width: 87px;
    height: 36px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moduleNotificationBubbleButtonReward {
    background: #8463BE;
}

.moduleNotificationBubbleButtonCenter {
    background: #B85E11;
}

.moduleNotificationBubbleButtonForum {
    background: #4CA7AB;
}

.moduleNotificationBubbleButtonCheck {
    margin-right: 11px;
    width: 46px;
    height: 36px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moduleNotificationBubbleButtonCheckIcon {
    height: 19px;
    width: 25px;
}

.moduleNotificationEmptyTitle {
    margin-top: 45px;
    font-size: 22px;
    align-items: center;
    text-align: center;
}

.moduleNotificationEmptyBody {
    margin-top: 12px;
    align-items: center;
    text-align: center;
}
