body {
  display: block;
}
.wrapper-loading {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  position: fixed;
  width: 100%;
}

.wrapper-loading .loading__dot {
  animation: dot ease-in-out 1s infinite;
  background-color: #ececec;
  display: inline-block;
  height: 50px;
  margin: 16px;
  width: 50px;
  border-radius: 50%;
}

.wrapper-loading .loading__dot:nth-of-type(2) {
  animation-delay: 0.2s;
}

.wrapper-loading .loading__dot:nth-of-type(3) {
  animation-delay: 0.3s;
}

@keyframes dot {
  0% {
    background-color: #ececec;
    transform: scale(1);
  }
  50% {
    background-color: gray;
    transform: scale(1.3);
  }
  100% {
    background-color: #ececec;
    transform: scale(1);
  }
}
