@import url("https://fonts.googleapis.com/css2?family=Inter: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(
        180deg,
        var(--banner_background_primary_color) -45.88%,
        var(--banner_background_secondary_color) 70%
    );
    --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;
}

/*--------Start common styles----------*/

/* Common styles - alignment classes */
#zing-loyalty-popup-wrapper .justify-content-start {
    justify-content: flex-start !important;
}

#zing-loyalty-popup-wrapper .justify-content-end {
    justify-content: flex-end !important;
}

#zing-loyalty-popup-wrapper .justify-content-center {
    justify-content: center !important;
}

#zing-loyalty-popup-wrapper .justify-content-between {
    justify-content: space-between !important;
}

#zing-loyalty-popup-wrapper .justify-content-around {
    justify-content: space-around !important;
}

#zing-loyalty-popup-wrapper .justify-content-evenly {
    justify-content: space-evenly !important;
}

#zing-loyalty-popup-wrapper .align-items-start {
    align-items: flex-start !important;
}

#zing-loyalty-popup-wrapper .align-items-end {
    align-items: flex-end !important;
}

#zing-loyalty-popup-wrapper .align-items-center {
    align-items: center !important;
}

#zing-loyalty-popup-wrapper .align-items-baseline {
    align-items: baseline !important;
}

#zing-loyalty-popup-wrapper .align-items-stretch {
    align-items: stretch !important;
}
/* Common styles - container for flexbox */
#zing-loyalty-popup-wrapper .d-flex {
    display: flex !important;
}

#zing-loyalty-popup-wrapper .flex-column {
    flex-direction: column !important;
}

#zing-loyalty-popup-wrapper .flex-row {
    flex-direction: row !important;
}
/* 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.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;
}
#zing-loyalty-popup-wrapper .btn.btn--copy .btn__text {
    font-size: 16px;
    font-weight: 450;
    line-height: 24px;
    color: #303030;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#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--small {
    height: 36px;
    font-size: 13px;
}
#zing-loyalty-popup-wrapper .btn:hover {
    opacity: 0.8;
}
#zing-loyalty-popup-wrapper .btn.hidden {
    display: none !important;
}
#zing-loyalty-popup-wrapper .apply-button {
    height: 36px;
    width: 100%;
    display: inline-block;
}

/* 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);
    border-radius: 12px;
}

/* 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-anomation {
    position: relative;
    animation: slideLeft 0.3s ease-out forwards;
}
/*--------End common styles----------*/

#zing-loyalty-popup-wrapper * {
    margin: 0px;
    padding: 0px;
    font-family: inter;
    box-sizing: border-box;
    font-size: 14px;
    letter-spacing: initial;
}
#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;
}
#zing-loyalty-widget-button.widget-button-open {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: fit-content;
}
#zing-loyalty-widget-button.widget-button-open .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-open--icon {
    min-width: unset;
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    padding: 0px;
}
#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 img {
    height: 100%;
    width: 100%;
}
#zing-loyalty-widget-button .widget-button__icon svg {
    height: 100%;
    width: 100%;
}

/*Zing loyalty popup container styles*/
#zing-loyalty-popup {
    background: #fff;
    position: fixed;
    z-index: 999999999;
    overflow: auto;
    font-family: "Inter", sans-serif;
    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;
    background: var(--background_banner);
}
#zing-loyalty-popup .popup__overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background_banner);
    z-index: -1;
    margin: 0;
    display: none;
}
#zing-loyalty-popup.with-bg-url {
    background: rgba(0, 0, 0, 0.2);
    background-image: var(--background_banner_url);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#zing-loyalty-popup.popup--hidden {
    height: 0 !important;
    width: 0 !important;
    opacity: 0;
    transform: scale(0);
}
#zing-loyalty-popup .header {
    height: 52px;
    padding: 0 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#zing-loyalty-popup .header .header__title {
    font-size: 16px;
    font-weight: 550;
    color: #000;
    text-align: center;
}
#zing-loyalty-popup .header .icon {
    height: 20px;
    width: 20px;
    cursor: pointer;
    transition: transform 0.15s ease-in-out;
}
#zing-loyalty-popup .header .icon:hover {
    transform: scale(1.2);
}
#zing-loyalty-popup .header.header-1 {
    display: flex;
    align-items: center;
    justify-content: end;
}
#zing-loyalty-popup .header.header-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-color);
    position: sticky;
}
#zing-loyalty-popup .popup-content {
    padding: 16px;
    overflow-y: scroll;
    scrollbar-width: none;
    width: 100%;
    overflow-x: hidden;
    height: 100%;
}
#zing-loyalty-popup .popup-content.content-type2 {
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px !important;
    bottom: 0 !important;
    right: 0 !important;
    height: calc(100% - 52px) !important;
}

