:root {
	--base-box-width:100vw;
	--animation-width:100vw;
	
	--font-size-h1:3rem;
	--font-size-h2:3rem;
	--font-size-h3:2rem;
}

@media screen and (max-width: 769px) {
	:root {
		--base-box-width:90vw;
		--animation-width:90vw;
		
		--font-size-h1:2rem;
		--font-size-h2:2rem;
		--font-size-h3:1.5rem;
	}
}

@font-face {
  font-family: 'ApexNewBook';
  src: url(/css/fonts/ApexNewBook.woff2) format("woff2");
  font-weight: 300;
}

@font-face {
  font-family: 'ApexNewMedium';
  src: url(/css/fonts/ApexNewMedium.woff2) format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: 'MinionProRegular';
  src: url(/css/fonts/MinionProRegular.woff2) format("woff2");
  font-weight: normal;
}

@font-face {
  font-family: 'MyriadProRegular';
  src: url(/css/fonts/MyriadProRegular.woff2) format("woff2");
  font-weight: normal;
}

@font-face {
  font-family: 'ApexNew-Bold';
  font-style: normal;
  font-weight: 700;
  src: url("/css/fonts/ApexNew-Bold.woff2") format("woff2");
}

html, body {
  height: 100vh;
  width: 100vw;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
	background: #000000;
	color: #ffffff;
	font-family: "ApexNewBook", "Segoe UI", sans-serif;
	font-size: 100%;
	line-height: 1.3;
	margin: 0;
	padding: 0;
	overflow: hidden;
	
	@media screen and (max-width: 769px) {

	}
}

.printCounter {
	display:none !important;
}

