@charset "UTF-8";
/* new timeslot reservation */
#reservation_book_timeslot .btn {
  border-radius: 2em;
  font-size: 1rem;
  padding: 0.5rem 2rem 0.65rem;
}
#reservation_book_timeslot fieldset {
  display: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0 1em 1em;
}
#reservation_book_timeslot fieldset legend {
  font-size: 0.8em;
  color: #333;
  font-weight: 400;
  padding: 0 0.25em;
  margin-left: -0.5rem;
}
#reservation_book_timeslot fieldset .gfield_description {
  font-size: 0.85em;
  color: #555;
  padding-top: 0.25em;
  max-width: 28em;
}
#reservation_book_timeslot input[type=submit] {
  border-radius: 2em;
  margin-top: 1em;
  float: right;
}

/* Move timeslot reservation - so hide fields */
#field_1_18, #field_2_11 {
  display: none;
}

/* */
.gform_required_legend {
  display: none;
}

.gfield--input-type-name .gfield {
  display: flex;
  gap: 1em;
}
.gfield--input-type-name .gfield > * {
  flex: 1;
}

#gform_1 .gform_fields, #gform_2 .gform_fields {
  gap: 1em;
  display: flex;
  flex-wrap: wrap;
}
#gform_1 .gform_fields > *, #gform_2 .gform_fields > * {
  width: 100%;
}
#gform_1 .gform_fields .has-floating-label, #gform_2 .gform_fields .has-floating-label {
  margin: 0;
}
#gform_1 .gform_fields .gfield--type-phone, #gform_1 .gform_fields .gfield--type-email, #gform_2 .gform_fields .gfield--type-phone, #gform_2 .gform_fields .gfield--type-email {
  width: calc(50% - 0.5em);
}
#gform_1 fieldset.gfield--type-checkbox, #gform_1 fieldset#field_1_11, #gform_1 fieldset#field_2_11, #gform_2 fieldset.gfield--type-checkbox, #gform_2 fieldset#field_1_11, #gform_2 fieldset#field_2_11 {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0 1em 1em;
}
#gform_1 fieldset.gfield--type-checkbox legend, #gform_1 fieldset#field_1_11 legend, #gform_1 fieldset#field_2_11 legend, #gform_2 fieldset.gfield--type-checkbox legend, #gform_2 fieldset#field_1_11 legend, #gform_2 fieldset#field_2_11 legend {
  font-size: 0.8em;
  color: #333;
  font-weight: 400;
  padding: 0 0.25em;
  margin-left: -0.5rem;
}
#gform_1 fieldset.gfield--type-checkbox .gfield_description, #gform_1 fieldset#field_1_11 .gfield_description, #gform_1 fieldset#field_2_11 .gfield_description, #gform_2 fieldset.gfield--type-checkbox .gfield_description, #gform_2 fieldset#field_1_11 .gfield_description, #gform_2 fieldset#field_2_11 .gfield_description {
  font-size: 0.85em;
  color: #555;
  padding-top: 0.25em;
  max-width: 28em;
}

#input_1_11, #input_2_11, #timeslots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  padding-top: 1em;
}
#input_1_11 .no_times, #input_2_11 .no_times, #timeslots .no_times {
  position: absolute;
  top: -2rem;
  right: 0;
  background: #ff6600;
  padding: 0.5em;
  font-size: 0.8em;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 740px) {
  #input_1_11, #input_2_11, #timeslots {
    flex-direction: column;
    gap: 2rem;
  }
}
#input_1_11 .timeslot-date, #input_2_11 .timeslot-date, #timeslots .timeslot-date {
  flex: 1;
}
#input_1_11 div.gchoice, #input_2_11 div.gchoice, #timeslots div.gchoice {
  border: 1px solid #ccc;
  width: calc(25% - 0.5rem);
  border-radius: 5px;
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
  height: 32px;
}
#input_1_11 div.gchoice label, #input_2_11 div.gchoice label, #timeslots div.gchoice label {
  font-size: 0.85em;
  height: 32px;
  display: flex;
  align-items: center;
  padding-left: 0.5em;
}
#input_1_11 strong, #input_2_11 strong, #timeslots strong {
  display: block;
  text-align: center;
  font-size: 0.85rem;
}
#input_1_11 input[type=radio], #input_2_11 input[type=radio], #timeslots input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 21px;
  width: 21px;
  outline: none;
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
  position: absolute;
  right: 0;
  top: 5px;
}
#input_1_11 input[type=radio]:checked, #input_2_11 input[type=radio]:checked, #timeslots input[type=radio]:checked {
  background-color: #558309;
  border-color: #558309;
}
#input_1_11 input[type=radio]:checked ~ label, #input_2_11 input[type=radio]:checked ~ label, #timeslots input[type=radio]:checked ~ label {
  border: 1px solid #558309;
  color: #558309;
  border-radius: 3px;
}
#input_1_11 input[type=radio]:checked:after, #input_2_11 input[type=radio]:checked:after, #timeslots input[type=radio]:checked:after {
  content: "✓";
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
#input_1_11 label, #input_2_11 label, #timeslots label {
  width: 100%;
  margin-bottom: 0;
}

#input_1_13, #input_2_13 {
  display: inline-block;
  margin-bottom: 0.5em;
}
#input_1_13 input[type=radio], #input_2_13 input[type=radio] {
  width: 0;
  opacity: 0;
  margin: 0;
  float: left;
}
#input_1_13 input[type=radio] ~ label, #input_2_13 input[type=radio] ~ label {
  background-color: #ccc;
  display: block;
  float: left;
  width: 6rem;
  padding: 0.35rem;
  margin: 0;
  border-radius: 5px;
  max-width: none;
  font-size: 0.85rem;
  opacity: 0.5;
}
#input_1_13 input[type=radio]:checked ~ label, #input_2_13 input[type=radio]:checked ~ label {
  background-color: #00853f;
  color: #fff;
  font-weight: bold;
  opacity: 1;
}
#input_1_13 .gchoice, #input_2_13 .gchoice {
  border-radius: 5px;
  text-align: center;
  float: left;
}
#input_1_13 label#label_1_13_0, #input_2_13 label#label_1_13_0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#input_1_13 label#label_1_13_1, #input_2_13 label#label_1_13_1 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: 1px;
}