/**
 * 2024 PrestaShop SA and Contributors
 * Free Shipping Amount Counter - Progress Bar Styles
 */

/* Container for the progress bar */
.AFSC-remaining-progress {
    display: block;
    width: 100%;
    height: 7px;
    background-color: #ede3d4;
    border-radius: 999px;
    margin: 6px 0;
    overflow: hidden;
}

/* Actual progress bar */
.AFSC-remaining-progress-bar {
    height: 100%;
    text-align: center;
    background: linear-gradient(90deg, #c59b5f 0%, #dfb77d 100%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 999px;
}

.AFSC-congrats-progres {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%) !important;
}

/* Screen reader only text */
.AFSC-remaining-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
