

/* The container <div> - needed to position the dropdown content */
.dropdownbutton .dropdownbtn {
    position: relative;
    display: inline-block;
}

/* Links inside the dropdown */
.dropdownbutton .dropdown-btn-content .item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

/* Change color of dropdown links on hover */
.dropdownbutton .dropdown-btn-content .item:hover {
	background-color: #f1f1f1;
	cursor:pointer;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.dropdownbutton .show {display:block;}

.dropdownbutton .activeItem {
	display: inline-block;
}

.dropdownbutton .hamburger {
	display: inline-block;
    background-size: 20px 20px;
    width: 30px;
    height: 20px;
    margin-bottom: -3px;
    margin-right: 15px;
	background-image: url('/modules/assets/images/dashboard/menu_white.png');
}