@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Old+Standard+TT&display=swap");
p {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background-color: #d92b04;
  font-family: "Old Standard TT", serif;
}

.menu {
  background-color: #323e40;
  width: 50vw;
  min-height: 500px;
  margin-left: 10vw;
  margin-top: 10vh;
  margin-bottom: 5vh;
  padding: 20px 40px;
  border-radius: 40px;
}

.menu h1 {
  font-size: 64px;
  font-family: "Old Standard TT", serif;
  margin: 0;
  padding: 0;
  color: #f2b138;
  text-align: center;
}

.menu h2 {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #f2b138;
}

.menu .content-table {
  color: #d96704;
  font-family: "Poppins", sans-serif;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 1.1em;
  min-width: 100%;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.menu .content-table thead tr {
  background-color: #d92b04;
  text-align: left;
  font-weight: bold;
  color: #323e40;
}

.menu .content-table th,
.menu .content-table td {
  padding: 8px 15px;
}

.menu .content-table th img,
.menu .content-table td img {
  background-color: #d96704;
  padding: 5px;
  border-radius: 5px;
  margin-top: 3px;
  margin-left: -15px;
  -webkit-transition: ease-in-out 0.4s;
  transition: ease-in-out 0.4s;
  cursor: pointer;
}

.menu .content-table th img:hover,
.menu .content-table td img:hover {
  background-color: #d92b04;
  margin-top: -2px;
}

.menu .content-table .fontbold {
  font-weight: bold;
  font-size: 20px;
}

.menu .content-table tbody tr:last-of-type {
  border-bottom: 2px solid #f2b138;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.menu .content-table tbody tr {
  border-bottom: 1px solid #f2b138;
}

.menu .content-table tr :first-child {
  color: #f2b138;
  font-weight: bold;
}

.menu .content-table .ingredients {
  font-size: 12px;
  margin: 0px;
  font-weight: bold;
  color: #d96704;
}

.card {
  position: absolute;
  width: 0%;
  min-height: 70vh;
  border-radius: 0px 0px 0px 20px;
  top: 0%;
  left: 100%;
  background-color: #d96704;
  -webkit-transition: ease-in 0.4s;
  transition: ease-in 0.4s;
}

.card .card-content {
  display: none;
}

.card .card-content h2 {
  font-size: 1.5rem;
  color: #323e40;
  margin: 0;
  text-align: center;
  margin: 20px 0;
}

.card .card-content .submit-order {
  margin: 0;
  margin-left: 12%;
  margin-bottom: 20px;
  width: 76%;
  float: none;
  font-size: 1.2rem;
}

.card .card-content .single-order {
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  color: #323e40;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  gap: 10px;
  border-radius: 20px 5px 5px 20px;
  margin-bottom: 5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f2b138;
}

.card .card-content .single-order .delete {
  padding: 10px;
  border: 3px solid #8c0303;
  -webkit-transition: ease-in 0.5s;
  transition: ease-in 0.5s;
  cursor: pointer;
}

.card .card-content .single-order .delete img {
  height: 20px;
  margin: 0;
}

.card .card-content .single-order .delete:hover {
  background-color: #8c0303;
}

.card .expander {
  width: 100px;
  height: 60px;
  background-color: #d96704;
  border: 0px;
  border-radius: 12px 0 0 12px;
  position: fixed;
  margin-left: -100px;
  margin-top: 200px;
  top: 10%;
  cursor: pointer;
}

.pop-up {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 60vh;
  min-height: 600px;
  width: 50vw;
  padding: 100px 0px;
  background-color: white;
  border-radius: 20px;
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
  z-index: 10;
}

.create-new {
  float: right;
  margin-top: -60px;
  margin-right: 40px;
  font-size: 20px;
  font-family: "Old Standard TT", serif;
  background-color: #d96704;
  border-radius: 12px;
  padding: 10px 20px;
  border: 0px;
  font-weight: bold;
  cursor: pointer;
  color: #323e40;
}

.create-new:hover {
  background-color: #d92b04;
  margin-top: -62px;
}

.hide {
  display: none;
}

.add-order .display-flex-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.add-order h3 {
  font-size: 2rem;
  color: #323e40;
  margin: 0;
}

.add-order label {
  font-size: 2rem;
  color: #323e40;
  margin: 0;
  font-weight: bold;
}

.add-order p {
  font-size: 1.5rem;
  color: #323e40;
  margin: 0;
  margin: 15px 0px;
}

.add-order #sizes {
  font-size: 1.5rem;
  color: #323e40;
  margin: 0;
  margin: 15px 0px;
}

.add-order .quantity {
  margin: 15px 0px;
}

.add-order .display-flex-r {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 1;
      flex-basis: 1;
  width: 100%;
}

