﻿
.loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  color: #cbf8ec;
  background-color: #F5B041 ;
  transition: ease all 0.5s;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -ms-transition: ease all 0.5s;
}

.loader > div {
  align-self: center;
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

.loader-animation {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.loader-animation div {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation: loadinganimation 1.2s linear infinite;
}

.loader-animation div:nth-child(1) {
  top: 6px;
  left: 6px;
  animation-delay: 0s;
}

.loader-animation div:nth-child(2) {
  top: 6px;
  left: 26px;
  animation-delay: -0.4s;
}

.loader-animation div:nth-child(3) {
  top: 6px;
  left: 45px;
  animation-delay: -0.8s;
}

.loader-animation div:nth-child(4) {
  top: 26px;
  left: 6px;
  animation-delay: -0.4s;
}

.loader-animation div:nth-child(5) {
  top: 26px;
  left: 26px;
  animation-delay: -0.8s;
}

.loader-animation div:nth-child(6) {
  top: 26px;
  left: 45px;
  animation-delay: -1.2s;
}

.loader-animation div:nth-child(7) {
  top: 45px;
  left: 6px;
  animation-delay: -0.8s;
}

.loader-animation div:nth-child(8) {
  top: 45px;
  left: 26px;
  animation-delay: -1.2s;
}

.loader-animation div:nth-child(9) {
  top: 45px;
  left: 45px;
  animation-delay: -1.6s;
}

@keyframes loadinganimation {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
