/* Dropdown Button */
.dropbtn {
	border: 0px;
	width: 30px;
	height: 23px;
	outline: none;
	cursor: pointer;
	background: url(../images/menu_icon.png) 0 0 no-repeat;
	background-size: 100%;
}
/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: relative;
	display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	float: left;
	left: -200px;
	display: none;
	min-width: 210px;
	text-align: left;
	padding: 0px 10px;
	position: absolute;
	background: rgba(0,0,0,0.3);
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content h6 {
	margin-top: 5%;
}
/* Links inside the dropdown */
.dropdown-content a {
	color: #fff;
	display: block;
	margin-bottom: 5%;
	text-decoration: none;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	color: #8ec640;
}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
	display: block;
}
@media only screen and (min-width:960px) and (max-width:1389px) {
}
@media only screen and (min-width:768px) and (max-width:990px) {
.dropdown-content {
	min-width: 205px;
}
.dropbtn {
	width: 25px;
	height: 19px;
}
}
@media only screen and (min-device-width:768px) and (max-device-width:1024px) {
}
@media all and (max-width:768px) {
.dropdown-content {
	min-width: 200px;
}
.dropbtn {
	width: 20px;
	height: 15px;
}
}
@media only screen and (max-width:767px) {
.dropdown-content {
	min-width: 198px;
	background: #000;
}
.dropbtn {
	width: 16px;
	height: 12px;
}
}
@media only screen and (min-width:480px) and (max-width:767px) {
.dropdown-content {
	min-width: 198px;
	background: #000;
}
.dropbtn {
	width: 18px;
	height: 14px;
}
}
