body{
  background: #fcfcfc;
}
.ifly-custom-loading,
body .ant-spin-nested-loading{
  opacity: 1;
}

.ifly-custom-loading__box,
body .ant-spin-nested-loading > div > .ant-spin{
  position: fixed;
  top:50%;
  left:50%;
  margin:-50px;
  width: 100px;
  height: 100px;
  z-index: 1001;
  background:url('ifly-icon-loading.png') no-repeat 50% 50%;
  text-align:center;
  font-size:12px;
  color:#7a859b;
}
.ant-spin-nested-loading .ant-spin span{
  display:none;
}

.ifly-custom-loading__box:after,
.ant-spin-nested-loading .ant-spin:after{
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #077df7;
  animation: custom-spin-loading 1.2s linear infinite;
}
.ifly-custom-loading__box--text{
  position:relative;
  margin-top:90px;
}
@keyframes custom-spin-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}