/* Orange: #ff6600 | RGB (255,102,0) */

/* Fonts */
@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-Regular.woff2') format('woff2'),
      url('../fonts/Ubuntu-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-Italic.woff2') format('woff2'),
      url('../fonts/Ubuntu-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-MediumItalic.woff2') format('woff2'),
      url('../fonts/Ubuntu-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-Light.woff2') format('woff2'),
      url('../fonts/Ubuntu-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-Bold.woff2') format('woff2'),
      url('../fonts/Ubuntu-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-LightItalic.woff2') format('woff2'),
      url('../fonts/Ubuntu-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-Medium.woff2') format('woff2'),
      url('../fonts/Ubuntu-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-BoldItalic.woff2') format('woff2'),
      url('../fonts/Ubuntu-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
}



html, body {
    height: 100%;
}

body {
  background: #DEDEDE;
  color: #444;
  font-family: "Ubuntu", sans-serif;
}

body.pure {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 2rem;
}

body.kos {
  background-color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding-bottom: 2rem;
}

img {
  width: 100%;
  max-width: 100%;
}

.willkommen {
  color: #444;
  text-align: center;
}

.durchfuehrung {
  padding: 2em;
  text-align: left;
}

a, .btn-link {
  color: #444;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus,
.btn-link:hover,
.btn-link:active,
.btn-link:focus {
  color: #ff6600;
  outline: none;
  text-decoration: none;
}

a.orange {
  color: #ff6600 !important;
}

.btn-link {
  font-size: 0.7em;
}

.content {
  background-color: #FFFFFF;
  border-radius: 5px;
  width: 100%;
  max-width: 990px;
  padding: 1.5em;
  margin: 1em auto;
}

section#header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1em;
  border-bottom: 1px solid #DEDEDE;
}

section#header h1 {
  font-size:2rem;
  width:100%;
  text-align: center;
}

section#header h1 span {
  font-size: 1.5rem;
}


section#header_kos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

section#header_kos h1 {
  font-size: 2rem;
  text-align: center;
  order: 3;
}

section #header_kos .logo-fa {
  order: 1;
}

section#header_kos .logo {
  order: 2;
}

.logo {
  width: 100%;
  
  text-align: center;
}

.logo > img,
.logo-fa > img {
  width: 100%;
  height: auto;
  max-width: 200px;
}


@media (min-width: 768px)
{
  section#header h1 {
    width: 70%;
  }
  
  .logo {
    width: 30%;
  }
  
  .logo > img,
  .logo-fa > img {
    max-width: 250px;
  }

  section#header_kos {
    flex-wrap: nowrap;
    margin-bottom: 0;
  }

  section#header_kos h1 {
    order: 2;
  }

  section#header_kos .logo-fa {
    order: 1;
  }

  section#header_kos .logo {
    order: 3;
  }
}

.card-header {
  background-color: rgba(0, 0, 0, 0.04);
}

.collapse {
  background-color: rgba(0,0,0,0.02);
}

.flexContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.flexContainer img {
  width: 100%;
  height: auto;
  flex: 1 1 50%;
}

.flexContainer form {
  flex: 1 1 50%;
}

@media (min-width: 768px)
{
  .flexContainer {
    flex-direction: row;
    align-items: center;
  }

  .flexContainer img {
    max-width: 33%;
  }
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.flex-col img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.energie-verlauf {
  position: relative;
}

.energie-verlauf::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 15px 34px 15px;
  border-color: transparent transparent #000 transparent;
  transform: rotate(0deg);
}

section.start-info {
  margin: 3rem auto;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.2rem;
}

section.start-info p:first-child {
  margin-bottom: 2rem;
}

@media (min-width: 768px)
{
  section.start-info {
    flex-direction: row;
  }
}



.btn-link.collapsed:before {
  content: "\A";
  border-style: solid;
  border-width: 10px 0px 10px 10px;
  border-color: transparent transparent transparent #444;
  display: inline-block;
}

