@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");

:root {
    --color-1: #ee9539;
    --color-2: #f64c18;
    /*--background-color: linear-gradient(274.37deg, var(--color-1) -35.5%, var(--color-2) 190.33%);*/
    --text-color: #000000;

    /* theme color */
    --primary-color: #000;
    --banner_background_primary_color: #000;
    --banner_background_secondary_color: #fff;
    --background_banner: linear-gradient(
        135.19deg,
        var(--banner_background_primary_color),
        var(--banner_background_secondary_color)
    );
    --background_banner_url: url("");
    --banner_text_color: #ffffff;

    --button_background_primary_color: #ffffff;
    --button_background_secondary_color: #ffffff;
    --button_launcher_background_primary_color: #ffffff;
    --button_launcher_background_secondary_color: #ffffff;
    --button_launcher_text_color: #000;
    --background_button: linear-gradient(
        to right,
        var(--button_background_primary_color),
        var(--button_background_secondary_color)
    );
    --background_launcher_button: linear-gradient(
        to right,
        var(--button_launcher_background_primary_color),
        var(--button_launcher_background_secondary_color)
    );
    --button_text_color: #000;

    --icon_background_primary_color: #ffffff;
    --icon_background_secondary_color: #ffffff;
    --background-icon: linear-gradient(
        to right,
        var(--icon_background_primary_color),
        var(--icon_background_secondary_color)
    );

    --icon_primary_color: #ffffff;
    --icon_secondary_color: #ffffff;
    --color_icon: linear-gradient(to right, var(--icon_primary_color), var(--icon_secondary_color));
    --icon_color: var(--icon_primary_color);
    --icon_size: 100%;
    --heading_text_color: #ffff;
    --section_background: #ffffff;
    --section_title_color: #000000;
    --section_desc_color: #616161;
    --section_border_color: #616161;
    /* end theme color */

    /* card color */
    --card_background_primary_color: #ffffff;
    --card_background_secondary_color: #ffffff;
    --background_card: linear-gradient(
        to right,
        var(--card_background_primary_color),
        var(--card_background_secondary_color)
    );

    --card_button_primary_color: #ffffff;
    --card_button_secondary_color: #ffffff;
    --background_button_card: linear-gradient(
        to right,
        var(--card_button_primary_color),
        var(--card_button_secondary_color)
    );
    --card_button_text_color: #ffffff;

    --card_text_color: #000;

    --card_footer_primary_color: "#595B5B";
    --card_footer_secondary_color: "#595B5B";
    --card_footer_bg: linear-gradient(to right, var(--card_footer_primary_color), var(--card_footer_secondary_color));
    --card_footer_text_color: "#000";
    --process_bar_color: #9a9a9a;
    /* end card color */

    --mobile-display: "100%";
    --popup-bottom-position: 92px;
    --popup-right-position: 16px;
    --popup-left-position: unset;
}

.zing-loyalty-popup-wrapper * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
    letter-spacing: initial;
    /*font-family: Inter;*/
}

/*--------Start common styles----------*/
/* Common styles - icons */
#zing-loyalty-popup-wrapper .color-path-2 {
    fill: #4a4a4a;
}
#zing-loyalty-popup-wrapper .copy-icon {
    height: 20px;
    width: 20px;
    cursor: pointer;
    display: inline-block;
}
#zing-loyalty-popup-wrapper .icon-loading {
    animation: rotate 0.5s linear infinite;
    height: 20px;
    width: 20px;
}
#zing-loyalty-popup-wrapper .popup-icon svg {
    width: 100%;
    height: 100%;
}
/* Common styles - btn */
#zing-loyalty-popup-wrapper .btn {
    font-size: 16px;
    font-weight: 550;
    width: 100%;
    height: 40px;
    background: var(--background_button);
    color: var(--button_text_color);
    border: none;
    border-radius: 48px;
    cursor: pointer;
    text-decoration: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    outline: none;
    box-shadow: none;
    transition: all 0.15s ease-in-out;
    pointer-events: all;
}

#zing-loyalty-popup-wrapper .btn.half-width {
    width: fit-content;
}

