.edit_order_button {
    position: fixed;
    bottom:15px;
    right:15px;
    background: #79BA53;
    padding: 10px;
    border-radius: 50px;
    width: 160px;
    text-align: center;
    color: white;
    z-index: 9999;
    transition: 0.2s;
    cursor:pointer;
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.2s;
  padding-top: 30px;
  box-shadow: 0px 0px 10px #ccc;
}

.sidebar a {
  padding: 10px 15px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.2s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  font-size: 36px;
  margin-right: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #444;
}

.order_products .image_product {
    width:100%;
}

.order_products .product-description-body-qty .btn-minus,.order_products .product-description-body-qty .btn-max {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 3px 3px 2px #00000026;
    border-radius: 10px;
    color:#FB4D10;
    text-align:center;
    font-size:16px;
    font-weight: bold;
    cursor:pointer;
}

.order_products .product-description-body-qty .input-qty {
    width:100%;
    background: #F2F2F2 0% 0% no-repeat padding-box;
    border-radius: 8px;
    border:0;
    padding:3px;
    text-align:center;
    margin-top:5px;
    margin-bottom:5px;
    font-size:16px;
    color:#1A1A1A;
}

.order_products {
    padding-bottom:40px!important;
}

.order_products hr {
    margin: 15px 0 0px;
}

.order_products_total {
    position: fixed;
    bottom: 0;
    min-width: 300px;
    text-align: center;
    color:#FB4D10;
    font-weight: bold;
    background:white;
}
.edit-remove-product {
    float:left;
}
.edit-remove-product i {
    font-size:12px;
    cursor:pointer;
}



/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}