.cart-form {
    background-color: white;
    padding: 24px 0;
    /*margin-bottom: 50px;*/
}

.cart-form__tb {
    padding: 1px 24px 0 24px;
}

.cart-form__table {
    border-collapse: collapse;
    width: 95%;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    margin-left: auto;
    margin-right: auto;
}

.cart-form__table th,
.cart-form__table td {
    padding: 10px 20px;
}

.cart-form__table th {
    font-weight: 700;
    background-color: #DDDDDD;
    color: #656666;
}

.cart-form__table th:first-child {
    text-align: left;
}

.cart-form__table tr {
    border-top: 1px solid #DCD9D9;
    text-align: center;
}

.cart-form__table tr td:first-child {
    display: flex;
    align-items: center;
    column-gap: 10px;
    text-align: left;
}

.cart-form__table tr td:first-child img {
    height: 157px;
    max-width: 150px;
}

.cart-form__table tr:nth-child(2n - 1) {
    background-color: #F7F7F7;
    border-top: 1px solid #DCD9D9;
}

.cart-form__table tr:last-child {
    /*    background-color: white;
        border-top: 1px solid transparent;*/
}

.cart-image {
    object-fit: contain;
}

.cart__plus-minus {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

@media (max-width: 768px) {
    .cart__plus-minus {
        column-gap: 0px;
    }
    .icon-grey-minus,
    .icon-green-plus {
        width: 16px !important;
        height: 16px !important;
    }
}

.cart__plus-minus .icon:hover {
    transform: scale(115%);
    cursor: pointer;
}

.product-card__make-order {
    padding: 12px 20px;
    border: none;
    background-color: #C83636;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #FFFFFF;
    display: flex;
    column-gap: 12px;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    margin-left: auto;
}

.product-card__make-order:hover {
    -webkit-box-shadow: 0 0 4px 0 rgba(34, 60, 80, 0.7);
    -moz-box-shadow: 0 0 4px 0 rgba(34, 60, 80, 0.7);
    box-shadow: 0 0 4px 0 rgba(34, 60, 80, 0.7);
    cursor: pointer;
}

.cart-table__money-type {
    display: flex;
    flex-direction: row !important;
    justify-content: left !important;
    align-items: center;
}

.cart-table__money-type i {
    margin-right: 10px;
}

.cart-form__input-form {
    display: flex;
    column-gap: 24px;
    padding: 24px;
}

.input-form__left,
.input-form__right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-width: 550px;
    width: 100%;
}

.input-form__right {
    display: none;
}

.cart-form__double {
    display: flex;
    column-gap: 16px;
}

.cart-form__double-input {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cart-form__dropdown {
    margin-left: 24px;
    margin-bottom: 24px;
    border: none;
    padding: 10px 16px;
    background: #F7F7F7;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.06);
    max-width: 350px;
    width: 85%;
}

.cart-form__label {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #282828;
    margin-bottom: 6px;
}

.cart-form__text-input {
    border: none;
    padding: 10px 16px;
    background: #F7F7F7;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 22px;
    width: 100%;
}

.cart-form__comment {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.cart-form__text-area {
    max-width: 550px;
    width: 100%;
    border: none;
    padding: 10px 16px;
    background: #F7F7F7;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 22px;
}

.cart-form__grey-line {
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cart-table {
        grid-template-columns: repeat(1, 0fr 3fr auto auto auto);
    }

    .cart-form__table {
        font-size: 13px;
    }

    .cart-form__table th {
        font-size: 14px;
        line-height: 18px;
    }

    .cart-form__table th,
    .cart-form__table td {
        padding: 10px 4px;
    }

    .cart-form__table th:nth-child(2),
    .cart-form__table td:nth-child(2) {
        padding: 10px 0px;
    }
    .cart-form__table th:nth-child(5),
    .cart-form__table td:nth-child(5) {
        padding: 10px 0px;
    }

    .cart-form__table tr td:first-child {
        column-gap: unset;
    }

    .cart-form__table tr td:first-child img {
        display: none;
    }

    .product-card__make-order {
        margin: auto auto;
    }

    .cart-form__input-form {
        flex-direction: column;
    }
}

@media (max-width: 550px) {
    .cart-table {
        grid-template-columns: repeat(1, 0px 3fr auto auto auto);
    }

    .cart-form__table {
        width: 100%;
    }

    .cart-form__double {
        flex-wrap: wrap;
    }
}

@media (max-width: 450px) {
    .product-card__make-order {
        margin-top: 24px;
    }

    .cart-table__money-type {
        font-size: 0;
    }
}