.bx-sbb-empty-cart-container {
    padding-bottom: 24px;
}

.bx-sbb-empty-cart-image {
    margin: 50px auto 42px;
    width: 131px;
    height: 116px;
    background: url(images/empty_cart.svg) no-repeat center;
    background-size: contain;
    -webkit-background-size: contain;
}

.bx-sbb-empty-cart-text {
    margin-bottom: 42px;
    color: #bababa;
    text-align: center;
    font-size: 36px;
}

.bx-sbb-empty-cart-desc {
    margin-bottom: 42px;
    color: #000;
    text-align: center;
    font-size: 16px;
}

.basket-block {
    background-color: #F9F9FA;
}

.product-delivery-text {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 7px;
    padding-left: 25px;
}

.product-delivery-text span {
    white-space: nowrap;
    border: none;
    border-radius: 13px;
    padding: 7px;
    color: #2f3435;
    background: #FFEFD5;
}

.product-checkbox {
    margin: auto 15px auto 0;
}

.product-checkbox input[type="checkbox"] {
    zoom: 1.5;
}

.basket-block .container {
    display: flex;
    flex-direction: column;

}

.basket-store-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.basket-store-block[data-store-id="all"] {
    order: -1;
}

.basket-store-block h3,
.basket-store-block .bottom-store-block {
    margin-bottom: 32px;
}

.basket-store-block .product-item-card{
    border-top: 1px solid #eee;
    padding: 21px 0;
}

.basket-store-block .product-item-card-wrap {
    display: flex;
    align-items: start;
}

.basket-store-block .product-item-card-wrap.cant-buy .basket-item-block-amount {
    border: 1px solid var(--bs-danger);
}

.basket-store-block .product-item-card-wrap.cant-buy .basket-item-block-amount .basket-item-amount-filed {
    color: var(--bs-danger);
}

.basket-store-block .product-item-card-wrap:nth-child(2) {
    border-top: 1px solid #eee;
}

.basket-store-block .product-item-card-wrap .product-image-block {
    min-width: 154px;
    max-width: 154px;
    height: 100%;
    margin-right: 32px;
    overflow: hidden;
}

.basket-store-block .product-item-card-wrap .product-image-block img {
    width: 100%;
    height: auto;
}

.basket-store-block .product-item-card-wrap .info-product-block {
    display: flex;
    gap: 13px;
    flex-direction: column;
    padding: 0 10px;
    width: 33%;
}

.basket-store-block .product-item-card-wrap .info-product-block .product-article-text {
    color: #808d9a;
    font-size: 12px;
    line-height: 120%;
}

.basket-store-block .product-item-card-wrap .info-product-block .product-name {
    margin: 0;
    padding: 0 20px 0 0;
    color: #2f3435;
    text-decoration: none;
    word-break: break-word;
    font: 16px / 26px var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
    font-weight: var(--ui-font-weight-regular, 400);
    transition: 300ms all ease;
}

.basket-store-block .product-item-card-wrap .info-product-block .product-name:hover {
    text-decoration: underline;
}

.basket-store-block .product-item-card-wrap .product-price-block {
    width: 16%;
    padding: 0 10px;
    color: #333333;
    font-size: 16px;
    font-family: "Gotham Pro", Serif;
    font-weight: 500;
    letter-spacing: -0.33px;
}

.basket-store-block .product-item-card-wrap .product-quantity-block {
    width: 20%;
    padding: 0 10px;
}

.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    -ms-flex-align: start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: end;
    justify-content: flex-end;
    background-color: #eeeff3;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    min-height: 47px;
    width: 6.25rem;
}

.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount.not-allowed:after {
    display: block;
    content: '';
    width: 32px;
    height: 47px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    cursor: not-allowed;
}

.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-btn-minus,
.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-btn-plus {
    position: relative;
    width: 32px;
    height: 47px;
    cursor: pointer;
    transition: 300ms all ease;
    -webkit-user-select: none;
}

.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-btn-plus::before,
.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-btn-plus::after,
.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-btn-minus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
    width: 10px;
    height: 2px;
    background-color: #979797;
    content: "";
    transition: 300ms all ease;
}

.plus-not-allowed {
    display: flex;
    width: 32px;
    height: 47px;
}

.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-btn-plus::before {
    margin-top: -5px;
    margin-left: -1px;
    width: 2px;
    height: 10px;
}

.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-filed-block {
    position: relative;
}

.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-filed-block input {
    padding: 0;
    width: 35px;
    height: 47px;
    outline: none;
    border-radius: 1px;
    vertical-align: middle;
    text-align: center;
    font: var(--ui-font-weight-bold) 18px / 27px "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: 300ms all ease;
    border: 0 none;
    background-color: transparent;
    margin: 0;
}

