
.cart-popup .hide {
    display: none;
}
.cart-popup .cart-popup-close {
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    opacity: .8;
    position: absolute;
    z-index: 401;
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
    width: 55px;
    height: 55px;
}
.cart-delete-wrap {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
}
.cart-delete-wrap .close-button {
    filter: unset;
    top: 20px;
    right: 20px;
    position: absolute;
    cursor: pointer;
}
.cart-delete-wrap.active {
    display: flex;
}
.cart-popup--delete {
    min-width: 350px;
    background: #fff;
    padding: 20px;
    position: relative;
}
.cart-popup__text {
    font-size: 18px;
    line-height: 20px;
    color: #272725;
    margin-bottom: 30px;
}
.cart-popup__button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
    border: none;
    background-color: #272725;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
}
.cart-popup__button + .cart-popup__button {
    margin-top: 20px;
}

.cart-popup__wrap {
    position: fixed;
    top: 0;
    right: -700px;
    z-index: 99999;
    border: 1px solid #eaeaea;
    background: #fff;
    width: 700px;
    height: 100%;
    transition: 0.2s linear;
}
.cart-popup__wrap.active {
    right: 0;
}
.cart-buttons {
    margin-top: 15px;
}
.cart-buttons .button--order {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background-color: #272725;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    text-transform: uppercase;
    border: none;
    margin: 0;
    max-width: unset;
}

.cart-popup {
    z-index: 1001;
    background: #fff;
    padding: 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cart-popup__background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}
.cart-popup__wrap.active .cart-popup__background {
    display: block;
}
.cart-popup.disabled {
    display: none !important;
}

.cart-remove {
    width: 100%;
}

.cart-remove__wrapper {
    display: none !important;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-remove__check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 20px;
    cursor: pointer;
    position: relative;
    background-position-x: -412px;
    background-position-y: -36px;
    display: none !important;
}

.cart-remove__check.checked {
    background: url('/local/templates/adaptive/sprite.svg') no-repeat;
    background-position-x: -448px;
    background-position-y: -36px;
}

.cart-remove__check.checked::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    background: transparent;
    border: 0 solid #272725;
    border-right-width: 2px;
    border-bottom-width: 2px;
    transform: rotate(45deg);
    left: 7px;
    top: 3px;
}

.cart-remove__all {
    display: flex;
    align-items: center;
}

.cart-remove__text,
.cart-remove__trash {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #717171;
    margin-bottom: 0;
    cursor: pointer;
}
.cart-popup-header {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0.4;
}
.cart-popup-preheader {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 20px;
    float: left;
    margin-right: 30px;
}
.cart-popup-body {
    max-height: 352px;
    overflow: hidden;
    overflow-y: auto;
    margin-bottom: 20px;
    width: calc(100% + 15px);
}
.cart-popup-body::-webkit-scrollbar {
    width: 3px;
}

.cart-popup-body::-webkit-scrollbar-thumb {
    background: #717171;
}

.cart-popup .button {
    margin: 0;
}

.cart-popup-item {
    display: flex;
    margin-bottom: 20px;
}

