body {
  font-family: "Clash Display", sans-serif;
  margin: 50px;
  background-color: #7EAF34;
  color: #181818;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
}

h1 {
  text-align: center;
  color: #181818;
}

.radio-group {
  display: flex;
  justify-content: space-evenly;
  margin-top: 10px;
}

input[type=radio] {
  display: none;
  /* Hide the default radio button */
}

.radio-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f1f1f1;
  border: 2px solid #181818;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #181818;
  transition: background-color 0.3s ease, color 0.3s ease;
}

input[type=radio]:checked + .radio-button {
  background-color: #2d9a01;
  color: #fff;
  border-color: black;
}

.radio-button:hover {
  background-color: #e0e0e0;
}

.radio-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.form-section {
  margin-bottom: 5px;
}

.form-section label {
  text-align: center;
  display: block;
  padding: 20px;
  color: #181818;
  font-weight: 600;
}

.form-section input[type=radio],
.form-section select {
  margin-right: 10px;
}

.price-calculation-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.price-calculation {
  background-color: #fff;
  color: #181818;
  font-weight: 500;
  padding: 35px;
  border: #181818 solid 3px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.price-calculation h2 {
  color: #7EAF34;
  margin-bottom: 15px;
}

.price-calculation p {
  margin: 10px 0;
  font-size: 16px;
}

.submit-button {
  display: block;
  width: 200px;
  /* Adjust as needed */
  padding: 10px;
  background-color: #181818;
  color: #7EAF34;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.submit-button:hover {
  background-color: #181818;
  color: white;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.step {
  text-align: center;
  position: relative;
}

.step .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #181818;
  /* Default color */
  margin: 0 auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7EAF34;
  font-weight: bold;
}

.step.active .circle {
  background-color: white;
  /* Active step color */
  color: #7EAF34;
}

.step.active ~ .step-line {
  background-color: #007bff;
}

.step-text {
  margin-top: 0;
  font-size: 14px;
}

.back-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #181818;
  color: #7EAF34;
  border: white 1px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #d32f2f;
}

hr {
  height: 5px !important;
  /* Thickness of the line */
  border: none;
  /* Remove the default border */
  margin: 20px 0;
  /* Adjust the spacing */
}

body * {
  box-sizing: border-box;
}

html .order-page {
  background-color: white;
  padding: 0;
  margin: 0;
}
html .order-page main {
  padding-inline: 15px;
  margin-inline: auto;
  max-width: 1100px;
}
html .order-page header {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  background-color: #7EAF34;
  padding: 15px 30px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  html .order-page header {
    flex-flow: column;
  }
}
html .order-page header .logo img {
  max-width: 200px;
  margin-block: 15px;
}
html .order-page .steps-container {
  position: relative;
}
html .order-page .steps-container:before {
  content: "";
  width: 100%;
  position: absolute;
  top: 13px;
  left: 0;
  height: 2px;
  background: black;
}
html .order-page .steps-container .step {
  width: 80px;
}
@media (max-width: 800px) {
  html .order-page .steps-container .step {
    flex-flow: column;
    width: 66px;
  }
}
html .order-page .back-button {
  display: none;
}
html .order-page .selection-form {
  max-width: 1100px;
  padding-inline: 15px;
  margin-inline: auto;
}
html .order-page .selection-form .radio-group {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  gap: 20px;
}
html .order-page .selection-form .form-section label {
  padding: 20px 5px;
  border-radius: 10px;
  min-width: 120px;
}
html .order-page .selection-form .form-section > label {
  font-size: 24px;
  padding-inline: 0;
}
html .order-page .selection-form input[type=radio]:checked + .radio-button {
  border-color: #7EAF34;
  background-color: #7EAF34;
}
html .order-page .price-calculation {
  background: #f1f1f1;
  border: 0;
  border-radius: 2px;
  min-width: 300px;
  min-height: 350px;
  padding-inline: 15px;
  padding-bottom: 15px;
}
html .order-page .price-calculation p {
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
  padding-bottom: 10px;
  font-size: 20px;
}
html .order-page .price-calculation p:last-of-type {
  border: 0;
  margin-top: 32px;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-flow: column;
}
html .order-page .price-calculation p:last-of-type span {
  font-size: 24px;
  font-weight: bold;
  color: #7EAF34;
}
html .order-page .price-calculation p strong {
  padding-right: 15px;
}
html .order-page .submit-button,
html .order-page [type=submit] {
  min-width: 300px;
  border-radius: 100px;
  color: white !important;
  font-size: 20px;
  margin-top: 30px;
  padding-block: 20px;
  font-family: "Clash Display", sans-serif;
  font-weight: bold;
  margin-inline: auto;
  margin-inline: auto;
  display: block;
  background-color: #181818;
  cursor: pointer;
}

