::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #181818; 
  }
   
  ::-webkit-scrollbar-thumb {
    background: #bebebe; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #606060; 
  }
  
  .sidenav {
      height: 100%; /* Full-height: remove this if you want "auto" height */
      width: 20%; /* Set the width of the sidebar */
      position: fixed; /* Fixed Sidebar (stay in place on scroll) */
      z-index: 1; /* Stay on top */
      top: 0; /* Stay at the top */
      left: 0;
      background-color: #202020; /* Black */
      overflow-x: hidden; /* Disable horizontal scroll */
      padding-top: 20px;
    }
    
    .sidenav a {
      padding: 6px 8px 6px 16px;
      text-decoration: none;
      font-size: 25px;
      color: #bebebe;
      display: block;
    }
    
    .sidenav a:hover {
      color: #f1f1f1;
    }
    
    .main {
      margin-left: 20%; /* Same as the width of the sidebar */
      padding: 0px 10px;
    }
    
    @media screen and (max-height: 450px) {
      .sidenav {padding-top: 15px;}
      .sidenav a {font-size: 18px;}
    }
  
    .content {
      background-color: #202020;
      position: absolute;
      width: 40%;
      height: auto;
      left: 50%;
      border: 15px;
      border-color: #202020;
      padding: 50px;
      margin: 20px;
      transform: translate(-30%, 0);
      top: 5%;
      text-align: left;
      align-items: center;
      justify-content: center;
      
    }

    h1 {
      text-align: center;
    }
  
    .left {
      display: block;
      float: left;
      width: 50%;
    }

    .op {
      position: relative;
      background: #181818;
      font-size: 17px;
      border: none;
      cursor: pointer;
      float: right;
      width: 40px;
      height: 40px;
      color: #bebebe;
      text-decoration: none;
    }
    
    .op:hover {
      background: #191919;
    }

    .op p{
      text-align: center;
      transform: translate(0,-35%);
    }

    .buttons {
      position: relative;
      margin-top: 10%;
    }

    .fa-plus:hover{
      color:#f1f1f1;
    }
    .fa-minus:hover{
      color:#f1f1f1;
    }

    .fa-shopping-cart{
      color: #181818;
    }
    .fa-shopping-cart:hover{
      color:#f1f1f1;
    }

    .fa-arrow-left{
      color:#bebebe;
    }
    .fa-arrow-left:hover{
      color:#f1f1f1;
    }

