:root {
    --light: #f6f6f9;
    --oxford-blue: #121f3d;
    --yellow-green: #95ca3e;
}

* {
    box-sizing: border-box;
}

.container-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--oxford-blue);
    z-index: 1500;
}

.loader {
  width: 100px;
  height: 100px;
  display: inline-table;
  box-sizing: border-box;
}

.loader row span {
  display: table-cell;
  position: relative;
  background: var(--yellow-green);
  opacity: 0;
  -webkit-animation: flicker 0.5985999999999999s ease-out infinite alternate;
  -moz-animation: flicker 0.5985999999999999s ease-out infinite alternate;
  -ms-animation: flicker 0.5985999999999999s ease-out infinite alternate;
  -o-animation: flicker 0.5985999999999999s ease-out infinite alternate;
  animation: flicker 0.5985999999999999s ease-out infinite alternate;
}

#animation-text{
  max-height: 150px;
}

@-webkit-keyframes flicker {
  from,
  20% {
    opacity: 0;
  }
  100%,
  to {
    opacity: 1;
  }
}

@-moz-keyframes flicker {
  from,
  20% {
    opacity: 0;
  }
  100%,
  to {
    opacity: 1;
  }
}

@-ms-keyframes flicker {
  from,
  20% {
    opacity: 0;
  }
  100%,
  to {
    opacity: 1;
  }
}

@-o-keyframes flicker {
  from,
  20% {
    opacity: 0;
  }
  100%,
  to {
    opacity: 1;
  }
}

@keyframes flicker {
  from,
  20% {
    opacity: 0;
  }
  100%,
  to {
    opacity: 1;
  }
}

.loader row:nth-child(1) span:nth-child(1) {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loader row:nth-child(1) span:nth-child(2) {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -ms-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.loader row:nth-child(1) span:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loader row:nth-child(2) span:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loader row:nth-child(2) span:nth-child(2) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -ms-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.loader row:nth-child(2) span:nth-child(3) {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.loader row:nth-child(3) span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -ms-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loader row:nth-child(3) span:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loader row:nth-child(3) span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}