@charset "utf-8";
:root {
	--primary: rgba(227,6,19,1); 
	--secondary: rgba(0,128,200,1);
}
/* montserrat-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/montserrat-v31-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300;
  src: url('../webfonts/montserrat-v31-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('../webfonts/montserrat-v31-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/montserrat-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  src: url('../webfonts/montserrat-v31-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('../webfonts/montserrat-v31-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 800;
  src: url('../webfonts/montserrat-v31-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

*{
	margin: 0px;
	padding: 0px;
	 -webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}
html {
	scroll-behavior: smooth;
}
.error_box, .success_box{
	padding: 40px;
	margin: 40px;
	border-bottom-left-radius: 50px;
}
.error_box{
	background: #870002;
}
.success_box{
	background: #008d31;
}
.error_box p, .success_box p{
	color: #FFF !important;
}

#header_logo{
	position: absolute;
	z-index: 999;
	background: rgba(255,255,255,0.5);
	width: 100%;
}
.main_wrap{
	padding-bottom: 60px;
	padding-top: 0px;
}
.box{
	width: 100%;
	padding: 30px 45px 35px 45px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	background: rgba(0,0,0,0.05);
}

/*Header*/
header{
	text-align: center;
	margin-bottom: 25px;
}
#logo{
	width: 100%;
	max-width: 300px;
	margin-bottom: 20px;
	margin-top: 20px;
}

/*Boni*/
#benefits{
	background: var(--primary);
	padding-bottom: 60px;
	padding-top: 60px;
}
#benefits p, #benefits i{
	color: #FFF;
}
#benefits i{
	font-size: 80px;
	margin-bottom: 25px;
}

/*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;
}
.label_wrap {
	margin-bottom:20px;
	display: block;
}
.label_wrap p {
	width: 100%;
	font-weight: 700;
	background: var(--primary);
	font-size: 20px;
	width: max-content;
	display: block;
	padding: 3px 15px;;
	color: rgba(255,255,255,1);
}
.label_wrap p.small_text input{
	width: auto;
	display: inline-block;
	margin-bottom: 0px;
}
.label_wrap p.small_text{
	font-size: 13px;
	line-height: 120%;
	font-weight: 300;
	width: auto;
	color: rgba(0,0,0,0.8);
	background: none;
	padding: 0;
}
.label_wrap input{
	width: 100%;
	padding: 10px;
	display: block;
	font-weight: 300;
	color: rgba(0,0,0,0.6);
	font-style: italic;
	border: none;
	background: rgba(256,256,256,0);
	border-bottom: 2px dotted rgba(0,0,0,0.2);
}
/* 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(0,0,0,0.05);
	margin: 10px;
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
	min-height: 180px;
	width: 30%;
	max-width: 350px;
	color: #FFF;
	text-align: center;
	transition: 0.4s;
	opacity: 0.8;
	line-height: 110%;
}
.radio-toolbar label:hover {
	background-color: rgba(0,0,0,0.3);
	cursor: pointer;
	transform: scale(0.9);
	opacity: 1;
}
.radio-toolbar label span{
	font-weight: 600;
	color: rgba(0,0,0,0.5);
}
.radio-toolbar input[type="radio"]:focus + label {
}
.radio-toolbar input[type="radio"]:checked + label {
    background-color: var(--primary);
	opacity: 1;
}
.radio-toolbar input[type="radio"]:checked + label span{
	color: #FFF;
}
.icon_button {
  display: block !important;
  font-size: 65px;
  margin-bottom: 10px;
  opacity: 0.8;
}
input.invalid {
  background: rgba(250,20,30,0.4);
  color: rgb(250, 20, 30);
}
input.button{
	padding: 5px 25px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1rem;
	color: var(--secondary);
}
input.button:hover{
	cursor: pointer;
}

/*Flex Layout*/
.flex_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
.flex_normal{
	display: flex;
}
.flex_wrap.no_wrap{
	flex-wrap: nowrap;
}
.position_center{
	display: flex;
	align-items: center;
	height: 100%;
	flex-wrap: wrap;
}
.align_center{
	align-items: center;
}
.wrap_reverse{
	flex-wrap: wrap-reverse;	
}
input.hidden{
	display: none;
}

@media(max-width:1500px){
	.wrapper{
		width: 90%;
	}
}



@media(max-width:1024px){
	.box{
		padding: 30px 20px 20px 20px;
	}
	#logo{
		max-width: 300px;
	}
}

@media(max-width:756px){
	.wrapper, .wrapper_small{
		width: 95%;
	}
	.main_wrap {
	  padding-bottom: 30px;
	  padding-top: 0px;
	}
	.box{
		margin-top: 40px;
	}
}

@media(max-width:656px){
	.radio-toolbar label{
		font-size: 14px;
	}
	#tab_navi{
		margin-top: 20px;
	}
	.send_button{
		margin-bottom: 10px;
	}
}

@media(max-width:556px){
	.radio-toolbar label{
		width:100%;
	}
	.einleitung{
		font-size: 20px;
	}
}

