.fts-preload-fade-out {
  transition: opacity 500ms ease-out;
  opacity: 0;
}

.preload-container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  z-index: 10000 !important;
}

.preload-header {
  flex: 0 0 25%;
}

.preload-logo-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#ftsPreloadLogoImage {
  max-width: 70%;
  max-height: 20vh;
}

.preload-main {
  flex: 0 0 75%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ftsPreloadMessage {
  flex: 0 0 30%;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 !important;
  padding: 1.4rem 2rem;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  #ftsPreloadMessage {
    font-size: 1.5rem !important;
  }
}

.preload-spinner-wrapper {
  display: flex;
  flex: 0 0 70%;
  width: 100vw;
  position: relative;
}

.fts-custom-spinner-css {
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.fts-custom-spinner-css::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: 0;
  margin-left: -50px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: inherit !important;
  border-left-color: inherit !important;
  border-bottom-color: inherit !important;
  animation: spin 1.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
