.offcanvas-cart {
    --accent-color-1: cadetblue;
    --text-on-accent-color-1: #fff;
}

.offcanvas-cart__toggle {
    display: block;
}

.offcanvas-cart__toggle > * {
    pointer-events: none;
}

.offcanvas-cart {
    font-size: 16px;
    color: black;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    max-width: 380px;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    overflow: hidden;
    transition: .2s;
    z-index: 9999999999;
}

.offcanvas-cart--open .offcanvas-cart {
    right: 0;
}

.offcanvas-cart__container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offcanvas-cart__header {
    background: #f2f2f2;
    color: currentColor;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offcanvas-cart__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: black;
    margin: 0;
}

.offcanvas-cart__close {
    appearance: none;
    background: black;
    color: white;
    line-height: 1;
    border: 0;
    border-radius: 4px;
    outline: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-cart__close:hover,
.offcanvas-cart__close:focus {
    background: black;
    color: white;
}

.offcanvas-cart__close > * {
    pointer-events: none;
}

.offcanvas-cart__main {
    padding: 24px;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
}

.offcanvas-cart__footer {
    background-color: white;
    color: currentColor;
    padding: 24px;
}

.offcanvas-cart__save {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.offcanvas-cart__info {
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
}

.offcanvas-cart__actions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offcanvas-cart__action {
    appearance: none;
    line-height: 1.4;
    text-decoration: none;
    border: 0;
    border-radius: 50px;
    outline: 0;
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    transition: .2s;
    font-weight: 600;
}

.offcanvas-cart__action:hover,
.offcanvas-cart__action:focus {
    text-decoration: none;
    outline: 0;
}

.offcanvas-cart__action--cart {
    background-color: #f2f2f2;
    color: black;
}

.offcanvas-cart__action--cart:hover,
.offcanvas-cart__action--cart:focus {
    background-color: #f2f2f2;
    color: black;
}

.offcanvas-cart__action--checkout {
    background-color: var(--accent-color-1);
    color: var(--text-on-accent-color-1);
}

.offcanvas-cart__action--checkout:hover,
.offcanvas-cart__action--checkout:focus {
    background-color: black;
    color: white;
}

.offcanvas-cart__notice {
    padding: 24px;
}

.offcanvas-product {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.offcanvas-product:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.offcanvas-product__container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offcanvas-product__figure {
    flex-shrink: 0;
}

.offcanvas-product__main {
    flex-grow: 1;
}

.offcanvas-product__title {
    color: black;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 4px;
}

.offcanvas-product__link {
    color: currentColor;
    text-decoration: none;
}

.offcanvas-product__link:hover,
.offcanvas-product__link:focus {
    color: currentColor;
    text-decoration: none;
}

.offcanvas-product__badge {
    background: #d9534f;
    color: white;
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 4px;
    line-height: 1;
    padding: 4px 8px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 8px;
}

.offcanvas-product__price {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.offcanvas-product__price s {
    font-size: 14px;
    opacity: .8;
}

.offcanvas-product__price span {
    font-weight: 600;
}

.offcanvas-product__remove {
    appearance: none;
    background: #f9f9f9;
    color: black;
    line-height: 1;
    border: 0;
    border-radius: 4px;
    outline: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.offcanvas-product__remove:hover,
.offcanvas-product__remove:focus {
    background: #f9f9f9;
    color: black;
    text-decoration: none;
}

.offcanvas-product__remove > * {
    pointer-events: none;
}

.offcanvas-cart__toggle {
    display: block;
}

.offcanvas-cart__toggle .a2c_item_count {
    top: 0;
}

.header-cart--legacy {
    display: none;
}

.header-cart--offcanvas {
    display: block;
}

.zsiq_floatmain {
    z-index: 999999999 !important;
}

.offcanvas-cart--open::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: black;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.discount-progress {
    padding: 24px 16px;
}
@media (min-width:769px) {
    .discount-progress{
        display: none!important;
    }
}

.discount-progress-title {
    margin-bottom: 24px;
}

.discount-progress-title p {
    font-size: 14px;
    margin: 0;
}

.discount-progress-subtitle {
    margin-top: -20px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.4;
    color: #005a8b;
}

.discount-progress .progress {
    margin: 0;
    overflow: visible;
    position: relative;
    height: 14px;
}

.progress-checkpoint-wrapper {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: -6px;
    width: 100%;
}

.progress-checkpoint {
    position: relative;
}

.progress-checkpoint:first-child {
    margin-left: -15px;
}

.progress-checkpoint:last-child {
    margin-right: -15px;
}

.progress-checkpoint-label {
    margin-top: 8px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    color: #3c3c3c;
    min-width: 100px;
    display: none;
}

.progress-checkpoint-mark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.progress-checkpoint-mark > span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
}

.progress-checkpoint-mark > i {
    display: none;
}

.progress-checkpoint-label {
    display: none;
}

.progress-checkpoint-start .progress-checkpoint-mark,
.progress-checkpoint-active .progress-checkpoint-mark {
    background-color: #005a8b;
}

.progress-checkpoint-start .progress-checkpoint-mark > span,
.progress-checkpoint-active .progress-checkpoint-mark > span {
    display: none;
}

.progress-checkpoint-start .progress-checkpoint-mark > i,
.progress-checkpoint-active .progress-checkpoint-mark > i {
    display: block;
}

.discount-progress-offcanvas {
    text-align: center;
    padding-bottom: 32px;
    margin-bottom: 12px;
}

.discount-progress-offcanvas .progress {
    height: 14px;
}

.discount-progress-offcanvas .progress-checkpoint-mark {
    width: 26px !important;
    height: 26px !important;
}

.discount-progress-offcanvas .progress-checkpoint-wrapper  {
    top: -6px;
}

.discount-progress-offcanvas .progress-checkpoint-label {
    display: none;
}

.discount-progress-offcanvas .progress-checkpoint-mark {
    width: 30px;
    height: 30px;
}

.discount-progress-offcanvas .discount-progress-title p {
    font-size: 14px;
}

a.offcanvas-cart__toggle.btn.btn-primary {
    width: 130px;
}