.mzsc-free-shipping-slot[hidden] {
    display: none !important;
}

.mzsc-free-shipping-slot {
    width: 100%;
    margin: 0 0 18px;
}

.mzsc-free-shipping {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 15px;
    border: 1px solid #dce4eb;
    border-left: 3px solid #22a9b8;
    border-radius: 8px;
    background: #fff;
    color: #18202c;
    box-shadow: 0 5px 18px rgba(24, 32, 44, .05);
}

.mzsc-free-shipping.is-reached {
    border-color: #b9e5d3;
    border-left-color: #15956f;
    background: #fbfffd;
}

.mzsc-free-shipping__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #edf9fb;
    color: #117f8c;
}

.mzsc-free-shipping.is-reached .mzsc-free-shipping__icon {
    background: #e7f8f1;
    color: #0d7c5d;
}

.mzsc-free-shipping__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mzsc-free-shipping__body {
    min-width: 0;
}

.mzsc-free-shipping__eyebrow,
.mzsc-free-shipping__message,
.mzsc-free-shipping__meta {
    margin: 0 !important;
}

.mzsc-free-shipping__eyebrow {
    color: #596474;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.mzsc-free-shipping__message {
    margin-top: 3px !important;
    color: #18202c;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
}

.mzsc-free-shipping.is-reached .mzsc-free-shipping__message {
    color: #096a50;
}

.mzsc-free-shipping__progress {
    height: 5px;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 99px;
    background: #e8edf2;
}

.mzsc-free-shipping__progress > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #ef3838;
    transition: width .3s ease;
}

.mzsc-free-shipping.is-reached .mzsc-free-shipping__progress > span {
    background: #15956f;
}

.mzsc-free-shipping__meta {
    margin-top: 5px !important;
    color: #6a7482;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.25;
}

.mzsc-free-shipping-slot--mini-cart {
    margin-bottom: 10px;
}

.btn-mini-cart > .mzsc-free-shipping-slot--mini-cart {
    grid-column: 1 / -1;
    order: -1;
    width: 100%;
}

.mzsc-free-shipping-slot--mini-cart .mzsc-free-shipping {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
    padding: 11px 12px;
    box-shadow: none;
}

.mzsc-free-shipping-slot--mini-cart .mzsc-free-shipping__icon {
    width: 32px;
    height: 32px;
}

.mzsc-free-shipping-slot--mini-cart .mzsc-free-shipping__icon svg {
    width: 18px;
    height: 18px;
}

.mzsc-free-shipping-slot--mini-cart .mzsc-free-shipping__message {
    font-size: 12px;
}

@media (max-width: 480px) {
    .mzsc-free-shipping {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .mzsc-free-shipping__icon {
        width: 34px;
        height: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mzsc-free-shipping__progress > span {
        transition: none;
    }
}
