x-loader {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--theme-background-color-glass);
}
x-loader div {
  display: block;
  height: 1px;
  width: 1px;
  border: 3px solid;
  border-radius: 2px;
  transform: translateY(0%);
  animation: verticalwave 1s ease-in-out;
  animation-iteration-count: infinite;
}
x-loader div:nth-child(1) {
  animation-delay: 0ms;
}
x-loader div:nth-child(2) {
  animation-delay: 150ms;
}
x-loader div:nth-child(3) {
  animation-delay: 300ms;
}
x-loader div:nth-child(4) {
  animation-delay: 450ms;
}
x-loader div:nth-child(5) {
  animation-delay: 600ms;
}
@keyframes verticalwave {
  from {
    transform: translateY(0%);
  }
  12% {
    transform: translateY(50%);
  }
  38% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(0%);
  }
}