.selectric-wrapper.inactive {
  position: relative;
}
.selectric-wrapper.inactive::after {
  content: "";
  display: block;
  background: rgba(128, 128, 128, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.selectric .button {
  z-index: 2;
}
.selectric-wrapper.inactive .selectric .button:before {
  display: none;
}

/* .career-posts__wrapper {
    justify-content: start;
    gap: 28px;
} */

.career-posts__wrapper.loading {
  position: relative;
}
.career-posts__wrapper.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  animation: bgAnimation ease-in-out 3s infinite;
}

@keyframes bgAnimation {
  0% {
    background-color: rgba(26, 38, 49, 0.3);
  }
  50% {
    background-color: rgba(26, 38, 49, 0.8);
  }
  100% {
    background-color: rgba(26, 38, 49, 0.3);
  }
}
