.inline-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(109, 123, 140, 0.2);
  z-index: 100;
  display: none;
}
.inline-loader._loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inline-loader .dots {
  display: flex;
  position: absolute;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inline-loader .dot {
  height: 3px;
  width: 3px;
  background-color: #2b63d9;
  border-radius: 100%;
  animation: loading 2s ease-in-out infinite;
}
.inline-loader .dot:nth-child(2) {
  animation-delay: 0.4s;
  margin: 0.25rem;
}
.inline-loader .dot:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes loading {
50% {
    opacity: 0.5;
    transform: scale(3) translateY(-1.5px);
}
}