/* For homepage country select input box */
.country_container
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background: var(--color_shade1); */
	/* opacity: .95; */
	z-index: 1000;
	padding: 20px;
}



.homepage_overlay
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background: var(--main_color);	 */
	z-index: 900;
	background-image: radial-gradient(rgba(79,0,0,0.7), rgba(79,0,0,1));
	/* background-image: radial-gradient(rgba(79,0,0,0.5), rgba(79,0,0,0.8)), url(images/computer_lab2.jpg); */
	background-repeat: no-repeat;
	background-position: center; 
	background-size: cover;
	background-attachment: fixed;

}



.country_container h2
{
	margin-bottom: 20px;
	text-align: center;
}

.country_container p
{
	margin-bottom: 20px;
	text-align: center;
}

.country_form_container
{
	flex-basis: 500px;
	padding: 20px;
	border-radius: 20px;
	background: var(--color_shade1);
	border: 1px solid var(--color_shade4);
}

.country_form_container select
{
	width: 100%;
	font-size: 16px;
	padding: 10px 15px;
}


.homepage_button
{
	padding: 10px 15px;
	background: var(--highlight_color);
	color: var(--color_shade1);
	border-radius: 5px;
	margin-top: 20px;
	border: 2px solid var(--highlight_color);
	font-size: 16px;
	display: block;
}

.homepage_button:hover
{
	cursor: pointer;
}


.homepage_button_container
{
	display: flex;
	justify-content: center;
}

.homepage_button:focus
{
	border: 2px solid var(--highlight_color2);
}

.homepage_logo
{
	height: 70px;
	display:flex;
	justify-content: center;
	margin-bottom: 20px;
}

.homepage_logo img
{
	object-fit: contain;
}