
/*
  Styles für den Preloader
*/

.body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-image: url('../images/loading-background.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
  color: #C8A078;
}

.pagebody {
    overflow: hidden;
    padding: 10%;
}

#myProgress {
  width: 100%;
  background-color: grey;
  margin-bottom: 40px;
}

#myBar {
  width: 1%;
  height: 2px;
  background-color: #FFFFFF;
}

.progress-number {
    width: 50px;
    padding-left:20px;
    padding-right: 20px;
    text-align: center;
    color: #FFF;
    font-size: 22px;
    font-family: 'Athelas';
}


.progress {
    height: 2px;
    background-color: #C8A078;
    border-radius: 0px;
    margin-top: 20px;
}

.startUSPHUB {
  border: 1px solid #FFFFFF;
  padding: 10px;
  color: #FFFFFF;
  font-weight: 800;
  font-size:  18px;
  line-height: 24px;
  font-family: 'Athelas';
  cursor: pointer;
  width: 150px;
}

.startUSPHUB:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.container_preload {
  margin-top: 20%;
  width: 50%;
  text-align: center;
}

.percenttext {
  color: #FFF;
  font-family: 'Helvetics Neue', Arial;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  padding: 30px 0;
}

#loadedpercent {
  color: #FFF;
  font-family: 'Helvetics Neue', Arial;
  font-weight: 200;
  font-size: 150px;
}

#preText1 {
  font-size:  18px;
  font-family: 'Athelas';
  font-weight: 600;
  color: #FFF;
  text-align: center;
  margin-top: 30px;
}

#preText2 {
  display: none;
}

/* Beginn Eingangsanimation */

.startblende {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  z-index: 10000;
  display: none;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 25% auto;
  background-color: #FFF;

  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/* Ende Eingangsanimation */


/* End custom CSS */
/* Start Custom Fonts CSS */

@font-face {
    font-family: 'Helvetics Neue';
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url('../fonts/helv_regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetics Neue';
    font-style: normal;
    font-weight: bold;
    font-display: auto;
    src: url('../fonts/helv_bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetics Neue';
    font-style: normal;
    font-weight: 300;
    font-display: auto;
    src: url('../fonts/helv_light.ttf') format('truetype');
}
/* End Custom Fonts CSS */
/* Start Custom Fonts CSS */


/* Einbinden von Schriften */
@font-face {
  font-family: 'Athelas';
  src: url('../fonts/Athelas-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* Ende Einbinden von Schriften */


/* Responsive => Tablet */
@media screen and (max-width: 991px) {
  
}


/* Responsive => Mobile */
@media screen and (max-width: 479px) {
  .pagebody {
    padding: 10px;
  }

  .container_preload {
    margin-top: 35vh !important;
    width: 90%;
    text-align: center;
  }

  .startUSPHUB {
    margin-top: 20px;
  }

}

