

@media (min-width: 0px) {
  .panel {
  z-index: 1;
    text-align: center;
    min-width: 290px;
    /* max-width: 350px; */
    display: flex;
    padding: 0 20px;
    justify-content: center;
    /* box-sizing: border-box; */
    align-items: center;
  }
 

  .quantity{
    margin: 52px 0;
    box-sizing: border-box;
    display: grid;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 20px;
  }


  .quantity {
    grid-template-columns: 60px 100px 60px;
  }

 
}

@media (min-width: 0px) {
  .qty-button {
    height: 60px;
    width: 60px;
    border: none;
    outline: none;
    border-radius: 50%;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 55px;
    transition: all 0.1s;
    background-color:#ffffff;
    color: #333;
    cursor: pointer;
  }
  .qty-button:active {
    background-color: #333;
    color: #fff;
  }

  .quantity input {
    font-size: 25px;
    color: #333;
    text-align: center;
    background-color: #fff;
    border: 3px solid #e8e8e8;
    border-radius: 5px;
    padding: 5px 0 0 0;
    -moz-appearance: textfield;
  }

}