body {
  height: 100dvh;
}

#autosync-visualizer-app-loader.d-none {
  display: none;
}

#autosync-visualizer-app-loader${this.configuration.identifier}.d-none {
  display: none;
}

.app-loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100% !important;
  width: 100% !important;
}

.app-loader {
  position: relative;
  background-color: #707070;
  color: #707070;
  animation: loader 1s infinite linear alternate;
  animation-delay: 0.5s;
}

.app-loader {
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.app-loader,
.app-loader::before,
.app-loader::after {
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.app-loader::before {
  left: -30px;
}

.app-loader::after {
  left: 30px;
}

.app-loader::before,
.app-loader::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.app-loader::before {
  background-color: #707070;
  color: #707070;
  animation: loader 1s infinite alternate;
  animation-delay: 0s;
}

.app-loader::after {
  background-color: #707070;
  color: #707070;
  animation: loader 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes loader {
  0% {
    background-color: #707070;
  }

  50%,
  100% {
    background-color: #f0f0f0;
  }
}