.btn-link:not(.collapsed):before {
  content: "\A";
  border-style: solid;
  border-width: 10px 10px 0px 10px;
  border-color: #444 transparent transparent transparent;
  display: inline-block;
  position: relative;
  top: -2px;
}


.ueberschrift {
  margin: 1.5em 0;
}

p {
  padding: 0;
  margin: 0 0 10px 0;
}

p.fragenZaehler {
  font-size: 1.3em;
  color: #999;
  margin-bottom: 15px;
  border-bottom: 1px solid #999;
}

p.frage {
  font-size: 1.5em;
}

div.foto {
  width: 100%;
  position:relative;
  top: -100px;
  margin-bottom: -100px;
}

div.foto2 {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.foto img, .foto2 img {
  width: 100%;
  height: auto;
}

.hoeheArchiv {
  width: 100%;
  height: 25vh;
}

.hoeheEvaluation {
  width: 100%;
  height: 300px;
}

.btnOnFoto {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.d-block {
  display: flex !important;
  flex-wrap: wrap;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 10px 0 0 0;
  padding: 0;
  color: #444;
}

h1.mainTitle {
  color: #ff6600;
}

h1.mainTitle > span.subTitle {
  font-size: 1.6rem;
  color: rgb(64,64,64);
}

@media (max-width: 768px)
{
  h2 {
    font-size: 1.5em;
  }
}

.resContainer {
  width: 100%;
  max-width: 990px;
  margin: auto;
  padding-top: 1em;
}

.link_archiv {
  background-color: #AAA;
  border-top: 2px solid;
}



.btnBack:before {
  content: "\A";
  border-style: solid;
  border-width: 6px 8px 6px 0px;
  border-color: transparent #FFF transparent transparent;
  display: inline-block;
  margin-right: 1em;
}

.faktorImg {
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
  width:30%;
  height:auto;
}

.btnNext {
  background-color: #ff6600;
  color: #FFFFFF;
  font-size: 1em;
  padding: 0.5em 1.7em;
  border: 1px solid #670000;
  border-radius: 10px;
  font-weight: bold;
  display: block;
  margin-top: 20px;
  float: right;
}

.btnLos {
  background-color: #ff6600;
  color: #FFFFFF;
  font-size: 1em;
  padding: 0.5em 1.7em;
  border: 1px solid #670000;
  border-radius: 10px;
  font-weight: bold;
  display: block;
  margin-top: 50px;
  margin-bottom: 30px;
  float: right;
  position: relative;
  z-index: 99;
}

.btnAuswertung {
  background-color: #ff6600;
  color: #FFFFFF;
  font-size: 1em;
  padding: 0.5em 1.7em;
  border: 1px solid #670000;
  border-radius: 10px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 99;
}

.btnArchiv {
  font-size: 1.1rem;
  padding: 1.2rem 2rem;
  text-align: center;
  max-width: 90%;
}

.btnContact {
  background-color: #ff6600;
  color: #FFFFFF;
  font-size: 1em;
  padding: 0.5em 1.7em;
  border: 1px solid #670000;
  border-radius: 10px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  z-index: 99;
}

a.btnLos:hover,
a.btnNext:hover,
a.btnAuswertung:hover,
a.btnContact:hover,
a.btnLos:visited,
a.btnNext:visited,
a.btnAuswertung:visited,
a.btnContact:visited {
  color: #FFF !important;
}

.fragenContainer {
  padding: 1em;
  background-color: rgba(0,0,0,0.04);
  margin-bottom: 70px;
}

.custom-control {
  font-size: 1.2em;
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  width: 300px;
  margin-bottom: 1em;
}

.form-signin {
  width: 100%;
  max-width: 850px;
  padding: 15px;
  margin: auto;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Auswertung */
.evContainer {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 15px;
}

.evBoard {
  width: 100%;
  height: 100%;
  min-height: 90vw;
  position: relative;
  margin-bottom: 2.5em;
  background-image: url('../img/screenshots.png');
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: top;
  background-size: 30%;
}

.evTitel {
  margin-top: 2em;
}

.grey {
  color: #666;
}

@media (min-width:768px)
{
  .evBoard {
    min-height: unset;
    height: 900px;
  }

  .evBoard.kos {
    height: 600px;
  }
}

.kos-text {
  margin-top: 25px;
  background-color: #ff6600;
  color: white;
  padding: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

.faktor {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.faktor > img, .faktor > svg {
  position: relative;
  left:50%;
  top:50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}


/* Gesamtfaktor */
.gesamtBoard {
  position: relative;
  width: 100%;
  height: 80px;
  background-image: linear-gradient(to right, red, yellow, green);
  margin-bottom: 3.5em;
}

.gesamtText {
  width: 100%;
  display: inline-block;
}

@media (min-width: 990px)
{
  .gesamtText {
    max-width: 350px;
  }

  .gesamtBoard {
    max-width: 500px;
  }
}

.zeiger {
  position: absolute;
  width: 0; 
  height: 0; 
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;    
  border-bottom: 60px solid #666;
  margin-left: -30px;
  bottom:-40px;
}

.gesamtFaktor {
  font-size: 3.1em;
  font-weight: 900;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  color: #FFF;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

.auswertung {
  position: absolute;
  display: none;
}

.auswertung_allgemein {
  background-color: rgba(0,0,0,0.05);
  padding: 2em;
}

p.faktorenPers {
  background-color: rgba(255,102,0,0.05);
  margin: 1em 0;
  padding: 1.2em 1em;
}

.auswertung_faktoren, .auswertung_video {
  margin-top: 25px;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.04);
}

.percentage {
  text-align: center;
  font-weight: bold;
  margin-top: -5px;
}

.faktorTitel {
  position: absolute;
  background-color: rgba(255,255,255,0.7);
  padding: 0.5em 1em;
  border-radius: 5px;
  border: 1px solid #DEDEDE;
  z-index: 99;
  cursor: pointer;
  font-size: 1.2rem;
}


@media (max-width: 700px)
{
  .faktorTitel {
    font-size:0.8rem;
  }
}

@media (max-width: 560px)
{
  .faktorTitel .bezeichnung {
    display: none;
  }
}

/* Faktor-Bezeichnung im Diagramm */
.fText1 {
  top: 16%;
  right: 18%;
}

.fText2 {
  right: 7%;
  top: 39%;
}

.fText3 {
  right: 10%;
  bottom: 29%;
}

.fText4 {
  bottom: 15%;
  left: 39%;
}

.fText5 {
  left: 5%;
  bottom: 28%;
}

.fText6 {
  left: 5%;
  top: 40%;
}

.fText7 {
  left: 19%;
  top: 21%;
}

@media (min-width: 768px)
{
  .fText1 {
    top: 20%;
    right: 15%;
  }
  
  .fText2 {
    right: 7%;
    top: 39%;
  }
  
  .fText3 {
    right: 10%;
    bottom: 29%;
  }
  
  .fText4 {
    bottom: 15%;
    left: 39%;
  }
  
  .fText5 {
    left: 14%;
    bottom: 25%;
  }
  
  .fText6 {
    left: 5%;
    top: 40%;
  }
  
  .fText7 {
    left: 11%;
    top: 18%;
  }
}

@media (min-width: 990px)
{
  .fText1 {
    top: 19%;
    right: 25%;
  }
  
  .fText2 {
    right: 7%;
    top: 39%;
  }
  
  .fText3 {
    right: 10%;
    bottom: 29%;
  }
  
  .fText4 {
    bottom: 15%;
    left: 39%;
  }
  
  .fText5 {
    left: 14%;
    bottom: 25%;
  }
  
  .fText6 {
    left: 5%;
    top: 40%;
  }
  
  .fText7 {
    left: 17%;
    top: 18%;
  }
}

.footerNav ul {
  list-style-type: none;
  font-size: 0.75em;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  /*for ie*/
  justify-content: space-around;
  /*for moz & chrome*/
  -webkit-justify-content: space-evenly !important;
  width: 90%;
  max-width: 800px;
}

.copyright {
  font-size: 0.8em;
  color: #999;
  text-align: center;
  margin: 0.5em 0 0;
}

.klickhinweis {
  color: #666;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.8em;
}

p.dranbleiben {
  border-top: 1px solid #DEDEDE;
  margin-top: 1.5em;
  padding-top: 1.5em;
}

div#cookiehinweis {
  background-color: rgba(255,255,255,0.8);
  padding: 1em;
  position: fixed;
  bottom:0;
  left:0;
  right:0;
}

span#cookiecloser {
  display: block;
  position: absolute;
  right: 21px;
  top: 10px;
  cursor: pointer;
}

.kontaktBig {
  /*margin-bottom: 120px;*/
  margin-top: 20px;
  background-color: rgba(255,102,0,0.05);
  border: 1px solid #DEDEDE;
  padding: 1em;
  align-items: center;
}


.kontaktSmall {
  margin-top: 20px;
  background-color: rgba(0,0,0,0.05);
  padding: 1em;
  align-items: center;
}

.formular {
  width: 100%;
  margin-top: 1em;
  border-top: 1px dashed #666;
  padding-top: 1em;
}

.table {
  max-width: none;
  table-layout: fixed;
}

.formularPrePro {
  padding-right:20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.portrait > img,
.portraitPro > img {
  width: 100%;
  height: auto;
}

@media (max-width: 480px)
{
  .portraitPro {
      text-align: center;
      order: 1;
  }

  .portraitPro > img {
    width: 60%;
    margin-bottom: 1em;
  }

  .formularPrePro {
    order: 2;
  }
}

video {
  width: 100%;
}

.hidden {
  display: none;
}

.zustimmungStart {
  position: relative;
  z-index:99;
}

.btnDisabled {
  opacity: 0.5;
}

.alreadyGotOne {
  margin: 2em 0;
  text-align: center;
  padding: 1.2em;
  background-color: rgba(1,1,1,0.03);
  border: 1px dashed #666;
  border-radius: 10px;
  font-size: 1.2em;
}

.form-check-label {
  margin-bottom: 0;
  margin-left: 0.3em;
}

.awTools {
  padding: 1em;
}

.toolContainer {
  margin-top: 1em;
  padding-bottom: 2em;
}

.toolContainer:not(:last-child)
{
  border-bottom: 1px solid #DEDEDE;
}

.toolTitle {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 1em;
}

.toolImg > img {
  max-width: 200px;
  max-height: 180px;
  height: auto;
}

.starkmacherIntro {
  background-color: rgba(0,0,0,0.04);
  padding: 1.5em;
}

.workbookImg img {
  max-width: 40%;
  margin: auto;
  display: block;
}

.workbookImg {
  position: relative;
}

#workbook a {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF !important;
}

.toolDownload {
  width: 100%;
  order: 3;
  text-align: right;
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #eeeeee;
}

.toolPic {
  max-width:90%;
  height: auto;
}

@media (max-width: 767px) {
  
  .toolDetails {
      margin-top:20px;
  }

  .workbookImg img {
    max-width: 100%;
  }


}

.kos-end {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
}

.kos-course,
.kos-coaching {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kos-course a,
.kos-coaching a {
  text-decoration: underline;
}

.kos-course {
  background-color: #deebf7;
}

.kos-coaching {
  background-color: #fff2cc;
}

.kos-course img,
.kos-coaching img {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px)
{
  .kos-end {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }

    .kos-course,
    .kos-coaching {
      width: 50%;
    }
}