#header, #footer 
{
	width: 100%;
	box-sizing: border-box;
	background-color: beige;
}
#header
{
	border-bottom: 1px solid burlywood;
	padding: 10px;
	padding-bottom: 0px;
	text-align: center;
}
#header #logo
{
	float: left;
}
#header a
{
	color: inherit;
	font-weight: inherit;
}
#header #logo span
{
	font-weight: bold;
	font-size: 22px
}
#header #logo img
{
	height: 22px;
}
#top-right-menu
{
	position: absolute;
	right: 10px;
	top: 10px;
	display: block;
}
.top-right-menu_item 
{
	float: left;
	padding-left: 1em;
	opacity: 0.7;
	height: 45px;
	width: 45px;
}
.top-right-menu_item:hover
{
	opacity: 1;
}
#top-right-menu_user-button
{
	cursor: pointer;
	width: 45px;
}
#header #button_to_make_dropdown_menu_appear
{
	font-size: 40px;
}
#header #button_to_make_dropdown_menu_appear img
{
	height: 30px;
	object-fit: fill;
	width: 40px;
}
.dropdown 
{
	position: relative;
	display: inline-block;
}

.dropdown-content 
{
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	right: 0px;
}
.dropdown:hover .dropdown-content 
{
	display: block;
}
#search-icon 
{
	cursor: pointer;
}
.dropdown-content a 
{
	cursor: pointer;
	color: black;
	text-decoration: none;
	display: block;
	padding: 20px;
}
.dropdown-content a:hover 
{
	background-color: #f1f1f1
}
.dropdown:hover .dropbtn 
{
	background-color: #3e8e41;
}
.search_box
{
	display: flex;
	justify-content: center;
	max-width: 300px;
	margin: 0px auto;
	flex-wrap: nowrap;
}
.search_box input.search_term
{
	font-size: 13px;
}	
.search_box button.search_button
{
	margin-left: 1em;
}
.login-button 
{
	background-color: #007BFF; 
	color: #fff; 
	padding: 10px 20px; 
	font-size: 16px; 
	border: none; 
	border-radius: 5px; 
	cursor: pointer; 
}
.login-button:hover 
{   
	background-color: #0056b3; 
}
#dropdown-box-login-button
{
	display: none;
}
#hidden-search-box-in-the-header
{
	display: none;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 1em;
	padding-bottom: 0em;
	z-index: 100;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
}
#search-icon img
{
	height: 46px;
}
#top-right-menu_item_login-button
{
	float: left;
	padding-left: 1em;
}
@media only screen and (min-width: 700px) 
{
	#search-icon
	{
		display: none;
	}
}
@media only screen and (max-width: 700px) 
{
	#top-right-menu_item_login-button,
	#logo span,
	.search_box button.search_button,
	#header .search_box
	{
		display: none;
	}
	#dropdown-box-login-button,
	#hidden-search-box-in-the-header .search_box
	{
		display: block;
	}
	#header #button_to_make_dropdown_menu_appear
	{
		font-size: 40px;
	}
	#header #logo img
	{
		height: 46px;
	}
	#header
	{
		height: 4em;
	}
}
@media only screen and (max-width: 500px) 
{
	.search_term
	{
		width: 40%;
	}
}

