.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  width: 329px;
  height: 128px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center; }

.loading-spinner_nobg {
  background: none;
  position: static;
  transform: none;
  width: auto; }

.loading-spinner_title {
  color: white;
  font-size: 36px;
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
  text-transform: uppercase; }

.loading-spinner_indicator {
  display: inline-block;
  line-height: normal;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  opacity: 1;
  animation: loader 2.5s linear infinite;
  margin-left: 15px; }

