.zing-increase-sign-up {
    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);
    z-index: 9999999999;
    animation-fill-mode: both;
}
.zing-increase-sign-up__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: 800px;
    opacity: 0;
    animation: zingZoomIn 0.4s ease;
    animation-fill-mode: both;
}
.zing-increase-sign-up__close-btn {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
    height: 20px;
    width: 20px;
}
.zing-increase-sign-up__banner {
    width: 50%;
    height: 512px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zing-increase-sign-up__banner img {
    width: 100%;
    height: 100%;
}
.zing-increase-sign-up__banner-hint {
    font-size: 48px;
    font-weight: 500;
    color: #b5b5b5;
}
.zing-increase-sign-up__text {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}
.zing-increase-sign-up .zing-btn {
    background-color: var(--button_color);
    color: var(--button_text_color);
    border-radius: var(--button_corner_radius);
    max-width: 240px;
    margin-top: 20px;
}
.zing-increase-sign-up__content.top {
    flex-direction: column;
    max-width: 450px;
}
.zing-increase-sign-up__content.top .zing-increase-sign-up__banner {
    height: 240px;
}
.zing-increase-sign-up__content.top .zing-increase-sign-up__banner,
.zing-increase-sign-up__content.top .zing-increase-sign-up__text {
    width: 100%;
}
.zing-increase-sign-up__content.right {
    flex-direction: row-reverse;
}

@media screen and (max-width: 576px) {
    .zing-increase-sign-up .zing-increase-sign-up__banner {
        display: none;
    }
    .zing-increase-sign-up .zing-increase-sign-up__text {
        width: 100%;
    }
}
