.loader {
  width: 45px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#03afde 0 0);
  background: var(--c), var(--c), var(--c), var(--c), var(--c), var(--c);
  animation: 
    l14-1 .5s infinite alternate,
    l14-2 2s infinite;
}

@keyframes l14-1 {
  0%, 10% { background-size: 20% 100% }
  100% { background-size: 20% 20% }
}

@keyframes l14-2 {
  0%, 49.9% { background-position: 0 0, 0 100%, 50% 50%, 50% 50%, 100% 0, 100% 100% }
  50%, 100% { background-position: 0 50%, 0 50%, 50% 0, 50% 100%, 100% 50%, 100% 50% }
}

.loader-container {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.job-opportunities__search-button.searching {
  opacity: 0.7;
  cursor: not-allowed;
}