.wc-fsr-notice {
    box-sizing: border-box;
    width: 100%;
}

.wc-fsr-notice.message-show {
    display: block;
    max-width: 100%;
    padding: 16px 18px 18px;
    margin: 14px 0 18px;
    background: #ffffff;
    color: #4a4d3b;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(47, 59, 45, 0.12);
    font-size: 16px;
    line-height: 1.45;
}

.wc-fsr-notice .wc-fsr-message {
    margin: 0 0 14px;
    color: #4a4d3b;
    font-size: 16px;
    line-height: 1.45;
    text-align: left;
}

.wc-fsr-notice .wc-fsr-message strong {
    color: #1f2a1e;
    font-weight: 700;
}

.wc-fsr-notice .progress-container {
    display: block;
    width: 100%;
    height: 17px;
    margin: 0;
    overflow: hidden;
    background: #e5e5e2;
    border: 1px solid rgba(47, 59, 45, 0.08);
    border-radius: 50px;
    box-shadow: inset 0 1px 3px rgba(47, 59, 45, 0.16);
}

.wc-fsr-notice .progress-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 28px;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        #4caf50 0%,
        #66bb6a 25%,
        #81c784 50%,
        #66bb6a 75%,
        #4caf50 100%
    );
    background-size: 200% 100%;
    border-radius: inherit;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.4);
    transition: width 0.6s ease;
    animation: wc-fsr-loading 2s linear infinite;
}

.wc-fsr-notice .progress-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: wc-fsr-shine 2s infinite;
}

.wc-fsr-notice .progress-text {
    position: relative;
    z-index: 1;
    padding-right: 9px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

@keyframes wc-fsr-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes wc-fsr-shine {
    0% {
        left: -50%;
    }

    100% {
        left: 120%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wc-fsr-notice .progress-bar,
    .wc-fsr-notice .progress-bar::before {
        animation: none;
    }
}

.wc-fsr-notice .wc-fsr-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 12px;
    padding-top: 12px;
    color: #5b6757;
    border-top: 1px solid rgba(46, 59, 45, 0.1);
    font-size: 14px;
    line-height: 1.35;
}

.single-product .wc-fsr-notice--product {
    clear: both;
    margin: 18px 0 22px;
}

.widget_shopping_cart .wc-fsr-notice,
.wc-mini-cart .wc-fsr-notice,
.woocommerce-mini-cart .wc-fsr-notice {
    margin: 12px 0;
}

.widget_shopping_cart .wc-fsr-notice.message-show,
.wc-mini-cart .wc-fsr-notice.message-show,
.woocommerce-mini-cart .wc-fsr-notice.message-show {
    padding: 14px 16px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid rgba(46, 59, 45, 0.12);
}

.widget_shopping_cart .wc-fsr-notice .wc-fsr-message,
.wc-mini-cart .wc-fsr-notice .wc-fsr-message,
.woocommerce-mini-cart .wc-fsr-notice .wc-fsr-message {
    font-size: 14px;
}

.woocommerce-cart .wc-fsr-notice.message-show,
.woocommerce-checkout .wc-fsr-notice.message-show {
    padding: 14px 16px;
    border: 1px solid rgba(46, 59, 45, 0.12);
    border-radius: 8px;
    box-shadow: none;
}

@media (max-width: 768px) {
    .wc-fsr-notice.message-show {
        width: 100%;
        padding: 14px 14px 16px;
        margin: 14px 0 18px;
        border-radius: 15px;
        font-size: 15px;
    }

    .wc-fsr-notice .wc-fsr-message {
        font-size: 15px;
    }
}
