#fcp-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f4f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Ant Design style spinner */
#fcp-loader .spinner {
  position: relative;
  width: 32px;
  height: 32px;
}

#fcp-loader .spinner i {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background-color: #2E5CF6;
  border-radius: 50%;
  opacity: 0.3;
  animation: antSpinMove 1s infinite linear alternate;
}

#fcp-loader .spinner i:nth-child(1) {
  top: 0;
  left: 0;
}

#fcp-loader .spinner i:nth-child(2) {
  top: 0;
  right: 0;
  animation-delay: 0.4s;
}

#fcp-loader .spinner i:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 0.8s;
}

#fcp-loader .spinner i:nth-child(4) {
  bottom: 0;
  left: 0;
  animation-delay: 1.2s;
}

#fcp-loader .spinner-rotate {
  animation: antRotate 1.2s infinite linear;
}

#fcp-loader .text {
  margin-top: 16px;
  color: #2E5CF6;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

@keyframes antRotate {
  to {
    transform: rotate(360deg);
  }
}

