::-webkit-scrollbar {
  display: none;
}

* {
  scrollbar-width: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}
.order_confirmed {
  width: 30%;
  background: hsl(20, 50%, 98%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  max-height: 90%;
  overflow-y: auto;
}
.hidden {
  display: none;
}
.confirmation_msg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  margin: 15px 0px 20px 0px;
}
#confirmation_heading {
  color: hsl(14, 65%, 9%);
  font-size: 2em;
  margin: 0px;
}
#confirmation_para {
  color: hsl(12, 20%, 44%);
  font-size: 13px;
  margin: 0px;
}
.generated_bill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10px 0px;
  width: 100%;
  background-color: hsl(13, 31%, 94%);
  border-radius: 10px;
}
.item_in_bill {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid hsl(14, 25%, 72%);
}
.first_half {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#thumbnail {
  width: 50px;
  border-radius: 5px;
}
#order_item_name {
  margin: 0;
  color: hsl(14, 65%, 9%);
  font-weight: 600;
  font-size: 15px;
}
#order_quantityX {
  font-size: 14px;
  color: hsl(14, 86%, 42%);
  font-weight: 600;
  padding-right: 8px;
}
#order_price {
  font-size: 14px;
  color: hsl(7, 20%, 60%);
  font-weight: 400;
  word-spacing: -2px;
}
#order_total_of_item {
  color: hsl(14, 65%, 9%);
  font-weight: 600;
  font-size: 16px;
}
.order_item_data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 11px;
}
.order_bill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px;
  width: 90%;
}
#Start_new_order {
  width: 100%;
  background-color: hsl(14, 86%, 42%);
  color: hsl(13, 31%, 94%);
  border: none;
  padding: 15px;
  border-radius: 25px;
  margin-top: 20px;
}
#tick_svg {
  width: 30px;
  height: 30px;
}
@media (min-width: 1110px) and (max-width: 1400px) {
  .order_confirmed {
    width: 40%;
  }
}
@media (min-width: 700px) and (max-width: 1110px) {
  .order_confirmed {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .order_confirmed {
    width: 100vw;
    max-height: 80vh;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
  }
  .overlay {
    align-items: flex-end;
    padding: 0px;
  }
}