html .order-page .price-summary {
  background-color: #f1f1f1;
  border: 0;
  border-radius: 2px;
  padding-inline: 25px;
}
html .order-page .price-summary .grid {
  column-count: 2;
}
@media (max-width: 800px) {
  html .order-page .price-summary .grid {
    column-count: 1;
  }
}
html .order-page .price-summary .grid strong {
  padding-right: 15px;
}
html .order-page .price-summary .grid p {
  margin-top: 0;
  font-size: 20px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
}
html .order-page .price-summary .grid p:last-of-type span {
  font-size: 24px;
  font-weight: bold;
  color: #7EAF34;
}
html .order-page .form-section.your-info label {
  color: black;
  font-size: 20px;
}
html .order-page .form-section.your-info input[type=text],
html .order-page .form-section.your-info input[type=password],
html .order-page .form-section.your-info input[type=email] {
  appearance: none;
  border: none;
  outline: none;
  border-bottom: 0.2em solid #7EAF34;
  background: rgba(126, 175, 52, 0.2);
  border-radius: 0.2em 0.2em 0 0;
  color: #7EAF34;
  padding: 15px;
  font-size: 24px;
}

html .order-page .slide-message {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99999;
  background-color: #AF3441;
  color: white;
  padding: 15px 25px;
  border-radius: 3px;
  margin-bottom: 0;
  color: white;
}
html .order-page .order-meals-top {
  text-align: center;
}
html .order-page .order-meals-top strong {
  padding-right: 15px;
}
html .order-page #meal-count-box {
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: white;
  padding-block: 15px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #e9f7ef;
  font-weight: bold;
  color: #155724;
}
html .order-page .meal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 1000px) {
  html .order-page .meal-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  html .order-page .meal-grid {
    grid-template-columns: 1fr;
  }
}
html .order-page .meal-grid .meal-item {
  background-color: #f1f1f1;
  padding: 20px 20px 105px 20px;
  position: relative;
}
html .order-page .meal-grid .meal-item > div {
  display: flex;
  flex-flow: column;
}
html .order-page .meal-grid .meal-item img {
  width: 100%;
}
html .order-page .meal-grid .meal-item p strong {
  padding-right: 15px;
}
html .order-page .meal-grid .meal-item label {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
html .order-page .meal-grid .meal-item .qty {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
}
html .order-page .meal-grid .meal-item .quantity-controls {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}
html .order-page .meal-grid .meal-item .quantity-controls input {
  background: white;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  color: black;
  border: 0;
  text-align: center;
  padding-right: 0;
  padding-left: 0;
  min-width: 53px;
}
@media (max-width: 768px) {
  html .order-page .meal-grid .meal-item .quantity-controls input {
    height: 55px;
  }
}
html .order-page .meal-grid .meal-item .quantity-controls button {
  background-color: #7EAF34;
  height: 43px;
  width: 43px;
  color: white;
  border: 0;
  font-size: 28px;
}
@media (max-width: 768px) {
  html .order-page .meal-grid .meal-item .quantity-controls button {
    background-color: #7EAF34;
    height: 55px;
    width: 55px;
    color: white;
    border: 0;
    font-size: 36px;
  }
}

html .order-page input[type=text],
html .order-page input[type=password],
html .order-page input[type=tel],
html .order-page input[type=email] {
  appearance: none;
  border: none;
  outline: none;
  border-bottom: 0.2em solid #7EAF34;
  background: rgba(126, 175, 52, 0.2);
  border-radius: 0.2em 0.2em 0 0;
  color: #7EAF34;
  padding: 15px;
  font-size: 24px;
}

html .order-page.conf .conf-selected {
  display: flex;
  flex-flow: row;
  gap: 20px;
  flex-wrap: wrap;
}
html .order-page.conf .conf-selected .meal-item {
  background-color: #7EAF34;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 15px 20px;
  margin-bottom: 0;
}
html .order-page.conf .conf-your-selections {
  background: rgba(126, 175, 52, 0.2);
  border: 2px solid #7EAF34;
  padding: 15px;
  border-radius: 3px;
}
html .order-page.conf .conf-your-selections h3 {
  margin-top: 0;
}
html .order-page.conf .price-breakdown {
  background: rgba(126, 175, 52, 0.2);
  border: 2px solid #7EAF34;
  padding: 15px;
  border-radius: 3px;
}
html .order-page.conf .price-breakdown .grid {
  columns: 2;
}
html .order-page.conf .price-breakdown .grid strong {
  padding-right: 15px;
}
html .order-page.conf .price-breakdown .grid span {
  color: #7EAF34;
  font-size: 24px;
}
@media (max-width: 800px) {
  html .order-page.conf .price-breakdown .grid {
    columns: 1;
  }
}
html .order-page.conf .delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
@media (max-width: 800px) {
  html .order-page.conf .delivery-grid {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }
}
html .order-page.conf .delivery-grid label:has([type=radio]) {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 10px;
}
html .order-page.conf .delivery-grid input[type=radio] {
  appearance: none;
  width: 18px;
  height: 18px;
  background-color: #f1f1f1;
  border: 2px solid #e1e1e1;
  transition: all 150ms linear;
  display: inline-block;
  border-radius: 100px;
}
html .order-page.conf .delivery-grid input[type=radio]:checked {
  background-color: #7EAF34;
  border-color: #7EAF34;
}
html .order-page.conf .delivery-grid select {
  appearance: none;
  border: none;
  outline: none;
  border: 0.2em solid #7EAF34;
  background: rgba(126, 175, 52, 0.2);
  border-radius: 0.2em;
  color: #7EAF34;
  padding: 15px;
  font-size: 24px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%237EAF34' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
}
html .order-page.conf .delivery-grid [type=text] {
  width: 100%;
}
html .order-page.conf .delivery-grid [type=text]::placeholder {
  color: #7EAF34;
}
html .order-page.conf #delivery-date {
  background-color: #7EAF34;
  border: 0;
  color: white;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}