#zing-loyalty-popup-wrapper .btn.disabled {
    opacity: 0.56;
    pointer-events: none;
}
#zing-loyalty-popup-wrapper .btn.btn--copy {
    justify-content: space-between;
    border: 0.66px solid #8a8a8a;
    background: #fff;
    gap: 20px;
    cursor: default;
}
#zing-loyalty-popup-wrapper .btn.btn--copy .btn__text {
    font-size: 14px;
    font-weight: 450;
    line-height: 24px;
    color: #303030;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: -webkit-fill-available;
}
#zing-loyalty-popup-wrapper .btn .btn-text {
    display: block;
}

#zing-loyalty-popup-wrapper .btn .icon-loading {
    display: none;
}

#zing-loyalty-popup-wrapper .btn.loading {
    pointer-events: none;
}
#zing-loyalty-popup-wrapper .btn.loading .icon-loading {
    display: inline-block;
}

#zing-loyalty-popup-wrapper .btn.loading .btn-text {
    display: none;
}

#zing-loyalty-popup-wrapper .btn:hover {
    opacity: 0.8 !important;
}
#zing-loyalty-popup-wrapper .btn.hidden {
    display: none !important;
}

/* Common styles - input */
#zing-loyalty-popup-wrapper input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 6px;
    height: 2px;
    background: #d9d9d9;
}

#zing-loyalty-popup-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 13px;
    width: 13px;
    background-color: var(--button_background_primary_color);
    border-radius: 50%;
    border: none;
    transition: 0.2s ease-in-out;
}

#zing-loyalty-popup-wrapper input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: var(--button_background_primary_color);
    border-radius: 50%;
    border: none;
    transition: 0.2s ease-in-out;
}

#zing-loyalty-popup-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 7px rgb(0, 0, 0, 0.1);
}
#zing-loyalty-popup-wrapper input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 7px rgb(0, 0, 0, 0.1);
}
#zing-loyalty-popup-wrapper input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
}

#zing-loyalty-popup-wrapper input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
}
#zing-loyalty-popup-wrapper input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
}
#zing-loyalty-popup-wrapper input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
}

/* Common styles - toast */
#zing-loyalty-popup-wrapper .zing-loyalty-toast {
    position: absolute;
    z-index: 1000000000;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 450;
    border-radius: 8px;
    line-height: 24px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    text-align: center;
    padding: 8px;
    min-width: 180px;
    max-width: 100%;
    width: fit-content;
    animation: slideUp 0.3s ease-out;
}

/* Common styles - item-wrapper*/
#zing-loyalty-popup-wrapper .box {
    width: 100%;
    background: var(--section_background);
    border: 1px solid var(--section_border_color);
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    overflow: hidden;
}
#zing-loyalty-popup-wrapper .box-title {
    font-weight: 550;
    font-size: 15px;
    color: var(--section_title_color);
    line-height: 120%;
    opacity: 1;
}
#zing-loyalty-popup-wrapper .box-title.light {
    font-weight: 400;
}
#zing-loyalty-popup-wrapper .box-description {
    font-weight: 450;
    font-size: 14px;
    color: var(--section_desc_color);
    line-height: 150%;
}
#zing-loyalty-popup-wrapper .box-wrapper__text {
    padding: 16px;
}
#zing-loyalty-popup-wrapper .box-wrapper__text .box-title {
    margin-bottom: 8px;
}
#zing-loyalty-popup-wrapper .box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    gap: 16px;
    width: 100%;
    position: relative;
}
#zing-loyalty-popup-wrapper .box-content:hover {
    background-color: #fafafa;
}
#zing-loyalty-popup-wrapper .box-content.disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}
#zing-loyalty-popup-wrapper .box-icon {
    height: 40px;
    width: 40px;
}
#zing-loyalty-popup-wrapper .box-icon svg,
#zing-loyalty-popup-wrapper .box-icon img {
    height: 100%;
    width: 100%;
}
#zing-loyalty-popup-wrapper .box-content .item-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
#zing-loyalty-popup-wrapper .box-content:after {
    background-color: #e6e6e6;
    bottom: 0px;
    content: "";
    height: 1px;
    left: 64px;
    position: absolute;
    width: 100%;
}
#zing-loyalty-popup-wrapper .box-content.is-last::after {
    content: none;
}
/* Common styles - Text centter*/
#zing-loyalty-popup-wrapper .text-center {
    text-align: center;
}
/* Common styles - coupon-summary-desc*/
#zing-loyalty-popup-wrapper .list-summary {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 20px;
    margin: 0;
}
#zing-loyalty-popup-wrapper .item-summary {
    color: #616161;
}
#zing-loyalty-popup-wrapper .item-summary_bold {
    color: #000;
}
/* Common styles - line*/
#zing-loyalty-popup-wrapper .line {
    width: 100%;
    border: none;
    height: 1px;
    background: #e9e9e9;
}
/* Common styles - hidden element*/
#zing-loyalty-popup-wrapper .hidden {
    display: none !important;
}

