/* C O L O R S */
/*
#00b1e6 - hellblau
#004a99 - dunkelblau
#ee7f00 - orage
#008d36 - gruen
#87888a - textgrau

*/

/* Clearfix */
.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* Base Styles */
html {
  font-family: "Lucida Sans", Arial, sans-serif;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: #00b1e6;
}

a, a:active{
  color: #004a99;
}

a:visited {
  color: #ee7f00;
}

a:hover, a:focus {
  text-decoration: none;
}

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

#backgroundOverlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.8);
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

#turbineOverlay {
    position: fixed;
    top: 0;
    left: 0;
    background: #00b1e6;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    flex-direction: column;
}

#loadingOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  flex-direction: column;
  justify-content: center;
}

body {
  background-color: #ddd;
}

@media only screen and (min-width: 800px) and (max-height: 600px) {
  #loadingOverlay{
    justify-content: flex-start;
  }
}