/* Member card styles */
#zing-loyalty-popup .member-card {
    width: 100%;
    padding: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--card_text_color);
    display: flex;
    flex-direction: column;
    min-height: 190px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    height: auto;
    box-shadow:
        rgba(0, 0, 0, 0.16) 0px 3px 6px,
        rgba(0, 0, 0, 0.23) 0px 1px 2px;
}
#zing-loyalty-popup .member-card .member-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}
#zing-loyalty-popup .member-card .total-points {
    font-size: 30px;
    font-weight: 550;
    line-height: 42px;
}
#zing-loyalty-popup .member-card .total-points span {
    font-size: 13px;
    text-transform: uppercase;
}
#zing-loyalty-popup .member-card .card .member-name {
    line-height: 24px;
    font-weight: 550;
    text-transform: uppercase;
}
#zing-loyalty-popup .member-card .progress-bar {
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: var(--process_bar_color);
    margin-top: 10px;
    position: relative;
}
#zing-loyalty-popup .member-card .progress-bar__lock-icon {
    position: absolute;
    top: -6px;
    left: 0px;
    z-index: 1;
}
#zing-loyalty-popup .member-card .progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: #fff;
    border-radius: 4px;
    display: block;
}
#zing-loyalty-popup .member-card .progress-bar-des {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 8px;
}
#zing-loyalty-popup .member-card .card__footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 40px;
    background: var(--card_footer_bg);
    color: var(--card_footer_text_color);
    padding: 0 24px;
}
#zing-loyalty-popup .member-card.member-card--vip {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
}
#zing-loyalty-popup .member-card.member-card--vip .name {
    font-weight: 550;
    font-size: 22px;
    margin-right: 8px;
}
#zing-loyalty-popup .member-card.member-card--vip .desc {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    margin-top: 8px;
}
#zing-loyalty-popup .member-card.member-card--vip .icon {
    height: 72px;
    width: 72px;
}
#zing-loyalty-popup .member-card.member-card--vip .icon svg {
    height: 100%;
    width: 100%;
}
/* Before signin styles */
#zing-loyalty-popup #before-signin .heading-title {
    font-size: 18px;
    color: var(--heading_text_color);
    font-weight: 550;
    margin-top: 16px;
}
#zing-loyalty-popup #before-signin .member-card {
    margin-top: 20px;
    box-shadow:
        rgba(0, 0, 0, 0.16) 0px 3px 6px,
        rgba(0, 0, 0, 0.23) 0px 1px 2px;
}
#zing-loyalty-popup #before-signin .member-card .card__content {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
    gap: 16px;
    width: 100%;
    flex: none;
}
#zing-loyalty-popup #before-signin .member-card .card__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
#zing-loyalty-popup #before-signin .member-card .card__desc {
    font-size: 13px;
    font-weight: 450;
    line-height: 20px;
    margin-top: 6px;
}
#zing-loyalty-popup #before-signin .card__signin-text {
    font-size: 13px;
    font-weight: 450;
    line-height: 20px;
    text-align: center;
    margin-top: 16px;
}
#zing-loyalty-popup #before-signin .card__signin-text a {
    text-decoration: underline;
    color: var(--card_text_color);
}
#zing-loyalty-popup #before-signin .member-card .card__footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 40px;
    background: var(--card_footer_bg);
    color: var(--card_footer_text_color);
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

