@charset "utf-8";
/* CSS Document */
* {
	padding: 0px;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	word-break: break-word;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6, .head1, .head2, .head3, .head4, .head5, .head6 {
	color: #FFF;
	line-height: 130%;
	letter-spacing: 0.02em;
	font-weight: 800;	
}
h1, .head1{
	font-size: 45px;
	margin-bottom: 10px;
	color: #FFF;
	text-shadow: 1px 1px 4px #111;
}
h2, .head2{
	font-size: 35px;
	margin-bottom: 15px;
}
h3, .head3{
	font-size: 33px;
	margin-bottom: 10px;
}
h4, .head4{
	font-size: 28px;
	margin-bottom: 15px;
}
h5, .head5{
	font-size: 22px;
	margin-bottom: 10px;
}
h6, .head6{
	font-size: 18px;
}
p, table, tr, td, div, ul, li, ol{
	color: #111;
	font-size: 17px;
	line-height: 27px;
}
b, strong{
	font-weight: 600;
}
a:link, a:visited {
	color: #FFF;
	text-decoration: underline;
}
a:active, a:hover {
}
.wrapper {
	width: 96%;
    padding: 0% 2%;
    margin: 0 auto;
    max-width: 1100px;
}
.center{
	text-align: center;
}
.uppercase{
	text-transform: uppercase;
}
.white_text{
	color: #FFF;
}
.error_box, .success_box{
	padding: 20px;
	margin: 15px;
}
.error_box{
	background: #870002;
}
.success_box{
	background: #0080c8;
}
.flex_wrap{
	display: flex;
	justify-content: space-between;
}
.col50{
	width: 50%;
}
.col33{
	width: 33.333%;
}
.col25{
	width: 25%;
}
.inner_wrap{
	padding: 30px;
}

.main_wrap{
	background:url("../img/verlauf_bewerbung.jpg") top center repeat-y;
	background-size:cover;
	padding-bottom: 80px;
	min-height: 80vh;
}
.box{
	width: 100%;
	padding: 65px 25px 30px 25px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	background: rgba(0,0,0,0.3);
}

/*Header*/
header{
  text-align: center;
  padding: 20px 0px;
  background: rgba(256,256,256,1);
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -40px;
	position: relative;
	z-index: 999;
}
.logo{
	width: 100%;
	max-width: 250px;
	margin: 0;
}

/*Schulung Tabs*/
.frage_inner{
	flex-flow: column !important;
	background: rgba(256,256,256,0.5);
	padding: 30px;
	margin: 40px 0px;
}
input.invalid {
	background-color: #ffdddd;
}
.tab {
	display: none;
}
.step {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #666;
	border: none;
	border-radius: 50%;
	display: inline-block;
	opacity: 0.7;
}
.step.active {
	opacity: 1;
}
.step.finish {
	background-color: #0080c8;;
} 
.send_button{
	background: #c7170e;
	border: none;
	color: #FFF;
	font-weight: 600;
	padding: 15px 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	width: 100%;
	max-width: 400px;
	font-size: 22px;
	margin: 30px auto;
	transition: 0.5s;
}
.send_button:hover{
	background: #0080c8;
	transform: scale(1.1);
	cursor: pointer;
}
#prevBtn.send_button{
	background: #999;
}
.label_wrap {
	margin-bottom:20px;
	display: block;
}
.label_wrap p {
	width: 100%;
	font-weight: 600;
	color: #FFF;
	font-size: 20px;
	letter-spacing: 0.05em;
}
.label_wrap p.small_text input{
	width: auto;
	display: inline-block;
	margin-bottom: 0px;
}
.label_wrap p.small_text{
	font-size: 12px;
	line-height: 120%;
	font-weight: 300;
	width: auto;
}
.label_wrap input{
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 10px;
	display: block;
	font-weight: 300;
	color: #111;
	border: none;
	background: rgba(256,256,256,0.5);
}
.last-input{
	margin-bottom: 20px;
}

/* Radio Styles*/
.radio-toolbar {
	margin: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
	margin-top: 30px;
}

.radio-toolbar input[type="radio"] {
	opacity: 0;
	position: absolute;
	width: 0;
}

.radio-toolbar label {
    display: flex;
	justify-content: center;
	align-items: center;
    background-color: rgba(256,256,256,0.5);
	margin: 10px;
    padding: 10px 15px;
    font-family: sans-serif, Arial;
    font-size: 18px;
	min-height: 215px;
	min-width: 215px;
	max-width: 215px;
	color: #FFF;
	text-align: center;
	font-weight: 600;
	transition: 0.4s;
	line-height: 110%;
}
.radio-toolbar label:hover {
  background-color: rgba(256,256,256,0.7);
	cursor: pointer;
	transform: scale(0.9);
	opacity: 1;
}
.radio-toolbar input[type="radio"]:focus + label {
}
.radio-toolbar input[type="radio"]:checked + label {
    background-color: #c7170e;
	opacity: 1;
}
.radio-toolbar input[type="radio"]:checked + label span {
  color: #FFF;
}
.icon_button {
  display: block !important;
  font-size: 60px;
  margin-bottom: 15px;
  opacity: 0.8;
}
input.invalid {
  background: rgba(250,20,30,0.4);
  color: rgb(250, 20, 30);
}

span.textbox {
  font-size: 33px;
  color: #fff;
  font-weight: 800;
  padding: 5px 10px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
span.textbox.blue {
  background: #0080c8;
}
span.textbox.red {
  background: #c7170e;
}

@media(max-width:1024px){
	h1, .head1{
		font-size: 35px;
		margin-bottom: 10px;
	}
	h2, .head2{
		font-size: 30px;
		margin-bottom: 10px;
	}
	h3, .head3{
		font-size: 25px;
	}
	h4, .head4{
		font-size: 22px;
		margin-bottom: 10px;
	}
	h5, .head5{
		font-size: 18px;
		margin-bottom: 5px;
	}
	h6, .head6{
		font-size: 16px;
	}
	.box{
		padding: 65px 5px 10px 5px;
	}
	#logo{
		max-width: 200px;
	}
	.flex_wrap{
		flex-wrap: wrap;	
	}
	.col33, .col25{
		width:50%;
	}
	.radio-toolbar{
		margin: 10px 0px;
	}
}

@media(max-width:656px){
	header{
		max-width: none;
	}
	.col50, .col33, .col25{
		width:100%;
	}
	.radio-toolbar label{

	}
	.radio-toolbar{
		flex-flow: column;	
	}
	#tab_navi{
		margin-top: 20px;
	}
	.send_button{
		margin-bottom: 10px;
	}
}
@media(max-width:556px){
	
}