@charset "utf-8";
/* CSS Document 
.dropdown {
  float: left;
  width: 100%;
  overflow: hidden;
}
.dropdown a, .dropbtn a {
	color: white;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0px;
}
.dropbtn {
	display: flex;
	height: auto;
	width: 100%;
}

.dropmenu {
  display: none;
  position: absolute;
	padding-top:5px;
  background-color: #f9f9f9;
  min-width: 19%;
  box-shadow: 0px 15px 25px 15px rgba(0,0,0,0.5);
}
.dropmenu li {
  float: none;
  color: black;
  padding: 5px 20px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropmenu li:hover {
  background-color: #ddd;
}
.dropdown:hover .dropbtn {
    background-color: #434242;	
}
.dropdown:hover .dropmenu {
  display: block;
}
.dropdown:hover i, .dropdown:hover #title  {
    color: #D1DFED;
}

#dropdown {
	float: left;
	width: 18%;
	margin: 1px;
	padding: 2px 5px;
	background-color: #D1DFED;
	border: 1px solid #1F232F;
}

#dropdown:hover {
	background-color: #6791B3;
	color:White;
	font-weight: 800;
}
*/

/* Dropdown Button */
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 5px;
  font-size: 15px;
  border: none;
}

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

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
}

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

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

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}

/*================================================*/
@media screen and (max-width:600px)  {

.dropmenu {
	display: hidden;
	position: relative;
	padding-top:5px;
	left: 10px;
	background-color: #f9f9f9;
}
.dropmenu li {
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  text-align: left;
}

	
}