/* Dropdown Button */
.mask_dropbtn {
  
  color: var(--light);
 background-color: var(--back);
  font-size: 21px;
  border: none;
	float:left;
	
}

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

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

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

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

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

/* Change the background color of the dropdown button when the dropdown content is shown */
.mask_dropdown:hover .mask_dropbtn { color: var(--light); background-color: var(--back);}





		
		
		
		
		
		
		
		
		
		