.loading {
  cursor: default;
  color: #164381;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.loadingCircle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
}
.circle {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 100%;
  background: #164381;
  -webkit-animation: isloading 0.5s 0 infinite;
  animation: isloading 0.5s 0 infinite;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
@-webkit-keyframes isloading {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes isloading {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.circle:nth-child(1) {
  -webkit-animation: isloading 1s infinite;
          animation: isloading 1s infinite;
}
.circle:nth-child(2) {
  -webkit-animation: isloading 1s 0.1s infinite;
          animation: isloading 1s 0.1s infinite;
}
.circle:nth-child(3) {
  -webkit-animation: isloading 1s 0.2s infinite;
          animation: isloading 1s 0.2s infinite;
}