/* Common styles - cursor and pointer*/
#zing-loyalty-popup-wrapper .cursor-pointer {
    cursor: pointer;
}
#zing-loyalty-popup-wrapper .pointer-event-none {
    pointer-events: none;
    cursor: default;
}

/* Common styles - content animation*/
#zing-loyalty-popup-wrapper .content-animation {
    position: relative;
    animation: fadeSlideIn 0.5s ease-out forwards;
}

/* Common styles - scroll*/
#zing-loyalty-popup-wrapper .zing-loyalty-popup-scroll {
    overflow-y: scroll;
    scrollbar-width: none;
    overflow-x: hidden;
}
#zing-loyalty-popup-wrapper .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Common styles - fade in animation*/
#zing-loyalty-popup-wrapper .fade-in {
    animation: fadeIn 0.25s ease-in-out;
    animation-fill-mode: forwards;
    opacity: 0;
}
#zing-loyalty-popup-wrapper .fade-in:nth-child(1) {
    animation-delay: 0.2s;
}
#zing-loyalty-popup-wrapper .fade-in:nth-child(2) {
    animation-delay: 0.45s;
}
#zing-loyalty-popup-wrapper .fade-in:nth-child(3) {
    animation-delay: 0.7s;
}
#zing-loyalty-popup-wrapper .fade-in:nth-child(4) {
    animation-delay: 0.95s;
}
#zing-loyalty-popup-wrapper .fade-in:nth-child(5) {
    animation-delay: 1.2s;
}
#zing-loyalty-popup-wrapper .fade-in:nth-child(6) {
    animation-delay: 1.45s;
}
/* Common styles - fade slide in animation*/
#zing-loyalty-popup-wrapper .fade-slide-in {
    animation: fadeSlideIn 0.5s ease-out forwards;
}

/* Common styles - banner*/
#zing-loyalty-popup .zing-loyalty-popup-banner {
    height: 175px;
    background: var(--background_banner);
    padding: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#zing-loyalty-popup .zing-loyalty-popup-banner.with-image-url {
    background-image: var(--background_banner_url);
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
}
#zing-loyalty-popup .zing-loyalty-popup-banner.collapsed {
    transform: translateY(-160px);
    display: none;
}
#zing-loyalty-popup .zing-loyalty-popup-banner__close-icon {
    display: flex;
    justify-content: flex-end;
    height: 20px;
}
#zing-loyalty-popup .zing-loyalty-popup-banner__close-icon svg {
    height: 20px;
    width: 20px;
    cursor: pointer;
    transition: transform 0.15s ease-in-out;
}
#zing-loyalty-popup .zing-loyalty-popup-banner__close-icon svg:hover {
    transform: scale(1.2);
}
#zing-loyalty-popup .zing-loyalty-popup-banner__header-small {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 20px;
    color: var(--heading_text_color);
}
#zing-loyalty-popup .zing-loyalty-popup-banner__header-large {
    font-weight: 650;
    font-size: 22px;
    line-height: 39px;
    color: var(--heading_text_color);
}
#zing-loyalty-popup .zing-loyalty-popup-banner__expriarion-point {
    padding: 5px 8px;
    /* background: rgb(0, 0, 0, 0.3); */
    color: var(--heading_text_color);
    display: inline-block;
    border-radius: 8px;
    font-size: 12px;
    padding-left: 0px;
}
#zing-loyalty-popup-wrapper .btn-join-program {
    width: 100%;
    position: absolute;
    bottom: 0px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}
/*--------End common styles----------*/
#zing-loyalty-popup-wrapper {
    position: fixed;
    z-index: 9999999999;
}

