/* this is for cell phone styling */
	@media screen and (max-width: 767px) {
#button-container {
	flex-direction: column!important;
	align-items: flex-start!important;
	margin-top: 20px!important;
}
#reset-button {
	margin-left:10px!important;
}
	.gif-container {
	
	  top: 55px!important;
	  right:40px!important;
	
	}
	
	/*end mobile styling */

}
body {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#map {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
}

#button-container {
	position: absolute;
	top: 40px;
	left: 10px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#reset-button {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
	color: #2196F3;
	cursor: pointer;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 14px;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}
#reset-button:hover {
	background-color: #1565C0;
}

#reset-button:active {
	background-color: #e6e6e6;
	box-shadow: none;
	transform: translateY(1px);
}
#hpfcs-button,
#elf-button,
#glad-button,
#godfather-button,
#presale-button {
	background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
	border: none;
	border-radius: 4px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	font-size: 14px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 10px;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

#geocoder-container {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}
#geocoder {
	font-size: 16px;
	padding: 18px 35px;
	border-radius: 4px;
	border: none;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	width: 100%;
	margin-right: 10px;
}
.mapboxgl-ctrl-geocoder {
	width: 60%;
	font-size: 15px;
	line-height: 20px;
	max-width: 100%;
	margin: 0 auto; /* horizontally center the geocoder */
}

.mapboxgl-ctrl-geocoder-container {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

#geocoder-container input {
	width: calc(100% - 20px);
	font-size: 15px;
	line-height: 20px;
	padding: 5px 15px;
	border-radius: 4px;
	border: 0px solid #ccc;
	margin-left: 20px;
}
#geolocate-button {
	position: fixed;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	background-color: #fff;
	border: 1px solid #999;
	padding: 6px 10px;
	font-size: 14px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	cursor: pointer;
}

.mapboxgl-ctrl-top-right {
	right: 10px;
}
.mapboxgl-ctrl-geocoder .suggestions {
	max-width: 100%;
   /* width: 300px;*/
}
.mapboxgl-ctrl-geocoder .suggestions .suggestion {
	font-size: 16px;
	padding: 4px 8px;
	max-width: 100%;
}
.mapboxgl-ctrl-geocoder.text-left .suggestions {
	text-align: left;
}
.mapboxgl-popup {
	border-radius: 6px;
}
.mapboxgl-popup-content {
	padding: 12px;
	box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1), 2px 0px 4px rgba(0, 0, 0, 0.1),
	0px 2px 4px rgba(0, 0, 0, 0.2), 0px 4px 6px rgba(0, 0, 0, 0.2),
	0px -4px 6px rgba(0, 0, 0, 0.2);
}
.mapboxgl-popup-tip {
	position: relative;
}
.mapboxgl-popup-tip::before {
	content: "";
	position: absolute;
	top: -6px;
	left: -15px;
	border-radius: 2px 1px 0 0;
	box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
	width: 12px;
	height: 12px;
	transform: rotate(135deg);
	z-index: -1;
}
.mapboxgl-ctrl-nav {
	top: 50%;
	transform: translateY(-50%);
}

/* CSS for the menu */
.menu {
	display: none;
	position: fixed;
	top: 180px;
	left: 10px;
	transform: translate(0, -50%);
	width: 200px;
	padding: 10px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	z-index: 2;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 16px;
}
.menu-item button {
	display: block;
	width: 100%;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #e0e0e0;
	padding: 10px;
	text-align: right;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
}
.menu-item button:hover {
	background-color: #f5f5f5;
}
.menu-item {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	text-align: right;
	padding-right:15px;
}
/* CSS to show the menu on click */
.show-menu .menu {
	display: block;
}
#toggle-menu-button {
	background-color: #2196F3;
	border: none;
	border-radius: 4px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 10px;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.3s ease;
}
#toggle-menu-button:hover {
	background-color: #1565C0;
}
		.gif-container {
  position: fixed;
  top: 4px;
  right: 20px;
  z-index: 9999;
}

.gif-container img {
  width: 50px;
  height: 50px;
  
}

