@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
h2 {
  margin: 0;
}

.meals .meal {
  width: 40%;
  border: 3px solid #059567;
  border-radius: 10px;
}
.meals .meal:nth-child(even) {
  margin-left: 50px;
}
.meals .meal .image {
  width: 100%;
  height: 250px;
  background-size: cover;
}
.meals .meal .image .category {
  margin: 10px 0 0 10px;
  background-color: #059567;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  width: 50px;
}
.meals .meal .content {
  padding: 0 25px 25px 25px;
}

.order_list iframe {
  height: 100%;
}

.order_meal_list h3 {
  margin-bottom: 0;
}
.order_meal_list .subtitle {
  color: gray;
}
.order_meal_list .order_meal {
  margin: 15px 0;
  padding: 15px 0;
  border-bottom: 3px solid rgba(5, 149, 103, 0.1764705882);
}
.order_meal_list .order_meal h4 {
  margin-bottom: 0;
}

.locations .location {
  background-color: white;
  border: 3px solid #d35113;
  border-radius: 10px;
  padding: 10px;
  margin: 15px;
}
.locations .location.active {
  border: 5px solid #d35113;
}
.locations .location .content .name {
  margin: 0 0 10px 0;
}
.locations .location .content .description {
  margin: 0;
}
.locations .location .content .address {
  color: #A1947C;
  margin: 0;
}
.locations .location .icon {
  padding: 15px;
  margin-right: 10px;
  width: 82px;
  height: 82px;
  border-radius: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  color: #059567;
}

.time_slots .time_slot {
  padding: 15px;
  border: 3px solid #d35113;
  margin: 15px;
  width: 40%;
}
.time_slots .time_slot.active {
  border: 5px solid #d35113;
}

.payment {
  width: 100%;
  height: 70vh;
}
.payment iframe {
  height: 100%;
}
.payment .block {
  padding: 15px;
  height: 100%;
}
.payment .block h4 {
  font-size: 24px;
  margin: 0 0 15px 0;
}
.payment .block label {
  font-weight: bold;
  padding: 15px 0;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 200px;
  max-width: 1400px;
  padding: 20px;
  text-align: center;
}
.steps .timeline {
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: #d35113;
  z-index: 0;
}
.steps .step {
  position: relative;
  z-index: 2;
}
.steps .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  border: 1px solid #D9D8D6;
  background: white;
  color: #D9D8D6;
}
.steps .icon.current {
  background-color: #d35113;
  color: white;
}