.loading .loading-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading .loading-graphic .loading-dot {
  float: left;
  animation: loading 1.2s infinite;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6FC16D;
}
.loading .loading-graphic .loading-dot-left {
  animation-delay: 0s;
  margin-right: 16px;
}
.loading .loading-graphic .loading-dot-mid {
  animation-delay: 0.2s;
}
.loading .loading-graphic .loading-dot-right {
  animation-delay: 0.4s;
  margin-left: 16px;
}
.loading .loading-graphic:after {
  content: '';
  display: table;
  clear: both;
}
.full-screen-loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.1);
}
.full-screen-loading .loading-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.full-screen-loading .loading-graphic .loading-dot {
  float: left;
  animation: loading 1.2s infinite;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6FC16D;
}
.full-screen-loading .loading-graphic .loading-dot-left {
  animation-delay: 0s;
  margin-right: 16px;
}
.full-screen-loading .loading-graphic .loading-dot-mid {
  animation-delay: 0.2s;
}
.full-screen-loading .loading-graphic .loading-dot-right {
  animation-delay: 0.4s;
  margin-left: 16px;
}
.full-screen-loading .loading-graphic:after {
  content: '';
  display: table;
  clear: both;
}
.full-screen-loading .loading-graphic-ring {
  width: 225px;
  height: 160px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(0, 49, 107, 0.15);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.full-screen-loading .loading-graphic-ring .ring {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
}
.full-screen-loading .loading-graphic-ring .ring .ring-graph {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  border: 5px solid #6fc16d;
  border-radius: 50%;
  animation: ring-rotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #6fc16d transparent transparent transparent;
}
.full-screen-loading .loading-graphic-ring .ring .ring-graph:nth-child(1) {
  animation-delay: -0.45s;
}
.full-screen-loading .loading-graphic-ring .ring .ring-graph:nth-child(2) {
  animation-delay: -0.3s;
}
.full-screen-loading .loading-graphic-ring .ring .ring-graph:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.full-screen-loading .loading-graphic-ring .copy {
  font-weight: 700;
  font-size: 16px;
  margin-top: 24px;
}
.block-loading {
  position: relative;
  width: 100%;
  height: 100%;
}
.block-loading .loading-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.block-loading .loading-graphic .loading-dot {
  float: left;
  animation: loading 1s infinite;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e2e2e2;
}
.block-loading .loading-graphic .loading-dot-left {
  animation-delay: 0s;
  margin-right: 8px;
}
.block-loading .loading-graphic .loading-dot-mid {
  animation-delay: 0.2s;
}
.block-loading .loading-graphic .loading-dot-right {
  animation-delay: 0.4s;
  margin-left: 8px;
}
.block-loading .loading-graphic:after {
  content: '';
  display: table;
  clear: both;
}
@keyframes loading {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

