#basket-root {
    display: flex;
    flex-direction: column;
    gap: 30px;

    padding-top: 30px;
}

.basket__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.basket-content__reversed {
    order: 1;
    margin: 0;
}

.row:not(.basket-content__reversed) {
    order: -1;
}

.basket__total {
    width: 100%;
}

.basket__items {
    grid-column: span 2;
}

.basket__total .basket-checkout-container {
    margin-bottom: 0;
}

.basket__total .basket-checkout-section-inner {
    flex-direction: column;
}

.basket__header-container {
    background: none;
    padding: 0 0 30px 0;
    border-bottom: 1px solid #101010;
}

.basket__items-column {
    padding: 0;
}

.basket__items-wrapper {
    border: unset;
    background: none;
}

.basket-item-image {
    width: 79px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

.basket-items-list-table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.basket-items-list-item-container {
    background: white;
    border-radius: 20px;
}

.basket-checkout-container {
    border: unset;
    background: none;
    padding: 0;
}

.basket-result__card {
    background: white;
    border-radius: 20px;
    padding: 20px;
}

.basket__total-container {
    padding: 0;
}

.basket-result__span {
    background: unset !important;
    color: black !important;
    display: flex;
    flex-direction: column;
    align-items: start;

    padding-bottom: 30px;
    border-bottom: 1px solid #B2B2B2;
}

.basket-result__title {
    color: var(--Black, #101010);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.basket-result__key {
    margin: 0;
}

@media (max-width: 964px) {
    .basket__container {
        display: flex;
        flex-direction: column;
    }
}