.cart-popup-item:last-child {
    margin-bottom: 0;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    color: #272725;
    padding: 0 2px;
}
.cart-bonus__sum {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    color: #272725;
    font-size: 14px;
    line-height: 20px;
}
.cart-bonus__sum span,
.cart-summary span {
    font-weight: 500;
     font-size: 20px;
}
.cart-bonus__info {
    padding: 8px 10px;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
}
.cart-bonus__info p {
    font-size: 12px;
    line-height: 18px;
    color: #717171;
    margin-bottom: 0;
}
.cart-promo {
    position: relative;
    margin-bottom: 12px;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 10px;
    border: 1px solid #EAEAEA;
}
.cart-promo .input {
    padding-right: 95px;
    margin: 0;
    border: none;
}
.cart-promo .input::placeholder {
    font-size: 14px;
    line-height: 20px;
    color: #272725;
    opacity: 0.4;
}
.cart-promo-button {
    position: absolute;
    right: 20px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    color: #272725;
    text-transform: uppercase;
    opacity: 40%;
}
.cart-promo-error {
    position: absolute;
    bottom: -20px;
    left: 0;
    text-transform: lowercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-popup-img {
    width: 100px;
    flex-shrink: 0;
    height: 150px;
    margin-right: 20px;
    background: #eaeaea;
    position: relative;
}

.cart-popup-info .color-circle {
    width: 10px;
    height: 10px;
    margin-left: 0;
    margin-right: 10px;
}

.cart-popup-info > div:nth-child(1) {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 6px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-popup-info > div:nth-child(2) {
    color: #717171;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 6px;
}

.cart-popup-info > div:nth-child(3) {
    margin-bottom: 6px;
}

.cart-popup-info > div:nth-child(3) > div {
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
    margin-right: 20px;
}
.cart-popup-info > div:nth-child(4) {
    font-size: 14px;
    line-height: 19px;
}
.cart-popup-info__quantity {
    font-size: 13px;
    margin-right: 12px;
}
.cart-popup-info__price {
    font-weight: 600;
    margin-right: 12px;
}
.cart-popup-info__price--old {
    color: #717171;
    margin-right: 12px;
    position: relative;
}
.cart-popup-info__price--percent {
    color: #FC2F35;
}
.cart-popup-info__price--old::after {
    position: absolute;
    content: '';
    border-bottom: 1px solid;
    width: 100%;
    left: 0;
    top: 50%;
}
.cart-popup-total {
    padding: 10px 0 20px;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}
.js_cart_popup .js_delete_hide {
    opacity: 0;
    cursor: default;
    pointer-events: none;
    margin-right: 20px;
    display: none !important;
}
.js_cart_popup .js_delete_hide.active {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}
.cart-popup__body {
    flex-grow: 1;
    overflow: hidden;
    overflow-y: auto;
    margin-bottom: 20px;
}
.cart-popup__body::-webkit-scrollbar {
    width: 5px;
    background: #fff;
}
.cart-popup__body::-webkit-scrollbar-thumb {
    background: #27272588;
}
body.is-firefox .cart-popup__body {
    scrollbar-color: #27272588 #fff;
    scrollbar-width: thin;
}

.cart-body__color {
    font-size: 14px;
    line-height: 18px;
    margin-right: 30px;
    position: relative;
    display: none;
}
.cart-body__color span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}
.cart-body__favorite {
    width: 23px;
    height: 20px;
    margin-left: 25px;
    margin-bottom: 2px;
    cursor: pointer;
    background-position-x: -110px;
    background-position-y: -135px;
    opacity: 0.25;
    transition: 0.2s;
}
.cart-body__favorite.active {
    opacity: 1;
}
p.cart-body__text {
    font-size: 14px;
    line-height: 26px;
    color: #272725;
    width: auto;
    margin: 0;
    padding: 0;
}

.order-cart-content .cart-item-title {
    flex-basis: unset;
    width: auto;
    padding-right: 20px;
    position: relative;
}

.order-cart-content .cart-item-title a {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #272725;
    margin-bottom: 6px;
}

.order-cart-content .cart-item-title div {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: #717171;
}
.cart-body__action {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}
.order-cart-item {
     width: 100%;
}
.order-cart-delete {
    width: 24px;
    height: 24px;
    background-position-x: -549px;
    background-position-y: -134px;
    cursor: pointer;
    margin-left: 30px;
}
.order-cart-item p {
    margin-bottom: 15px;
    font-size: 18px;
}
.order-cart-item img {
    width: 100%;
}
.order-cart-price .price {
    margin-right: 10px;
}
.order-cart-price.new .price {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}
.order-cart-price.new .price_old {
    font-size: 16px;
    line-height: 18px;
}
.order-cart-price.new .price-red {
    color: #D53333;
}
.order-cart-price div {
    display: inline-block;
}
.cart-body__action {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}
.order-cart-available__text br {
    display: none;
}
.order-cart-available__text::before {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    margin-bottom: -2px;
    content: '';
    display: inline-block;
    background-position-x: -562px;
    background-position-y: -175px;
}
.order-cart-available__text {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #FF6A13;
    margin-top: auto;
    position: relative;
}
.cart-body__parameters {
    display: flex;
    align-items: center;
}
.order-cart-clear {
    clear: both;
}
.order-cart-content {
    display: flex;
    padding: 12px 20px 12px 0;
    position: relative;
}
.cart-body__params-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /*position: relative;*/
}
.cart-body__buttons-group {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: relative;
    margin-top: auto;
}
.order-cart-price {
    display: flex;
}
.order-cart-price .price {
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    color: #272725;
}
.order-cart-price .price_old {
    font-size: 16px;
    line-height: 21px;
    color: #717171;
}
.order-cart-price .price_old::after {
    transform: rotate(0);
}
.order-cart-price_wrap {
    display: flex;
    margin-left: auto;
    position: relative;
}
.cart-popup .preloader {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #fff;
    background-size: 62%;
}
.cart-popup__wrap .preloader.forced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}
@media (max-width: 1024px) {
    .cart-popup__wrap .preloader {
        background-size: 420px;
        background-color: #fff;
    }
}
@media (max-width: 450px) {
    .cart-popup__wrap .preloader {
        background-size: 43%;
    }
}
.cart-popup__wrap.--empty .cart-popup {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}
.cart-popup__wrap.--empty .cart-popup-body {
    flex-grow: 1;
    max-height: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding-bottom: 40px;
}
.cart-popup__wrap:not(.--empty) .cart-empty {
    display: none;
}
.cart-empty-text {
    font-size: 20px;
}
.cart-empty-button {
    max-width: 320px;
    user-select: none;
}

