@charset "utf-8";
/* CSS Document */

/* =========================
   GLOBAL FIXES
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  display: block;
  padding-bottom: 5px;
  text-align: left;
  font-size: 100%;
  background: #fff;
}

/* =========================
   FOOTER
========================= */
.footer {
  position: fixed;
  z-index: 9999;
  right: 0;
  bottom: 0;
  width: 15%;
  min-height: 30px;
  opacity: 0.5;
  padding: 5px 5px 30px 5px;
}

/* Mobile Elemente verstecken */
@media only screen and (min-width: 485px) {
  .Whatsapp,
  .Telefon {
    display: none;
  }
}

/* =========================
   PRELOADER
========================= */
.preloader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #ffffff;

  overflow: hidden;
  transition: all 0.6s ease; /* schneller + smoother */
}

.preloader-container .animation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Skip Button */
.preloader-container .animation #skip {
  position: absolute;
  bottom: 20vh;
  margin: 0 auto;

  font-family: montserrat, sans-serif;
  font-size: 1.5em;
  color: #ffffff;
  cursor: pointer;
}

/* Utility Klassen */
.hidden {
  display: none !important;
}

.visuallyhidden {
  opacity: 0;
  pointer-events: none;
}
