@font-face {
  font-family: 'Gotham';
  src: url('fonts/gotham-bold-webfont.woff2') format('woff2'),
    url('fonts/gotham-bold-webfont.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Book';
  src: url('fonts/gotham-book-webfont.woff2') format('woff2'),
    url('fonts/gotham-book-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Medium';
  src: url('fonts/gotham-medium-webfont.woff2') format('woff2'),
    url('fonts/gotham-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('fonts/gotham-black-webfont.woff2') format('woff'),
    url('fonts/gotham-black-webfont.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}


@import url(https://fonts.googleapis.com/css?family=Montserrat);

.wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text {
  color: #7eaded;
  display: inline-block;
  margin-left: 5px;
  font-size: 1.25em;
}

.bounceball {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px;
}

.loadingspinner {
  position: relative;
  display: inline-block;
  height: 23px;
  width: 30px;
}

.loadingspinner:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 30px;
  height: 30px;
  background-image: URL(../IMG/Other/spinner.svg);
  background-repeat: none;
  background-size: contain;
  transform-origin: 50%;
  animation: spin 1000ms infinite linear;
}

.bounceball:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #4f7fb6;
  transform-origin: 50%;
  animation: bounce 500ms alternate infinite ease;
}

#preloaderBlock {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0px;
  right: 0px;
  background: #ffffff;
  z-index: 100;
}

@keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    transform: scaleX(2);
  }

  35% {
    height: 15px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

