.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    display: none;
}
table {
    border-collapse: collapse;
    width: 100%;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
}
thead {
    background-color: var(--main-color);
    color: var(--text-color);
    font-size: 20px;
}
thead, tbody, th, td {
    border: none;
    padding: 0;
    margin-bottom: 10px;
    padding: 10px;
}
tr, td {
    padding: 20px;
}
tr {
    border-bottom: 2px solid #a9a9a9;
}

table, th, td {
    border: 0;
}

table, th, td {
    background: none; 
}

table {
    box-shadow: none;
}
.quantity-box {
    border: 1px solid var(--main-color);
    width: fit-content;
    height: 35px;
}
.btn-increase, .btn-decrease {
    font-size: 18px;
    font-weight: 700;
}
.btn-increase, .btn-decrease, .quant-inp, .btn-outline-danger {
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--text-dark);
}
.btn-increase:hover, .btn-decrease:hover {
    border: none;
    outline: none;
    background-color: transparent;
}
.item-price {
    font-weight: 300;
}
.form-check .col-lg-6 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-col {
  flex-direction: column;
}
#placeOrder .radio-input {
  display: flex;
  flex-direction: row;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-dark);
}

#placeOrder .radio-input input[type="radio"] {
  display: none;
}

#placeOrder .radio-input label {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--main-dark);
  background-color: var(--touch-color);
  border-radius: 5px;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}

#placeOrder .radio-input label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-color);
  border: 2px solid #ccc;
  transition: all 0.3s ease-in-out;
}

#placeOrder .radio-input input[type="radio"]:checked + label:before {
  background-color: green;
  top: 0;
}

#placeOrder .radio-input input[type="radio"]:checked + label {
  background-color: var(--main-dark);
  color: var(--text-color);
  border-color: rgb(129, 235, 129);
  animation: radio-translate 0.5s ease-in-out;
}

@keyframes radio-translate {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateX(0);
  }
}
.order-options input[type=text], .order-options input[type=time] {
  border: 1px solid var(--main-dark);
  border-radius: 5px;
  background: none;
  height: 30px;
  width: 200px;
  padding: 5px;
  margin: 0;
  outline: none;
  box-shadow: none;
}
#requests textarea {
  border: 2px solid var(--main-dark);
  border-radius: 5px;
  background: none;
  height: 100px;
  width: 400px;
  padding: 5px;
  margin: 0;
  outline: none;
  box-shadow: none;
  resize: none;
}
.promo-btn {
    border: none;
    outline: none;
    background: none;
}
#promoInput, #applyPromoBtn {
    height: 40px;
}
#promoInput, #promoInput:focus {
    outline: none;
    border: 1px solid var(--main-color);
    border-right: 0;
    background: var(--text-color);
}
#applyPromoBtn {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: var(--text-color);
    width: 100px;
}
#applyPromoBtn:hover {
    background: var(--main-dark);
}
.checkout-btn {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: var(--text-color);
    height: 35px;
    width: 250px;
}
#emptyMessage {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.🤚 {
    --skin-color: #E4C560;
    --tap-speed: 0.6s;
    --tap-stagger: 0.1s;
    position: relative;
    width: 80px;
    height: 60px;
    margin-left: 80px;
  }
  
  .🤚:before {
    content: '';
    display: block;
    width: 180%;
    height: 75%;
    position: absolute;
    top: 70%;
    right: 20%;
    background-color: black;
    border-radius: 40px 10px;
    filter: blur(10px);
    opacity: 0.3;
  }
  
  .🌴 {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--skin-color);
    border-radius: 10px 40px;
  }
  
  .👍 {
    position: absolute;
    width: 120%;
    height: 38px;
    background-color: var(--skin-color);
    bottom: -18%;
    right: 1%;
    transform-origin: calc(100% - 20px) 20px;
    transform: rotate(-20deg);
    border-radius: 30px 20px 20px 10px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    border-left: 2px solid rgba(0, 0, 0, 0.1);
  }
  
  .👍:after {
    width: 20%;
    height: 60%;
    content: '';
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: -8%;
    left: 5px;
    border-radius: 60% 10% 10% 30%;
    border-right: 2px solid rgba(0, 0, 0, 0.05);
  }
  
  .👉 {
    position: absolute;
    width: 80%;
    height: 35px;
    background-color: var(--skin-color);
    bottom: 32%;
    right: 64%;
    transform-origin: 100% 20px;
    animation-duration: calc(var(--tap-speed) * 2);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transform: rotate(10deg);
  }
  
  .👉:before {
    content: '';
    position: absolute;
    width: 140%;
    height: 30px;
    background-color: var(--skin-color);
    bottom: 8%;
    right: 65%;
    transform-origin: calc(100% - 20px) 20px;
    transform: rotate(-60deg);
    border-radius: 20px;
  }
  
  .👉:nth-child(1) {
    animation-delay: 0;
    filter: brightness(70%);
    animation-name: tap-upper-1;
  }
  
  .👉:nth-child(2) {
    animation-delay: var(--tap-stagger);
    filter: brightness(80%);
    animation-name: tap-upper-2;
  }
  
  .👉:nth-child(3) {
    animation-delay: calc(var(--tap-stagger) * 2);
    filter: brightness(90%);
    animation-name: tap-upper-3;
  }
  
  .👉:nth-child(4) {
    animation-delay: calc(var(--tap-stagger) * 3);
    filter: brightness(100%);
    animation-name: tap-upper-4;
  }
  
  @keyframes tap-upper-1 {
    0%, 50%, 100% {
      transform: rotate(10deg) scale(0.4);
    }
  
    40% {
      transform: rotate(50deg) scale(0.4);
    }
  }
  
  @keyframes tap-upper-2 {
    0%, 50%, 100% {
      transform: rotate(10deg) scale(0.6);
    }
  
    40% {
      transform: rotate(50deg) scale(0.6);
    }
  }
  
  @keyframes tap-upper-3 {
    0%, 50%, 100% {
      transform: rotate(10deg) scale(0.8);
    }
  
    40% {
      transform: rotate(50deg) scale(0.8);
    }
  }
  
  @keyframes tap-upper-4 {
    0%, 50%, 100% {
      transform: rotate(10deg) scale(1);
    }
  
    40% {
      transform: rotate(50deg) scale(1);
    }
  }
  