/* Always set the map height explicitly to define the size of the div
 * element that contains the map. */
#map {
	height: 100%;
	min-height: 560px;
	border-radius: 10px;
}

.woe-locations-wrapper {
	position: relative;
	box-shadow: 0 15px 35px -5px rgba(200,200,200,0.5);
}

/* .woe-locations-wrapper:after {  
	content: "";
  position: absolute;
	
	top: 0;
	bottom: 0;
	left: 0;
	width: 250px;
	background: inherit;
} */


.woe-locations-tools {
	position: absolute;
	
	top: 0;
	bottom: 0;
	left: 0;
	width: 250px;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 10;
	border-radius: 10px 0 0 10px;
	overflow: none;
	
	display: flex;
  flex-flow: column;
  height: 100%;	
}


/* .woe-locations-wrapper img[src^='https://flowbird.be/wp-content/plugins/woe-locations/assets/images/map-marker']:hover {
	transform: scale(1.5);
	transition-duration: 1s;
}

.woe-locations-wrapper div:has(> img[src^='https://flowbird.be/wp-content/plugins/woe-locations/assets/images/map-marker']) {
	overflow: visible;
	opacity: 1;
}

.woe-locations-wrapper div:has(> img[src^='https://flowbird.be/wp-content/plugins/woe-locations/assets/images/map-marker']):hover img {
	transform: scale(1.5);
	transition-duration: 1s;
}
 */

/* .woe-locations-tools:before {
	position: absolute;
 	filter: blur(10px);
	display: block;
	content: '';
	
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
} */

.woe-locations-top-tools {
	padding: 15px 15px 0;
}

.woe-locations-top-tools #addressInput {
	background-color: #fff;
}

.woe-locations-bottom-tools {
	display: flex;
  flex-flow: column;
  height: 100%;	
	overflow: auto;
}

.woe-locations-bottom-tools::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.woe-locations-bottom-tools::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.woe-locations-bottom-tools::-webkit-scrollbar-thumb {
  background: #bfbfbf; 
}

/* Handle on hover */
.woe-locations-bottom-tools::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.woe-locations-search-wrapper {
	border-radius: 10px;
	box-shadow: 0 15px 35px -5px rgba(200,200,200,0.5);
	padding: 5px;
	background-color: #fff;
	position: relative;
}
#addressInput {
	border: none;
}

#radiusSelect,
#locationSelect {
	display: none;
	width: 100% !important;
}

#searchButton {
	background-color: #ff4081;
	color: #fff;
	font-size: 14px;
	position: absolute;
	right: 5px;
	top: 5px;
	border-radius: 10px;
	border: none;
	height: 35px;
}

.woe-locations-divider {
	border-color: #b1b1b1;
	margin: 10px 30px 20px;
}

#woe-locations-list {
	margin: 0;
	list-style: none;
  padding: 0 5px 15px 15px;
}

#woe-locations-list li {
	border-radius: 10px;
	line-height: 20px;
	box-shadow: 0 15px 35px -5px rgba(200,200,200,0.5);
	padding: 15px 5px;
	margin-bottom: 10px;
	background-color: #fff;
	text-align: center;
	font-family: "Montserrat",sans-serif;
	font-weight: 700;
	color: #093b88;
	cursor: pointer;
}

.no-pointer {
	cursor: default !important;
}



@media (max-width: 992px) {
	
	.woe-locations-tools {
		bottom: auto;
		right: 0;
		width: 100%;
  	height: auto;	
	}
	
	
	#woe-locations-list {
		
	}
	

	.woe-locations-bottom-tools {
		width: 100%;
		text-align: center;
		overflow: hidden;
	}

	#woe-locations-list {
		display: flex;
    overflow-x: auto;

		border-radius: 5px;

		scroll-behavior: smooth;

		-webkit-overflow-scrolling: touch;
		scroll-snap-points-x: repeat(calc(100vw - 70px));
		scroll-snap-type: mandatory;
		
		padding-bottom: 0 !important;
	}
	
	#woe-locations-list::-webkit-scrollbar {
		display: none;
	}
	#woe-locations-list::-webkit-scrollbar-thumb {
		display: none;
	}
	#woe-locations-list::-webkit-scrollbar-track {
		display: none;
	}
	
	#woe-locations-list > li {
		flex-shrink: 0;
/* 		width: calc(100vw - 50px); */
    width: calc(100vw - 75px);
		height: 72px;
		border-radius: 10px;
/* 		background: #eee; */
/* 		transform-origin: center center; */
/* 		transform: scale(1); */
		transition: transform 0.5s;
		position: relative;

		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 10px;
    font-size: 20px;
/* 		font-size: 100px; */
	}
	
	
	
	#woe-locations-list:after {
		content: "";
		flex: 0 0 10px;
	}
	
	#woe-locations-bottom-tools > li:target {
/* 		transform: scale(0.8); */
	}
	
/* 	img {
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	} */

	.woe-locations-list-pager > a {
		display: inline-flex;
		width: 8px;
		height: 8px;
		text-decoration: none;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		margin: 0 4px 0.5rem 4px;
		position: relative;
		
		height: 8px;	
		width: 8px;	
		opacity: 0.3;	
		background-color: #FF4081;	
		box-shadow: 0 10px 20px -5px rgba(255,64,129,0.5);
		
/* 		transition: all ease-in-out 0.1s; */
	}
	
	.woe-locations-list-pager > a.active,
	.woe-locations-list-pager > a:active,
	.woe-locations-list-pager > a:focus {
		background-color: #FF4081;
		top: 1px;
		height: 10px;	
		width: 10px;	
		margin-right: 3px;
		margin-left: 3px;
		opacity: 1;	
	}
	
	@supports (scroll-snap-type) {
		.woe-locations-list-pager > a {
			display: none;
		}
	}
}
