.cart_user {
    margin: 20px 0;
}

.items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.items .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.items .item .item_name {
    max-width: 87%;
    font-size: 12px;
}

.items .item .item_name span {
    font-weight: 600;
}

.cart_block {
    margin: 0 13px;
}

.button_block {
    padding: 13px 13px;
}

.ui-ctl-textarea {
    width: 100%;
}

.cart_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10px;
}

.order_summ {
    font-size: 24px;
    font-weight: 300;
    color: #939393;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
            flex: 1 1 45%;
    text-align: right;
}

.send-order {
    margin: 0 0 20px;
    text-align: center;
    width: 100%;
    background: var(--color-primary);
}