/*Widget button styles*/
#zing-loyalty-widget-button {
    font-size: 16px;
    background: var(--background_launcher_button);
    color: var(--button_launcher_text_color);
    border: none;
    cursor: pointer;
    padding: 0 16px;
    height: 54px;
    overflow: hidden;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: fit-content;
}
#zing-loyalty-widget-button .widget-button__text {
    font-size: 16px;
    font-weight: 450;
}
#zing-loyalty-widget-button .widget-button__icon {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}
#zing-loyalty-widget-button .widget-button__icon svg {
    height: 100%;
    width: 100%;
}
#zing-loyalty-widget-button .widget-button__icon img {
    height: 100%;
    width: 100%;
}
#zing-loyalty-widget-button .widget-button__close-icon {
    display: none;
}

#zing-loyalty-widget-button.widget-button-close {
    min-width: unset;
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
#zing-loyalty-widget-button.widget-button-close .widget-button__icon,
#zing-loyalty-widget-button.widget-button-close .widget-button__text {
    display: none;
}
#zing-loyalty-widget-button.widget-button-close .widget-button__close-icon {
    display: block;
}
/* Chỉ hiển thị icon */
#zing-loyalty-widget-button.widget-button-open--icon {
    min-width: unset;
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    padding: 0px;
}

/*Zing loyalty popup container styles*/
#zing-loyalty-popup {
    background: #fff;
    position: fixed;
    z-index: 999999999;
    overflow: auto;
    right: var(--popup-right-position);
    left: var(--popup-left-position);
    bottom: var(--popup-bottom-position);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 360px;
    height: calc(100vh - 82px);
    max-height: 617px;
    box-sizing: border-box;
    line-height: initial;
    transition:
        width 200ms,
        height 200ms,
        max-height 200ms,
        transform 300ms cubic-bezier(0, 1.2, 1, 1),
        opacity 83ms ease-in;
    color: #000;
    word-break: break-word;
    display: block;
}
#zing-loyalty-popup.collapsed {
    height: 0 !important;
    width: 0 !important;
    opacity: 0;
    transform: scale(0);
}
#zing-loyalty-popup .header {
    height: 60px;
    padding: 0 16px;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--heading_text_color);
    background-color: var(--primary-color);
    position: absolute;
    z-index: 1;
}
#zing-loyalty-popup .header.collapsed {
    display: none;
}
#zing-loyalty-popup .header__left {
    display: flex;
    align-items: center;
    gap: 8px;
}
#zing-loyalty-popup .header .header__title,
#zing-loyalty-popup .header .header__meta-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
#zing-loyalty-popup .header .icon {
    height: 20px;
    width: 20px;
    cursor: pointer;
    transition: transform 0.15s ease-in-out;
}
#zing-loyalty-popup .header .icon img,
#zing-loyalty-popup .header .icon svg {
    height: 100%;
    width: 100%;
}
#zing-loyalty-popup .header .icon:hover {
    transform: scale(1.2);
}

/* Bonus campaign styles */
#zing-loyalty-popup .bonus-campaign {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
#zing-loyalty-popup .bonus-campaign__img {
    width: 100%;
    height: 90px;
}
#zing-loyalty-popup .bonus-campaign__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#zing-loyalty-popup .bonus-campaign__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    gap: 8px;
}
#zing-loyalty-popup .bonus-campaign .bonus-campaign__heading {
    font-size: 16px;
    font-weight: 550;
    line-height: 24px;
    color: var(--section_title_color);
    text-align: center;
}
#zing-loyalty-popup .bonus-campaign .bonus-campaign__description {
    font-size: 13px;
    font-weight: 400;
    color: var(--section_title_color);
}
#zing-loyalty-popup .bonus-campaign .bonus-campaign__timeline {
    font-size: 11px;
    font-weight: 450;
    color: var(--section_desc_color);
}

