

.dropdown 
{
	display: none;
}

@media screen and (max-width: 736px) 
{
	.dropdown 
	{
		display: block;
		float: right;
		font-color: black;
		z-index: 1000;
		position: fixed;
		

		right: 30px;
		top: 30px;
	}

.dropdown .dropbtn 
{
	color: #333;
    margin: 0;
	

	height: 60px;
	
	background-color: #bf0000;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
}

.navbar a:hover, .dropdown:hover .dropbtn 
{
    background-color: white;
}

.dropdown-content 
{
    display: none;
    position: absolute;
    background-color: #f9f6f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
	
	border: 0;
	
	left:auto;
    right:0;
    margin-right:-10px;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;

    border: 0;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

