html.isLoading .wolf-preloader {
  opacity: 1;
  visibility: visible;
}
html.isLoading body {
  overflow: hidden !important;
}
html.isLoading .wolf-app {
  opacity: 0;
  transition: opacity 0.8s ease;
}
html:not(.isLoading) .wolf-preloader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
html:not(.isLoading) .wolf-app {
  opacity: 1 !important;
  transition: opacity 0.8s ease;
}
.wolf-preloader {
  z-index: 99999;
  background: white;
  color: black;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vW;
  height: 100vH;
  display: flex;
  align-items: center;
  justify-content: center;
  /*.slogan {
          height:14px;
          margin-bottom:15px;
          font-family:'Gotham Rounded Book';
          font-size:14px;
          text-transform:uppercase;
          letter-spacing: 0.25em;
          font-weight: 600;
          line-height:1;
          span { 
            font-family:'Gotham Rounded Book';
          }
        }*/
  /*.loader-text {
          font-family:'Gotham Rounded Book';
          font-size:11px;
          height:11px;
          line-height:1em;
          text-transform:uppercase;
          letter-spacing: 0.25em;
          font-weight: 100;}*/
  /*.loader-bar {
          width:300px;
          height:2px;
          background:#eee;
          border-radius:1px;
          overflow:hidden;
          position:relative;
          margin:20px auto;
          .loader-progress {
            height: 100%;
            background: #3498db;
            width: 0%; 
            position: relative;
            transition: width 0.3s ease;
          }
          .loader-highlight {
            position: absolute;
            top: 0;
            left: 0;
            width: 30%; 
            height: 100%;
            background: rgba(255, 255, 255, 0.5);
            animation: pendel 1.5s ease-in-out infinite alternate;
          } }*/
}
.wolf-preloader .wolf-preloader-content {
  text-align: center;
}
.wolf-preloader .wolf-preloader-content .wolf-preloader-image-wrapper {
  height: 150px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 30px auto;
}
.wolf-preloader .wolf-preloader-content .wolf-preloader-image-wrapper svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.wolf-preloader .schrift {
  height: 20px;
  width: 250px;
  margin: 0 auto;
}
.wolf-preloader .schrift img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/*.wolf-preloader .slogan,
.wolf-preloader .loader-text {
  visibility: hidden;
}
html.fonts-loaded .wolf-preloader .slogan,
html.fonts-loaded .wolf-preloader .loader-text {
  visibility: visible;
}*/
.pending {
  position: relative;
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.wolf-preloader .pending {
  height: 30px !important;
}
/* Die Rail */
.pending::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 2px;
  background: #ddd;
  transform: translateY(-50%);
}
/* Das Pendel */
.pending::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  width: 25%;
  height: 2px;
  background: var(--main);
  border-radius: 2px;
  transform: translateY(-50%);
  animation: pending 1.2s ease-in-out infinite alternate;
}
@keyframes pending {
  0% {
    left: 25%;
  }
  100% {
    left: 50%;
  }
}
/* Fade-Out bei done */
.pending.done::before, .pending.done::after {
  opacity: 0;
  transition: opacity 0.6s ease;
}
/*.loader-bar {
  width: 300px;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loader-progress {
  height: 100%;
  background: #3498db;
  width: 0%; 
  position: relative;
  transition: width 0.3s ease;
}

.loader-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%; 
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  animation: pendel 1.5s ease-in-out infinite alternate;
}
*/
/*@keyframes pendel {
  0% { left: 0; }
  100% { left: 70%; }
}
*/