/* Before signin styles */
#zing-loyalty-popup #before-signin {
    height: 100%;
}
#zing-loyalty-popup #before-signin .content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 16px;
    padding: 16px;
    min-height: 100%;
    margin-top: 112px;
}
#zing-loyalty-popup #before-signin .join-program-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
    width: 100%;
    flex: none;
    padding: 24px;
}
#zing-loyalty-popup #before-signin .join-program-card .box-title {
    margin-bottom: 8px;
}
#zing-loyalty-popup #before-signin .join-program-card .btn {
    margin-top: 20px;
    margin-bottom: 20px;
}
#zing-loyalty-popup #before-signin .join-program-card .signin-text a {
    text-decoration: underline;
    cursor: pointer;
}

/* After sign in styles */
#zing-loyalty-popup #after-signin {
    height: 100%;
}
#zing-loyalty-popup #after-signin .content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 16px;
    padding: 16px;
    min-height: 100%;
    margin-top: 141px;
}

#zing-loyalty-popup #after-signin .item-content .box-title {
    margin-bottom: 0px;
    font-weight: 400;
}
#zing-loyalty-popup #after-signin .box-vip {
    padding: 0px 16px 16px 16px;
}
#zing-loyalty-popup #after-signin .box-vip__progress {
    height: 8px;
    width: 100%;
    margin-top: 16px;
    background-color: #e6e6e6;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
#zing-loyalty-popup #after-signin .box-vip__progress__status {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--process_bar_color);
    display: block;
}
#zing-loyalty-popup #after-signin .box-referral {
    padding: 16px;
    padding-top: 0px;
}
#zing-loyalty-popup #after-signin .box-referral .btn {
    margin-top: 16px;
}
#zing-loyalty-popup #after-signin .box-referral .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 8px;
}
#zing-loyalty-popup #after-signin .box-referral .socials img {
    cursor: pointer;
}
/* My coupons styles  */
#zing-loyalty-popup #my-coupons {
    height: calc(100% - 60px);
    margin-top: 60px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 16px;
}
#zing-loyalty-popup #my-coupons .coupons {
    width: 100%;
    display: flex;
    flex-direction: column;
}
/* My coupon detail styles  */
#zing-loyalty-popup #my-coupon-detail {
    height: calc(100% - 60px);
    margin-top: 60px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}
#zing-loyalty-popup #my-coupon-detail .item-detail {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}
#zing-loyalty-popup #my-coupon-detail .item-detail__title {
    font-size: 20px;
    font-weight: 550;
    text-align: center;
    line-height: 24px;
    color: var(--section_title_color);
    width: 100%;
}
#zing-loyalty-popup #my-coupon-detail .item-detail__desc {
    font-weight: 450;
    text-align: center;
    color: var(--section_desc_color);
    display: inline-block;
    line-height: 20px;
    font-size: 13px;
    width: 100%;
}
#zing-loyalty-popup #my-coupon-detail .item-detail__btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
#zing-loyalty-popup #my-coupon-detail .item-dtail__note-text {
    font-weight: 400;
    font-size: 12px;
    font-style: italic;
}

/* Earn point list styles  */
#zing-loyalty-popup .ways-earn-point-container {
    height: calc(100% - 169px);
    margin-top: 60px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#zing-loyalty-popup .ways-earn-point-container.logged {
    height: calc(100% - 60px);
}
#zing-loyalty-popup #earn-point-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#zing-loyalty-popup #earn-point-list button {
    padding: 0 16px;
    height: 28px;
    width: auto;
    font-size: 12px;
    display: block;
}
#zing-loyalty-popup #earn-point-list .checkIcon {
    height: 20px;
    width: 20px;
    display: none;
}
#zing-loyalty-popup #earn-point-list .checkIcon img {
    height: 100%;
    width: 100%;
}
#zing-loyalty-popup #earn-point-list .box-content.disabled button {
    display: none;
}
#zing-loyalty-popup #earn-point-list .box-content.disabled .checkIcon {
    display: block;
}

#zing-loyalty-popup #earn-point-list .earn-point-list--empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-top: 32px;
}
#zing-loyalty-popup #earn-point-list .earn-point-list--empty .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#zing-loyalty-popup #earn-point-list .earn-point-list--empty .text-wrapper__title {
    font-size: 20px;
    font-weight: 650;
    line-height: 24px;
    color: var(--section_title_color);
}

#zing-loyalty-popup #earn-point-list .earn-point-list--empty .text-wrapper__desc {
    font-size: 13px;
    font-weight: 450;
    line-height: 20px;
    color: var(--section_desc_color);
}

