:root {
    --points_on_product_page_bg_section: "#f3f3f3";
    --points_on_product_page_text_color: "#000";
    --points_on_product_page_image_url: "";
}
.zing-loyalty-points {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 10px;
    padding: 16px;
    max-width: 350px;
}
.zing-loyalty-points__img {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.zing-loyalty-points__img img {
    height: 24px;
    width: 24px;
}
.zing-loyalty-points__img--url {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.zing-loyalty-points__text {
    font-weight: 400;
    font-size: 14px;
}
.zing-loyalty-points__text {
    font-weight: 400;
    font-size: 14px;
}
#zing-loyalty-points-on-product-page.zing-loyalty-points {
    background: var(--points_on_product_page_bg_section);
}
#zing-loyalty-points-on-product-page .zing-loyalty-points__text {
    color: var(--points_on_product_page_text_color);
}
#zing-loyalty-points-on-product-page .zing-loyalty-points__text a {
    color: var(--points_on_product_page_text_color);
}
#zing-loyalty-points-on-product-page .zing-loyalty-points__img--url {
    background-image: var(--points_on_product_page_image_url);
    height: 24px;
    width: 24px;
}
#zing-loyalty-points-on-product-page.skeleton {
    background-color: #e2e5e7;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background-size: 40px 100%;
    background-repeat: no-repeat;
    background-position: left -40px top 0;
    animation: shine 1s ease infinite;
    height: 52px;
}
@keyframes shine {
    to {
        background-position: right -40px top 0;
    }
}
