.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #670e10;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cssload-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.cssload-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 230ms ease;
  z-index: 1;
}

.cssload-circle:nth-child(1) {
  background: rgb(103 14 16);
  animation: cssload-explode 1.15s ease infinite;
  z-index: 1;
}

.cssload-circle:nth-child(2) {
  background: rgb(255, 0, 4);
  animation: cssload-explode 1.15s ease infinite;
  animation-delay: 0.58s;
  z-index: 1;
}

@keyframes cssload-explode {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  50% {
    width: 10em;
    height: 10em;
    opacity: 0.5;
  }
  100% {
    width: 0;
    height: 0;
    opacity: 0;
  }
}

.loader__label {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 2; /* above the animation */
}

.loader__label img {
  width: 150px;
  height: auto;
  object-fit: contain;
}