#zing-loyalty-popup #before-signin .member-card .member-name {
    font-weight: 550;
    line-height: 24px;
}

#zing-loyalty-popup #before-signin .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 30px;
    gap: 16px;
}

#zing-loyalty-popup #before-signin .item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 16px;
    cursor: pointer;
    width: 100%;
}

#zing-loyalty-popup #before-signin .item-wrapper__title {
    font-weight: 550;
    line-height: 20px;
    font-size: 15px;
    color: var(--section_title_color);
}

#zing-loyalty-popup #before-signin .item-wrapper__desc {
    font-weight: 450;
    color: var(--section_desc_color);
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 20px;
    overflow-wrap: anywhere;
}

/* After sign in styles */
#zing-loyalty-popup #after-signin .member-card {
    box-shadow:
        rgba(0, 0, 0, 0.16) 0px 3px 6px,
        rgba(0, 0, 0, 0.23) 0px 1px 2px;
}
#zing-loyalty-popup #after-signin .content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    gap: 16px;
    width: 100%;
}
#zing-loyalty-popup #after-signin .item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 16px;
    cursor: pointer;
    width: 100%;
}

#zing-loyalty-popup #after-signin .item-wrapper__title {
    font-weight: 550;
    line-height: 20px;
    font-size: 15px;
    color: var(--section_title_color);
}

#zing-loyalty-popup #after-signin .item-wrapper__desc {
    font-weight: 450;
    color: var(--section_desc_color);
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 20px;
    overflow-wrap: anywhere;
}

/* My coupons styles  */
#my-coupons .coupon-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}
#zing-loyalty-popup .item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#zing-loyalty-popup #my-coupons .coupon-item__text {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}
#zing-loyalty-popup #my-coupons .coupon-item__code {
    font-size: 16px;
    font-weight: 650;
    line-height: 24px;
    color: var(--section_title_color);
}
#zing-loyalty-popup #my-coupons .coupon-item__desc {
    font-weight: 450;
    color: var(--section_desc_color);
    display: inline-block;
    line-height: 20px;
    font-size: 13px;
    overflow-wrap: anywhere;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
#zing-loyalty-popup #my-coupons .coupon-item--empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-top: 32px;
    max-width: 296px;
}
#zing-loyalty-popup #my-coupons .coupon-item--empty .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#zing-loyalty-popup #my-coupons .coupon-item--empty .text-wrapper__title {
    font-size: 20px;
    font-weight: 650;
    line-height: 24px;
    color: var(--section_title_color);
}

#zing-loyalty-popup #my-coupons .coupon-item--empty .text-wrapper__desc {
    font-size: 13px;
    font-weight: 450;
    line-height: 20px;
    color: var(--section_desc_color);
}
/* My coupon detail styles  */
#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);
}
#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;
}
#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 #earn-point-list .item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    align-items: center;
}

#zing-loyalty-popup #earn-point-list .item-wrapper.disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

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

#zing-loyalty-popup #earn-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 #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 .item-wrapper.disabled button {
    display: none;
}
#zing-loyalty-popup #earn-point-list .item-wrapper.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);
}

/* Earn point detail styles  */
#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 .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 .otSc:nth-child(1),
#zing-loyalty-popup .otSc:nth-child(3) {
    margin-right: 4px;
}
#zing-loyalty-popup .otSc:nth-child(2) {
    margin-right: 16px;
}

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

#zing-loyalty-popup .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;
}