#zing-loyalty-popup #earn-point-list .streak-progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}
#zing-loyalty-popup #earn-point-list .streak-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #d9d9d9;
    color: #000;
    font-size: 10px;
    font-weight: 450;
    display: flex;
    align-items: center;
    justify-content: center;
}
#zing-loyalty-popup #earn-point-list .streak-circle.claimed {
    background-color: #f39e09;
    color: #fff;
}
#zing-loyalty-popup #earn-point-list .streak-line {
    flex: 1;
    height: 2px;
    background-color: #ddd;
    margin: 0px;
    display: block;
}
#zing-loyalty-popup #earn-point-list .streak-line.claimed-line {
    background-color: #f39e09;
}
#zing-loyalty-popup #btn-join-program {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

/* Earn point detail styles  */
#zing-loyalty-popup #earn-point-detail {
    height: calc(100% - 60px);
    margin-top: 60px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}
#zing-loyalty-popup #earn-point-detail .item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 16px;
}
#zing-loyalty-popup #earn-point-detail .item-wrapper__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#zing-loyalty-popup #earn-point-detail .item-wrapper__title {
    font-size: 20px;
    font-weight: 550;
    text-align: center;
    line-height: 24px;
    color: var(--section_title_color);
}

#zing-loyalty-popup #earn-point-detail .item-wrapper__desc {
    font-weight: 450;
    text-align: center;
    color: var(--section_desc_color);
    display: inline-block;
    line-height: 20px;
    font-size: 13px;
}
#zing-loyalty-popup .otpWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#zing-loyalty-popup .otpCont {
    display: flex;
    align-content: center;
    justify-content: center;
}
#zing-loyalty-popup .zing-otSc {
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    font-weight: 450;
    color: #616161;
    text-align: center;
    width: 32px;
    height: 40px;
    border: 0.66px solid #e3e3e3;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    box-shadow: unset;
}
#zing-loyalty-popup .zing-otSc:nth-child(1),
#zing-loyalty-popup .zing-otSc:nth-child(3) {
    margin-right: 4px;
}
#zing-loyalty-popup .zing-otSc:nth-child(2) {
    margin-right: 16px;
}

#zing-loyalty-popup .zing-otSc:last-child {
    margin-right: 0;
}

#zing-loyalty-popup .zing-otSc.error {
    border: 1px solid #8e0b21;
    background: #fee8eb;
}

#zing-loyalty-popup #otpMessage {
    margin-top: 4px;
    color: #8e0b21;
    display: none;
}
#zing-loyalty-popup .error-message {
    margin-top: 4px;
    color: #8e0b21;
}

#zing-loyalty-popup #earn-point-detail .streak-container {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

#zing-loyalty-popup #earn-point-detail .streak-box {
    width: 38px;
    height: 60px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#zing-loyalty-popup #earn-point-detail .streak-box.claimed {
    border-color: #f39e09;
}
#zing-loyalty-popup #earn-point-detail .streak-box .day-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #d9d9d9;
    font-size: 8px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 8px;
}
#zing-loyalty-popup #earn-point-detail .day-circle.claimed-circle {
    background-color: #f39e09;
    color: #fff;
    font-size: 18px;
}
#zing-loyalty-popup #earn-point-detail .streak-box .points-text {
    font-size: 10px;
    font-weight: 450;
    color: #000;
}

/* Redeem point list styles  */
#zing-loyalty-popup #redeem-point-list {
    height: calc(100% - 169px);
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
#zing-loyalty-popup #redeem-point-list.logged {
    height: calc(100% - 60px);
}
#zing-loyalty-popup #redeem-point-list .item-wrapper {
    display: flex;
    gap: 16px;
    padding: 16px;
    align-items: center;
    justify-content: space-between;
}

#zing-loyalty-popup #redeem-point-list .item-wrapper__title {
    font-weight: 550;
    line-height: 20px;
    color: var(--section_title_color);
}