.cart-last-quantity {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    color: #fc2f35;
    line-height: 10px;
    display: none;
}

.cart-last-quantity.active {
    display: block;
}

@media (max-width: 1024px) {
    .cart-popup__wrap {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .cart-popup__wrap.active {
        display: block;
        left: 0;
    }
    .cart-popup__background {
        display: none !important;
    }
    .cart-popup {
        height: 100%;
    }
    .cart-body__color {
        font-size: 12px;
        line-height: 18px;
        margin-right: 20px;
        white-space: nowrap;
    }
    .cart-footer {
        width: 100%;
        background: #fff;
        padding-top: 12px;
    }
    .cart-remove__wrapper {
        margin-bottom: 20px;
    }
    .order-cart-content {
        padding: 0 0 20px;
    }
    .order-cart-content .cart-item-title {
        padding-right: 40px;
    }
    .order-cart-available__text {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (max-width: 450px) {
    body.no-scroll {
        overflow: hidden;
    }
    .cart-body .sizes-body {
        margin-bottom: 20px;
    }
    .cart-popup--delete {
        min-width: unset;
    }
    .cart-popup__text {
        margin: 0 auto 30px;
        width: 80%;
    }
    .order-cart-content .cart-item-title a {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 8px;
    }
    .order-cart-item {
        margin-bottom: 10px;
    }
    .cart-remove__check.js_remove_check.sprite {
        order: 3;
        margin-right: 0;
        margin-left: -20px;
    }
    .cart-popup-img {
        width: 70px;
        height: 105px;
    }
    .cart-body__info {
        flex-direction: row;
        flex-wrap: wrap;
        padding-left: 0;
    }
    .cart-body__header {
        min-height: 105px;
        margin-left: -90px;
        padding-left: 90px;
        flex-wrap: wrap;
    }
    .cart-body__action {
        margin-left: -90px;
        width: calc(100% + 90px);
        align-items: flex-start;
        margin-bottom: 0;
    }
    .cart-body__params-wrap {
        gap: 14px;
    }
    .cart-body__buttons-group {
        margin-left: unset;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        margin-top: auto;
        margin-bottom: 8px;
    }
    .order-cart-num {
        margin-left: 0;
        margin-right: auto;
    }
    .order-cart-available__text {
        margin-top: 12px;
        margin-left: -90px;
        width: calc(100% + 90px);
    }
    .order-cart-price_wrap {
        margin-left: unset;
    }
    .cart-popup__body {
        width: calc(100% + 20px);
        padding-right: 20px;
    }
}