/*<meta conditions="kate-conditions.WIP" />*/

/* Dropdown Button */

.dropbtn
{
	padding: 1rem;
	border: 3px solid transparent;
	border-radius: 5px;
	cursor: pointer;
	text-transform: uppercase;
	background: transparent;
	color: #333;
	padding: 3px 5px 4px 5px;
	font-size: 14px;
	font-family: 'Noto Sans', Roboto, sans-serif;
}

/* Dropdown button on hover & focus */

.dropbtn:hover,
.dropbtn:focus
{
	background-color: #fff;
}

/* The container <div> - needed to position the dropdown content */

.dropdown
{
	position: absolute;
	display: inline-block;
	right: 200px;
}

/* Dropdown Content (Hidden by Default) */

.dropdown-content
{
	display: none;
	position: absolute;
	background-color: #fff;
	min-width: 160px;
	border: 1px solid #DDDDDD;
	z-index: 1000;
	font-size: 14px;
	font-family: 'Noto Sans', Roboto, sans-serif;
}

/* Links inside the dropdown */

.dropdown-content a
{
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-size: 14px;
	font-family: 'Noto Sans', Roboto, sans-serif;
}

/* Change color of dropdown links on hover */

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

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

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */

.show
{
	display: block;
}

@media only screen and (max-width: 600px)
{
	.dropdown
	{
		display: none;
	}
}