#zing-loyalty-popup #redeem-point-list .item-wrapper__desc {
    font-weight: 450;
    font-size: 14px;
    color: var(--section_desc_color);
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 20px;
    overflow-wrap: anywhere;
}
#zing-loyalty-popup #redeem-point-list button {
    padding: 0 16px;
    height: 28px;
    width: auto;
    font-size: 12px;
}
#zing-loyalty-popup #redeem-point-list .redeem-point-list--empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-top: 32px;
}
#zing-loyalty-popup #redeem-point-list .redeem-point-list--empty .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#zing-loyalty-popup #redeem-point-list .redeem-point-list--empty .text-wrapper__title {
    font-size: 20px;
    font-weight: 650;
    line-height: 24px;
    color: var(--section_title_color);
}

#zing-loyalty-popup #redeem-point-list .redeem-point-list--empty .text-wrapper__desc {
    font-size: 13px;
    font-weight: 450;
    line-height: 20px;
    color: var(--section_desc_color);
}

/* Redeem point detail styles */
#zing-loyalty-popup #redeem-point-detail {
    height: calc(100% - 60px);
    margin-top: 60px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}
#zing-loyalty-popup #redeem-point-detail .item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 16px;
}
#zing-loyalty-popup #redeem-point-detail .item-wrapper__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#zing-loyalty-popup #redeem-point-detail .item-wrapper__title {
    font-size: 20px;
    font-weight: 550;
    text-align: center;
    line-height: 24px;
    color: var(--section_title_color);
}
#zing-loyalty-popup #redeem-point-detail .item-wrapper__desc {
    font-weight: 450;
    text-align: center;
    color: var(--section_desc_color);
    display: inline-block;
    line-height: 20px;
    font-size: 13px;
}
#zing-loyalty-popup #redeem-point-detail .error-message {
    text-align: center;
    color: #8e0b21;
}
#zing-loyalty-popup #range-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}
#zing-loyalty-popup #range-wrapper .block {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
#zing-loyalty-popup #range-wrapper .plus,
#zing-loyalty-popup #range-wrapper .minus {
    height: 14px;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button_background_primary_color);
    border-radius: 50%;
    color: #ffff;
    cursor: pointer;
    line-height: 14px;
}
#zing-loyalty-popup #range-wrapper input[type="range"] {
    flex: 1;
}
#zing-loyalty-popup #range-value {
    font-size: 13px;
    font-weight: 450;
    color: #000;
    line-height: 20px;
    display: none;
}

/* History styles */
#zing-loyalty-popup #history {
    height: calc(100% - 60px);
    margin-top: 60px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 16px 16px 16px;
}
#zing-loyalty-popup #history .list-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#zing-loyalty-popup #history .item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 16px 0px;
    gap: 4px;
    width: 100%;
}
#zing-loyalty-popup #history .item-wrapper:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}
#zing-loyalty-popup #history .item-wrapper__time {
    font-weight: 450;
    color: var(--section_desc_color);
    line-height: 20px;
    font-size: 13px;
    text-align: right;
}
#zing-loyalty-popup #history .item-wrapper__title {
    font-weight: 400;
    line-height: 20px;
    font-size: 13px;
    color: var(--section_title_color);
}
#zing-loyalty-popup #history .item-wrapper__desc {
    font-size: 13px;
    font-weight: 450;
    line-height: 20px;
    color: var(--section_desc_color);
}
#zing-loyalty-popup #history .tabs {
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
}
#zing-loyalty-popup #history .tab-button {
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 550;
    color: #303030;
}

#zing-loyalty-popup #history .tab-button:hover {
    background-color: rgba(0, 0, 0, 0.08) !important;
    color: #000;
}

#zing-loyalty-popup #history .tab-button.active {
    background-color: rgba(0, 0, 0, 0.08) !important;
    color: #000;
}

#zing-loyalty-popup #history .tab-content {
    display: none;
}

#zing-loyalty-popup #history .tab-content.active {
    display: block;
}
#zing-loyalty-popup #history .no-activity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
#zing-loyalty-popup #history .no-activity .icon {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#zing-loyalty-popup #history .no-activity .desc {
    font-size: 14px;
    font-weight: 650;
    line-height: 20px;
}
#zing-loyalty-popup #history .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
#zing-loyalty-popup #history .pagination-text {
    padding: 0 12px;
    font-size: 13px;
    font-weight: 450;
    line-height: 20px;
}
#zing-loyalty-popup #history #pagination-prev {
    transform: rotate(180deg);
}

