.initial-loading {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 18px;
  letter-spacing: 1px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  --color-bottom: rgba(24, 143, 255, 0.75);
  --color: #1890ff;
}

.initial-loading > span {
  display: inherit;
  position: relative;
  width: 50px;
  height: 50px;
  transform: rotate(165deg);
}

.initial-loading .initial-loading__before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  animation: 2s ease 0s infinite spinners-HashLoader-before;
}

.initial-loading .initial-loading__after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  animation: 2s ease 0s infinite spinners-HashLoader-after;
}

@keyframes spinners-HashLoader-before {
  0% {
    width: 10px;
    box-shadow: var(--color-bottom) 20px -10px, var(--color-bottom) -20px 10px;
  }
  35% {
    width: 50px;
    box-shadow: var(--color-bottom) 0px -10px, var(--color-bottom) 0px 10px;
  }
  70% {
    width: 10px;
    box-shadow: var(--color-bottom) -20px -10px, var(--color-bottom) 20px 10px;
  }
  100% {
    box-shadow: var(--color-bottom) 20px -10px, var(--color-bottom) -20px 10px;
  }
}

@keyframes spinners-HashLoader-after {
  0% {
    height: 10px;
    box-shadow: var(--color) 10px 20px, var(--color) -10px -20px;
  }
  35% {
    height: 50px;
    box-shadow: var(--color) 10px 0px, var(--color) -10px 0px;
  }
  70% {
    height: 10px;
    box-shadow: var(--color) 10px -20px, var(--color) -10px 20px;
  }
  100% {
    box-shadow: var(--color) 10px 20px, var(--color) -10px -20px;
  }
}
