.preloader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FFF;
    z-index: 10000;
  }

  .g-spinner {
    width: 150px;
    height: 150px;
    position: absolute;
    transition: transform 250ms ease;
    -webkit-animation: rotator 1.4s linear infinite;
            animation: rotator 1.4s linear infinite;
  }
  .g-spinner circle {
    stroke-dasharray: 180;
    stroke-dashoffset: 0;
    stroke-width: 2;
    transform-origin: center;
    stroke: #049ef1;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 1.4s linear infinite;
            animation: dash 1.4s ease-in-out infinite, colors 1.4s linear infinite;
  }


  #preloader.hiding {
    opacity: 0;
  }

  #preloader.hidden {
    display: none;
  }

  .icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .icon svg {
    transition: transform 300ms ease;
  }

  @-webkit-keyframes rotator {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(260deg);
    }
  }

  @keyframes rotator {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(260deg);
    }
  }
  @-webkit-keyframes dash {
    0% {
      stroke-dashoffset: 180;
    }
    50% {
      stroke-dashoffset: 45;
      transform: rotate(135deg);
    }
    100% {
      stroke-dashoffset: 180;
      transform: rotate(450deg);
    }
  }
  @keyframes dash {
    0% {
      stroke-dashoffset: 180;
    }
    50% {
      stroke-dashoffset: 45;
      transform: rotate(135deg);
    }
    100% {
      stroke-dashoffset: 180;
      transform: rotate(450deg);
    }
  }
  @-webkit-keyframes colors {
    0% {
      stroke: #7fd2ff;
    }
    50% {
      stroke: #049ef1;
    }
    100% {
      stroke: #00669d;
    }
  }
  @keyframes colors {
    0% {
      stroke: #7fd2ff;
    }
    50% {
      stroke: #049ef1;
    }
    100% {
      stroke: #00669d;
    }
  }


#spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

#spinner.hiding {
  opacity: 0;
}

#spinner.hidden {
  display: none;
}

.three-bounce > div {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 5px;
  border-radius: 100%;
  background-color: #014C85;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
  animation: bouncedelay 1.4s infinite ease-in-out both
}

.three-bounce .one {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s
}

.three-bounce .two {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0)
  }
  40% {
    -webkit-transform: scale(1)
  }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1)
  }
}
