.quantity_container {
	display: inline-block;
    margin-right: 10px;
}
.quantity_container input {
	display: inline-block !important;
    width: 40px !important;
}
.btn.button {
	background-color: #c69f02 !important;
}

button.deduct_quantity { margin-right:8px; }
button.add_quantity { margin-left:5px; }

/* animate the car to move slightly forwards and backwards */
g.loading_car {
	transform: translateX(-3px);
	animation: translate 2s ease-in-out infinite;
  }
  /* animate the shadow to skew  toward the left */
  path#shadow {
	animation: skew 2s ease-in-out infinite;
  }
  /* animate the wheels to spin  clockwise*/
  g.wheels use {
	animation: rotate 2s linear infinite;
  }
  /* animate the dashes of air to briefly show them and then hide them from view */
  path.air {
	/* starting from the values described by the --stroke-dash property
	! the property is updated for each path in the script
	*/
	stroke-dasharray: var(--stroke-dash);
	stroke-dashoffset: var(--stroke-dash);
	/* ! the delay of the animation is also set up in the script  */
	animation: offset 2s linear infinite;
	/* opacity to hide the obnoxious dots otherwise shown on firefox and edge */
	opacity: 0;
  }
  
  /* keyframe animations
  ! be sure to have the animations overlap as to show a realistic behavior
  - as the car moves right the wheels spin faster, the shadow skews left, the dashes of air appear in sequence
  - as the car moves left the wheels spin slower while the shadow returns to its resting place
  */
  @keyframes translate {
	50% {
	  transform: translateX(3px);
	}
	100% {
	  transform: translateX(-3px);
	}
  }
  @keyframes skew {
	50% {
	  transform: skewX(-20deg);
	}
  }
  @keyframes rotate {
	50% {
	  transform: rotate(4turn);
	}
	100% {
	  transform: rotate(6turn);
	}
  }
  
  /* beside animating the stroke-dashoffset property rapidly change the opacity to show the dashes and hide them when they are removed by changing the offset property
  otherwise the dashes would still be partially visible on firefox and edge (at least)
  */
  @keyframes offset {
	1% {
	  opacity: 1;
	}
	15% {
	  stroke-dashoffset: 0;
	  opacity: 1;
	}
	24% {
	  opacity: 1;
	}
	25% {
	  opacity: 0;
	  /* ! on chrome and firefox the calc() function allows to compute the negative value, but Edge seems to prefer having another variable instead */
	  /* stroke-dashoffset: calc(var(--stroke-dash) * -1px); */
	  stroke-dashoffset: var(--stroke-dash-negative);
	}
	100% {
	  stroke-dashoffset: var(--stroke-dash-negative);
	}
  }
  .loading_hotels, .loading_modal {
	position: absolute;
    height: 100%;
    width: 100%;
    z-index: 999999;
    background-color: #0000006b;
    pointer-events: none;
	display: none;
  }
  /* .loading_hotels svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	transform: translate(-50%, -50%);
  } */
  .hotels_block {
	position: relative;
  }
  .hotels_block .hotels_list,
  .hotels_block .hotels_map {
  	vertical-align: top;
  }
  .hotels_block .hotels_list {
  	height: 900px;
  	max-height: 100vh;
  	overflow-y: auto;
  }
  .hotels_block.loading .loading_hotels, .hotel-rooms.loading .loading_hotels, .book_room_list.loading  {
	display: block;
  }
  .hotels_block .check_in_out_fields {
  	margin-bottom: 20px;
	z-index: 1;
  }
  .hotels_block .check_in_out_fields input {
	display: inline-block !important;
	box-shadow: none !important;
    width: 100% !important;
    max-width: 50px;
    margin-right: 0;
	margin-bottom: 0;
	padding: 0;
    vertical-align: top;
	border: none;
	font-size: 16px;
	outline: none !important;
  }
  .hotels_block .check_in_out_fields button {
	display: inline-block !important;
    max-width: 200px;
    margin-right: 20px !important;
    background-color: #C6A002 !important;
    padding: 9px 22px;
    border: none;
    color: #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
    margin: 0;
    vertical-align: top;
  }
  .hotels_block .hotel {
  	padding: 0px 0px 0px 30px;
  	margin-bottom: 20px;
	border-radius: 8px;
  }
  /* .hotels_block .hotel:hover .hotel_data {
    background-color: rgba(0, 255, 140, 0.244); 
	border-color: #a3d7fc;
    box-shadow: 0 0 var(--bui_spacing_2x) #a3d7fc;
    background: #f0f6ff;
  } */
  .hotels_block .hotel_slider .slick-prev,
  .hotels_block .hotel_slider .slick-next { 
	width: 25px;
    height: 25px;
  }  
  .hotels_block .hotel_slider .slick-prev:before, 
  .hotels_block .hotel_slider .slick-next:before {
    color: #000;
    font-size: 25px;
  }
  .hotel_slider {
  	display: inline-block !important;
  	vertical-align: top;
  	width: 30%;
  }  
  .hotels_block .hotel_slider .slick-prev { left: -30px; }
  .hotels_block .hotel_slider .slick-next { right: -30px; }  
  .hotel_data {
  	display: inline-block !important;
  	vertical-align: top;
  	padding: 15px 0;
	border-radius: 8px;
	margin-left: -15px;
	margin-right: 15px;
	position: relative;
	width: 100%;
  }  
  .hotel_data > a {
  	background-color: #c69f02;
  	color: #FFFFFF !important;
  	padding: 6px 18px;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    border-radius: 0px;
	display: inline-block;
	border-radius: 8px;
	display: inline-block;
	vertical-align: top;
	line-height: 25px;
    margin: 0;
  }
  .hotel_data > a:hover {
  	background-color: #816f2a;
  	text-decoration: none;
  }
  .hotel_data > button {
	background-color: #FFFFFF;
	color: #c69f02 !important;
	border: 1px solid #D7D7D7;
	padding: 6px 18px;
	cursor: pointer;
	-webkit-appearance: none;
	border-radius: 0px;
	display: inline-block;
	border-radius: 8px;
	display: inline-block;
	vertical-align: top;
	line-height: 25px;
    margin: 0 0 0 10px;
  }
  .hotel_data > button:hover {
	background-color: #111111;
	text-decoration: none;	
  }
  .hotel_data h3 a {
	  color: #000;
	  font-size: 16px;
	  font-style: normal;
	  font-weight: 500;
	  line-height: 28px; /* 175% */
  }
  .hotel_data p.hotel_data_room_type {
	  color: #000;
	  font-size: 14px;
	  font-style: normal;
	  font-weight: 500;
	  line-height: normal;
	  color: #00000080;
	  margin-bottom: 10px;
  }
  .distance_center, .distance_event {
	margin-bottom: 0;
    margin-top: 0;
    padding: 20px 24px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
	border-top: 1px solid #fafafa66;
  }
  p.distance_event {
/*    border-left: 1px solid #000;*/
/*    padding-left: 30px;*/
  }
  p.hotel_data_address {
  	font-weight: 600;
    text-decoration: underline;
  }
  p.hotel_data_room_type {
  	font-weight: 600;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  white-space: nowrap;
	  width: 95%;
  }
  p.hotel_data_room_price {
    font-weight: bold;
    font-size: 20px;
    color: #c69f02;
	margin-bottom: 10px;
	margin-top: 5px;
    width: 40%;
	min-width: 120px;
    display: inline-block;
}
div#map {
    border-radius: 8px;
}

  .custom-clustericon {
	background: var(--cluster-color);
	color: #fff;
	border-radius: 100%;
	font-weight: bold;
	font-size: 15px;
	display: flex;
	align-items: center;
  }
  
  .custom-clustericon::before,
  .custom-clustericon::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	background: var(--cluster-color);
	opacity: 0.2;
	border-radius: 100%;
  }
  
  .custom-clustericon::before {
	padding: 7px;
  }
  
  .custom-clustericon::after {
	padding: 14px;
  }


