.job-list_block {
  padding: 40px 0;
}
.job-list_filters {
  display: flex;
  gap: 20px;
}
.job-list_filters .plj-filter_field input {
  width: 250px;
  height: 45px;
  padding: 6px;
  padding-block: 0;
}
.job-list_filters .plj-filter_field select {
  width: 140px;
  height: 45px;
  padding: 6px;
}
.job-list_filters #filter-button {
  padding: 12px 18px;
  border: none;
  background: #ce1b1b;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.24), 0px 3px 6px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.job-list_header h2 {
  margin-top: 0;
}
.job-list_items {
  padding-top: 30px;
}
.job-list_items > ul {
  padding: 0;
  margin: 0;
}
.job-list_items > ul li {
  list-style-type: none;
}
.job-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
.job-item h3.job-location {
  margin-bottom: 5px;
}
.job-list_items #pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.job-list_items #pagination .page-numbers {
  color: #274573;
  font-size: 22px;
  text-decoration: none;
  font-weight: 500;
}
.job-list_items #pagination .page-numbers.current {
  color: #ce1b1b;
}
.job-item_left {
  width: 80%;
}
.job-item_right {
  width: 20%;
}

/* plj-filter_loader */
.loader-wrapper {
  display: flex;
  justify-content: center;
}
.plj-filter_loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #274573;
  display: none;
}
.plj-filter_loader:before,
.plj-filter_loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
.plj-filter_loader:after {
  color: #ff3d00;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

.apply-job-btn a {
  display: inline-block;
  margin: 20px 0;
  padding: 14px 36px;
  border: none;
  background: #ce1b1b;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.24), 0px 3px 6px rgba(0, 0, 0, 0.12);
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}

@media only screen and (max-width: 600px) {
  .job-list_filters {
    flex-wrap: wrap;
  }
  .job-list_filters .plj-filter_field input,
  .job-list_filters .plj-filter_field select {
    width: 100%;
  }
}
