@charset "utf-8";

* {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

html {
	height:100%;
	overflow-y:scroll;
	overflow-x:auto;
	background:#000;
}

body {
	font-family: 'PT Sans', sans-serif;
	font-size:16px;
	color:#333;
	margin:0px auto;
	height:100%;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}

html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6, table {
	-webkit-text-size-adjust:none;
}

/* Inputs */
select, textarea, input, button {
	padding:6px;
	font-family: 'PT Sans', sans-serif;
	font-size:100%;
	border:1px solid #aaaaaa;
	background-color:#ffffff;
	-moz-box-shadow:0 0 10px #eee inset;
	overflow:auto;
	margin-bottom:4px;
}

textarea {
	overflow:auto;
	resize:vertical;
	vertical-align:top;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /*Firefox 1-3*/
	-webkit-box-sizing:border-box; /* Safari */
}

input {
	height:auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /*Firefox 1-3*/
	-webkit-box-sizing:border-box; /* Safari */
	display:inline-block;
}

input[type="checkbox"], input[type="radio"] {
	margin-right: 1em !important;
	width:auto;
	height:auto;
	border:none;
	background-color:transparent;
	vertical-align:middle;
	margin-right:10px;
	-ms-transform:scale(1.5);
	transform:scale(1.5);
}

input::-moz-focus-inner {
	border:0;
	padding:0;
	margin:0;
}

select, textarea, input {
	width:75%;
}

button {
	padding: 6px 3em;
	cursor:pointer;
	border:1px solid #0078d7;
	background: #0078d7;
	color: #fff;
}

label {
	float: left;
	width:25%;
	height: 33px;
	display: flex;
	align-items: center;
	vertical-align:top;
	cursor:pointer;
}

/* Other */
p {
	margin: 1em 0;
	width:100%;
	line-height:1.4;
}

strong {
	font-weight:bold;
}

img {
	border:0px;
	-ms-interpolation-mode:bicubic;
	vertical-align:middle;
}

.wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	/*background: url(Manfred-Helber_Microsoft-Berater-Trainer-Slider-1.jpg) no-repeat;
	background-size: cover;
	background-position: center;*/
	background-color: #0078d7;
}

.info {
	margin: 0 auto;
	padding: 2em 2.5em;
	width: 100%;
	max-width: 650px;
	background: rgba(255, 255, 255, 1);
	border-radius: 10px;
	box-shadow: 1px 5px 15px #666;
}

header {
	width: 100%;
	text-align: center;
}

.editable_content {
	float: left;
	margin-top: 1em;
}

.salutation {
	margin: 1em 0;
}

.cr_ipe_checkbox {
	float: left;
}

.alignTop {
	align-items: baseline;
}

.marginTop {
	margin-top: 1em;
}

.marginTop span {
	position: relative;
	top: -2px;
	line-height: 1.4;
	display: flex;
}

.center {
	text-align: center;
}

::-webkit-input-placeholder { color:#9b9b9b; opacity:1 !important; }
::-moz-placeholder { color:#9b9b9b; opacity:1 !important; }	/* Firefox 19+ */
:-moz-placeholder { color:#9b9b9b; opacity:1 !important; }	/* Firefox -18 */
:-ms-input-placeholder { color:#9b9b9b; opacity:1 !important; }

/* extra Styles für Mobile Geräte */
@media screen and (max-width:720px) {
	body {
		font-size:110%;
	}
	
	select, textarea, input[type='text'], button {
		width:100%;
		display:block;
	}
	
	textarea {
		height:100%;
	}
	
	button {
		height:40px;
	}
	
	label {
		margin-bottom: 10px;
		width:100%;
		height: auto;
		display:block;
	}
	
	.info {
		height: 100%;
		border-radius: 0;
	}
}