.freeship-progress {
    padding: 16px;
    background-color: #EEF5F5;
    border-radius: 0.5rem;
    margin-top: 32px;
    border: 2px dotted #008080;

    .freeship-text {
        color: #000;
        margin-bottom: 0;
        max-width: 100%;

        p {
            margin-bottom: 0;
        }
    }

    p {
        &.upsell {
            text-align: center;
            @media screen and (min-width: 768px) {
                text-align: left;
            }
        }

        .freeship-price {
            color: #008080;
            font-weight: 600;
        }

        .freeship-bold {
            font-weight: 600;
        }
    }

    .freeship-progress-bar-wrapper {
        color: #000;

        span {
            display: inline-block;

            &.min {
                width: 32px;
            }

            &.max {
                width: 33px;
                text-align: right;
            }
        }

        .freeship-progress-bar-bg {
            background-color: rgba(0, 0, 0, .1);
            height: 8px;
            border-radius: 3px;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .freeship-progress-bar-fill {
            height: 8px;
            display: block;
            border-radius: 3px;
            animation-name: shippingProgressBar;
            animation-duration: 1.25s;
            animation-timing-function: ease;
            animation-delay: 0s;
            animation-iteration-count: 1;
            animation-direction: normal;
            animation-fill-mode: none;
            animation-play-state: running;
            -webkit-animation: shippingProgressBar 1.25s 1;
            animation: shippingProgressBar 1.25s 1;
            transition: width .667s cubic-bezier(.37, .16, .22, .89);
        }

        .freeship-progress-bar-progress {
            background: #008080;
        }

        .freeship-progress-bar {
            margin: 0 auto;
            width: calc(96% - 58px);
            display: inline-block;
            @media screen and (max-width: 768px) {
                width: calc(94% - 58px);
            }
        }
    }

    @-webkit-keyframes shippingProgressBar {
        0% {
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%)
        }

        to {
            -webkit-transform: translateX(0);
            transform: translateX(0)
        }
    }
    @keyframes shippingProgressBar {
        0% {
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%)
        }

        to {
            -webkit-transform: translateX(0);
            transform: translateX(0)
        }
    }
}

.checkout-cart-index .freeship-progress-bar {
    width: calc(92% - 58px);
}

.checkout-cart-index .freeship-progress {
    margin-top: 16px;
    margin-bottom: 16px;
}
