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

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

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

p {
  font-size: 20px;
  text-align: justify;
}

/* BUTTONS */
.btn {
  font-size: 20px;
  font-weight: bold;
  padding: 1rem 1rem;
  text-align: center;
  align-items: center;
  border: 0.15rem solid #974001;
  margin-top: 1.5rem;
  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;
}

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

.Formular {
  min-width: 500px;
}

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

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

/* FORMULARE */
fieldset {
  border: 0;
  margin-top: 20px;
}

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

label {
  font-size: 20px;
}

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

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

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


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

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

table td {
  text-align: center;
}

tr:first-child th{
  text-align: center;
  hyphens: auto;
}

.box {
  margin: 50px auto;
  background: white;
  padding: 30px;
  text-align: center;
  position: relative;
  color: #002741;
  border-radius: 30px;
  border: 5px solid #ff6900;
}

.bubble {
  position: relative;
  font-family: sans-serif;
  font-size: 20px;
  line-height: 24px;
  width: 350px;
  background: #fff;
  border-radius: 40px;
  padding: 24px;
  text-align: center;
  color: #002741;
}

.bubble-bottom-left:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 12px solid #fff;
  border-right: 24px solid transparent;
  border-top: 12px solid #fff;
  border-bottom: 20px solid transparent;
  right: 32px;
  bottom: -24px;
}

.center_image img {
  width: 40%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.gif {
  width: 350px;
}
          
.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;
}



.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;
}


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