.cart_form {
    width: auto;
    height: 40px;
}

.product-block .cart_form {
    margin-top: 10px;
}

.c-buy {
    display: flex;
    justify-content: space-between;
}

.c-buy__buttons {
    display: flex;
}

.amount_change {
    display: flex;
    width: 100%;
}

.product-block .amount_change {
    display: flex !important;
    align-items: center !important;
}

@media (max-width: 767px) {
    .product-block .amount_change {
        margin-bottom: 10px !important;
        justify-content: flex-start !important;
    }
}

.amount_change input {
    -webkit-appearance: none;
    max-width: 55px;
    height: 30px;
    padding: 0 5px;
    text-align: center;
    border: 1px solid rgb(187, 187, 187);
    border-radius: 0;
}

.amount_change button {
    position: relative;
    height: 35px;
    width: 30px;
    border: none;
    background-color: transparent;
    outline-style: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.amount_change .c-amount__down {
    justify-content: flex-start;
}

.amount_change .c-amount__up {
    justify-content: flex-end;
}

.amount_change button svg {
    fill: #000;
    height: 50%;
    width: 50%;
}

@media(min-width: 1200px) {
    .amount_change button:hover svg {
        fill: var(--main-color);
    }
}

.products-block__list--list .amount_change {
    justify-content: flex-start;
}
