/* Free Shipping Progress Bar */
.free-shipping-progress {
    margin-top: 10px;
}


.alert-warning.checkout {
    color: #0c5460;
    background-color: #fff;
    border-color: #0c5460;
}

.alert.alert-warning.checkout {
    color: #364c36;
    background-color: #f5f7f4;
    border-color: #f5f7f4;
    font-weight: 600;
    text-align: center;
}


.free-shipping-progress>div {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.free-shipping-progress-bar {
    width: 100%;
    height: 8px;
    background-color: #d1ddcd;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.free-shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
    position: relative;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.free-shipping-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*background-image: linear-gradient(-45deg,
            rgba(255, 255, 255, .2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .2) 50%,
            rgba(255, 255, 255, .2) 75%,
            transparent 75%,
            transparent);
    
    animation: progress-animation 1s linear infinite;*/
    background: #364c36;
    background-size: 20px 20px;
    border-radius: 8px;
}

@keyframes progress-animation {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 20px;
    }
}