.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    padding: 20px;
}

.cart-map {
    min-height: 720px;
    border: 1px solid #e7e9ee;
    border-radius: 12px;
    overflow: hidden;
}

.cart-panel {
    border: 1px solid #e7e9ee;
    border-radius: 12px;
    background: #fff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-height: 720px;
}

.cart-panel .title {
    margin-bottom: 14px;
    font-size: 24px;
}

.order-party-block {
    border: 1px solid #edf0f5;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    background: #f9fbff;
}

.order-party-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.order-party-row:last-child {
    margin-bottom: 0;
}

.order-party-label {
    font-size: 13px;
    color: #5b6678;
}

.order-party-value {
    font-size: 13px;
}

.order-party-block .select2-container--default .select2-selection--single {
    height: 30px;
    min-height: 30px;
}

.order-party-block .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    font-size: 12px;
}

.order-party-block .select2-container .select2-selection--single .select2-selection__arrow {
    height: 28px;
}

.cart-list {
    display: grid;
    gap: 10px;
    flex: 0 1 auto;
    overflow: auto;
    align-content: start;
    grid-auto-rows: min-content;
    max-height: 520px;
}

.cart-columns-head {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 92px 92px 92px 92px 36px 36px;
    gap: 10px;
    font-size: 12px;
    color: #5b6678;
    margin-bottom: 8px;
    padding: 0 10px;
}

.cart-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 92px 92px 92px 92px 36px 36px;
    gap: 10px;
    align-items: start;
    border: 1px solid #edf0f5;
    border-radius: 8px;
    padding: 6px 10px;
    min-height: 52px;
}

.cart-item__index {
    color: #5b6678;
    font-weight: 600;
}

.cart-item__name {
    font-size: 13px;
    line-height: 1.2;
}

.cart-item__months {
    margin-top: 2px;
    color: #5b6678;
    font-size: 11px;
    line-height: 1.15;
}

.cart-item__price {
    text-align: left;
    white-space: nowrap;
    font-size: 13px;
    padding-top: 1px;
}

.cart-item__price_total {
    font-weight: 700;
}

.cart-action {
    margin-top: auto;
    padding-top: 12px;
}

.cart-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e3e8f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.cart-total strong {
    font-size: 20px;
    line-height: 1;
}

.cart-item .circle-button {
    min-width: 32px;
    min-height: 32px;
    align-self: start;
}

.cart-item__icon-btn {
    border: 1px solid #d9e1ec;
    background: #f4f7fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.cart-item__icon-btn .svg-icon {
    width: 14px;
    height: 14px;
    fill: #2d3643;
}

.cart-item__icon-btn:focus,
.cart-item__icon-btn:active {
    outline: none;
    box-shadow: none;
}

.cart-item__icon-btn:hover {
    background: #eaf0f8;
}

.cart-global-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-global-loader img {
    width: 48px;
    height: 48px;
}

.cart-popup-loader-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-popup-loader-overlay img {
    width: 42px;
    height: 42px;
}

.button_disabled {
    pointer-events: none;
    opacity: .5;
}
