﻿.mobile-container {
				  max-width: 100%;
				  margin: auto;
				  background-color:#F5F5F5;	
				  color: white;
				  border-radius: 10px;
				}
				
				.topnav {
				  overflow: hidden;
				  background-color: #333;
				  position: relative;
    			
				}
				
				.topnav #myLinks {
				  display: none;
				}
				
				.topnav a {
				  color: white;
				  padding: 14px 16px;
				  text-decoration: none;
				  font-size: 17px;
				  display: block;
				}
				
				.topnav a.icon {
				  background: black;
				  display: block;
				  position: absolute;
				  right: 0;
				  top: 0;
				}
				
				.topnav a:hover {
				  background-color:#ddd;
				  color: black;
				}
				
				.active {
				  background-color: #261;
				  color: white;
				}
				
.dropbtn {
   background-color: #261;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align:left;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 }

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}