/* Dropdown Button */							
.dropbtn {							
    background-color: #fffeff;							
    color: #4d4d4d;							
text-align: right;
float:right;
    padding: 4px 4px 4px 30px;							
margin-top: 1px;							
margin-bottom: 1px;							
    font-size: 14px;							
    border: none;							
border-radius: 4px;							
    cursor: pointer;							
width: 70px;							
height: 22px;							
							
}							
							
/* The container 						
							
<div> - needed to position the dropdown content */							
@media screen and (max-width: 680px) {
.dropdown {right:5px!important;}

}
.dropdown {							
   /* position: relative;	*/
	position:fixed;
	top:25px;
	right:13%;
	background:#fffeff;	
    display: inline-block;							
}							


							
/* Dropdown Content (Hidden by Default) */							
.dropdown-content {							
    display: none;							
   position: absolut;		
padding-top: 30px;
color: #4d4d4d;							
font-size: 14px;							
left: 20px;							
  background-color: #f9f9f9; 		
    min-width: 70px;							
border-radius: 6px;							
    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 16px;							
    text-decoration: none;							
    display: block;							
}							
							
/* Change color of dropdown links on hover */							
.dropdown-content a:hover {background-color: #f2f2f2}							
							
/* 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: #fff2e6;							
}						
