@keyframes afsb-animate-stripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 0;
    }
}

@keyframes afsb-success-shimmer {
    0% {
        transform: translateX(-130%);
    }

    100% {
        transform: translateX(130%);
    }
}

@keyframes afsb-success-text-glow {
    0%,
    100% {
        text-shadow:
            0 0 0 rgba(var(--afsb-progress-complete-rgb, 93, 156, 89), 0),
            0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        text-shadow:
            0 0 10px rgba(var(--afsb-progress-complete-rgb, 93, 156, 89), 0.18),
            0 0 16px rgba(255, 255, 255, 0.4);
    }
}

.afsb-wrap {
    padding: 16px 0;
    color: #444444;
}

.widget_shopping_cart_content .afsb-wrap {
    padding-left: 30px;
    padding-right: 30px;
}

.afsb-title,
.afsb-message,
.afsb-success {
    font-size: 14px;
    line-height: 1.5;
}

.afsb-title {
    margin-bottom: 10px;
    font-weight: 500;
}

.afsb-message {
    margin-top: 10px;
}

.afsb-progress-bar {
    position: relative;
    display: block;
    width: 100%;
    height: 12px;
    margin: 0;
    overflow: hidden;
    border-radius: 999px;
    background: var(--afsb-bar-bg, #dddddd);
}

.afsb-progress-amount {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    min-width: 12px;
    border-radius: inherit;
    background-color: var(--afsb-progress, #8fbf83);
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.18) 75%,
        transparent 75%,
        transparent
    );
    background-size: 30px 30px;
    animation: afsb-animate-stripes 1.25s linear infinite;
}

.afsb-is-complete .afsb-progress-amount {
    background-color: var(--afsb-progress-complete, #5d9c59);
}

.afsb-progress-bar-success {
    box-shadow:
        0 0 0 1px rgba(var(--afsb-progress-complete-rgb, 93, 156, 89), 0.24),
        0 0 18px rgba(var(--afsb-progress-complete-rgb, 93, 156, 89), 0.22);
}

.afsb-is-complete .afsb-progress-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 30%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.06) 70%,
        transparent 100%
    );
    animation: afsb-success-shimmer 2.2s ease-in-out infinite;
    pointer-events: none;
}

.afsb-is-complete .afsb-message,
.afsb-is-complete .afsb-success-text {
    font-weight: 600;
}

.afsb-success-subtext {
    color: inherit;
}

.afsb-title-success {
    color: inherit;
}

.afsb-title-success .afsb-success-text {
    display: inline-block;
    color: inherit;
    -webkit-text-fill-color: currentColor;
    animation: afsb-success-text-glow 2.4s ease-in-out infinite;
}

.woocommerce-cart .afsb-wrap {
    margin-bottom: 20px;
    padding: 0 0 20px;
}

@media (max-width: 768px) {
    .widget_shopping_cart_content .afsb-wrap {
        padding-left: 0;
        padding-right: 0;
    }
}
