/* Dropdown Button */
.switch_dropbtn {
  
  color: var(--aqua);
 background-color: none;
  font-size: 18px;
  border: none;
	font-weight: bold;
	float:left;
	border-bottom: 4px solid var(--grey);
}

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

/* Dropdown Content (Hidden by Default) */
.switch_dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--back);
  width: 360px;
	padding-left: 20px;
	padding-right: 20px;
margin-top:25px;
	padding-top: 15px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
	margin-left: -310px;
	text-align: left;
	
}

/* Links inside the dropdown */
.switch_dropdown-content a {
  color: var(--fontdark);
  padding-right: 12px;
	padding-bottom: 8px;
  text-decoration: none;
  display: block;
	font-weight: bold;
}

/* Change color of dropdown links on hover */
.switch_dropdown-content a:hover {color: var(--light);}

/* Show the dropdown menu on hover */
.switch_dropdown:hover .switch_dropdown-content {display: block; border-bottom: 4px solid var(--light);}

/* Change the background color of the dropdown button when the dropdown content is shown */
.switch_dropdown:hover .switch_dropbtn {border-bottom: 4px solid var(--light); color: var(--light); background-color: var(--back);}
		
		
		
		
		
		
		
		
		
		
		
		