.add-order .add-to-cart {
  font-size: 20px;
  font-family: "Old Standard TT", serif;
  background-color: #d96704;
  border-radius: 12px;
  padding: 10px 20px;
  border: 0px;
  font-weight: bold;
  cursor: pointer;
  color: #323e40;
}

.add-order .add-to-cart:hover {
  background-color: #d92b04;
}

.make-new {
  height: 50vh;
}

.make-new .add-to-menu {
  font-size: 20px;
  font-family: "Old Standard TT", serif;
  background-color: #d96704;
  border-radius: 12px;
  padding: 10px 20px;
  border: 0px;
  font-weight: bold;
  cursor: pointer;
  color: #323e40;
}

.make-new .add-to-menu:hover {
  background-color: #d92b04;
}

.make-new h2 {
  font-size: 2rem;
  color: #323e40;
  margin: 0;
  margin: 40px 0;
}

.make-new h3 {
  font-size: 1.5rem;
  color: #323e40;
  margin: 0;
}

.make-new .display-flex-c {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ing-checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ing-checks .flex--item {
  width: 33%;
}

.ing-checks label {
  font-size: 1.5rem;
  color: #323e40;
  margin: 0;
  color: #d92b04;
  font-weight: bold;
  white-space: pre;
}

input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  color: #8c0303;
}

