.cart-section {
    display: flex;
    flex-wrap: wrap;
}
.cart-section h1 {
    margin-top: 0;
}
.cart_header {
    width: 100%;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    justify-content: flex-start;
    align-items: flex-end;
}
.cart_header span {
    font-size: 16px;
    line-height: 16px;
    color: var(--gray-color);
    text-transform: lowercase;
    vertical-align: bottom;
    margin-left: 12px;
}
.cart-empty{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    padding: 50px 0;
    width: 100%;
}
    .cart-empty-text{
        background: url(../images/cart_empty.svg) top no-repeat;
        padding-top: 96px;
        text-align: center;
    }
        .cart-empty-text p{
            font-size: 18px;
            font-weight: 500;
            line-height: 140%;
            margin-bottom: 8px;
            text-align: center;
        }
        .cart-empty-text span{
            color: var(--gray-color);
            font-size: 14px;
            line-height: 140%;
        }
.cart-items {
    flex: 1 1 500px;
    margin-right: 50px;
}
.cart-item {
    margin-top: 12px;
    padding: 5px;
    border-radius: var(--main-border-radius);
    background-color: var(--white);
    box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all var(--main-transition);
}
.cart-item:first-of-type {
    margin-top: 0;
}
.cart-item:hover {
    transform: scale(103%);
}

.cart-item_del {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 16px;
    right: 20px;
    transform: rotate(45deg);
    cursor: pointer;
}
.cart-item_del:before,
.cart-item_del:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: var(--gray-color);
    left: 0;
    top: calc(50% - 1px)
}
.cart-item_del:before {
    transform: rotate(90deg);
}

.cart-item_img {
    border-radius: 8px;
    background-color: var(--light-gray-color);
    flex: 1 0 190px;
    max-width: 190px;
    overflow: hidden;
    aspect-ratio: 1;
}
.cart-item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item_info {
    padding: 10px 20px 20px;
    flex-direction: column;
    flex: 1 1 100%;
}
.cart-item_title {
    color: var(--main-color);
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cart-item_subtitle {
    margin-top: 4px;
    color: var(--gray-color);
    line-height: 140%;
}
.cart-item_size {
    margin-top: 4px;
    color: var(--gray-color);
    line-height: 140%;
}
.cart-item_options {
    margin-top: auto;
    justify-content: space-between;
    align-items: center;
}

.cart-item_count {
    align-items: center;
    padding: 10px 27px;
    border-radius: 103px;
    background-color: #F5F5F5;
}
.cart-item_count .count {
    margin: 0 20px;
    flex: 1 1 auto;
    font-weight: 500;
}
.cart-item_count .deny,
.cart-item_count .add {
    width: 12px;
    height: 12px;
    position: relative;
    cursor: pointer;
}
.cart-item_count .deny:after,
.cart-item_count .add:after,
.cart-item_count .add:before {
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    background-color: #242424;
}
.cart-item_count .deny:after {
    top: calc(50% - 1px);
}
.cart-item_count .add:after {
    top: calc(50% - 1px)
}
.cart-item_count .add:before {
    transform: rotate(90deg) translateX(calc(50% - 1px));
}

.cart-item_count .disable {
    cursor: default;
}
.cart-item_count .disable:after,
.cart-item_count .disable:before {
    background-color: var(--gray-color);
}

.cart-item_price {
    color: var(--main-color);
    font-size: 22px;
    font-weight: 400;
    line-height: 140%;
    margin-left: auto;
    text-transform: uppercase;
}

.cart-address-info {
    flex: 1 1 auto;
}
.address-block {
    border: 1px rgba(0,0,0,.1) solid;
    border-radius: var(--main-border-radius);
    padding: 16px 24px;
    line-height: 140%;
    margin-top: 16px;
    width: 100%;
}
.address-block h3 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 8px;
}
.address-block:first-of-type{margin: 0 0 8px;}
.address-confirm{color: var(--gray-color);}
.cart-address_address {
    color:  var(--gray-color);
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.orange-text{
    background: url(../images/select-address.svg) right no-repeat;
    color: var(--orange-color);
    width: 100%;
}
.cart-address_address #select-address {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--gray-color);
    border-right: 2px solid var(--gray-color);
    display: inline-block;
    transform: rotate(-45deg);
}
.cart-address_promo {
    color: rgba(36, 36, 36, 0.60);
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
}
.cart-address_promo button {
    color: var(--orange-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: auto;
}
.cart-points {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.10);
}
.cart-points_select {
    width: 22px;
    height: 22px;
    background-color: transparent;
    outline: 1px solid var(--main-color);
    display: block;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 12px;
}
.cart-points_select:hover {
    background-color: var(--main-color);
    border: 3px solid var(--light-gray-color);
}
.cart-points_selected {
    background-color: var(--main-color);
    border: 3px solid var(--light-gray-color);
}

