/* Dropdown Button */
.dropbtn {
 height: 100%;
 cursor: pointer;
 margin-left: 0px;
 height: 29px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
 float:left;
 background-color: inherit;
 margin: 2px 0px 0px 4px;
 display: inline-block;
 z-index: 4;
 height: 16px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
 display: none;
 position: absolute;
 background-color: #fcfcfc;
 z-index: 5;
 border: 2px solid black;
 padding-left: 6px;
 margin-top: -4px;
}

/* Menu item holder */
.item {
 border-bottom: 1px solid black;
 margin-right:4px;
 padding: 3px 2px;
}

/* Links inside the dropdown */
.item a {
 color: black;
 text-decoration: none;
 font-size: 1.2em;
 width:100%;
}

.preLogout {
 border-bottom: 8px solid black;
}

.logoutOption {
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
 background-color: #F1F1F1;
}

/* 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: #FFFFFF;
}

/*=====================================================*/
@media screen and (min-width: 1024px) {
 /* start of desktop styles */
}

/*=====================================================*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
 /* start of large tablet styles */
}

/*=====================================================*/
@media screen and (min-width:481px) and (max-width: 768px) {
 /* start of medium tablet styles */

}

/*=====================================================*/
@media screen and (min-width: 320px) and (max-width: 667px) {
 /* start of phone styles */
}

