/* HINTERGRUND UND AUSRICHTUNG */
body {
  width: 85%; 
  background-color: #002741; 
  color: white; 
  position: relative; 
  margin: auto; 
  font-family: Arial, Helvetica, sans-serif;
  padding-top: 4%;
}

/* SCHRIFTEN */
h1 {
  font-size: 30px;
  color: #ff6900;
  text-align: center;
  padding: 10px;
}

h2 {
  font-size: 18px;
  text-align: center;
}

p {
  font-size: 15px;
  text-align: justify;
  hyphens: auto; 
}

/* BUTTONS */
.btn {
  font-size: 15px;
  font-weight: bold;
  padding: 1rem 1rem;
  text-align: center;
  align-items: center;
  border: 0.15rem solid #974001;
  margin-bottom: 1rem;
  color: white;
  background-color: #ff6900;
  display: block;
  text-decoration: none;
}

.btn:hover {
  cursor: pointer;
  box-shadow: 0 0.4rem 1.4rem 0 rgba(138, 161, 190, 0.5);
  transform: translateY(-0.1rem);
  transition: transform 150ms;
}

.btn[disabled]:hover {
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* DIV CONTAINER */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.conversation {
  height: 100px;
}

.condition{
  font-size: 25px;
  padding: 0;
}

/* LISTEN */
ul {
  align-items: center;
}

li {
  color: white;
  margin-bottom: 1rem;
  font-size: 15px;
}

/* FORMULARE */
label {
  font-size: 15px;
}

fieldset {
  border: 0;
  margin-top: 15px;
}

legend {
  font-size: 15px;
  font-weight: bold;
}

/* INPUTS */
input[type="number"] {
  width: 100px;
  height: 30px;
  font-size: 15px;
  color: #002741;
  border: 0.15rem solid #ff6900;
}

input[type="mail"] {
  width: 200px;
  height: 30px;
  font-size: 15px;
  color: #002741;
  border: 0.15rem solid #ff6900;
}

input[type="radio"] {
  margin: 0.2rem;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  accent-color: #ff6900;
}

/* TABELLEN */
.table_header {
  padding-bottom: 120px;
}

table {
  border-collapse: separate;
  border-spacing: 0.8em 2em;
  font-size: 15px;
  table-layout: fixed; 
  width: 100%;
  margin-top: 90px;
}


table td {
  text-align: center;
}

tr:first-child th{
  transform: rotate(-90deg); 
  white-space: nowrap; 
  position: sticky;
  top: 160px;
}
tr:first-child th span{
  background-color: #002741 !important;
}

.span0 {
  padding-bottom: 4px;
}

.span1 {
  padding-right:94px;
  padding-bottom: 5px;
}

.span2 {
  padding-right:50px;
  padding-bottom: 4px;
}
  
.span3 {
  padding-right:140px;
  padding-bottom: 4px;
}

.span4 {
  padding-right:23px;
  padding-bottom: 4px;
}
  
  
  .box {
    margin: 20px auto;
    background: white;
    padding: 20px;
    text-align: center;
    position: relative;
    color: #002741;
    border-radius: 30px;
    border: 5px solid #ff6900;
  }
  
  .bubble {
    position: relative;
    font-family: sans-serif;
    font-size: 13px;
    line-height: 24px;
    max-width: 350px;
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    color: #002741;
  }
  
  .bubble-bottom-left:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border: 17px solid transparent;
    border-top-color: #fff;
      border-bottom: 0;
      border-right: 0;
      margin-left: -8.5px;
      margin-bottom: -17px;
    right: 80px;
    bottom: 0;
  }
  
  .center_image img {
    width: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .gif {
    width: 80%;
  }
            
  .triangle-buttons {
    /* Center the content */
    align-items: center;
    display: flex;
    justify-content: center;
  
    /* Spacing */
    padding: 0.5rem;
  }
  
  .triangle-buttons__triangle {
    border-style: solid;
    background-color: #002741;
  
    /* Size */
    height: 0px;
    width: 0px;
  }
  
  .triangle-buttons__triangle--r {
    border-color: #002741 #002741 #002741 #ff6900;
    border-width: 3rem 0 3rem 3rem;
  }
  
  .triangle-buttons__triangle--l {
    border-color: #002741 #ff6900 #002741 #002741;
    border-width: 3rem 3rem 3rem 0;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .column {
    float: left;
    width: 33.33%;
    padding: 5px;
  }
  
  /* Clearfix (clear floats) */
  .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  
  .bounceIn{
     
    -webkit-animation-name: bounceIn;
   animation-name: bounceIn;
  
   -webkit-animation-duration: .8s;
   animation-duration: .8s;
  
   -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  
  @-webkit-keyframes bounceIn {
   0% {
     opacity: 0;
     -webkit-transform: scale3d(.3, .3, .3);
     transform: scale3d(.3, .3, .3);
   }
  
   20% {
     -webkit-transform: scale3d(1.1, 1.1, 1.1);
     transform: scale3d(1.1, 1.1, 1.1);
   }
  
   40% {
     -webkit-transform: scale3d(.9, .9, .9);
     transform: scale3d(.9, .9, .9);
   }
  
   60% {
     opacity: 1;
     -webkit-transform: scale3d(1.03, 1.03, 1.03);
     transform: scale3d(1.03, 1.03, 1.03);
   }
  
   80% {
     -webkit-transform: scale3d(.97, .97, .97);
     transform: scale3d(.97, .97, .97);
   }
  
   100% {
     opacity: 1;
     -webkit-transform: scale3d(1, 1, 1);
     transform: scale3d(1, 1, 1);
   }
  }
  
  @keyframes bounceIn {
   0% {
     opacity: 0;
     -webkit-transform: scale3d(.3, .3, .3);
     transform: scale3d(.3, .3, .3);
   }
  
   20% {
     -webkit-transform: scale3d(1.1, 1.1, 1.1);
     transform: scale3d(1.1, 1.1, 1.1);
   }
  
   40% {
     -webkit-transform: scale3d(.9, .9, .9);
     transform: scale3d(.9, .9, .9);
   }
  
   60% {
     opacity: 1;
     -webkit-transform: scale3d(1.03, 1.03, 1.03);
     transform: scale3d(1.03, 1.03, 1.03);
   }
  
   80% {
     -webkit-transform: scale3d(.97, .97, .97);
     transform: scale3d(.97, .97, .97);
   }
  
   100% {
     opacity: 1;
     -webkit-transform: scale3d(1, 1, 1);
     transform: scale3d(1, 1, 1);
   }
  }

/* FORTSCHRITTBALKEN */
progress::-webkit-progress-bar {
  background-color: white; 
  width: 100%;
}
progress {
  background-color: #fff;
  border-radius:16px!important;
  margin-top: 20px;
}

progress::-webkit-progress-value {
  background-color: #ff6900 !important;
}
progress::-moz-progress-bar {
  background-color: #ff6900 !important;
}
progress {
  color: #ff6900;
}



.Abzeichen {
  padding: 0;
  margin: 0px;
  height: 30px;
}
