body.careers>div {
  overflow: visible;
}

.careers .blackBG a {
  border:0;
}
.careers .blackBG a:hover {
  color:var(--pink);
}

#talos-results {
  margin-top:-50px;
}
.results-count {
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 40px;
}
.talos-venue {
  font-size: 14px;
  border-radius: 20px;
  background: var(--bs-dark-text-emphasis);
  padding: 3px 12px;
  margin-bottom: 10px;
}

.talos-job-search {
    background: var(--mid-black);
    transform: translateY(-50%);
}
.talos-job-search .row>* {
  margin-top:0;
}
.talos-job-search h2 {
    font-family: 'FK-Screamer';
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
}
.talos-job-search input,
.talos-job-search select {
    border-radius: 8px;
    padding: 16px 20px;
}
.talos-job-search .btn {
    background: var(--pink);
    font-size: 18px;
    color: var(--white);
}
.talos-job-card h2 a {
    border: 0;
    font-size: 24px;
    line-height: 32px;
}
.venue-and-posted-date {
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .5rem;
}
.address-and-job-type {
  display:flex;
  flex-wrap:wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.additional-job-details  {
  display:flex;
  justify-content: space-between;
}
.address-and-job-type .fal {
  margin-right:12px;
}
.address-and-job-type .fa-id-card {
  margin-left:32px;
}
.talos-job-card {
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid  var(--white-20);
}
.talos-job-card:first-of-type {
  padding-top:0;
}
.talos-job-card:last-of-type {
  border-bottom: 0;
}
.talos-job-card .small, 
.talos-job-card small {
    font-size: 14px;
    color: var(--white-50);
}

/* PAGINATION */
.talos-pagination {
  display: flex;
  align-items: center;
  margin: 60px 40px 80px 40px;
  color: #fff;
  font-size: 13px;
}

.talos-pagination a {
    color: inherit;
    text-decoration: none;
}

.talos-pagination__prev,
.talos-pagination__next {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.talos-pagination__prev {
    justify-self: start;
}

.talos-pagination__next {
    justify-self: end;
}

.talos-pagination__prev > span,
.talos-pagination__next > span {
    font-size: 24px;
    line-height: 1;
}

.talos-pagination__pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.talos-pagination__number,
.talos-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.talos-pagination__number[aria-current="page"],
.talos-pagination__number:hover {
    background: #303233;
}

.talos-pagination [aria-disabled="true"] {
    opacity: 0.5;
}

.talos-pagination a:focus-visible {
    outline: 2px solid #ec008c;
    outline-offset: 4px;
}

@media (max-width: 575px) {
    .talos-pagination {
        gap: 8px;
        font-size: 12px;
    }

    .talos-pagination__pages {
        gap: 2px;
    }

    .talos-pagination__number,
    .talos-pagination__ellipsis {
        width: 26px;
        height: 26px;
    }
}