.custom-card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 10px;
    background-color: white;
  }

  .vl {
    border-left: 6px solid green;
    height: 500px;
  }

  .left-border{
    border-left: 1px solid gainsboro;
  }

  .menu-scrollable{
    height: 100vh;
    overflow-y: scroll;
  }

  .menu-scrollable::-webkit-scrollbar-track
  {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
  }

  .menu-scrollable::-webkit-scrollbar
  {
    width: 5px;
    background-color: #F5F5F5;
  }

  .menu-scrollable::-webkit-scrollbar-thumb
  {
    background-color: #F90;	
    background-image: -webkit-linear-gradient(45deg,
                                              rgba(255, 255, 255, .2) 25%,
                          transparent 25%,
                          transparent 50%,
                          rgba(255, 255, 255, .2) 50%,
                          rgba(255, 255, 255, .2) 75%,
                          transparent 75%,
                          transparent)
  }

  .menu_img{

    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid gainsboro;
    object-fit: cover;
  }
  .cart-container{
    width: 100%;
    position: relative;
  }

  .cart-container .qty{
    height: 50px;
    width: 50px;
    text-align: center; 
  }

  .cart-container input::-webkit-outer-spin-button,
  .cart-container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }

  .cart-container button{
    height: 50px;
    width: 50px;
    border: 50%;
    padding: 0;
  }

  .empty-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50vh;
  }

  .total-container{
    text-align: end;
    position: relative;
    /* bottom: 10px; */
    /* right: 4%; */
    background-color: rgb(255, 255, 255);
    /* width: 53%; */
    box-shadow: 0px 1px 5px 2px  rgba(128, 128, 128, 0.274);
    border-radius: 5px;
    padding: 2%;
  }

  /* .total-container table{
    position: absolute;
    right: 0;
  } */

  .cart-wrap{
    position: relative;
    width: 100%;
  }

  .success-icon{
    text-align: center;
  }

  .success-wrap{
    padding: 5%;
    text-align: center;
    height: 100vh;
  }

  .success-icon i{
    font-size: 100px;
    background-color: rgb(60, 190, 60);
    padding: 5%;
    border-radius: 50%;
    color: white;
  }


  /* .order-container{
    display: flex;
  }

  .order-container .menu-container{
    width: 50%;
  } */