.preloader{
  z-index: 1000;
  position: absolute;
  left: 0;
  top: 0;

  height: 100%;
  max-height: 100%;
  overflow: hidden;
  width:100%;

  background:rgba(255,255,255,0.4);

  visibility: hidden;
  opacity: 0;/*
  -webkit-transition: visibility 0.5s, opacity 0.5s linear;
  -o-transition: visibility 0.5s, opacity 0.5s linear;
  transition: visibility 0.5s, opacity 0.5s linear;*/
}.preloader.loading{
  visibility: visible;
  opacity: 1;
/*
  -webkit-transition: visibility 0.5s, opacity 0.5s linear;
  -o-transition: visibility 0.5s, opacity 0.5s linear;
  transition: visibility 0.5s, opacity 0.5s linear;*/
}
.preloader .loadingIcon{
  margin-top:30vh;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  background:rgba(0,0,0,0.8);
  padding:30px 20px;
  border-radius: 10px;
}.preloader .loadingIcon h3{
  color: white;
  margin: 0;
  font-size: 15px;
}

.spinner {
  margin-bottom:10px;
  width: 100%;
  height: 60px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #F5AB35;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

/*Card loader*/
.card-loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.card-loader ~ strong {
  display: block;
  text-align: center;
  margin-top: 15px;
}
.card-loader div {
  animation: card-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.card-loader div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F5AB35;
  margin: -4px 0 0 -4px;
}
.card-loader div:nth-child(1) {
  animation-delay: -0.036s;
}
.card-loader div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.card-loader div:nth-child(2) {
  animation-delay: -0.072s;
}
.card-loader div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.card-loader div:nth-child(3) {
  animation-delay: -0.108s;
}
.card-loader div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.card-loader div:nth-child(4) {
  animation-delay: -0.144s;
}
.card-loader div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.card-loader div:nth-child(5) {
  animation-delay: -0.18s;
}
.card-loader div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.card-loader div:nth-child(6) {
  animation-delay: -0.216s;
}
.card-loader div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.card-loader div:nth-child(7) {
  animation-delay: -0.252s;
}
.card-loader div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.card-loader div:nth-child(8) {
  animation-delay: -0.288s;
}
.card-loader div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes card-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
