#basket-root {
    margin-top: 50px;
}

/* ------ Empty ------ */
.bx-sbb-empty-cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bx-sbb-empty-cart-container svg {
    fill: #22229c;
    width: 200px;
    height: 194px;
}

.bx-sbb-empty-cart-text {
    font-size: 30px;
    font-weight: 700;
}

.bx-sbb-empty-cart-desc {
    font-size: 20px;
    font-weight: 500;
}

.bx-sbb-empty-cart-desc a {
    color: #22229c;
}

#basket-helper-text {
    font-size: 15px;
    color: #111;
    font-weight: 600;
    margin: 10px 2px;
}

#basket-helper-btn-id {
    margin: 15px 0px;
}

/* ------ Checout ------ */
.basket-checkout-container {
    background: #F5F5FA;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 30px 41px 20px;
    margin-top: 25px;
    width: 100%;
    margin-left: auto;
}

.basket-checkout-container p {
    font-size: 10px;
    color: #B4B4B4;
    text-align: center;
}

.basket-checkout-block-total-price {
    font-size: 25px;
    font-weight: 800;
    border-bottom: 1px solid #1A1A1A;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.basket-checkout-block-total-price-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.basket-checkout-block-btn {
    margin-bottom: 15px;
}

.basket-checkout-block-btn button {
    color: #fff;
    background: #ff8800;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.06);
}

.basket-checkout-block-btn button:hover {
    background: #fff;
    border-color: #ff8800;
}

.disabled {
    pointer-events: none;
    opacity: .7
}

.basket-coupon-section {
    margin-bottom: 10px;
}

.basket-coupon-section input {
    font-size: 16px;
    color: #22229c;
    background: #fff;
    width: 100%;
    height: 50px;
    border: 1px solid #22229C;
    border-radius: 3px;
    text-align: center;
}

.basket-coupon-section input::placeholder {
    color: #22229c;
}

.basket-coupon-section input:focus::placeholder {
    opacity: 0;
}

.basket-coupon-alert-inner {
    margin-bottom: 10px;
}

.basket-coupon-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .basket-checkout-container {
        max-width: 350px;
    }
}

@media screen and (min-width: 1200px) {
    .basket-checkout-container {
        margin-top: 0;
        max-width: none;
    }
}

/* ------ List ------ */
.basket-items-list-wrapper {
    background: #FFFFFF;
    box-shadow: 0px 7px 20px rgba(153, 168, 176, 0.17);
    border-radius: 15px;
    /*padding: 35px 40px 65px;*/
    padding: 20px;
}

.basket-items-list-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #1A1A1A;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.basket-items-search-field {
    flex: none !important;
}

.basket-items-search-field input {
    font-size: 16px;
    color: #FF8800;
    border: 1px solid #FF8800;
    padding: 0 20px;
}

.basket-items-search-field input:focus {
    box-shadow: none;
    border-color: #ff8800;
}

.basket-items-search-field input::placeholder {
    color: #FF8800;
}

.basket-items-search-field input:focus::placeholder {
    opacity: 0;
}

.basket-items-list-header-filter {
    margin-left: auto;
}

.basket-items-list-header-filter a {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: default;
}

.basket-items-list-header-filter a:hover {
    text-decoration: none;
}

.basket-items-list {}

.basket-items-list table {
    width: 100%;
}

.basket-item-amount-btn-plus svg[disabled] {
    fill: #D9D9D9;
}

/* ------ item ------ */
.basket-item-wrap {
    width: 100%;
}

.basket-items-list-item-wrap {
    width: 100%;
    border: 0;
}

.basket-items-list-item-wrapper {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(152, 152, 152, 0.5);
    margin-bottom: 29px;
    gap: 35px;
}

.basket-items-list-item-right {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.basket-items-list-item-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.basket-items-list-item-image {
    position: absolute;
    right: 0px;
    bottom: 20px;
    max-width: 115px;
}

.basket-items-list-item-image img {
    width: 100%;
}

.basket-items-list-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
    padding-right: 16px;
}

.basket-items-list-item-title:hover {
    color: #22229c;
    text-decoration: none;
}

.basket-items-list-item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #989898;
    width: 100%;
    align-self: flex-start;
    margin-bottom: 10px;
}

.basket-item-price-current {
    font-size: 18px;
    font-weight: 800;
    color: #1A1A1A;
}

.basket-item-price-title {
    font-size: 16px;
    color: #989898;
}

.basket-items-list-item-current-block {
    margin-bottom: 10px;
}

.basket-items-list-item-action {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.basket-items-list-item-action span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.basket-items-list-item-action span svg {
    fill: #1A1A1A;
}

.basket-items-list-item-action input {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    border: 0;
    background: transparent;
    height: 24px;
    width: 36px;
    text-align: center;
    margin: 0px;
    padding: 0px 4px;
}

.basket-items-list-item-price {
    font-size: 25px;
    font-weight: 800;
    color: #ff8800;
    max-width: 120px;
    width: 100%;
}

.basket-items-list-item-remove {
    position: absolute;
    top: 10px;
    right: 0;
    transform: translateY(-50%);
}

.basket-items-list-item-remove a {
    display: block;
}

.basket-items-list-item-remove svg {
    fill: #ff8800;
    width: 13px;
}

.basket-items-list-item-wrapper:hover .basket-items-list-item-remove {
    opacity: 1;
    visibility: visible;
}

.basket-items-list-item-removed-container {
    font-size: 18px;
    text-align: center;
    padding: 0 0 20px;
    min-height: 119px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(152, 152, 152, 0.5);
    margin-bottom: 29px;
}

.basket-items-list-item-removed-container a {
    color: #22229c;
    font-weight: 700;
}

#basket-SCU-container-fone {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: #1414147a;
    top: 0;
    left: 0;
    z-index: 9999;
}

#basket-SCU-container {
    position: fixed;
    top: 230px;
    left: 10vw;
    z-index: 10000;
    background-color: #fff;
    border: solid 1px;
    padding: 50px;
    max-width: 80vw;
}

#persent_info{
    font-size: 15px;
    color: #ff8800;
}
span.basket-items-list-item-price-old-text {
    font-size: 18px;
    font-weight: 500;
    color: #a6a6a6;
    display: block;
    text-decoration: line-through;
}

@media screen and (min-width: 576px) {
    .basket-items-list-wrapper {
        padding: 35px 40px 65px;
    }
}

@media screen and (min-width: 768px) {
    .basket-items-list-item-wrapper {
        flex-direction: row;
    }

    .basket-items-list-item-image {
        position: static;
    }

    .basket-items-list-item-desc {
        align-items: flex-end;
        text-align: right;
    }
}

@media screen and (min-width: 992px) {
    .basket-items-list-item-info {
        max-width: 224px;
    }

    .basket-items-list-item-desc {
        text-align: left;
        align-items: center;
        flex-direction: row;
    }
}

@media screen and (min-width: 1200px) {
    .basket-items-list-item-wrapper {
        padding: 0 0 20px 20px;
    }

    .basket-items-list-item-desc {
        align-items: center;
    }

    .basket-items-list-item-title {
        font-size: 18px;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .basket-items-list-item-info {
        margin-right: 40px;
        margin-top: 3px;
        margin-bottom: 0;
    }

    .basket-items-list-item-action {
        margin-left: 98px;
        margin-bottom: 0;
    }

    .basket-items-list-item-price {
        text-align: right;
    }

    .basket-items-list-item-remove {
        right: auto;
        left: 0;
        top: calc(50% - 10px);
        opacity: 0;
        visibility: hidden;
    }
}