
html {
	height: 100%;
	width: 100%;				
}

body {
	background-image: url('../media/background.jpg');
	background-position: 50% 50%;
	background-repeat: no-repeat;				
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
	width: 100%;
}

.overlay {
	background-color: rgba(255, 255, 255, 0.9);
	bottom: 0;
	box-shadow: 0 0 400px rgba(128, 128, 128, 0.3) inset, 0 0 200px rgba(0, 0, 0, 0.1) inset;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 2;
}

.content {
	margin: 0 auto 0 auto;				
	max-width: 24em;				
	position: relative;
	z-index: 3;					
}

.header {
	left: 0;
	margin: 0 auto 0 auto;				
	padding: 2rem;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 3;
}

.header img { 
	display: inline-block;
	max-width: 20em;
}

.container {
	outline: 1px solid #0f0;
}

.country-selector {
	background-color: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(255, 255, 255, 1);
	border-radius: 0.25rem;
	box-shadow: 0 4px 32px rgba(50, 50, 100, 0.2), 0 2px 2px rgba(0, 0, 0, 0.2);
	left: 50%;
	margin: 0 0 2rem -10rem;
	max-width: 20em;
	overflow: hidden;				
	position: relative;
	top: 6rem;
	z-index: 4;
}

@media only screen and (min-height: 500px) { 
	.country-selector {
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
} 

.country-selector h1 {
	background-color: rgba(0, 0, 0, 0.1);
	box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.05) inset;
	color: rgba(0, 0, 0, 0.7);
	font-size: 1.125rem;
	margin: 0;
	padding: 0.75rem;
	text-align: center;
	text-transform: uppercase;
}

.country-selector a:link,
.country-selector a:visited {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.7);
	font-family: 'PFDinTextPro-Medium', Arial, Helvetica, sans-serif;
	font-size: 0.875rem;
	display: block;
	line-height: 1.5rem;
	padding: 0.5rem 1rem 0.5rem 3.125rem;
	position: relative;
}

.country-selector a:hover {
	background-color: rgba(0, 0, 0, 0.04);
}

.country-selector a:active {
	background-color: #d9f5ff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
}

.country-selector li:last-child a {
	border-bottom: 0;
}

.country-selector .flag {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2rem auto;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
	display: block;
	height: 1rem;
	left: 1.0rem;
	position: absolute;
	top: 0.75rem;
	width: 1.5rem;
}

.country-selector .flag.se { background-image: url('../media/flag_se.svg'); }
.country-selector .flag.no { background-image: url('../media/flag_no.svg'); }
.country-selector .flag.fi { background-image: url('../media/flag_fi.svg'); }
.country-selector .flag.gb { background-image: url('../media/flag_gb.svg'); }
.country-selector .flag.de { background-image: url('../media/flag_de.svg'); }
.country-selector .flag.ee { background-image: url('../media/flag_ee.svg'); }
.country-selector .flag.ch { background-image: url('../media/flag_ch.svg'); }

