/* Dropdown Button */
.dropbtn {
	background-color: transparent;
	color: white;
	padding: 5px 0;
	border: none;
	margin-right:20px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
}
.dropdown i{
	margin-right: 2px;
    color: #FACA00;
    font-size: 15px
}

/* 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: #35353A;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: #fff;
    padding: 5px 20px;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {color: #FACA00;}

/* 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 {color: #FACA00;}