.book {
  max-width: 900px;
  padding: 24px;
  margin: 0 auto;
  font-size: 16px;
  font-family: "Raleway", arial, sans-serif;
}
.book * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.book form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book form > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
}
.book form > div.meal_controll {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.book form > div.meal_controll .box {
  display: flex;
  padding-left: 24px;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .book form > div.meal_controll .box {
    flex-direction: column;
  }
}
.book form > div.meal_controll .box > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.book form > div.meal_controll .box > div > div:first-child {
  width: 60px;
  text-align: center;
  font-size: 16px;
}
.book form > div:last-child {
  justify-content: end;
  display: flex;
  align-items: center;
  gap: 24px;
}
.book form > div:last-child .price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}
.book form > div:last-child .price .cost {
  font-size: 16px;
}
.book form > div:last-child .price .other {
  font-size: 14px;
}
.book form > div.toptitle {
  justify-content: center;
  font-size: 36px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.125rem;
}
.book form > div.watch {
  display: flex;
  align-items: center;
  gap: 10px;
}
.book form > div.watch > * {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .book form > div.watch > * {
    width: 100%;
  }
}
.book form > div.watch > *:first-child p:last-child {
  font-size: 14px;
}
.book form > div select, .book form > div input, .book form > div textarea {
  width: 100%;
  outline: 0;
  color: #333;
  padding: 10px;
  font-size: 16px;
  border: 1px solid rgb(239, 239, 245);
}
.book form > div select {
  padding-left: 6px;
}
.book form > div input::placeholder {
  color: #333;
}
.book form > div input[name=camel] {
  cursor: pointer;
}
.book form > div button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bolder;
  padding: 16px 24px;
  letter-spacing: 0.125rem;
  color: #fff;
  background-color: rgb(15, 132, 133);
  position: relative;
  transition: all 0.3s;
  outline: 0;
  border: 0;
  cursor: pointer;
  border-radius: 5px;
}
.book form > div button:hover {
  opacity: 0.8;
}

.modal {
  display: none;
  position: relative;
}
.modal * {
  box-sizing: border-box;
}
.modal .bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.modal.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal .box {
  border-radius: 5px;
  background-color: #fff;
  max-width: 500px;
  height: 400px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .modal .box {
    width: 300px;
  }
}
.modal .box .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-height: 340px;
  overflow-y: auto;
}
@media screen and (max-width: 1200px) {
  .modal .box .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .modal .box .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.modal .box .grid > div {
  border: 1px solid transparent;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
}
.modal .box .grid > div.active {
  border-color: rgb(15, 132, 133);
}
.modal .box .grid > div .pic img {
  width: 100%;
}
.modal .box .grid > div .text {
  font-size: 16px;
  color: #333;
  text-align: center;
}
.modal .box .actions {
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
}
.modal .box .actions.active {
  display: flex;
}
.modal .box .actions .confirm {
  padding: 5px 10px;
  background-color: rgb(15, 132, 133);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.datepicker-top-left, .datepicker-top-right {
  border-top-color: rgb(15, 132, 133);
}

.datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover {
  color: rgb(15, 132, 133);
}

.datepicker-panel > ul > li:hover {
  background-color: rgba(15, 132, 133, 0.5);
}

.datepicker-panel > ul > li.highlighted {
  background-color: rgba(15, 132, 133, 0.5);
}

.datepicker-panel > ul > li.highlighted:hover {
  background-color: rgba(15, 132, 133, 0.3);
}

/*# sourceMappingURL=book.css.map */
