.zing-increase-point {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 24px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zingPopupFadeIn 0.4s ease;
    animation-delay: var(--animation_delay);
    animation-fill-mode: both;
    z-index: 9999999999;
}
.zing-increase-point__content {
    border-radius: var(--panel_corner);
    background-color: #fff;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px;
}
.zing-increase-point__close-btn {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
    height: 20px;
    width: 20px;
}
.zing-increase-point__banner {
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zing-increase-point__banner img {
    width: 100%;
    height: 100%;
}
.zing-increase-point .zing-btn {
    background-color: var(--button_color);
    color: var(--button_text_color);
    border-radius: var(--button_corner_radius);
    max-width: 240px;
}
