.amount-input {
    width: 25px;
}
  
.btn-amount {
    padding: 4px;
}
  
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
  
/* Firefox */
input[type='number'] {
    -moz-appearance: textfield;
}
  
.cart-actions-container {
    display: flex;
    flex-direction: row;
    place-content: center;
}
  
.btn-minus:after {
    font-family: 'shoptet';
    content: '\e919';
    display: inline;
    margin-right: -5px;
}
  
.btn-plus:after {
    font-family: 'shoptet';
    content: '\e918';
    display: inline;
    margin-left: -5px;
}
  
.btn-minus:after,
.btn-plus:after {
    font-size: 8px;
    font-weight: 600;
    color: #193448;
    cursor: pointer;
    position: relative;
    top: -2px;
}
  
input[type='number'] {
    border: none;
    font-weight: 600;
    color: #F15A22;
}
  
input[type='number']:focus {
    outline: -webkit-focus-ring-color auto 0px;
}
  
input.amount-input {
    text-align: center;
    font-size: 17px;
}
  
.amount-selector-container {
    align-self: center;
    margin-right: 5px;
}