.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-btn-plus.disabled,
.basket-store-block .product-item-card-wrap .product-quantity-block .basket-item-block-amount .basket-item-amount-btn-minus.disabled {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

.basket-store-block .product-item-card-wrap .product-sum-block {
    width: 16%;
    padding: 0 10px;
    color: #333333;
    font-size: 16px;
    font-family: "Gotham Pro", Serif;
    font-weight: 500;
    letter-spacing: -0.33px;
    display: flex;
    flex-direction: column;
}

.basket-store-block .product-item-card-wrap .product-sum-bonus{
    color: #808D9A;
    font-weight: 400;
    font-size: 14px;
}

.basket-store-block .product-item-card-wrap .delete-product-icon {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.basket-store-block .product-item-card-wrap .delete-product-icon::after,
.basket-store-block .product-item-card-wrap .delete-product-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 8.5px;
    background: #808D9A;
    content: "";
    transition: 300ms background-color ease;
}

.basket-store-block .product-item-card-wrap .delete-product-icon::after {
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.basket-store-block .product-item-card-wrap .delete-product-icon::before {
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.basket-store-block .product-item-card-wrap .delete-product-icon:hover::after,
.basket-store-block .product-item-card-wrap .delete-product-icon:hover::before {
    background-color: #7e000f;
}

.basket-store-block .bottom-store-block {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.basket-store-block .bottom-store-block .total-store-text {
    color: #333;
    font: 500 16px / 130% "Gotham Pro", sans-serif;
}

.top-basket-block {
    margin-bottom: 48px;
}

.top-basket-block .top-basket-block-quantity{
    color: #808D9A;
    font-size: 16px;
    font-weight: 400;
}

.top-basket-block .basket__btn-clear {
    color: #808d9a;
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.basket-store-block.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-color: #F9F9FA;
    opacity: .7;
}

.top-basket-block .basket__next-link {
    float: right;
    line-height: 36.6px;
    color: #004989;
}

.top-basket-block .basket__next-link:after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 7px;
    margin-left: 0.5rem;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='5' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 .818l2.484 2.485L0 5.787l.818.818 3.303-3.302L.818 0 0 .818z' fill='%23004989'/%3E%3C/svg%3E");
}

.basket-free-delivery {
    display: flex;
    padding: 14px 24px 14px 60px;
    border: 1px solid #F6844F;
    border-radius: 4px;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #F6844F;
    margin-bottom: 24px;
    background-image: url(images/basket-free-delivery.svg);
    background-repeat: no-repeat;
    background-position: 24px 50%;
}

.total-store-price,
.total-store-bonus{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-store-price{
    color: #333333;
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
}

.total-store-bonus{
    color: #808D9A;
    font-size: 14px;
    line-height: 130%;
    margin-top: 12px;
}

@media (max-width: 1200px) {
    .breadcrumb-wrapper .container{
        padding: 0 15px!important;
    }

    .basket-store-block .bottom-store-block {
        background-color: #FFF;
        border-radius: 16px;
        padding: 29px 26px;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 52px;
        margin-top: 16px;
        gap: 0;
    }

    .bottom-store-block{
        flex-direction: column;
    }

    .total-store-block{
        width: 100%;
    }

    .total-store-promo{
        border-top: 1px solid #E9E9EA;
        margin-top: 18px;
        padding-top: 18px;
        color: #808D9A;
        font-size: 16px;
        line-height: 24px;
    }

    .store-total-button-block,
    .store-total-button-block .btn{
        width: 100%;
    }

    .total-store-block{
        margin-bottom: 24px;
    }
}

@media (max-width: 1023px) {
    .basket-block .container{
        max-width: 100%;
        padding: 0 15px;
    }

    .top-basket-block {
        margin-bottom: 52px;
    }

    .top-basket-block h1{
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .top-basket-block .top-basket-block-quantity{
        font-size: 12px;
    }

    .bx-sbb-empty-cart-image{
        width: 99px;
        height: 88px;
        margin: 54px auto 32px;
    }

    .bx-sbb-empty-cart-text{
        line-height: 48px;
        margin-bottom: 24px;
    }

    .bx-sbb-empty-cart-desc{
        text-align: center;
        line-height: 24px;
    }

    .bx-sbb-empty-cart-desc a{
        display: block;
        text-decoration: none;
    }
}

@media (max-width: 980px) {
    .top-basket-block .basket__btn-clear{
        padding: 12px 8px;
        color: #808D9A;
        font-size: 12px;
        line-height: 12px;
    }

    .top-basket-block > div {
        width: 50%;
    }

    .top-basket-block div:nth-child(2) {
        order: 3;
    }

    .top-basket-block div:nth-child(3) {
        order: 2;
    }

    .product-price-block{
        display: none;
    }
    
}

@media (max-width: 767px) {
    .top-basket-block> .col-12 {
        width: 100%;
    }

    .top-basket-block div:nth-child(2) {
        order: 2;
    }

    .top-basket-block div:nth-child(3) {
        order: 3;
    }

    .product-item-card-wrap{
        position: relative;
        padding-left: 93px;
    }

    .basket-store-block .product-item-card-wrap .product-image-block{
        position: absolute;
        top: 0;
        left: 0;
        min-width: 69px;
        max-width: 69px;
    }

    .basket-store-block .product-item-card-wrap .product-image-block a{
        display: flex;
        min-height: 83px;
        background-color: #FFFFFF;
        border-radius: 14px;
        overflow: hidden;
        min-width: 69px;
        max-width: 69px;
        align-items: center;
    }

    .basket-store-block .product-item-card-wrap .product-image-block a img{
        object-fit: contain;
    }
    
    .product-checkbox{
        width: 16px;
        height: 16px;
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 1;
    }

    .basket-store-block .product-item-card-wrap .delete-product-icon{
        position: absolute;
        top: 0;
        right: 0;
    }

    .basket-store-block .product-item-card-wrap{
        flex-wrap: wrap;
        align-items: center;
    }

    .basket-store-block .product-item-card-wrap .info-product-block{
        width: 100%;
        margin-bottom: 8px;
        order: 1;
    }

    .product-quantity-block{
        order: 3;
    }

    .product-sum-block{
        order: 2;
    }

    .basket-store-block .product-item-card-wrap .product-sum-block,
    .basket-store-block .product-item-card-wrap .product-quantity-block{
        width: 50%;
    }

    .product-delivery-text{
        padding-left: 0;
    }
    
    .basket-store-block .product-item-card-wrap .delete-product-icon::after, 
    .basket-store-block .product-item-card-wrap .delete-product-icon::before{
        height: 9.5px; 
    }

    .product-delivery-text{
        grid-gap: 4px;
    }

    .product-delivery-text span{
        padding: 4px;
    }
}