#booking_form input {
    width: 100%;
	margin-bottom: 0.5em;
}

#datepicker1{
	cursor:pointer;
}
#datepicker2{
	cursor:pointer;
}


#booking_form{
	border-width: 1px 1px 1px;
    border-style: solid;
    border-color: #000000;
	width: fit-content;
}

#booking_form .form-container {
    max-width: 300px;
    padding: 15px 15px 10px 15px;
    background-color: white;
}

#booking_form h1, h2, h3, h4, h5, h6 {
    color: #1c1c1c;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
	font-size: large;
	margin-top: 0;
}

#booking_form label {
	font-size: 0.8125rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
	color: #858585;
}

#booking_form input[type=text] {
    border: none;
    border-bottom: 1px solid #b1b0af;
    width: 100%;
    padding: 0 0 0.8rem;
    font-size: 0.9rem;
  }


#booking_form .select_group select {
    display: inline-block;
    width: 6em;
	cursor:pointer;
}


#booking_form .select_group label {
    display: inline-block;
    width: 6em;
    margin-right: .5em;
    text-align:center;
}

#booking_form .select_group {
    display: flex;
    justify-content: space-evenly;
	margin-bottom: 0.5em;
}

#booking_form .booking-benefit{
    font-size: 13px;
}

#booking_form button{
	border-color: #9A0B16;
    background-color: #9A0B16;
    color: #fff;
	width: 100%;
	line-height: 2rem;
}

ul.booking-benefit {
    padding-inline-start: 10px;
}

.booking-benefit li
{
	list-style-type: none;
}
#nights-no{
	display:none;
}


.left-col {
    float: left;
    width:33%;
}
.center-col {
    float: left;
    width: 33%;
}
.right-col {
    float: left;
    width: 33%;
}

.select-label{
	display:flex;
	justify-content: space-evenly;
}

/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: white;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: black transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent black transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: black;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}