.cart-page {
    margin-top: 20px;
}
.cart-page .delete-all {
    display: inline-block;
    font-size: 14px;
    line-height: 130%;
    font-weight: 400;
    color: #161616b2;
    margin-bottom: 40px;
    background: url('/img/x.svg') no-repeat left center;
    padding-left: 18px;
    transition: .3s;
}
.cart-page .delete-all:hover {
    color: red;
}
.cart-page .cart-items {
    margin-bottom: 20px;
}
.cart-page .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 24px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
}
.cart-page .cart-item .pic {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.cart-page .cart-item .pic img {
    width: 100%;
    height: 100px;
    object-position: center center;
    object-fit: cover;
}
.cart-page .cart-item .name {
    font-size: 18px;
    line-height: 130%;
    font-weight: 600;
    color: #161616;
}
.cart-page .cart-item .name a {
    color: #161616;
}
.cart-item-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;

}
.cart-item-info {
    padding-left: 20px;
    padding-right: 36px;
    font-size: 14px;
    margin-right: auto;
}
.cart-page .cart-item .quantity {
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-page .cart-item .quantity .cart-quant {
    padding: 0 6px;
}
.cart-page .cart-item .quantity .cart-plus {
    width: 14px;
    height: 14px;
    background: url('/img/plus-icon.svg') no-repeat center center;
    display: block;
}
.cart-page .cart-item .quantity .cart-minus {
    width: 14px;
    height: 14px;
    background: url('/img/minus-icon.svg') no-repeat center center;
    display: block;
}
.cart-page .cart-item .price {
    font-size: 18px;
    line-height: 130%;
    font-weight: 500;
    color: #161616;
    min-width: 180px;
    text-align: right;

    &::after {
        content: '₽';
    }
}
.order-itogo {
    padding: 20px;
    border-radius: 12px;
    margin-top: 62px;
    margin-bottom: 20px;
    border: 1px solid #E0E0E0;
    background: transparent;   
}
.order-itogo .itogo-quant {
    font-size: 14px;
    line-height: 120%;
    font-weight: 500;
    color: rgba(22, 22, 22, 0.7);
    padding-bottom: 14px;
}
.order-itogo .order-sum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.order-itogo .order-sum .order-sum_text {
    font-size: 20px;
    line-height: 120%;
    font-weight: 700;
    color: #161616;
}
.order-itogo .order-sum .order-sum_price {
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    color: #161616;
}
.order-itogo .order-info {
    font-size: 14px;
    line-height: 120%;
    font-weight: 200;
    color: rgba(22, 22, 22, 0.7);
}
.order-show-form {
    width: 100%;
}
.order-form-wrap {
    background: #fff;
    position: fixed;
    height: 100dvh;
    top: 0;
    right: 0;
    overflow: hidden auto;
    transition: .3s;
    z-index: 10100;
    display: flex; align-items: center;
    transform: translateX(100%);
    
    &, form h2 {
        color: inherit;
    }
}
.order-form-bg {
    position: fixed;
    left: 0; 
    top: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(0, 0, 0, .8);
    z-index: 10099;
    pointer-events: none;
    opacity: 0;
    transition: .3s;
}
.cart-form-shown {
    overflow: hidden;
    min-height: auto;
    height: 100dvh;

    .order-form-wrap {
        transform: none;
    }

    .order-form-bg {
        opacity: 1;
        pointer-events: auto;
    }
}
.order-form-wrap .form-control {
    border: 1px solid #D1D1D1;
    transition: .3s;
    height: 45px;
    box-shadow: none;

    &:focus {
        border-color: #000;
    }
}
.order-form-wrap form {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px; 
    
}
.order-form-wrap h2 {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.order-form-wrap h3 {
    font-size: 16px;
    line-height: 120%;
    font-weight: 500;
    color: #fff;
    margin: 0;
    margin-top: 16px;
}
.order-form-wrap .form-input {
    margin-top: 16px;
}
.order-form-wrap .form-input input {
    background: #1F2120;
    border-radius: 8px;
    font-size: 16px;
    line-height: 120%;
    font-weight: 200;
    color: #fff;
    border: none;
    width: 100%;
    height: 56px;
    padding-left: 24px;
}
.order-form-wrap .order_agree {
    width: 16px !important;
    height: 16px !important;
    border-radius: 4px;
    border: 1px solid #fff !important;
    background: #141715 !important;
    padding-left: 0px !important;
    margin-right: 6px;
}
.order-form-wrap .form-input label {
    font-size: 12px;
    line-height: 120%;
    font-weight: 400;
    color: #fff;
}
.order-form-wrap .form-input-checkbox {
    display: flex;
    justify-content: start;
    align-items: start;
}
.order-agree {
	display: flex; 
	align-items: flex-start;
    gap:5px;
}

.order-agree input {
    margin-top: 4px;
}




@media only screen and (max-width: 767px) {
	.cart-page .cart-item {
        padding: 16px 20px;
    }
    .cart-page .cart-item .name {
        font-size: 12px;
    }
    .cart-item-info {
        padding: 0;
    }
    .cart-page .cart-item .price {
        font-size: 14px;
        min-width:0;
    }
    .cart-page .cart-item .quantity {
        font-size: 14px;
    }
    .cart-item-info {
        font-size: 11px;
        margin-bottom: 8px;
    }
    .cart-page .cart-item .name {
        margin-bottom: 8px;
    }
    .cart-item-body {
        flex-wrap: wrap;
    }
}