@charset "utf-8";
body {
	background-color:#F5F5F5;
	margin:0px;
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 18px;
}
#topbar {
	position:fixed;
	z-index:900;
	background-color: #FFF;
	left:0;
	right:0;
	top:0;
	height: 60px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}

#topbar_logo {
	padding: 7px;	
}

#topbar_menu-symbol {
	position:fixed;
	z-index:910;
	right:7px;
	top:7px;
	width:45px;
	height:45px;
	opacity:0.7;
}

/*#mainpage {
	margin-top:60px;
	padding:10px;
}*/
#mainmenu {
	background-color: #666;
	top:60px;
	left:0px;
	right:0px;
	bottom:0px;
	padding: 0px:;
	position:fixed;
	z-index:901;
	overflow-y: scroll;

}
.menuitem {
	font-size:20px;
	color:#CCC;
	padding-left:25px;
	padding-top:18px;
	padding-bottom:18px;
	padding-right:20px;
	border-bottom-color:#999;
	border-bottom-style:solid;
	border-bottom-width:1px;	
}

.menuitem_L2 {
	font-size: 20px;
	font-weight: 300;
	color: #000;
	padding-left: 50px;
	padding-top: 18px;
	padding-bottom: 18px;
	padding-right: 20px;
	border-bottom-color: #5F5F5F;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	background-color: #8D8D8D;
}

.loginform_input {
	font-size: 20px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #666;
	background-color: #FBFBFB;
	text-align: center;
	padding: 4px;
	
}

.loginform_submit {
	font-size: 20px;
	border-width: 1px;
	border-style: solid;
	border-color: #666;
	background-color: #FBFBFB;
	text-align: center;
	padding: 4px;
	margin-top:8px;
	
}

.form_input {
	font-size: 20px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	background-color: #FBFBFB;
	text-align: left;
	padding: 4px;
	width:100%;
	
}

.form_submit {
	font-size: 20px;
	border-width: 1px;
	border-style: solid;
	border-color: #666;
	background-color: #FBFBFB;
	text-align: center;
	padding: 4px;
	margin-top:8px;
	width:100%;
	
}

.overskrift-1 {
	font-size: 28px;
	font-weight: 400;

	margin-top:5px;
	margin-bottom:20px;


}
.overskrift-2 {
	font-size: 26px;
	font-weight: 300;

	margin-top:30px;
	margin-bottom:20px;


}

.info-overskrift {
	font-size: 12px;
	font-weight: 300;
	color: #000;
	margin-top:10px;

}
.info-tekst {
	font-size: 24px;
	font-weight: 300;
	margin-bottom:10px;
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:#CCC;

}

.standard_input {
	font-size: 20px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #666;
	background-color: #FBFBFB;
	text-align: center;
	padding: 4px;
	
}

.standard_submit {
	font-size: 20px;
	border-width: 1px;
	border-style: solid;
	border-color: #666;
	background-color: #FBFBFB;
	text-align: center;
	padding: 4px;
	margin-top:8px;
	
}



/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 