#nls-loader-wrapper {
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--nls-plugin-text);
  text-align: center;
  color: var(--nls-plugin-primary);
}

#nls-loader-wrapper button.nls-btn {
  color: var(--nls-plugin-text);
  border-width: 3px;
}

.loader,
.loader:before,
.loader:after {
  background: var(--nls-plugin-primary);
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader {
  color: var(--nls-plugin-primary);
  text-indent: -9999em;
  margin: 22px auto -5em;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  min-height: 5em;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {

  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }

  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

@keyframes load1 {

  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }

  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}