/* Sidebar hotel single page view */
body#top .single-product-main-image .thumbnails a {
	width: 18.5%;
}
.sidebar .hotel-rooms .check_in_out_fields {

}
.sidebar .hotel-rooms .check_in_out_fields > label {
	display: inline-block;
	vertical-align: top;
	line-height: 40px;
	width: 70px;
}
.sidebar .hotel-rooms .check_in_out_fields > label + input {
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 76px);
}
.sidebar .hotel-rooms button.search_rooms {
	background-color: var(--fs-color-primary);
    border-color: rgba(0, 0, 0, .05);
    color: #fff;
}
.form_wrapper {
	display: block;
	white-space: nowrap;
}
.form_wrapper .form_inner {
	display: inline-block;
	vertical-align: top;
	white-space: normal; 
	width: 46%;
}
.form_wrapper .form_inner + .form_inner {
	margin-left: 7%;
}
.form_wrapper .form_inner.form_date_select_wrapper {

}


.rooms_list {
	height: 400px;
  	max-height: 100vh;
  	overflow-y: auto;
  	margin-top: 20px;
  	border: 1px solid #ccc;
  	padding: 10px;
}
.rooms_list .room {
	margin-bottom: 25px;
}
.rooms_list .room p {
	margin: 5px 0 ;
}
/* Box slider single room style */
.rooms_list .room {
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.rooms_list .room h3 {
	color: #000;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.rooms_list .room .hotel_room_price {
	font-weight: bold;
    font-size: 20px;
    color: #c69f02;
    margin-bottom: 10px;
    margin-top: 5px;
    width: 40%;
    display: inline-block;
}
.rooms_list .room  > button {
    background-color: #FFFFFF;
    color: #c69f02 !important;
    border: 1px solid #D7D7D7;
    padding: 6px 18px;
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 0px;
    display: inline-block;
    border-radius: 8px;
    display: inline-block;
    vertical-align: top;
    line-height: 25px;
    margin: 0 0 0 10px;
}
.rooms_list .room:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* End single Hotel page */


/* Custom Scrollbar Thomas Toma @ Codeable */
/* Works on Firefox */
.hotels_block .hotels_list, .rooms_list {
  scrollbar-width: thin;
  scrollbar-color: #000000 #c69f02;
}

/* Works on Chrome, Edge, and Safari */
.hotels_block .hotels_list::-webkit-scrollbar,
.rooms_list::-webkit-scrollbar {
  width: 8px;
}

.hotels_block .hotels_list::-webkit-scrollbar-track,
.rooms_list::-webkit-scrollbar-track {
  background: #c69f02;
}

.hotels_block .hotels_list::-webkit-scrollbar-thumb,
.rooms_list::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 20px;
  border: 2px solid #c69f02;
}
/* End Scrollbar */

@media only screen and (max-width: 992px) {
	body .hotel_data,
	body .hotel_slider {
		display: block !important;
		width: 100% !important;
	}
	body .hotel_data {
		padding: 20px 5px;
	}
	.hotels_block .hotel_slider .slick-prev,
	.hotels_block .hotel_slider .slick-next { 
		display: none !important;
	}
}