#top-nav-section {
  background-color: #fff;
  border-bottom: 1px solid #bbbbbb;
}

#booking-form {
  margin-top: 50px;
}

#booking-info {
  top: 70px;
  max-width: 500px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}

.form__group {
  position: relative;
  padding: 15px 0 0;
  margin-bottom: 25px;
  width: 100%;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid #9b9b9b;
  outline: 0;
  font-size: 1.2rem;
  padding: 7px 0 0 0;
  background: transparent;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.form__field::-webkit-input-placeholder {
  visibility: hidden;
}

.form__field:-ms-input-placeholder {
  visibility: hidden;
}

.form__field::-ms-input-placeholder {
  visibility: hidden;
}

.form__field::placeholder {
  visibility: hidden;
}

.form__field:placeholder-shown ~ .form__label {
  font-size: 1.2rem;
  cursor: text;
  pointer-events: none;
  top: 20px;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 0.8rem;
  color: #9b9b9b;
}

.form__field:focus {
  border-color: #1abc9c;
}

.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1abc9c;
}

.calendar {
  margin: 1rem 0;
}

.calendar-month {
  padding: 3px 25px;
  width: 100%;
  background: #1abc9c;
  text-align: center;
}

.calendar-month .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.calendar-month .info div {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.calendar-month .info .prev {
  padding-top: 15px;
  cursor: pointer;
}

.calendar-month .info .next {
  padding-top: 15px;
  cursor: pointer;
}

.calendar-weekdays {
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ddd;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calendar-weekdays div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  color: #666;
  text-align: center;
}

.calendar-days {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto auto auto auto;
      grid-template-columns: auto auto auto auto auto auto auto;
  padding: 5px 0;
  background: #eee;
}

.calendar-days .calendar-day {
  text-align: center;
  margin: 2px 0;
  border: 1px solid #eee;
  font-size: 15px;
  color: #777;
  cursor: pointer;
}

.calendar-days .calendar-day.today {
  border-color: #777;
}

.calendar-days .calendar-day.active {
  background: #1abc9c;
  color: white !important;
}

/* Add media queries for smaller screens */
.ct-select-group {
  height: 64px;
  margin: 10px 0;
  position: relative;
}

.ct-select-group .ct-select {
  width: 100%;
  height: 64px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 22px;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 5px 15px;
}

.ct-select-group .ct-select option {
  font-size: 22px;
  background: #fff;
}

.ct-select-group:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 64px;
  width: calc(100% - 64px);
  background: #fff;
  background-color: #eee;
  z-index: 0;
}

.ct-select-group:after {
  content: ">";
  font-size: 40px;
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background-color: #ddd;
  -webkit-columns: white;
          columns: white;
  z-index: 0;
}

select {
  width: 100%;
  padding: 10px 15px;
  margin: 8px 0;
  font-size: 18px;
  border: 2px solid #ccc;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

select:focus {
  border-color: #1abc9c;
}

#btn-submit {
  width: 100%;
  font-size: 18px;
  background-color: #1abc9c;
  color: white;
  padding: 14px 0;
  margin-bottom: 20px;
  text-align: center;
  border: none;
  cursor: pointer;
}

#wrapper-booking-confirm {
  width: 500px;
  max-width: 100%;
  margin: 20px auto;
  padding: 0 20px;
}

#booking-confirm {
  border: 1px solid #ddd;
  padding: 20px;
}

.booking-confirm-status {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #1abc9c;
}

#grid-confirm-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content auto;
      grid-template-columns: -webkit-max-content auto;
      grid-template-columns: max-content auto;
  margin: 30px 0;
  row-gap: 10px;
  -webkit-column-gap: 15px;
          column-gap: 15px;
  color: #666;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.confirm-content {
  font-size: 20px;
  font-weight: bold;
}
/*# sourceMappingURL=onlinebooking.css.map */