:root {
  --primary: #23bcec;
}

html,
body,
main,
.page-host,
section {
  height: 100%;
  overflow: hidden;
}
body {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  color: #464d69;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

body,
.theme-light body {
  margin: 0;
}

div.body-loader,
.theme-light div.body-loader {
  background-color: var(--primary);
  width: 100vw;
  height: 100vh;

  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 100px;
  text-align: center;
  line-height: 110px;
}

.loader-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
}

@keyframes wave-animation {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 60px bottom;
  }
}
@keyframes shade {
  0% {
    opacitiy: 0.2;
    background-position-x: -500%;
  }
  100% {
    opacity: 1;
    background-position-x: 500%;
  }
}

.loader-loading {
  height: 170px;
  bottom: 0;
  display: block;
  background-color: var(--primary);
}

.loader-loading#loader-loading {
  background-image: url("/images/loader.png");
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px rgba(255, 255, 255, 0.06);
  animation: wave-animation 1s infinite linear;
  background-repeat: repeat-x;
  opacity: 1;
}

.loader-loading-shadow {
  opacity: 0;
  display: block;
  position: absolute;
  color: var(--primary);
  bottom: 0;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  background-color: var(--primary);
  background: linear-gradient(90deg, #ffffff, #7ad61f, #ffffff);
  background-size: 70% 100%;
  background-repeat: no-repeat;
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: max-content;
}

.loader-loading-shadow-animate {
  animation: shade 1.7s linear;
}

.loader-subtitle {
  color: white;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media only screen and (min-width: 1000px) {
  .loader-loading {
    background-size: 150px 220px !important;
  }
}

@media only screen and (max-width: 800px) {
  div.body-loader,
  .theme-light div.body-loader {
    font-size: 45px;
  }

  .loader-loading {
    height: 100px;
  }

  .loader-loading {
    height: 85px;
    background-size: 80px 65px !important;
  }
}

@media only screen and (max-width: 600px) {
  div.body-loader,
  .theme-light div.body-loader {
    font-size: 40px;
  }
  .loader-loading {
    height: 100px;
  }
}

@media only screen and (max-width: 450px) {
  div.body-loader,
  .theme-light div.body-loader {
    font-size: 30px;
  }

  .loader-loading {
    height: 85px;
    background-size: 80px 58px !important;
  }

  .loader-subtitle {
    font-size: 20px;
  }

  .loader-loading-shadow {
    background-size: 145px 70px;
  }
}
