.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.loader .logo-container {
  background: rgba(255, 255, 255);
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.loader img {
  background: rgba(255, 255, 255);
  width: 130px;
  height: auto;
  display: block;
  position: relative;
  z-index: 10000;
  opacity: 1 !important;
  visibility: visible !important;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.dots span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #6b0202;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

.dots span:nth-child(1) {
  animation-delay: 0s;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.show-loader {
  display: flex !important;
}