.amount {
    display: flex;
    margin: 0 19px;
    transition: all .3s ease;
}

.amount__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    background-color: inherit;
    transition: all .3s ease;
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: #fff;
}

.amount__button_right {
    border-radius: 0 5px 0 0;
}

.amount__button_left {
    border-radius: 0 0 5px 0;
}

.amount__button:last-of-type {
    border-top: none;
}

.amount__button:hover {
    background-color: var(--accent-color);
    color:  var(--secondary-text-color);
}

.product-page .amount__button {
    font-size: 15px;
    height: 26.5px;
}


.amount__input {
    border: 1px solid #e8e8e8;
    width: 40px;
    text-align: center;
    border-radius: 5px 0 0 5px;
}
.product-page__info .amount__input {
    height: 53px;
    width: 60px;
}