/* Minification failed. Returning unminified contents.
(689,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(692,64): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
 */
/* HERO SECTION */
@import url('results.css');
.hero { margin-top: 8rem; }

.hero .results-filter-form {
  background-color: #FFF;
  display: grid;
  margin: 4rem 1rem 3rem;
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  border: solid 1px #333;
}

.hero .results-filter-form .search-form-fieldset { padding: 0.5rem; }

.hero .results-filter-form .search-form-fieldset .search-form-label { width: 100%; }

.hero .results-filter-form .search-form-fieldset .input-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0rem;
  padding: 3px;
  color: #6A707A;
}

.hero .results-filter-form .search-form-fieldset .input-container svg {
  width: 1.125rem;
  height: 1.125rem;
  padding: 12px;
}

.hero .results-filter-form .search-form-fieldset .search-form-label:first-of-type .input-container { border-bottom: 1px solid rgba(106, 112, 122, 0.4); }

.hero .results-filter-form .search-form-fieldset input {
  font-size: 0.9rem;
  color: #6A707A;
  padding:12px;
}

.hero .results-filter-form .search-form-fieldset .btn-search-form {
  width: 100%;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  background-color: #000;
  color: #FFF;
  font-size: 0.9rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .results-filter-form .search-form-fieldset .btn-search-form:hover { transform: scale(1.02); cursor: pointer}

.job-results {
  display: grid;
  padding: 3rem 0 6rem;
  margin: 0 1rem;
}

.job-results .header {
  border-bottom: 2px solid rgba(106, 112, 122, 0.8);
  padding-bottom: 1rem;
  display: grid;
  gap: 1rem;
}

.job-results .header .main-header {
  display: grid;
  gap: 0.5rem;
}

/* BREADCRUMB */
.job-results .header .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.job-results .header .breadcrumb li:nth-of-type(1)::before { display: none; }

.job-results .header .breadcrumb li {
  display: flex;
  align-items: center;
}

.job-results .header .breadcrumb li::before {
  content: "|";
  margin-left: 0.35rem;
  margin-right: 0.35rem;
}

.job-results .header .breadcrumb li a,
.job-results .header .breadcrumb li p {
  color: #6A707A;
  font-size: 0.9rem;
  display: inline-block;
  font-weight: 400;
}

.job-results .header .breadcrumb svg {
  display: block;
  height: 1rem;
  width: 1rem;
  transition: 0.4s ease-in-out;
}

.job-results .header .breadcrumb .responsive-title {
  max-width: 3.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

/* JOB CONTAINER */
.jobs-section {
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
}

/* FILTERS CONTAINER */
.filters-desktop { display: none; }

.filters-btn-container {
  display: grid;
  place-self: end;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  border: 1px solid rgba(14, 14, 14, 0.5);
  padding: 1rem 2rem;
  background-color: #FFF;
  border-radius: 2rem;
  color: #000;
  font-size: 1rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 800;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn .lucide-funnel {
  width: 1rem;
  height: 1rem;
}

.filter-btn:hover {
  background-color: #000;
  color: #FFF;
}

.filters-mob {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  color: #FFF;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1022;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.filters-mob.active { transform: translateX(0); overflow:scroll}

.close-filters {
  align-self: flex-end;
  font-size: 1.25rem;
  cursor: pointer;
  color: #FFF;
}

.dropdown-btn {
  cursor: pointer;
  border: 1px solid rgba(14, 14, 14, 0.5);
  padding: 1rem 2rem;
  background-color: #FFF;
  border-radius: 2rem;
  color: #000;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.filters-menu {
  display: grid;
  gap: 2rem;
}

.filters-menu .filters-list {
  display: grid;
  gap: 1rem;
}

.filters-menu .filters-list h3 {
  font-size: 1.25rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 900;
}

.filters-menu .filters-list .filters-links {
  display: grid;
  gap: 0.9rem;
}

.filters-menu .filters-list .filters-links a {
  font-size: 1rem;
  color: #FFF;
  font-weight: 400;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.filters-menu .filters-list .filters-links a:hover { color: rgba(255, 255, 255, 0.6); }

.filters-menu .filters-list fieldset {
  display: grid;
  gap: 1rem;
}

.filters-menu .filters-list fieldset .filter-radio-btns {
  display: flex;
  gap: 0.5rem;
}

.filters-menu .filters-list fieldset .filter-radio-btns,
.filters-menu .filters-list fieldset .filter-radio-btns input,
.filters-menu .filters-list fieldset .filter-radio-btns label {
  cursor: pointer;
  color: #FFF;
  font-weight: 400;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.filters-menu .filters-list fieldset .filter-radio-btns:hover label { color: #99A1AF; }

.filters-menu .filters-list .salary-form fieldset { gap: 1rem; }

.filters-menu .filters-list .salary-form fieldset select {
  width: 100%;
  padding: 0.5rem 0.25rem;
  border: 1px solid #99A1AF;
  border-radius: 0.25rem;
}

.filters-menu .filters-list .salary-form fieldset .btn-salary {
  place-self: end;
  display: block;
  width: fit-content;
  font-size: 0.9rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid #FFF;
  color: #FFF;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.filters-menu .filters-list .salary-form fieldset .btn-salary:hover {
  background-color: #FFF;
  color: #000;
  border: 1px solid #000;
}

.dropdown-btn[data-type="Set"]{
    background-color: black;
    color:white;
}

.dropdown-btn:hover {
  background-color: #000;
  color: #FFF;
}

.dropdown.active > .dropdown-btn {
  border: 1px solid #000;
  border-radius: 2rem 2rem 0 0;
}

.dropdown.active > .dropdown-btn:hover {
  cursor: default;
  background-color: #FFF;
  color: #000;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% - 0.05rem);
  background-color: #FFF;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 1rem 1rem 1.5rem;
  width: 125%;
  border: 1px solid #000;
  border-radius: 0 1.5rem 2rem 2rem;
  max-width:90%;
}

.dropdown.active > .dropdown-btn + .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wider-width-menu { width: 190%; }

.dropdown-links {
  display: grid;
  gap: 1rem;
}

.dropdown-links a {
  color: #000;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-links a:hover { color: #99A1AF; }

.dropdown-menu fieldset {
  display: grid;
  gap: 1rem;
}

.dropdown-menu fieldset .filter-radio-btns {
  display: flex;
  gap: 0.5rem;
}

.dropdown-menu fieldset .filter-radio-btns,
.dropdown-menu fieldset .filter-radio-btns input,
.dropdown-menu fieldset .filter-radio-btns label {
  cursor: pointer;
  color: #000;
  font-weight: 400;
}

.dropdown-menu fieldset .filter-radio-btns:hover label { color: #99A1AF; }

.dropdown-menu .salary-form fieldset { gap: 1rem; }

.dropdown-menu .salary-form fieldset select {
  width: 100%;
  padding: 0.5rem 0.25rem;
  border: 1px solid #99A1AF;
  border-radius: 0.25rem;
}

.dropdown-menu .salary-form fieldset .btn-salary, .dropdown-menu FORM fieldset .btn-salary {
  place-self: end;
  display: block;
  width: fit-content;
  font-size: 0.9rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  background-color: #000;
  border: 1px solid #000;
  color: #FFF;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu .salary-form fieldset .btn-salary:hover, .dropdown-menu FORM fieldset .btn-salary:hover {
  background-color: #FFF;
  color: #000;
  border: 1px solid #000;
}

/* EMAIL CONTAINER */
.email-sign-up {
  background-color: #0F0F0F;
  border-radius: 0.75rem;
  padding: 1rem;
  color: #FFF;
}

.email-sign-up form {
  display: grid;
  gap: 0.75rem;
}

.email-sign-up form .medium-header {
  display: grid;
  align-items: center;
  justify-content: start;
  gap: 0.75rem;
  width: 100%;
}

.email-sign-up form .medium-header p { font-size: 0.9rem; }

.email-sign-up .form-title-h2 {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  font-size: 1.25rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 700;
}

.email-sign-up .form-title-h2::before {
  content: '';
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  background: url(/assets/img/icons/icon-flame.svg) no-repeat;
  background-position: center;
}

.email-sign-up form fieldset {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.email-sign-up form fieldset input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 0.5rem;
  border-radius: 0.25rem;
}

.email-sign-up form .email-btn {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #FFF;
  color: #000;
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  font-size: 0.9rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 0.25rem;
  border: 1px solid #FFF;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.email-sign-up form .email-btn:hover {
  background-color: #000;
  color: #FFF;
  border: 1px solid #FFF;
  cursor: pointer;
}
.job-feed {
  display: grid;
  gap: 1rem;
}

.job-container {
  display: grid;
  gap: 1rem;
}

.job-card {
  box-sizing: border-box;
  width: 100%;
  display: grid;
  gap: 0.75rem;
  color: #000;
  padding: 1rem;
  border: 1px solid rgba(106, 112, 122, 0.6);
  border-radius: 1rem;
  box-shadow: 0 0 12px 0 rgba(106, 112, 122, 0.4);
  cursor: pointer;
}

.job-card:hover { box-shadow: 0 0 12px 0 rgba(106, 112, 122, 0.6); }

.job-card .job-header {
  display: grid;
  gap: 0.75rem;
  align-items: center;
  grid-template-columns: 11fr 1fr;
}

.job-card .job-header .company-logo {
    justify-self: right;
    background-color: #FFF;
    xpadding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(106, 112, 122, 0.4);
    xwidth: fit-content;
    max-width: 10rem;
    max-height: 3rem;
    padding: 0;
    margin: 0;
    display: flex;
    width: fit-content;
}

.job-card .job-header .company-logo img {
    border-radius: 0.25rem; 
    inline-size: fit-content;
    margin: 0;
    padding: 0;
}

.job-card .job-header .company-title h3 {
  font-size: 1.25rem;
  letter-spacing: -0.8px;
  text-transform: none;
  font-weight: 900;
}

.job-card .job-header .company-title .company-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-card .job-header .company-title .company-location p {
  font-size: 0.9rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
}

/*.job-card .job-header .company-title .company-location p:before {
    margin-bottom: -0.15rem;
    content: '';
    display: inline-block;
    height: 1rem;
    width: 1rem;
    background: url(/assets/img/icons/icon-location-gry.svg) no-repeat;
}*/


.job-card .job-header .company-title .company-location svg {
  width: 1rem;
  height: 1rem;
}

.job-card .job-contents {
  display: grid;
  gap: 0.75rem;
}

.job-card .job-contents .js-jobcardlink { color: #000; }

.job-card .job-contents h2 {
  font-size: 1.4rem;
  letter-spacing: -0.8px;
  text-transform: none;
  font-weight: 900;
}

.job-card .job-contents .perks-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-card .job-contents .perks-pills .pill {
  border: 1px solid #000;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: none;
  font-weight: 700;
}

.job-card .job-contents .perks-pills .pill-salary {
  border: 1px solid #31BE54;
  background-color: #31BE54;
  color: #000;
}

.job-card .job-contents .perks-pills .pill-category, .job-card .job-contents .perks-pills .pill-category a {
  border: 1px solid #FFDD66;
  background-color: #FFDD66;
  color: #000;
}

.job-card .job-contents p {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
}

.job-card-footer .view-job-btn {
  display: flex;
  gap: 0.25rem;
  place-self: end;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #000;
  color: #FFF;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 0.5rem;
  border: 1px solid #000;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.job-card:hover .job-card-footer .view-job-btn {
  background-color: #FFF;
  color: #000;
  border: 1px solid #000;
}

.job-card .job-card-footer .view-job-btn:hover {
  background-color: #FFF;
  color: #000;
  border: 1px solid #000;
}

.loadmore-btn { display: grid; }

.show-more-btn {
  width: fit-content;
  place-self: center;
  padding: 1.25rem 2.5rem;
  border-radius: 2rem;
  background-color: #000;
  color: #FFF;
  font-size: 0.9rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.show-more-btn:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.compact-header,
.compact-body
{
    line-height: 5rem;
}

@media only screen and (min-width: 30rem) {

  .breadcrumb .responsive-title { max-width: 8rem; }
}

@media only screen and (min-width: 38rem) {

  .email-sign-up form { grid-template-columns: 1fr auto; }

  .email-sign-up form .medium-header { grid-column: 1 / span 2; }
}

@media only screen and (min-width: 40rem) {
  
  .breadcrumb .responsive-title { 
    max-width: initial;
    overflow: initial;
  }

  .breadcrumb li .main-link-hv:hover {
    text-decoration: none;
    color: var(--brand-purple);
  }

  .breadcrumb li .main-link-hv:before { background-color: var(--brand-purple); }

}

@media only screen and (min-width: 48rem) {

  .hero .results-filter-form .search-form-fieldset {
    display: flex;
    justify-content: space-between;
  }

  .hero .results-filter-form .search-form-fieldset .search-form-label:first-of-type .input-container {
    border-bottom: none;
    border-right: 1px solid rgba(106, 112, 122, 0.4);
    padding: 3px;
  }

  .hero .results-filter-form .search-form-fieldset .btn-search-form {
    border-radius: 3rem;
    width: 38%;
  }

}

@media only screen and (min-width: 54rem) {


  .detailspage {
    max-width: 56rem;
    margin: 4rem auto 0;
  }
  }



@media only screen and (min-width: 55rem) {

  .hero {
    max-width: 56rem;
    margin: 8rem auto 0;
  }

  .detailspage {
    max-width: 56rem;
    margin: 4rem auto 0;
  }

}

@media only screen and (min-width: 65rem) {


  .detailspage {
    max-width: 56rem;
    margin: 0rem auto 0;
    
  }
  }

@media only screen and (min-width: 67rem) {


  .detailspage {
    max-width: 56rem;
    margin: 0rem auto 0;
    
  }
  }

@media only screen and (min-width: 64rem) {



  .filters-btn-container { display: none; }

  .filters-desktop {
    display: flex;
    align-items: baseline;
    gap: 1rem;
  }

  .job-card .job-contents h2 {
      font-size: 2rem;
      letter-spacing: -0.8px;
      text-transform: none;
      font-weight: 900;
    }
}

@media only screen and (min-width: 67rem) {



  .job-results .header,
  .job-results .jobs-section {
    width: 100%;
    max-width: 96rem;
    margin: 0 auto;
  }

  .email-sign-up form .medium-header { display: flex; }

  .email-sign-up form .email-btn { width: 20rem; }

}

@media only screen and (min-width: 83.75rem) {

  .email-sign-up form { display: flex; }
}
