.ant-spin {
  color: #2db7f5;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  font-size: 12px;
}
.ant-spin-spinning {
  opacity: 1;
  position: static;
  visibility: visible;
}
.ant-spin-nested-loading {
  position: relative;
}
.ant-spin-nested-loading .ant-spin {
  position: absolute;
  top: 50%;
  height: 20px;
  line-height: 20px;
  margin-top: -10px;
  z-index: 4;
  text-align: center;
  width: 100%;
}
.ant-spin-container {
  -webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-spin-nested-loading > .ant-spin-container {
  opacity: 0.7;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  -webkit-filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
          filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
  /* IE6~IE9 */
  pointer-events: none;
}
.ant-spin-tip {
  color: #999;
}
.ant-spin-dot {
  -webkit-animation: antSpinPulse 1.2s infinite cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation: antSpinPulse 1.2s infinite cubic-bezier(0.78, 0.14, 0.15, 0.86);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background-color: #2db7f5;
}
.ant-spin-dot-second {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}
.ant-spin-dot-third {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}
.ant-spin-dot + .ant-spin-dot {
  margin-left: 8px;
}
.ant-spin-sm .ant-spin-dot {
  width: 4px;
  height: 4px;
}
 + .ant-spin-sm .ant-spin-dot {
  margin-left: 4px;
}
.ant-spin-lg .ant-spin-dot {
  width: 16px;
  height: 16px;
}
 + .ant-spin-lg .ant-spin-dot {
  margin-left: 16px;
}
.ant-spin-text,
.ant-spin.ant-spin-show-text .ant-spin-dot {
  display: none;
}
.ant-spin.ant-spin-show-text .ant-spin-text {
  display: block;
}
@-webkit-keyframes antSpinPulse {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes antSpinPulse {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ */
  .ant-spin-nested-loading > .ant-spin-container {
    background: #fff;
    opacity: 0.5;
  }
}
