#zing-loyalty-points-on-product-page.zing-loyalty-points {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 10px;
    padding: 16px;
    max-width: 1000px;
    background: var(--points_on_product_page_bg_section);
}
#zing-loyalty-points-on-product-page .zing-loyalty-points__img {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
#zing-loyalty-points-on-product-page .zing-loyalty-points__img img {
    height: 24px;
    width: 24px;
}
#zing-loyalty-points-on-product-page .zing-loyalty-points__text {
    font-weight: 400;
    font-size: 14px;
    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);
    text-decoration: underline;
}
#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: 48px;
    width: 100%;
    min-width: 280px;
}
@keyframes shine {
    to {
        background-position: right -40px top 0;
    }
}
