@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap");
#tbg_booking_widget {
  font-family: 'Montserrat', sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
    container-type: inline-size;
}


#tbg_booking_widget * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#tbg_booking_widget .booking_type_selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

#tbg_booking_widget .booking_type_selector span {
  border: 1px solid #d0cbc9;
  padding: 5px 10px;
  border-bottom: 0px;
  text-transform: uppercase;
  background-color: #f0f0f0;
  cursor: pointer;
}

#tbg_booking_widget .booking_type_selector .selected {
  background-color: white;
}

#tbg_booking_widget .booking_container {
  background-color: #F8F7F9;
  padding: 10px 10px;
/*   width: -webkit-fit-content; */
/*   width: -moz-fit-content; */
  margin: 0 auto;
  border-radius: 4px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 3px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 3px;
}

@media screen and (max-width: 990px) {
  #tbg_booking_widget .booking_container {
    width: 100%;
  }
}

#tbg_booking_widget label {
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 10px;
  padding: 2px;
  color: #272727;
}

#tbg_booking_widget form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  container-type: inline-size;
}

@media screen and (max-width: 990px) {
  #tbg_booking_widget form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@container (max-width: 500px) {
  #tbg_booking_widget form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#tbg_booking_widget .input_box {
  background-color: white;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	
	flex-grow: 1;
}

#tbg_booking_widget .input_box_2 {
    background-color: white;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-grow: 1;
}

#tbg_booking_widget input,
#tbg_booking_widget select {
  font-size: 13px;
  border: none;
  padding: 27px 10px 5px;
  min-width: 56px;
  -webkit-appearance: none;
  background-color: transparent;
  flex-grow: 1;
}

#tbg_booking_widget input:focus,
#tbg_booking_widget select:focus {
  outline: unset;
}

#tbg_booking_widget input[type='submit'] {
  background-color: #9c8153;
  color: #fff;
  text-transform:uppercase;
  font-family: "Jost", Sans-serif;
  cursor: pointer;
  font-weight: 300;
  -webkit-transition: background-color 1s ease;
  transition: background-color 1s ease;
  min-height: 47px;
  padding: 2px 5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#tbg_booking_widget input[type='submit']:hover {
  background-color: #6c0000;
  color: white;
}

#tbg_booking_widget svg {
  height: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 0 5px;
  margin-left: auto;
}

#tbg_booking_widget svg path {
  fill: #6e6e6e;
}

