/* Dropdown Button */
/* The container <div> - needed to position the dropdown content */
.tour-guide-dropdown {
	position: relative;
	display: inline-block;
}

/* Dropdown Content (hidden by default) */
.tour-guide-dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 999;
}

/* Links inside the dropdown */
.tour-guide-dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

/* Change color of dropdown links on hover */
.tour-guide-dropdown-content a:hover {
	background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.tour-guide-dropdown:hover .tour-guide-dropdown-content {
	display: block;
}
