/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: absolute;
	right:5px;
    display: inline-block;
	background-color: #2d5871;
	text-align: center;
	height:100%;
}

.dropbtn {
    cursor: pointer;
	position: absolute;
	background-color: #f1f1f1;
	top: 7px;
	right: 0;
	width: 40px;
	text-align: center;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
	top: 7px;
	right: 0;
    background-color: orange;
    width: 40px;
	text-align: center;
}

.dropbtn::after {
    content: "";
    height: 16px;
    position: absolute;
    right: 0;
    top: 7px;
    width: 16px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 0px 0 0px 0px;
    text-decoration: none;
    display: block;
}

/* 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 */