body {
  font-family: "Raleway", Verdana, sans-serif;
  background-color: white;
  color: #5a4a42;
  height: 100vh;
  margin: 0;
  font-size: 1rem;
}

.container {
  display: flex;
  width: 100vw;
  height: 100vh;
}

/* Main image */

.image-container {
  flex: 1;
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Price */

.price-banner {
  position: absolute;
  top: 10%;
  left: 70%;
  background-color: rgb(14, 145, 14);
  color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid white;
}

/* Customer name */

::placeholder {
  color:rgb(14, 145, 14)
}

.customer {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  margin-bottom: 10px;
}

#customerName:hover {
  cursor: pointer;
}

#customerName {
  padding: 0.65rem;
  font-family: "Raleway", Verdana, sans-serif;
  width: 150px;
  border: 2px solid rgb(14, 145, 14);
  border-radius: 5px;
  color:rgb(14, 145, 14);
  margin: 10px 0;
}

/* Pancake type */

#type {
  display: block;
  margin-top: 10px;
  padding: 8px;
  font-family: "Raleway", Verdana, sans-serif;
  color: rgb(14, 145, 14);
  font-size: 1rem;
  width: 175px;
  border: 2px solid rgb(14, 145, 14);
  border-radius: 5px;
  text-align: center;
}

#type {
  cursor: pointer;
}

/* Toppings and extras  */

.customization-section {
  font-weight: 600;
}

.customization-section1 {
  margin: 20px 0;
}

.customization-section2 {
  margin: 0 0 20px 0;
}

input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.customization-section1 label {
  display: inline-block;
  margin-right: 2px;
}

.customization-section2 label {
  display: inline-block;
  margin-right: 2px;
}

.option {
  background: white;
  color: rgb(14, 145, 14);
  border: 2px solid rgb(14, 145, 14);
  font-size: 1rem;
  border-radius: 5px;
  padding: 10px 20px;
  margin-top: 15px;
  width: 130px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  height: 20px;
}

.option:hover {
  cursor: pointer;
}

.optionChecked {
  background: rgb(14, 145, 14);
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  border: 2px solid rgb(14, 145, 14);
  padding: 10px 20px;
  margin-top: 15px;
  color: white;
  width: 130px;
  text-align: center;
  height: 20px;
}

p {
  font-weight: 600;
  margin: 0;
}

.price-display {
  display: none;
}

/* Delivery section */

.delivery-container p {
  margin: 10px 0;
}

.delivery-container input[type="radio"] {
  display: none;
}

.radioOption {
  padding: 10px 20px;
  border: 2px solid rgb(14, 145, 14);
  background-color: white;
  color: rgb(14, 145, 14);
  margin-right: 2px;
  border-radius: 5px;
  font-size: 1rem;
  display: inline-block;
  width: 130px;
  text-align: center;
  margin-bottom: 15px;
}

.radioOption:hover {
  cursor: pointer;
}

.radioChecked {
  padding: 10px 20px;
  border: 2px solid rgb(14, 145, 14);
  background-color: rgb(14, 145, 14);
  color: white;
  margin-right: 2px;
  border-radius: 5px;
  font-size: 1rem;
  display: inline-block;
  width: 130px;
  text-align: center;
  margin-bottom: 15px;
}

/* Animation */

@keyframes shake {
  0% { transform: translateX(0); }
  10%, 30%, 50% { transform: translateX(-5px); }
  20%, 40% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.3s ease-in-out;
}

.form-container {
  flex: 1;
  padding-left: 20px;
  align-items: flex-start;
}

#seeOrderBtn {
  background: rgb(14, 145, 14);
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  border-style: none;
  padding: 10px 20px;
  margin: 15px 0;
  color: white;
}

#seeOrderBtn:hover {
  cursor: pointer;
  color: rgb(14, 145, 14);
  background-color: white;
  border: 2px solid rgb(14, 145, 14);
  padding: 8px 18px;
}

#displayDiv {
  line-height: 1.3;
}

#totalOrder {
  font-size: 1.25rem;
}

.customerAddress {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin: 10px 0;
}

.hidden {
  display: none;
}

form label {
  display: block;
  text-align: left;
  font-size: 1rem;
  margin: 5px 0;
}

form input {
  width: 100%;
  padding: 2px 1px;
  height: 20px;
  font-family: "Raleway", Verdana, sans-serif;
  border-radius: 5px;
  border: 2px solid rgb(14, 145, 14);
}

.confirmHidden {
  display: none;
}

#confirmButton {
  background: rgb(14, 145, 14);
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  border-style: none;
  padding: 10px 20px;
  margin: 15px 0;
  color: white;
}

#confirmButton:hover {
  cursor: pointer;
  color: rgb(14, 145, 14);
  background-color: white;
  border: 2px solid rgb(14, 145, 14);
}

@media only screen and (min-width: 700px) {
  .container {
    flex-direction: row;
  }
}

@media only screen and (max-width: 700px) {
  .container {
    flex-direction: column;
    justify-content: center;
  }

  .image-container img {
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .price-banner {
    position: fixed;
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }

  .radioChecked,
  .radioOption,
  .option,
  .optionChecked {
    width: 250px;
  }

  #type {
    width: 295px;
  }

  #customerName {
    width: 270px;
  }
}