.cart_form {
    display: flex;
    margin-bottom: 15px;
}

.cart_form span {
    font-weight: 400;
    color: var(--main-color);
    line-height: 28px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.amount_change {
    display: flex;
    width: 100px;
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
    margin-right: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 40px;
}

.amount_change button {
    background: none;
    font-size: 10px;
    border: none;
    width: 40px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #cacaca;
    min-width: 30px;
    max-width: 30px;
    transition: all .5s;
}

.amount_change button:hover {
    color: var(--secondary-color)
}

.amount_change button svg {
    width: 30px;
    height: 30px;
}

.amount_change button svg path {
    background: #8c95a4;
}

.amount_input {
    border: none;
    text-align: center;
    padding: 7px 0;
    width: auto;
    line-height: normal;
    min-height: 38px;
    min-width: 38px;
    max-width: 38px;
}