/* Redeem point list styles  */
#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 .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 .list-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
#zing-loyalty-popup #history .item-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    gap: 8px;
    background: var(--section_background);
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    width: 100%;
}
#zing-loyalty-popup #history .item-wrapper__time {
    display: flex;
    align-items: center;
    gap: 8px;
}
#zing-loyalty-popup #history .item-wrapper__time p {
    font-weight: 450;
    color: var(--section_desc_color);
    line-height: 20px;
    font-size: 13px;
}
#zing-loyalty-popup #history .item-wrapper__desc {
    font-weight: 550;
    line-height: 20px;
    font-size: 13px;
    color: var(--section_title_color);
}
#zing-loyalty-popup #history .item-wrapper__points {
    font-size: 13px;
    font-weight: 450;
    line-height: 20px;
}
#zing-loyalty-popup #history .item-wrapper__points--earn {
    color: #28945a;
}
#zing-loyalty-popup #history .item-wrapper__points--redeem {
    color: #e51c00;
}
#zing-loyalty-popup #history .tabs {
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
}
#zing-loyalty-popup #history .tab-button {
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    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 {
    margin-top: 16px;
    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*/
/*Vip tiers styles*/
#zing-loyalty-popup .vip-tiers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 0 16px;
}
#zing-loyalty-popup .vip-tiers-header__back-icon {
    cursor: pointer;
    height: 20px;
    width: 20px;
    overflow: hidden;
}
#zing-loyalty-popup .vip-tiers-header__heading {
    font-size: 16px;
    font-weight: 550;
    color: #000;
}
#zing-loyalty-popup .vip-tiers-header__close-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    cursor: pointer;
}
#zing-loyalty-popup #vip-tiers.popup-content {
    padding: 0;
    padding-bottom: 16px;
    height: calc(100% - 52px);
}
#zing-loyalty-popup #vip-tiers .list-member-card {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin-top: 25px;
    user-select: none;
}
#zing-loyalty-popup #vip-tiers .member-card-slide {
    transition: all 0.83s ease;
    position: absolute;
    top: 0;
    cursor: default;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#zing-loyalty-popup #vip-tiers .member-card-slide .member-card {
    min-height: 190px;
    max-width: 86% !important;
}
#zing-loyalty-popup #vip-tiers .member-card-slide.active {
    z-index: 2;
    transform: scale(1);
}
#zing-loyalty-popup #vip-tiers .member-card-slide:not(.active) {
    z-index: 1;
    opacity: 0.7;
    transform: scale(0.4);
    pointer-events: none;
}
#zing-loyalty-popup #vip-tiers .reward-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 5px 24px 0px 24px;
}
#zing-loyalty-popup #vip-tiers .reward-list .heading {
    font-size: 16px;
    font-weight: 550;
    color: #000;
}
#zing-loyalty-popup #vip-tiers .reward-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 400;
    color: #616161;
    line-height: 20px;
    padding: 12px 16px;
}
#zing-loyalty-popup #vip-tiers .reward-icon {
    height: 20px;
    width: 20px;
}
#zing-loyalty-popup #vip-tiers .reward-icon svg {
    height: 100%;
    width: 100%;
}
#zing-loyalty-popup #vip-tiers .reward-name {
    font-size: 15px;
    font-weight: 550;
    color: var(--section_title_color);
}
#zing-loyalty-popup #vip-tiers .dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#zing-loyalty-popup #vip-tiers .dot {
    width: 5px;
    height: 5px;
    margin: 15px 5px;
    border-radius: 50%;
    background: rgba(39, 39, 39, 0.5);
    cursor: pointer;
}
#zing-loyalty-popup #vip-tiers .dot.active {
    background: #272727;
}
/*Referral program styles*/
#zing-loyalty-popup #referral-program .heading {
    width: 100%;
    font-size: 14px;
    font-weight: 450;
    color: #616161;
}
#zing-loyalty-popup #referral-program .heading.bold {
    color: #000;
}
#zing-loyalty-popup #referral-program .item-wrapper {
    display: flex;
    gap: 16px;
    padding: 16px;
    align-items: center;
    justify-content: space-between;
}
#zing-loyalty-popup #referral-program .item-wrapper__title {
    font-weight: 550;
    line-height: 20px;
    color: var(--section_title_color);
}

#zing-loyalty-popup #referral-program .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 #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;
    }
    #zing-loyalty-referral-popup {
        border-radius: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: unset !important;
        top: 0 !important;
        left: 0 !important;
        transform: unset !important;
    }
    #zing-footer {
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: unset !important;
    }
}
/* Animation styles */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

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

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


/*Input birthday*/
.input-birthday::-webkit-inner-spin-button,
.input-birthday::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-birthday {
    -moz-appearance: textfield; /* Firefox */
}