.cart-total-price {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.address-block .cart-total-price h3{padding-bottom: 16px;}
.total-price_info {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;

    line-height: 140%;
}
.total-price_info:first-of-type {
    margin-top: 0;
}

.total-price_total-price {
    padding-top: 16px;
    justify-content: space-between;
}
.cart-stat{
    background-color: #fff;
    border-top: 1px rgba(0,0,0,.1) solid;
    bottom: 55px;
    left: 0;
    padding: 10px 16px;
    position: fixed;
    width: 100%;
}
    .cart-stat-row{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 14px;
        justify-content: space-between;
        line-height: 140%;
        width: 100%;
        z-index: 9;
    }
    .cart-stat-row:not(:last-child){margin-bottom: 4px;}
        .delivery-info{
            background: url(../images/delivery-info.svg) no-repeat;
            display: none;
            height: 20px;
            margin-left: 4px;
            width: 20px;
        }
    .cart-stat-total{
        align-items: center;
        border-top: 1px rgba(0,0,0,.1) solid;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 12px;
        padding-top: 12px;
    }
        .cart-stat-total_summ{
            font-size: 20px;
            font-weight: 600;
            line-height: 140%;
            white-space: nowrap;
        }
        .cart-stat-total_text{
            font-size: 20px;
            font-weight: 400;
            line-height: 140%;
        }
        .cart-stat-total .buy-btn{
            margin: 12px 0 0;
            text-align: center;
            width: 100%;
        }
.would-like h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.header-mobile {
    height: auto;
    box-shadow: none;
}
.header-cart .mobile-search,
.header-cart .mobile-clothes {
    display: none;
}
.header-cart + main {
    margin-top: 0;
}
.cart-mobile {
    display: block;
    width: 100%;
}
.address-block.cart-mobile{margin-bottom: 20px;}
.order-block-mobile {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 200px;

& label {
      display: block;
      margin-top: 10px;
      width: 100%;
  }
& label:first-child{margin-top: 0;}
& input,
& textarea {
      flex: 1 1 auto;
      margin-top: 7px;
  }
}
.order-block-mobile .promocode{margin: 10px 0 0;}
.order-block-mobile .promocode input{margin: 0;}
.mobile-count {
    margin-top: var(--main-margin);
    font-size: 16px;
    font-weight: 500;
}
.mobile-promo label {
    display: flex;
    width: 100%;
    margin-top: 8px;
}
.mobile-promo input {
    border-radius: 8px 0 0 8px;
    margin-top: 0;
}
.mobile-promo button {
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14px;
    text-transform: lowercase;
    background-color: var(--light-gray-color);
    border-radius: 0 8px 8px 0;
}


.cart-mobile_points {
    padding: 16px;
    background-color: var(--light-gray-color);
    border-radius: 21px 21px 0 0;
    margin-top: 40px;
}
.cart-mobile_points .main-btn {
    margin-top: 0;
}
.cart-mobile_points input {
    margin-top: 0;
}
.cart-mobile_points > div {
    margin-top: 12px;
}
.cart-mobile_points button {
    margin-top: 0;
}
.cart-mobile_points label {
    width: 100%;
    justify-content: space-between;
}
.cart-mobile-radio {
    width: 22px;
    height: 22px;
    display: block;
    border-radius: 50%;
    outline: 1px solid var(--main-color);
    border: 3px solid var(--white);
}
.cart-mobile_points input {
    display: none;
}
.cart-mobile_points input:checked + .cart-mobile-radio {
    background-color: var(--main-color);
}

.mobile-price_block {
    display: flex;
    flex-wrap: wrap;
}
.mobile-points_price {
    display: block;
    width: 100%;
    text-decoration: line-through;
}

.points_count {
    font-weight: 600;
    margin-right: 10px;
}


