.modal--details .modal__inner[data-modal-inner="basket"] {
    justify-content: flex-start;
}

.small-basket {
    margin-top: 24px;
}

.small-basket__tabs {
    display: flex;
    margin-bottom: 16px;
}

.small-basket__tab {
    position: relative;
    padding: 8px 20px;
    font-size: 22px;
    font-weight: 600;
}

.small-basket__tab.is-active {
    border-bottom: 2px solid #20a1ea;
}

.small-basket__tab-count {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    background: #c97093;
    font-size: 13px;
    font-weight: 400;
}

.small-basket__wrap {
    padding-bottom: 32px;
    padding-right: 16px;
    overflow: auto;
    scrollbar-width: thin;
    max-height: calc(100vh - 260px);
}

.small-basket__item {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #aaa;
}

.small-basket__item:last-child {
    border: none;
}

.small-basket__item-left {
    display: flex;
    gap: 16px;
}

.small-basket__item-img {
    width: 80px;
    flex-shrink: 0;
}

.small-basket__item-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.small-basket__item-desc {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 8px;
}

.small-basket__item-price {
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.small-basket__item-price--total {
    font-size: 20px;
    font-weight: 700;
}

.small-basket__item-price--option {
    text-align: right;
    padding-bottom: 7px;
}

.small-basket__item-right {
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 24px 16px;
    align-content: start;
    align-items: baseline;
    justify-items: end;
}

.small-basket__item-count {
    grid-column: span 2
}

.small-basket__item-sum {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.small-basket__item-close .icon {
    width: 20px;
    height: 20px;
}

.small-basket__item-options {
    margin-top: 12px;
}

.small-basket__item-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
}

.small-basket__item-main {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.small-basket__item-info {
    flex-grow: 1;
}

.small-basket__item-sum-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.small-basket__empty {
    font-size: 20px;
    padding-top: 24px;
}

.small-basket--ur .pre-order-caption {
    right: unset;
    left: 125px;
    width: 185px;
}

.small-basket--ur .pre-order-caption:after {
    right: unset;
    left: -16px;
    top: -7px;
    transform: rotate(-90deg);
}

/* Tabs */
.tab {
    cursor: pointer;
}

.tab-block {
    display: none;
}

.tab-block.is-active {
    display: block;
}


/* //Tabs */

@media screen and (max-width: 743px) {
    .small-basket .card-product__counter {
        margin-top: 0;
    }
}

@media screen and (max-width: 480px) {
    .small-basket__item {
        position: relative;
        flex-direction: column;
    }

    .small-basket__item-sum-block {
        position: absolute;
        right: 0;
        top: 16px;
    }
}
