.tabContainer{
  margin: 1rem auto;
  width: 80%;
}

.tabAuswahl{
  display: flex;
  justify-content: center;
  padding: 0;
}

.tabAuswahl > li{
  position: relative;
  min-width: 200px;
  background: #e7e8ea;
  color: #808080;
  display: inline-block;
  padding: 1rem 2rem;
  margin: 0 5px 0 5px;
  opacity: 0.7;
  cursor: pointer;
  z-index: 0;
  border-radius: 3px;
}

.tabAuswahl > li.active{
  color: black;
  opacity: 1;
}

.tabInhalt > div{
  background: #e7e8ea;
  min-width: 100%;
  padding: 4rem 3rem;
  min-height: 200px;
  border-radius: 3px;
}

.line{
  position: absolute;
  width: 0;
  height: 0.5rem;
  background: #ff562d;
  top: 0;
  left: 0;
}

#robot{
  display: none;
}

#robot.active{
  display: block;
}

@media all and (max-width: 650px){
    .tabAuswahl{
      flex-direction: column;
      align-items: center;
    }

  .tabAuswahl > li{
    margin: 10px 0 0 0;
    width: 80%;
  }

  .tabContainer{
    width: 100%;
  }

}




