/* First Load Spinner */

* {
  touch-action: manipulation !important;
}

.first-load-spinner {
  display: table;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999999999999999999999999999999;
  font-family: sans-serif !important;

  background: #4CB8C4;
  background: linear-gradient(270deg, #4cb8c4, #4cd0c5);
  background-size: 400% 400%;
  transition: all 0.25s linear;

  -webkit-animation: AnimationName 5s ease infinite;
  -moz-animation: AnimationName 5s ease infinite;
  animation: AnimationName 5s ease infinite;

  @-webkit-keyframes AnimationName {
    0%{background-position:24% 0%}
    50%{background-position:77% 100%}
    100%{background-position:24% 0%}
  }
  @-moz-keyframes AnimationName {
    0%{background-position:24% 0%}
    50%{background-position:77% 100%}
    100%{background-position:24% 0%}
  }
  @keyframes AnimationName {
    0%{background-position:24% 0%}
    50%{background-position:77% 100%}
    100%{background-position:24% 0%}
  }
}

.first-load-spinner.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.first-load-spinner-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.first-load-spinner-message {
  color: white;
  margin-bottom: 2.5em;
  min-height: 1em;
}
