/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
   :root {
    /* Colors */
    --white: #ffffff;
    --blue: #4982b9;
    --aqua: #27e0d0;
    --grey-body-text: #444444;
    --grey-button-text: #43424a;
    --grey-headings: #494a52;
    
    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: Arial, sans-serif;
    
    /* Font Sizes */
    --font-size-h3: 33px;
    --font-size-h4: 24px;
    --font-size-body: 17px;
    --font-size-job-info: 16px;
    --font-size-button: 14px;
    
    /* Line Heights */
    --line-height-h3: 40px;
    --line-height-h4: 28px;
    --line-height-body: 24px;
    --line-height-job-info: 24px;
    --line-height-button: 16px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    /* Shadows */
    --shadow-job-card: 0px 2px 30px 0px rgba(0, 0, 0, 0.08);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
	   
    --primary-background-color: #f2f2f2;
  }


  /* ============================================
     Core Styles
     ============================================ */

.margin-menu {
	margin-top: 5px;
	margin-bottom: 5px;
}

 body {
  font-family: var(--primary-font);
  color: var(--primary-text-color);
  background-color: var(--primary-background-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 141.176% */
  }
  
  a {
      font-family: var(--primary-font);
  color: var(--primary-text-color);
  }
  
  /* ============================================
     Core Styles FINISH
     ============================================ */

  /* ============================================
     Job Listing Card Container
     ============================================ */
  .job-listing-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-job-card);
    width: 100%;
    box-sizing: border-box;
  }
  
  /* ============================================
     Card Content Layout
     ============================================ */
  .job-listing-card-content {
    display: flex;
    gap: var(--spacing-xxl);
    align-items: flex-start;
    width: 100%;
  }
  
  /* ============================================
     Main Content Area
     ============================================ */
  .job-listing-card-main {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    min-width: 0;
  }
  
  /* ============================================
     Job Title
     ============================================ */
  .job-listing-card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h3);
    font-weight: 700;
    line-height: var(--line-height-h3);
    color: var(--blue);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0;
  }
  
  /* ============================================
     Job Details Container
     ============================================ */
  .job-listing-card-details {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
  }
  
  /* ============================================
     Job Details Column
     ============================================ */
  .job-listing-card-details-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  /* ============================================
     Job Detail Row
     ============================================ */
  .job-listing-card-detail-row {
    display: flex;
    gap: var(--spacing-xs);
    font-size: var(--font-size-job-info);
    line-height: var(--line-height-job-info);
    color: var(--grey-body-text);
  }
  
  .job-listing-card-detail-label {
    font-family: var(--font-body);
    font-weight: 700;
  }
  
  .job-listing-card-detail-value {
    font-family: var(--font-body);
    font-weight: 400;
  }
  
  /* ============================================
     Action Buttons Container
     ============================================ */
  .job-listing-card-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex-shrink: 0;
  }
  
  /* ============================================
     Apply Now Button
     ============================================ */
  .job-listing-card-apply-button {
    background-color: var(--aqua);
    padding: 12px var(--spacing-xl);
    border-radius: var(--radius-sm);
    border: none;
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    font-weight: 700;
    line-height: var(--line-height-body);
    color: var(--grey-button-text);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 147px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
  }
  
  .job-listing-card-apply-button:hover {
    background-color: var(--blue);
    color: var(--white);
  }
  
  .job-listing-card-apply-button:focus {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
  }
  
  /* ============================================
     View Details Button
     ============================================ */
  .job-listing-card-view-details-button {
    border: 1px solid var(--grey-button-text) !important;
    background-color: var(--white);
    padding: 12px var(--spacing-lg);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    font-weight: 700;
    line-height: var(--line-height-body);
    color: var(--grey-button-text);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
  }
  
  .job-listing-card-view-details-button:hover {
    background-color: #f5f5f5;
  }
  
  .job-listing-card-view-details-button:focus {
    outline: 2px solid var(--grey-button-text);
    outline-offset: 2px;
  }
  
  /* ============================================
     Responsive Styles
     ============================================ */
  @media (max-width: 768px) {
    .job-listing-card {
      padding: var(--spacing-lg);
    }
    
    .job-listing-card-content {
      flex-direction: column;
      gap: var(--spacing-lg);
    }
    
    .job-listing-card-details {
      flex-direction: column;
      gap: var(--spacing-md);
    }
    
    .job-listing-card-actions {
      width: 100%;
    }
    
    .job-listing-card-apply-button,
    .job-listing-card-view-details-button {
      width: 100%;
    }
    
    .job-listing-card-title {
      font-size: 28px;
      line-height: 36px;
    }
  }
  
  @media (max-width: 480px) {
    .job-listing-card {
      padding: var(--spacing-md);
    }
    
    .job-listing-card-title {
      font-size: 24px;
      line-height: 32px;
    }
  }

  /* ============================================
     Job Alerts Section
     Based on Figma Design: Planet Pharma
     Node IDs: 2-429, 2-463, 2-464
     ============================================ */
  
  /* Job Alerts Section Container
     Single div containing all three components */
  .job-alerts-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
    position: relative;
    box-sizing: border-box;
  }
  
  /* Job Alerts Image */
  .job-alerts-image {
    position: relative;
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  
  .job-alerts-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  /* Job Alerts Heading */
  .job-alerts-heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-h4);
    font-weight: 400;
    line-height: var(--line-height-h4);
    color: var(--grey-headings);
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0;
  }
  
  .job-alerts-heading p {
    margin: 0;
  }
  
  /* Job Alerts Button/Link */
  .job-alerts-button {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: var(--font-size-button);
    font-weight: 400;
    line-height: var(--line-height-button);
    color: var(--grey-button-text);
    text-align: center;
    transition: opacity 0.2s ease;
  }
  
  .job-alerts-button:hover {
    opacity: 0.8;
  }
  
  .job-alerts-button-text {
    margin: 0;
  }
  
  .job-alerts-button-underline {
    height: 1px;
    width: 100%;
    background-color: var(--grey-button-text);
    margin-top: 2px;
  }
  
  /* Job Alerts Section Responsive Styles */
  @media (max-width: 768px) {
    .job-alerts-section {
      gap: var(--spacing-md);
    }
    
    .job-alerts-heading {
      font-size: 20px;
      line-height: 24px;
    }
  }
  
  
 
  
  .sf_menu_background {
      background-color: #EEEEEE;
  }
  
  .sf_topmenu {
      /* Top menu styles - add properties as needed */
      display: block;
  }
  .sf_header_top_row {
      margin-top: 5px;
  }
  .sf_logo_header {
      /* Logo header styles - add properties as needed */
      display: block;
  }
  
  /* Jobs Filters */
  
  .job_search_left_facet_customs .facetwp-facet-title {
      color: #104B83;
      font-size: 24px;
      line-height: 32px;
      font-weight: 500;
      letter-spacing: 1px;
      font-family: var(--primary-font);
  }
  
  .job_search_left_facet_customs .fs-label-wrap {
      font-family: var(--primary-font);
      border: none;
      border-top: 3px solid #104B83;
      width: 100%;
      border-radius: 0;
      padding: 15.6px 0 15px 0;
      font-size: 18px;
      font-weight: 400;
      line-height: 24px;
      color: #4E504D;
  }
  
  .job_search_left_facet_customs .fs-label {
      padding: 0 !important;
  }
  
  .job_search_left_facet_customs .fs-wrap {
      width: 100%;
  }
  
  .job_search_left_facet_customs .fs-arrow {
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-top: 10px solid #104B83;
  }
  
  .job_search_left_facet_customs .fs-search {
      background: transparent;
      padding: 6px 0 !important;
  }
  
  .job_search_left_facet_customs .fs-wrap .fs-search input {
      font-family: var(--primary-font);
      font-size: 16px;
      line-height: 16px;
      color: #4E504D;
      font-weight: 400;
      border: 1px solid #4E504D;
      border-radius: 2px;
      padding: 6px 10px;
  }
  
  .job_search_left_facet_customs .fs-wrap .fs-search input::placeholder {
      font-family: var(--primary-font);
      font-size: 14px;
      color: #545454;
      font-weight: 400;
  }
  
  .job_search_left_facet_customs .fs-option.selected i {
      background: url(/job-search/wp-content/uploads/2024/05/Checked.svg);
      background-repeat: no-repeat;
      background-size: 14px 14px;
      cursor: pointer;
      background-color: transparent !important;
  }
  
  .job_search_left_facet_customs .fs-option i {
      background-image: url(/job-search/wp-content/uploads/2024/05/Unchecked.svg);
      border: 1px solid transparent !important;
      background-size: contain;
      background-repeat: no-repeat;
      background-color: transparent !important;
      width: 16px !important;
      height: 16px !important;
      margin-left: 0 !important;
  }
  
  .job_search_left_facet_customs .fs-option {
      padding-left: 24px !important;
  }
  
  .job_search_left_facet_customs .fs-option-label {
      font-family: var(--primary-font);
      color: #4E504D;
      font-size: 16px;
      font-weight: 400;
      line-height: 16px;
      
  }
  
  .job_search_left_facet_customs .fs-dropdown {
      border: none;
      padding: 0 !important;
      z-index: 6;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options {
      max-height: 200px;
      overflow: auto;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options::-webkit-scrollbar {
      width: 10px;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options::-webkit-scrollbar-track {
      background: transparent;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options::-webkit-scrollbar-thumb {
      background: #104B83; 
      border-radius: 0;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options::-webkit-scrollbar-thumb:hover {
      background: #555;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options {
      scrollbar-width: thin;
      scrollbar-color: #104B83 transparent;
  }
  
  #pp-accordion-af4kz0hqje59-panel-0 {
      padding-left: 0;
      padding-right: 0;
  }
  
  .job_search_left_facet_custom_accordian .pp-accordion-button {
      position: relative;
  }
  
  .job_search_left_facet_custom_accordian .pp-accordion-button-icon {
      top: 0;
      position: absolute;
      right: 3%;
      line-height: inherit;
  }
  
  .job_search_left_facet_custom_accordian .pp-accordion-button-icon:before {
      line-height: inherit;
  }
  
  .job_search_left_facet_custom_accordian .facetwp-slider-label {
      color: #545454;
      font-size: 14px;
      font-weight: 400;
  }
  
  .job_search_left_facet_custom_accordian .noUi-horizontal {
      height: 6px;
  }
  
  .job_search_left_facet_custom_accordian .noUi-target {
      background: #4E504D;
      border: 1px solid #4E504D;
  }
  
  .job_search_left_facet_custom_accordian .noUi-connect {
      background: #4E504D;
  }
  
  .job_search_left_facet_custom_accordian .noUi-handle {
      border: 1px solid #104B83;
      background: #104B83;
      border-radius: 100%;
      top: -8px !important;
  }
  
  .job_search_left_facet_custom_accordian input.facetwp-slider-reset {
      background-color: #104B83;
      color: #ffffff !important;
      text-decoration: none !important;
      padding: 6px 20px;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 400;
      font-family: "futura-pt", open sans;
      text-transform: uppercase;
      transition: all .3s ease;
      margin-top: 10px;
  }
  
  .job_search_left_facet_custom_accordian input.facetwp-slider-reset:hover {
      background-color: #821747;
      transition: all .3s ease;
  }
  
  .job_search_left_clear_filter_facet button.facetwp-reset {
      background-color: transparent;
      border: 1px solid #104B83;
      color: #104B83;
      text-decoration: none !important;
      padding: 10px 40px;
      border-radius: 2px;
      font-size: 16px;
      line-height: 16px;
      font-weight: 500;
      font-family: var(--primary-font);
      text-transform: uppercase;
      transition: all .3s ease;
      letter-spacing: 1px;
  }
  
  .job_search_left_clear_filter_facet button.facetwp-reset:hover {
      background-color: #104B83;
      color: #fff;
      transition: all .3s ease;
  }
  
  .job_search_left_clear_filter_facet .facetwp-facet {
      margin-bottom: 0;
  }
  
  /* Jobs Filters */