<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --search-results-border-color: rgba(161, 160, 161, 0.45);
  --search-results-content-background-color: #f3f3f4;
  --search-results-content-title-color: #bc1e2d;
  --search-results-content-color: #58585a;

}

.jobs-loader {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(255 255 255 / 70%);
  z-index: 99;
  height: 100%;
  width: 100%;
  position: absolute;
}

.jobs-loader div {
  position: absolute;
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid var(--search-results-content-title-color);
  border-color: var(--search-results-content-title-color) transparent var(--search-results-content-title-color) transparent;
  -webkit-animation: jobs-loader 1.2s linear infinite;
          animation: jobs-loader 1.2s linear infinite;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
}

@-webkit-keyframes jobs-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes jobs-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.jobs-results p,
.jobs-results span,
.jobs-results ul {
  color: var(--search-results-content-color);
}

.jobs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 15px 0;
  border-bottom: 1px solid var(--search-results-border-color);
}

.jobs-item:not(:first-child) {
  cursor: pointer;
}

.jobs-results .jobs-row:first-child {
  border-bottom: 1px solid #3e3a3b;
}

.jobs-results .jobs-row:first-child span {
  font-size: 120%;
}

.jobs-row .jobs-col {
  padding: 0 10px;
}

.jobs-row .jobs-col:nth-child(1),
.jobs-row .jobs-col:nth-child(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}
.jobs-row .jobs-col:nth-child(3),
.jobs-row .jobs-col:nth-child(4) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
}

.jobs-row .jobs-col:nth-child(4) {
  text-align: center;
}

.jobs-content-wrap{
  display: none;
}
.jobs-content{
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: inherit;
  height: auto;
  background-color: var(--search-results-content-background-color);
}


.jobs-content .jobs-content-col{
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
  padding: 0 10px;
}

.jobs-content .jobs-area-col{
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
  padding: 0 10px;
}

.jobs-content .jobs-button-col{
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.jobs-content .jobs-content-title{
  font-size: 120%;
  color:var(--search-results-content-title-color);
  margin: 0;
  line-height: 1.2;
}

.jobs-pagination {
  text-align: center;
  padding: 15px;
}
.jobs-pagination .current {
  color:var(--search-results-content-title-color);
}

.no-jobs-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.no-jobs-results span{
  font-size: 110%;
}

.jobs-results .job-button {
  outline: none;
  border: none;
  border-radius: 25px;
}

@media only screen and (max-width: 767px) {
  .jobs-results .jobs-row:first-child span {
    /* font-size: 1rem; */
  }

  .jobs-content{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .jobs-content &gt; div{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .jobs-content .jobs-button-col{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

}
</pre></body></html>