html{
  height: 100vh;
}
body{
  height:100%;
}
#contents{
  height:100%;
}
#example-basic{
  height:100%;
}

.disabled-input{
  opacity: 0.5;
}
.disabled-input:hover{
  cursor: not-allowed !important;
}



/* HEADER */

.header{
	auto;
	width:100%;
/*	background-color: #334498; */
  background-color: #0F1C4B;
}

#downloadpdf{
  background: #0F1C4B;
}

.footer{
	height:200px;
	width:100%;
	background-color:darkgrey;
	color: white;
	position:fixed;
	bottom:0;
}

.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active {
  background: #0F1C4B !important;
  }
  .wizard > .actions a{
    background: #0F1C4B !important;
  }
  .wizard > .actions .disabled a{
    background: #eee !important;
  }

.result-icon{
  width: 20px;
  height: auto;
  margin-left: 20px;
}

.steps .number{
  display: none;
}

.toggle-info-text{
  transition:none;
}

.feedback{
  position: fixed;
  bottom:20px;
  right:20px;
  padding: 30px;
  background: white;
  border-radius: 50%;
  z-index: 1;
}

.headres{
  color: #212529 !important;
}
/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/photographer.jpg");

  /* Set a specific height */
  height: 100vh;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: block;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.survey-container{
  display:none;
}

 #second{
  visibility:hidden;
}

#icon1, #icon2, #icon3{
  visibility: hidden;
}

#logovariant1, #logovariant2, #logovariant3, #logovariant4, #logovariant5{
  opacity: 0;
  transition: all 1s ease;
}



/* AB HIER NEU */

.bootstrap-select{
  width: 100% !important;
}

.form-label{
  display:block;
}

.label-container{
  margin-bottom:10px;
}

.label-container label{
  margin-bottom: 5px;
}

.label-container img{
  margin-left: 10px;
  width: 17px;
}

.label-container img:hover{
  cursor:pointer;
}



/* PROGRESS STEP ELEMENT */



/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}


#notComplete, #submitGood, #dbError {
  display:none;
}
#results {
  margin: 0 auto;
  text-align:center;
  width:80%;
  margin-top:50px;
  color:#222;
  padding-bottom:150px;
}

.border-warning{
  border-color: orange !important;
}
.wizard > .steps > ul > li{
  width:33% !important;
}

#progress-1, #progress-2, #progress-3{
  width: 200px;
  height: 200px;
  position: relative;
}
.progressbar-text{
  color: black !important;
  font-size: 16px !important;
}
/*form styles*/
#msform {
  width: 80%;
  margin: 50px auto;
  text-align: center;
  position: relative;
}
#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  
  box-sizing: border-box;
  width: 80%;
  margin: 0 10%;
  
  /*stacking fieldsets above each other*/
  position: absolute;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#msform input, #msform textarea, #msform select {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #222;
  font-size: 13px;
}
/*buttons*/
#msform .action-button {
  width: 100px;
  background: #334498;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #334498;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: #222;
  text-transform: uppercase;
  font-size: 9px;
  width: 25%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #FFF;
  background: #222;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #222;
  position: absolute;
  left: -50%;
  top: 25px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: #334498;
  color: white;
}


.toggle-info-text{
  text-align:left;
  padding: 10px;
  background: white;
  margin-bottom: 10px;
}

.toggle-info-text p{
  margin:0;
}

.headres{
  width: 100%;
  justify-content: space-between;
  padding-right: 20px;
  align-items: center;
}

.q1result, .q2result, .q3result, .q4result, .q5result, .q6result, .q7result, .q8result , .q9result, .q10result, .q11result, .q12result , .q13result, .q14result, .q15result, .q16result, .q17result, .q18result{
  margin-bottom: 0 !important;
}

.accordion-button{
  background-color:white !important;
}

.accordion-body{
  padding-top: 40px;
  padding-bottom: 40px;
}
.accordion-body h4{
  margin-bottom: 25px;
}

#msform label{
  font-size:22px;
  text-align:left;
}

#msform .dropdown-toggle, #msform input{
  margin-bottom:20px;
}

.spacer{
  padding-bottom:300px;
}
#msform label.form-check-label{
  font-size:16px;
}
#msform .dropdown-toggle, #msform input{
  margin-bottom: 10px;
}

#msform .action-button{
  font-family: revert;
}

#footer .footer{
  height:300px;
  margin-top:200px;
  color:lightgray;
  position: fixed;
  bottom: 0px;
  width:100%;
}

#example-basic.wizard > .content{
  overflow-y:scroll;
  height:80%;
}

.disabled-input label{
  color:black !important;
}
.disabled-input .bootstrap-select{
  border:unset !important;
}

.accordion-body{
  background:white;
}
.accordion-button{
  background-color: #F6F6F6 !important;
}


#example-basic{
  padding-top: 55px;
  padding-bottom:100px;
/*  height:calc(90vh - 110px); */
}


 .input-container .label-container label{
  margin-bottom:0px !important;
 }

 .input-container fieldset {
  display: flex;
 }
 .input-container fieldset label{
  margin-bottom: 0px !important;
  margin-left:8px;
  margin-right:12px;
 }


 /* CUSTOM PROGRESS CIRCLES */

 .progress {
  width: 150px;
  height: 150px;
  background: none;
  position: relative;
}

.progress::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}

.progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress .progress-value {
  position: absolute;
  top: 0;
  left: 0;
}
sup{
  top: unset !important;
}

  .progress-result-wrapper{
    flex-direction: column;
  }
  .progress-result-wrapper .bg-white{
    margin-top:50px;
  }

@media (min-width: 1220px) {
  .progress-result-wrapper{
    flex-direction: row;
  }
  .progress-result-wrapper .bg-white{
    margin-top:0px;
  }
}