#zing-loyalty-popup #history .pagination-button {
    height: 28px;
    width: 28px;
}

#zing-loyalty-popup #history .pagination-button {
    height: 28px;
    width: 28px;
    cursor: pointer;
}
#zing-loyalty-popup #history .pagination-button.disable {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}
#zing-loyalty-popup #history .pagination-button img.disable {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

/*Vip tiers styles*/
#zing-loyalty-popup #vip-tiers {
    height: calc(100% - 60px);
    margin-top: 60px;
    padding-bottom: 16px;
}
#zing-loyalty-popup #vip-tiers.logged {
    height: calc(100% - 60px);
}
#zing-loyalty-popup #vip-tiers .vip-tiers__vip-status {
    padding: 16px;
    padding-top: 22px;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__current-tier-container {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 16px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__next-tier-container {
    padding: 16px;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__next-tier-container__progress {
    height: 8px;
    width: 100%;
    margin-top: 16px;
    background-color: #e6e6e6;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__next-tier-container__progress__status {
    height: 8px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--process_bar_color);
    display: block;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__tier-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__tier-list__title {
    padding: 16px;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__tier-list__description {
    padding: 0px 16px 16px 16px;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__tier-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 16px;
    width: 100%;
    position: relative;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__tier-item:after {
    background-color: #e6e6e6;
    bottom: 0px;
    content: "";
    height: 1px;
    left: 64px;
    position: absolute;
    width: 100%;
}
#zing-loyalty-popup #vip-tiers .vip-tiers__tier-item .item-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Tier reward styles*/
#zing-loyalty-popup #tier-rewards {
    height: calc(100% - 140px);
    margin-top: 60px;
    padding: 16px;
}
#zing-loyalty-popup #tier-rewards.logged {
    height: calc(100% - 60px);
}
#zing-loyalty-popup #tier-rewards .box-content::after {
    content: none;
}
#zing-loyalty-popup #tier-rewards .box-content {
    border-bottom: 1px solid #e3e3e3;
    min-height: 80px;
}
#zing-loyalty-popup #tier-rewards .benefits {
    padding: 8px 16px;
    margin: 8px 0px;
}
/*Referral program styles*/
#zing-loyalty-popup #referral-program {
    height: calc(100% - 60px);
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#zing-loyalty-popup #referral-program .referral-rewards {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#zing-loyalty-popup #referral-program .btn__text {
    font-size: 14px;
}
#zing-loyalty-popup #referral-program .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
}
#zing-loyalty-popup #referral-program .socials img {
    cursor: pointer;
}

/* Free product styles  */
#zing-loyalty-popup .free-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
#zing-loyalty-popup .free-product-item .product-img {
    border-radius: 8px;
    background: #fdfdfd;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    align-content: center;
    height: 40px;
    width: 40px;
}
#zing-loyalty-popup .free-product-item img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}
#zing-loyalty-popup .free-product-item .product-title {
    font-size: 13px;
    color: #303030;
    font-weight: 650;
    line-height: 20px;
}
#zing-loyalty-popup .free-product-item .product-variant-title {
    font-size: 13px;
    color: #303030;
    font-weight: 450;
    line-height: 20px;
}

/* footer styles */
#zing-footer {
    position: absolute;
    z-index: 1000000000;
    height: 52px;
    width: 100%;
    left: 0;
    bottom: 0;
    margin: 0;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.07);
    background: #fff;
    text-align: center;
    align-content: center;
    font-size: 14px;
    font-weight: 400;
    color: #616161;
    line-height: 52px;
    display: none;
}
/* Media screen styles */
@media screen and (max-width: 468px), (max-height: 468px) {
    #zing-loyalty-popup {
        border-radius: 0 !important;
        bottom: 0 !important;
        right: calc(var(--popup-right-position) - 20px);
        left: calc(var(--popup-left-position) - 20px);
        width: 100% !important;
        height: var(--mobile-display) !important;
        max-height: unset !important;
        max-width: unset !important;
        transition:
            width 200ms,
            height 200ms,
            max-height 200ms,
            transform 300ms cubic-bezier(0, 1, 1, 1),
            opacity 83ms ease-in;
    }
}
/* Animation styles */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translate(20px);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}