progress::-moz-progress-bar { background: #d91d4b; }
progress::-webkit-progress-value { background: #d91d4b; }
progress { color: #d91d4b; }

h1 {
  font-family: "ApexNew-Bold", "Segoe UI", sans-serif;
  font-size: var(--font-size-h1);
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  font-family: "ApexNew-Bold", "Segoe UI", sans-serif;
  font-size: var(--font-size-h2);
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  font-family: "ApexNew-Bold", "Segoe UI", sans-serif;
  font-size: var(--font-size-h3);
  margin-top: 0;
  margin-bottom: 4rem;
}

p {
  margin-top: 0;
  font-family: "ApexNewMedium", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  max-width: 79ch;
  text-align: center;
}

.question p {
  font-size: 2.4rem;
  
  @media screen and (max-width: 769px) {
		font-size: 1.5rem;
	}
}

a {
  color: #ffffff;
  text-decoration: none;
}

.lang-de .en,
.lang-en .de {
  display: none;
}

.button {
	background: #000000;
	color: #ffffff;
	display: inline-block;
	padding: 1em 2em;
	font-family: "ApexNew-Bold", "Segoe UI", sans-serif;
	font-size: 2rem;
	letter-spacing: 1px;
	line-height: 1.8rem;
	min-width: 160px; max-width:90vw;
	text-align: center;
	text-transform: uppercase;
	border: 2px solid currentColor;
	outline: 2px solid currentColor;
	outline-offset: -10px;
	cursor: pointer;
		
	@media screen and (max-width: 769px) {
		font-size:1.7rem !important;
		padding: 1em;
	}
}


.dash {
  width: 100px;
  height: 5px;
  background-color: #000;
  margin: 14px 0;
  display: inline-block;
}

b {
  text-decoration: underline;
  font-weight: normal;
}

.f-small {
  font-size: 0.75rem;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.t-center {
  text-align: center;
}

.hidden {
  display: none;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.pa-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.age-switch .flex {
	flex-wrap:wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.f-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ai-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ai-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.jc-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jc-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jc-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.pi-center {
  place-items: center;
}

.page-wrap {
	height: 100%;
	width: 100%;
	-ms-grid-columns: 1fr;
	  grid-template-columns: 1fr;
	-ms-grid-rows: 1fr auto;
	  grid-template-rows: 1fr auto;
	place-items: center;

	
}

.error .page-wrap,
.age .page-wrap,
.question .page-wrap {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url(/img/bg-tapete-comp.svg) no-repeat center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/img/bg-tapete-comp.svg) no-repeat center;
  background-size: cover;
}

body {
		overflow-x:hidden;
		overflow-y:auto;
	}

@media screen and (max-width: 769px) {
	
	.page-wrap.grid {
		position:relative;
		display:block;
	}
	
	.page-wrap.grid header {
		position:fixed;
		right:0; bottom:0; left:0;
		z-index:2;
		width:auto;
	}
}

footer {
  background-color: #000000;
  padding: 0.5em;
}

header {
	position:relative;
  background-color: #4a4a4a;
  padding: 0.5em;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  min-height: 70px;
  width: 100vw;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

header img {
  -ms-grid-column-align: start;
      justify-self: start;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

header .logo-shbg {
  -ms-grid-column-align: end;
  justify-self: end;
  max-height: 45px;
}

@media screen and (max-width: 769px) {
	
	header h1 {
		position:absolute;
		right:0.5em;
	}
	
	header .logo-shbg {
		display:none;
	}
}
@media screen and (max-width: 555px) {
	
	header h1 {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 468px) {
	
	header h1 {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 425px) {
	
	header h1 {
		font-size: 1rem;
		text-align:right;
	}
	
	header h1 span:after {
		content:" ";
		display:block;
	}
}

.intro .seperator.reaction,
.age .seperator.reaction,
.intro .close {
  display: none;
}

.intro main,
.error main {
	background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url(/img/bg-tapete-comp.svg) no-repeat center;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/img/bg-tapete-comp.svg) no-repeat center;
	background-size: cover;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr;
	  grid-template-columns: 1fr;
	-ms-grid-rows: 1fr;
	  grid-template-rows: 1fr;
	place-items: center;
	text-align: center;
	width: 100vw;
	height: 100%;
	overflow: hidden;
	
	@media screen and (max-width: 769px) {
		padding:70px 5vw;
	}
	
	@media screen and (max-height: 600px) {
		grid-template-columns: 50% 50%;
	}

}

.intro main .introAnimInner,
.error main .introAnimInner {
  height: 100%;
  width:  var(--base-box-width);
  
  @media screen and (max-height: 600px) {
		
  }
}

.intro main .introAnimInner h2,
.error main .introAnimInner h2 {
	width:  var(--base-box-width);
	height: 100%; /*80vh;*/
	top: 0;
	font-size: 3rem;
	
	@media screen and (max-height: 600px) {
		
	}
}

.intro main .introAnimInner h2 i,
.error main .introAnimInner h2 i {
	font-size: 2.8rem;
	font-style: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	
	@media screen and (max-width: 769px) {
		font-size: 1.4rem;
	}
	
	@media screen and (max-height: 600px) {
		font-size:1.4rem;
	}
	
	@media screen and (min-width: 2000px) {
		font-size: 4rem;
	}
}


/* MdA Intro Textanimation  */
.introAnim {
	text-align: center;
	color: #000000;

	@media screen and (min-height: 601px) {
		position: absolute;
		top: 0;
		left: 50%;
		z-index: 1;
		-webkit-transform: translateX(-50%);
			  transform: translateX(-50%);
		width: var(--animation-width);
		height: 70%; /*calc(100% - 70px);*/
		overflow: hidden;
	}

	@media screen and (max-height: 600px) {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-column: 1/2;
	}
}

.introAnim h2 span i,
.introAnim h2 span em {
  display: block;
  font-style: normal;
}

.introAnim h2 span {
  font-family: "ApexNew-Bold", "Segoe UI", sans-serif;
  opacity: 0;
  height: 95%; /*70%;*/
  width:  var(--animation-width);
  position: absolute;
  top:5%;  /*70px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
		  
	@media screen and (max-height: 600px) {
		top:10%;
		height: 70%;
	}
}

.error .introAnim h2 span {
	opacity:1;
}

.introAnim h2 span.en {
  display: none;
}

.smaller {
  font-size: 5vw;
}

.intro .introAnim h2 span {
  -webkit-animation: introText 8s ease-in-out infinite;
          animation: introText 8s ease-in-out infinite;
}

.intro .introAnim h2:nth-child(1) span {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.intro .introAnim h2:nth-child(2) span {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.introAnim h2:nth-child(1) span {
  background: url(/img/animation/rombus-yellow-blank.svg) no-repeat center;
  background-size: contain;
}

.introAnim h2:nth-child(2) span {
  background: url(/img/animation/rombus-yellow-blank.svg) no-repeat center;
  background-size: contain;
}

@-webkit-keyframes introText {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  3% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  15% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes introText {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  3% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  15% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.los-gehts {
	@media screen and (min-height: 601px) {
		position: absolute;
		top: 75%;
		z-index: 99;
		width: 100vw;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		  -ms-flex-pack: center;
		justify-content: center;
	}
			  
	@media screen and (max-height: 600px) {
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-column: 2/3;
	}
}

.error .los-gehts {
	@media screen and (min-height: 601px) {
		font-size:2rem;
		z-index: 2;
		
		a {
			font-size:1.5rem;
			text-decoration:underline;
		}
	}
			  
	@media screen and (max-height: 600px) {
		font-size:2rem;
		
		a {
			font-size:1.5rem;
			text-decoration:underline;
		}
	}
}

.los-gehts a {
	margin:auto;
  font-size: 3rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
		  
@media screen and (max-height: 899px) {
	.los-gehts {
		top: 71%;
	}
	.los-gehts a.button {
	  padding: .8em 1.8em;
	}
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  80% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  82%, 84% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  86%, 90%, 94%, 98% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  88%, 92%, 96% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  80% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  82%, 84% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  86%, 90%, 94%, 98% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  88%, 92%, 96% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
          animation-name: tada;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.choose-lang {
  width: var(--base-box-width);
  height: 100%;
  grid-column:1/3;
}

.choose-lang .choose-lang-inner {
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.choose-lang .choose-lang-inner h2 {
  margin-bottom: 0;
}

.choose-lang .choose-lang-inner h3 {
	opacity: .6;
	margin-bottom:1.2rem;
}

.choose-lang .choose-lang-inner p.de {
	font-size:1.6rem;
	margin-bottom:0;
}

.choose-lang .choose-lang-inner p.en {
	opacity: .6;
	font-size:1.4rem;
	margin-bottom:3rem;
	
	@media screen and (max-height: 600px) {
		margin-bottom:0;
	}
}

.choose-lang .choose-lang-inner div {
  display: inline-block;
}

.choose-lang .choose-lang-inner div a {
  margin: 1em 1em 0;
}

.age-switch h3 {
  margin-bottom: 0;
}

.age-switch > div {
	padding-top: 4rem;
  
	@media screen and (max-width: 769px) {
		padding-top: 2rem;
	}
	
	@media screen and (max-height: 600px) {
		padding-top: 2rem;
	}
}

.age-switch .button {
	margin: 0 1em 1.5rem;

	@media screen and (max-width: 769px) {
		font-size:1.7rem !important;
		padding:1em;
	}
}

.age main {
	overflow-x:hidden;
	overflow-y:auto;
	
	padding-top:70px;
	padding-bottom:70px;
	
	@media screen and (max-width: 769px) {

	}
	
	@media screen and (max-height: 600px) {

	}
}

.age .intro p {
	max-width: 79vw;
	font-size: 1.8rem;
	margin: 4rem auto;

	@media screen and (max-width: 769px) {
		font-size:1.5rem;
		margin:1rem auto;
	}
	
	@media screen and (max-height: 600px) {
		margin:1rem auto;
	}
}

.question-wrap {
	-ms-grid-rows: 1fr auto;
	  grid-template-rows: 1fr auto;
	width: 100vw;
	height:auto;

	@media screen and (max-width: 769px) {
		-ms-grid-rows:auto 1fr;
		grid-template-rows: auto 1fr;
		height:auto;
		padding-top:70px;
		padding-bottom:70px;
	}
}

.progress {
	padding: 1rem 0 2rem;
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	grid-row: 2/3;
	-ms-grid-column-align: center;
	  justify-self: center;
	  
	@media screen and (max-width: 769px) {
		padding-top:0;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		grid-row: 1/2;
		-ms-grid-column-align: center;
		  justify-self: center;
	}
	
	@media screen and (orientation: landscape) and (max-width: 932px) {
		padding-top:2rem;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		grid-row: 1/2;
		-ms-grid-column-align: center;
		justify-self: center;
	}
}

.progress .breadcrump {
  width: 100%;
  text-align: center;
  display: inline-block;
}

progress {
  background-color: #4a4a4a;
  border: 0;
  height: 18px;
  border-radius: 9px;
  width: 250px;
  margin-top: .25em;
}

progress::-webkit-progress-value {
  background-color: #d91d4b;
}

.questionaire {
	-ms-grid-rows: auto 1fr;
	grid-template-rows: auto 1fr;

	@media screen and (max-width: 769px) {
		display:block;
		-ms-grid-rows: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
}

.questionaire h3 {
  display: none;
}

.questionaire p {
  max-width: 80vw;
  margin-bottom: 0;
  
  @media screen and (max-width: 769px) {
	max-width:none;
	place-self:start;
	padding:1rem 10vw;
  }
  
  @media screen and (min-width: 1920px) {
	max-width: 50%;
  }
}

.unsure main {
	text-align:center;
	
	@media screen and (max-width: 769px) {
		padding:70px 5vw;
	}
}

.unsure p {
  max-width: 80vw;
  
  @media screen and (max-width: 769px) {
		width:auto; max-width:none;
	}
}

.answer-wrap {
	place-self: start;
	width: 100vw;
	padding-top:1rem;
	
	@media screen and (max-width: 769px) {
		padding-top:2rem;
	}
}

@media screen and (max-width: 769px) {
	.answer-wrap .flex {
		flex-wrap:wrap;
	}
}

.answer-wrap h3 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.answer-wrap .button {
	margin: 0 3rem 8rem;
	width: 200px;

	@media screen and (max-width: 769px) {
		width:auto;
		margin: 0 1rem 1rem;
		font-size: 1.5rem !important;
		padding: .8em;
	}
}

.type img {
  display: block;
  margin: 4rem auto;
}

.message {
  width: 100vw;
  
  @media screen and (max-width: 769px) {
		width:auto;
	}
}

.message p {
  font-size: 1.8rem;
  max-width: 50ch;
  text-align: center;
  
  @media screen and (max-width: 769px) {
		width:auto;
		font-size:1.5rem;
	}
}

.message p:last-child {
  width: 100vw;
  
  @media screen and (max-width: 769px) {
		width:auto;
	}
}

.message img {
  display: block;
  margin: 4rem auto;
  width: 10vw;
  height: auto;
}

.type-result main {
	text-align: center;
	width: 100vw;
	height: 100%;
	overflow-x:hidden;
	overflow-y:scroll;
	grid-row:1/2;

	@media screen and (max-width: 769px) {
		padding:70px 5vw 140px;
	}
	
	@media screen and (min-width: 770px) and (min-height: 801px) {
		display: flex;
		flex-direction:column;
		align-items: center;
		justify-content: center;
	}
}

.type-result main h1 {
	margin-top:2rem;

	@media screen and (max-width: 769px) {
		margin-top:0;
	}
	
	@media screen and (min-height: 1050px) {
		margin-top:3rem;
	}
	
	@media screen and (min-height: 1440px) {
		margin-top:6rem;
	}
}


.type-result main svg {
	display:inline-block;
	margin:0 auto;
	width: 350px;
	height: auto;

	@media screen and (max-width: 769px) {
		width:80%;
	}
	
	@media screen and (min-height: 1050px) {
		width: 450px;
	}
	
	@media screen and (min-height: 1440px) {
		width: 650px;
	}
}

.type-result main p {
  margin-bottom: 0;
}

.print-btn-pos-wrapper {
	/*
	@media screen and (max-width: 769px) {
		position:absolute;
		width:100vw;
		left:0;
	}
	*/
}

.print-btn {
	width: 100vw;
	text-align: center;
	padding-top: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	  -ms-flex-direction: column;
		  flex-direction: column;
		  
	@media screen and (max-width: 769px) {
		width:auto;
		padding-top:1rem;
	}
}

.print-btn p {
  display: inline-block;
  font-size: 1.5rem;
  max-width: 100%;
}

.print-btn .button {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 2.5rem;
  
  @media screen and (max-width: 769px) {
		margin-top: 2rem;
	}
}

.maintenance-wrap h2 {
  background: url(/img/animation/rombus-yellow-blank.svg) no-repeat center;
  background-size: contain;
  width: 644px;
  height: 40vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-size: 57px;
  line-height: 1;
  text-transform: uppercase;
  padding-top: 25px;
}

.error.lang-de .maintenance-wrap .en {
  display: block;
}

.seperator {
  background: #000000;
  width: 100vw;
  height: 100vh;
  display: block;
  font-family: 'Nobel-Book', 'Open Sans', sans-serif;
  -webkit-animation: anim2FadeIn 1.5s ease forwards, scaling .5s ease 1.5s forwards;
          animation: anim2FadeIn 1.5s ease forwards, scaling .5s ease 1.5s forwards;
  z-index: 3;
}

.seperator .animated .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Question Separator Reaction Animtion */
/* Gears */
.machine {
  width: 100%; /*350px;*/
  fill: #ffffff;
}

.small {
  -webkit-animation: counter-rotation 2.5s infinite linear;
          animation: counter-rotation 2.5s infinite linear;
  -webkit-transform-origin: 100.136px 225.345px;
          transform-origin: 100.136px 225.345px;
}

.medium {
  -webkit-animation: rotation 3.75s infinite linear;
          animation: rotation 3.75s infinite linear;
  -webkit-transform-origin: 254.675px 379.447px;
          transform-origin: 254.675px 379.447px;
}

.large {
  -webkit-animation: counter-rotation 5s infinite linear;
          animation: counter-rotation 5s infinite linear;
  -webkit-transform-origin: 461.37px 173.694px;
          transform-origin: 461.37px 173.694px;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@-webkit-keyframes counter-rotation {
  from {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes counter-rotation {
  from {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes anim2FadeIn {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes anim2FadeIn {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes scaling {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes scaling {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

.printCounter {
  position: absolute;
  top: 10px;
  left: 40px;
  z-index: 10000;
  font-size: 24px;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: .5;
  background-color: rgba(255, 255, 255, 0.1);
}

.print-animation {
  position: relative;
  margin: 0 auto 4rem;
  padding-bottom: 8rem;
}

.print-animation img {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.print-animation img:nth-of-type(1) {
  top: -150px;
  width: 200px;
  height: auto;
  -webkit-animation: printing 1.5s linear infinite;
          animation: printing 1.5s linear infinite;
}

.print-animation img:nth-of-type(2) {
  outline: 1px solid rgba(255, 255, 255, 0.4);
  width: 400px;
  height: auto;
}

@-webkit-keyframes printing {
  0% {
    top: 0;
  }
  100% {
    top: -120%;
  }
}

@keyframes printing {
  0% {
    top: 0;
  }
  100% {
    top: -120%;
  }
}

@media print {
  body {
    height: 275mm;
    width: 80mm;
    background-color: #ffffff;
    overflow: hidden;
  }
  img {
    width: 75mm;
    height: 275mm;
    text-align: center;
  }
  .page-wrap {
    display: none;
    height: 0;
    width: 0;
  }
  .print {
    display: block;
  }
}

@media screen {
  .print {
    display: none;
  }
}

.close {
  place-self: center end;
  opacity: 1;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

.close a {
	width: 50px;
	height: 50px;
	display: block;
	border: 2px solid currentColor;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	  -ms-flex-align: center;
		  align-items: center;
	-webkit-box-pack: center;
	  -ms-flex-pack: center;
		  justify-content: center;
	font-size: 2rem;

	@media screen and (max-width: 769px) {
		width: 40px;
		height: 40px;
		font-size:1.7rem;
	}
}

.question .close a,
.unsure .close a,
.error .close a {
  display: none;
}

.seperator-print {
  width: 100vw;
  height: 100%;
  background: #000000;
}
/*# sourceMappingURL=style.css.map */