/* ===== GENERELLES =====*/
* {
	padding: 0;
	margin: 0;
}

html {
	font-family: 'Roboto', sans-serif;
	background-image: url(SMG_Background.jpg);
	background-position: left top;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

div.contentwrapper {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1200px;
	padding: 20px 40px 40px;
	min-height: calc(100vh - 74px);
}

h1 {
	margin-bottom: 20px;
}

h2 {
	margin-bottom: 30px;
	font-size: 1.9rem;
	font-weight: 500;
}

hr {
	margin: 15px 0 30px 0;
	border-top: 1px solid;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-color: #666666;
}

/* ===== HEADER =====*/
div.header {
	margin-bottom: 50px;
}

img {
  height: auto;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  border: 0;
}

img.SMG-Logo {
	width: 200px;
}

/* ===== FOOTER =====*/

footer {
	height: 74px;
	background-color: #434343;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1200px;
	padding: 0px 40px;
}

p.footertext {
	font-size: 1rem;
	color: #FFFFFF;
	line-height: 74px;
}


/* ===== FORM =====*/

p.bodytext {
	margin-bottom: 15px;
	line-height: 150%;
	color: #434343;
	font-size: 1rem;
}

p.subhead {
	color: #434343;
	font-size: 1rem;
	font-weight: bold;
	margin: 25px 0 5px 0;
}

p#ttend {
	margin-bottom: 30px;
}

p.form {
	font-size: 20px;
	margin-bottom: 5px;
}

form {
	display: flex;
	flex-direction: column;
}

div.row {
	width: 100%;
	float: left;
	margin-left: auto;
	margin-right: auto;
}

div.left {
	width: calc(50% - 10px);
	float: left;
	margin-bottom: 30px;
}

div.right {
	width: calc(50% - 10px);
	float: left;
	margin-left: 20px;
	margin-bottom: 30px;
}

input, select{
	-webkit-appearance:none;
	-moz-appearance:none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

input.formtext, select.formselect{
	box-sizing: border-box;
	border: 1px solid;
	border-color: #666666;
	padding-left: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 12px;
	font-size: 20px;
	font-weight: 300;
	background-color: #FFFFFF;
	width: 100%;
}

select {
	background-image: url(Select_Arrow.png);
	background-position: right;
	background-repeat: no-repeat;
}

/*select:focus {
	background-image: url(Select_Arrow_2.png);
	background-position: right;
	background-repeat: no-repeat;
}*/

div#bl, div#oe, div#hb, div#hi, div#bl-a, div#oe-a, div#hb-a, div#hi-a {
	display: none;
}

select#sel-bl option:empty, select#sel-hb option:empty, select#sel-oe option:empty, select#sel-hi option:empty, select#sel-bl-a option:empty, select#sel-hb-a option:empty, select#sel-oe-a option:empty, select#sel-hi-a option:empty {
  display:none;
}

div.buttonwrapper {
	display: flex;
	justify-content: center;
	margin: 30px 0px;
	background-color: cmyk(0, 100, 50, 0);
}

input.btn-primary {	
	margin: 0px 10px;
	cursor: pointer;
	border: 0;
	padding-left: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 30px;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 300;
	background-image: linear-gradient(to right bottom, #3794d1, #338cc3, #3084b5, #2e7ca7, #2d7499, #326c97, #3a6393, #445a8e, #644985, #7f336c, #8d1a48, #8a121d);
}

input.btn-primary:hover {
	background-image: linear-gradient(to left top, #3794d1, #338cc3, #3084b5, #2e7ca7, #2d7499, #326c97, #3a6393, #445a8e, #644985, #7f336c, #8d1a48, #8a121d);
}

input#blocked {
	margin: 0px 10px;
	cursor: pointer;
	border: 0;
	padding-left: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 30px;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 300;
	display: block;
	background-color: #DDDDDD;
}

input#blocked:hover {
	cursor: not-allowed;
}

/* ===== SWITCH =====*/

input.formcheck {
	margin: 0px 5px 0px 5px;
}

input[type="checkbox"] + label {
  	position: relative;
  	display: inline-flex;
  	cursor: pointer;
  	font-size: 16px;
  	line-height: 30px;
	vertical-align: middle;
}

input[type="checkbox"] + label:before {
  	width: 60px;
  	height: 30px;
  	border-radius: 30px;
  	border: 1px solid #aaa;
  	background-color: #EEE;
 	content: "";
  	margin-right: 15px;
  	transition: background-color 0.3s linear;
}

input[type="checkbox"] + label:after {
  	width: 30px;
  	height: 30px;
	border: 1px solid #aaa;
  	border-radius: 30px;
  	background-color: #fff;
  	content: "";
  	transition: margin 0.1s linear;
  	position: absolute;
  	left: 0px;
  	top: 0px;
}

input[type="checkbox"]:checked + label:before {
  	background-color: #2d6987;
}

input[type="checkbox"]:checked + label:after {
  	margin: 0 0 0 30px;
}

/* ===== MOBILE =====*/

@media screen and (max-width: 800px){
		div.left {
		width: 100%;
		float: left;
		text-align: left;

	}
	div.right {
		width: 100%;
		float: left;
		margin-left: 0px;
	}
	input.formtext, select.formselect{
		width: 100%;
	}
}