html .order-page.conf #delivery-date:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='-4.8 -4.8 57.60 57.60' xmlns='http://www.w3.org/2000/svg' fill='%23fff' stroke='%23fff' stroke-width='0.00048000000000000007'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23CCCCCC' stroke-width='0.096'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='invisible_box' data-name='invisible box'%3E%3Crect width='48' height='48' fill='none'%3E%3C/rect%3E%3C/g%3E%3Cg id='Layer_7' data-name='Layer 7'%3E%3Cpath d='M35.8,11a3.2,3.2,0,0,0-2.2-1H32V8a2.9,2.9,0,0,0-3-3H5A2.9,2.9,0,0,0,2,8V35a2.9,2.9,0,0,0,3,3H7.3a7,7,0,0,0,13.4,0h6.6a7,7,0,0,0,13.4,0H43a2.9,2.9,0,0,0,3-3V22.2Zm-2.7,3,7.3,8H32V14ZM14,39a3,3,0,1,1,3-3A2.9,2.9,0,0,1,14,39Zm20,0a3,3,0,1,1,3-3A2.9,2.9,0,0,1,34,39Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 45px;
  height: 45px;
  display: block;
  min-width: 45px;
  margin-right: 15px;
}

.checkout-summary {
  text-align: center;
}
.checkout-summary p strong {
  padding-right: 15px;
}
.checkout-summary .grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  grid-gap: 30px;
  padding-inline: 20px;
}
@media (max-width: 999px) {
  .checkout-summary .grid {
    grid-template-columns: 1fr;
    align-items: center;
    grid-gap: 0;
  }
}
.checkout-summary .order-details,
.checkout-summary .meal-details,
.checkout-summary .address {
  background: rgba(126, 175, 52, 0.2);
  border: 0.2em solid #7EAF34;
  padding: 15px;
  border-radius: 3px;
}
.checkout-summary .conf-selected {
  display: flex;
  flex-flow: row;
  gap: 20px;
  justify-content: center;
}
.checkout-summary .conf-selected .meal-item {
  background-color: #7EAF34;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 15px 20px;
}
.checkout-summary .go-home {
  background-color: #181818;
  color: white;
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 400;
  padding: 20px 40px;
  font-size: 25px;
  margin-top: 20px;
  display: inline-block;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}