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

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

.loading-spinner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  margin-bottom: 24px;
}

.loading-spinner-logo__image {
  display: block;
  width: 180px;
  height: 55px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

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

.loading-spinner_indicator {
  display: inline-block;
  line-height: normal;
  background-image: url("/images/bullet-holes/bullet-hole-1.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 21px;
  height: 21px;
  opacity: 0;
  /*scale: 1;*/
  animation: loader 2.5s linear infinite;
  margin-left: 20px; }

.loading-spinner_indicator-first {
  margin-left: 0; }

.loading-spinner_indicator-second {
  animation-delay: .5s; }

.loading-spinner_indicator-third {
  animation-delay: 1s; }

.loading-spinner_indicator-fourth {
  animation-delay: 1.5s; }

.loading-spinner_indicator-fifth {
  animation-delay: 2s; }

body {
  background-color: #121416;
  background-attachment: fixed;
}

@keyframes loader {
  0% {
    scale: .9;
    opacity: 0;
  }
  40%,60%,80%,100% {
    opacity: 1;
    scale: 1;
  }
}