.display-flex-r {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 90%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.add-to-menu {
  margin: 0;
  float: left;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 5;
}

.close-pop-up {
  position: absolute;
  top: 0.8rem;
  right: 2rem;
  font-size: 3rem;
  color: #323e40;
  cursor: pointer;
  border: none;
  background: none;
}

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.quantity .minus-btn {
  border-radius: 10px 0px 0px 10px;
  font-size: 20px;
}

.quantity .plus-btn {
  border-radius: 0px 10px 10px 0px;
  font-size: 20px;
}

.quantity button {
  width: 45px;
  height: 45px;
  border: 1px solid #323e40;
  color: #323e40;
  background: #fff;
}

.quantity input {
  border: none;
  border-top: 1px solid #323e40;
  border-bottom: 1px solid #323e40;
  text-align: center;
  width: 80px;
  font-size: 20px;
  color: #323e40;
  font-weight: 300;
}

.delete {
  margin: 0;
  background-color: rgba(255, 228, 196, 0);
  border-radius: 5px;
  border: 2px solid #8c0303;
}

.display-flex-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.display-flex-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.final-submit .display-flex-r {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.final-submit .display-flex-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.final-submit .send-mail {
  font-size: 20px;
  font-family: "Old Standard TT", serif;
  background-color: #d96704;
  border-radius: 12px;
  padding: 10px 20px;
  border: 0px;
  font-weight: bold;
  cursor: pointer;
  color: #323e40;
}

.final-submit .send-mail:hover {
  background-color: #d92b04;
}

.final-submit input[type="text"] {
  margin: 10px 0px;
  width: 20%;
  border-radius: 12px;
  font-size: 20px;
  padding: 10px 0px;
}

.final-submit h3 {
  font-size: 1.5rem;
  color: #323e40;
  margin: 0;
  text-align: center;
  margin: 20px 0px;
}

.final-submit .final-orders {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 0 20px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.final-submit .final-orders p {
  font-size: 1.5rem;
  color: #323e40;
  margin: 0;
  padding: 10px 0;
  width: 18%;
}

.final-submit .final-orders hr {
  width: 100%;
  margin: 0px 70px 0px 10px;
}

@media screen and (max-width: 1972px) {
  .single-order {
    -webkit-column-gap: 5px;
            column-gap: 5px;
  }
  .single-order p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1707px) {
  .single-order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-order p {
    font-size: 0.9rem;
    margin-bottom: 0;
    text-align: center;
  }
  .single-order .delete {
    padding: 5px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 1535px) {
  .final-submit .final-orders p {
    font-size: 1rem;
  }
  .menu h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1167px) {
  .menu h1 {
    font-size: 40px;
  }
  .menu h1 img {
    width: 40px;
    height: 40px;
  }
  .card .card-content h2 {
    font-size: 1rem;
  }
  .card .card-content .submit-order {
    font-size: 1rem;
  }
  .menu .content-table .ingredients {
    font-size: 9px;
  }
  .create-new {
    margin-top: -55px;
    margin-right: 7px;
    padding: 6px 10px;
  }
}

@media screen and (max-height: 820px) {
  .pop-up {
    min-height: 600px;
    padding: 70px 0px;
    padding-top: 30px;
  }
  .final-submit {
    max-height: 200vh;
  }
  .final-submit .display-flex-c {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
}

@media screen and (max-width: 420px) {
  .menu h2 {
    display: none;
  }
  .menu .create-new {
    margin-top: 10px;
    margin-right: 90px;
    margin-bottom: 17px;
    padding: 6px 10px;
  }
  .menu {
    width: 300px;
    margin: 50px auto;
    padding: 20px 20px;
    border-radius: 12px;
  }
  .menu th {
    font-size: 10px;
  }
  .menu .content-table th,
  .menu .content-table td {
    padding: 8px 8px;
  }
  .menu .content-table .fontbold {
    font-weight: normal;
    font-size: 14px;
  }
  .menu .content-table td img {
    padding: 3px;
    width: 20px;
  }
  .menu .content-table .ingredients {
    line-height: 0px;
  }
  .pop-up {
    width: 100vw;
    min-height: 480px;
  }
  .make-new h2 {
    font-size: 1.5rem;
  }
  .make-new h3 {
    font-size: 1rem;
  }
  .ing-checks label {
    font-size: 1rem;
  }
  input[type="checkbox"] {
    width: 0.8rem;
    height: 0.8rem;
  }
  .card .expander {
    width: 50px;
    margin-left: -50px;
  }
  .card .expander img {
    width: 30px;
  }
  .card .card-content .submit-order {
    font-size: 0.7rem;
  }
  .card .card-content h2 {
    font-size: 0.7rem;
  }
  .add-order .quantity {
    margin: 7px 0px;
  }
  .add-order h3 {
    font-size: 1.5rem;
  }
  .add-order p {
    font-size: 1rem;
  }
  .add-order label {
    font-size: 1.5rem;
  }
  .single-order p {
    font-size: 0.6rem;
  }
  .card .card-content .single-order .delete {
    padding: 2px;
    border: 1px solid #8c0303;
    margin-bottom: 0px;
  }
  .card .card-content .single-order .delete img {
    height: 10px;
    width: 10px;
  }
  .final-submit h3 {
    font-size: 1rem;
  }
  .final-submit .final-orders p {
    font-size: 0.8rem;
  }
  .final-submit .final-orders hr {
    margin: 0px 10px 0px 10px;
  }
  .final-submit input[type="text"] {
    width: 15%;
    font-size: 10px;
  }
  .final-submit .send-mail {
    font-size: 10px;
    padding: 10px 15px;
  }
  .add-order #sizes {
    font-size: 1rem;
  }
  .card .card-content .single-order {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 421px) and (max-width: 1024px) {
  .menu h2 {
    display: none;
  }
  .menu .create-new {
    margin: 0;
    margin-top: -40px;
    font-size: 15px;
  }
  .menu {
    width: 70vw;
    margin: 50px auto;
    padding: 20px 20px;
    border-radius: 12px;
  }
  .menu th {
    font-size: 10px;
  }
  .menu .content-table th,
  .menu .content-table td {
    padding: 8px 8px;
  }
  .menu .content-table .fontbold {
    font-weight: normal;
    font-size: 14px;
  }
  .menu .content-table td img {
    padding: 3px;
    width: 20px;
  }
  .menu .content-table .ingredients {
    line-height: 0px;
  }
  .pop-up {
    width: 75vw;
    min-height: 480px;
  }
  .make-new h2 {
    font-size: 1.5rem;
  }
  .make-new h3 {
    font-size: 1rem;
  }
  .ing-checks label {
    font-size: 1rem;
  }
  input[type="checkbox"] {
    width: 0.8rem;
    height: 0.8rem;
  }
  .card .expander {
    width: 50px;
    margin-left: -50px;
  }
  .card .expander img {
    width: 30px;
  }
  .card .card-content .submit-order {
    font-size: 0.7rem;
  }
  .card .card-content h2 {
    font-size: 0.7rem;
  }
  .add-order .quantity {
    margin: 7px 0px;
  }
  .add-order h3 {
    font-size: 1.5rem;
  }
  .add-order p {
    font-size: 1rem;
  }
  .add-order label {
    font-size: 1.5rem;
  }
  .single-order p {
    font-size: 0.6rem;
  }
  .card .card-content .single-order .delete {
    padding: 5px;
    border: 2px solid #8c0303;
    margin-bottom: 0px;
  }
  .card .card-content .single-order .delete img {
    height: 15px;
    width: 15px;
  }
  .final-submit h3 {
    font-size: 1rem;
  }
  .final-submit .final-orders p {
    font-size: 0.8rem;
  }
  .final-submit .final-orders hr {
    margin: 0px 10px 0px 10px;
  }
  .final-submit input[type="text"] {
    width: 15%;
    font-size: 10px;
  }
  .final-submit .send-mail {
    font-size: 10px;
    padding: 10px 15px;
  }
  .add-order #sizes {
    font-size: 1rem;
  }
  .card .card-content .single-order {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
/*# sourceMappingURL=style.css.map */