/*-------------------------------------------------------------------------------
  Loader
-------------------------------------------------------------------------------*/
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}
.double-bounce1, .double-bounce2 {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 { animation-delay: -1s; }

.double-bounce3, .double-bounce4 {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: scale(0); }
  50% { transform: scale(1); }
}