* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.page-wrapper {
  max-width: 1400px;
  min-width: 280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 1500px) {
  .page-wrapper {
    padding: 0 15px;
  }
}
.js-reservation {
  width: 100%;
  height: 100%;
}

.js-reservation--price {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}

.js-reservation--price h1 {
  font-weight: bold;
  font-size: 20px;
}

.js-reservation--button {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.js-reservation--button a {
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: black;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
  border: 1px solid black;
}

.js-reservation--button a:hover {
  border: 1px solid #000;
  background-color: #fff;
  color: #000000;
  transition: 0.5s;
}

.js-reservation--checkbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.js-reservation--checkbox--div {
  width: 100%;
  height: 40px;
  display: flex;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  margin-top: 15px;
}

.js-reservation--checkbox--div:last-child {
  border-bottom: 1px solid black;
}

.js-reservation--checkbox--div--1 {
  width: 50%;
  display: flex;
  align-items: flex-start;
}

.js-reservation--checkbox--div--1 label {
  font-weight: bold;
}

.js-reservation--checkbox--div--2 {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.js-reservation--checkbox--div label {
  margin-left: 10px;
}

.js-reservation--checkbox--div input {
  height: 40px;
  margin-right: 10px;
}

.js-reservation--checkbox--div input[type=checkbox] {
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #FFFFFF;
  border: 2px solid #333333;
  transition: background-color 0.3s ease-in-out;
  border-radius: 50%;
}

.js-reservation--checkbox--div input[type=checkbox]:checked {
  background-color: #000000;
}

.js-reservation--toggle-menu {
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  border: 1px solid #BABABA;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: max-height 1s ease-out, visibility 1s ease-out, border 1s ease-out;
}

.js-reservation--toggle-menu--title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 530px) {
  .js-reservation--toggle-menu--title {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.js-reservation--toggle-menu--title p {
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 530px) {
  .js-reservation--toggle-menu--title p {
    margin-bottom: 10px;
  }
}
.js-reservation--toggle-menu.show {
  visibility: visible;
  max-height: 1600px;
  border: 1px solid #BABABA;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: max-height 2s ease-out, visibility 1s ease-out;
}

.js-reservation .js-reservation--toggleButton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  text-align: left;
  background-color: #000000;
  color: #fff;
  margin: 10px 0 0 0;
  border: 0;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  cursor: pointer;
}

.js-reservation:last-child button.js-reservation--toggleButton {
  background-color: green;
}

.js-reservation .js-reservation--toggleButton .hidden {
  display: none;
}

.js-reservation .js-reservation--toggleButton svg {
  width: 40px;
  fill: #fff;
}

.js-reservation .js-reservation--toggleButton h1 {
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 5px;
  font-size: 24px;
}

.js-reservation .js-reservation--toggleButton h2 {
  margin-bottom: 10px;
  margin-top: 10px;
  margin-right: 5px;
  text-transform: uppercase;
}

.js-reservation .page-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.js-reservation--title {
  width: 100%;
  background-color: #000000;
  color: #fff;
  margin-top: 10px;
  border-radius: 5px;
  padding-left: 15px;
}

.js-reservation--title h1 {
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 5px;
}

.js-reservation--container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.js-reservation--container--label {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.js-reservation--container input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #BABABA;
  transition: 0.2s ease;
  cursor: pointer;
}

.js-reservation--container input:hover {
  transition: 0.2s ease;
  border: 1px solid #000000;
}

.js-reservation--container input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.js-reservation--container #js-reservation--container--result {
  display: flex;
  align-items: center;
}

.js-reservation--radio--group {
  width: 100%;
  margin-top: 20px;
}

.js-reservation--radio--group--list {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.js-reservation--radio--group--list label {
  margin-left: 10px;
}

.js-reservation--radio--group--list input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #BABABA;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}

.js-reservation--radio--group--list input[type=radio]:checked {
  background-color: #000000;
}

.js-reservation--buttons {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 530px) {
  .js-reservation--buttons {
    flex-direction: column;
  }
}
.js-reservation--buttons--add {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2px;
  margin-bottom: 20px;
}

.js-reservation--buttons--add--control {
  width: 100%;
}

.js-reservation--buttons input {
  text-align: center;
  padding: 10px;
}

.js-reservation--buttons input[type=number]::-webkit-inner-spin-button,
.js-reservation--buttons input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none;
}

.js-reservation--buttons button {
  width: 30px;
  background: #000000;
  color: #fff;
  text-align: center;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
} /*# sourceMappingURL=style_reservation.css.map */