@charset "UTF-8";
/* Normalize
----------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Details page
----------------------- */
.job-article {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}
.job-article .job-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.job-article .job-meta p {
  margin: 0.25rem 0;
  color: #000;
  font-size: 1rem;
}
.job-article .job-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  /* Merken-Button via Mixin */
}
.job-article .job-actions button, .job-article .job-actions a {
  position: relative;
}
.job-article .job-actions button:focus, .job-article .job-actions a:focus {
  outline: none;
}
.job-article .job-actions button:focus-visible, .job-article .job-actions a:focus-visible {
  outline: 2px solid #F4A030;
  outline-offset: 2px;
  z-index: 10;
}
.job-article .job-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.job-article .job-actions .btn-primary {
  background-color: #F4A030;
  color: #000;
}
.job-article .job-actions .btn-primary:hover {
  background-color: #e6c300;
}
.job-article .job-actions .btn-secondary {
  background-color: #f5f5f5;
  color: #444;
  border: 1px solid #ccc;
  font-size: 0.9rem;
}
.job-article .job-actions .btn-secondary:hover {
  background-color: #eee;
  color: #000;
}
.job-article .job-actions .btn-heart {
  position: relative;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-image: url("https://www.salesjob.de/wp-content/themes/salesjob_theme/img/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  transition: background-color 0.2s;
}
.job-article .job-actions .btn-heart.bookmark {
  background-image: url("https://www.salesjob.de/wp-content/themes/salesjob_theme/img/star-hover.svg");
}
.job-article .job-actions .btn-heart:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.job-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 0.5rem;
}
.job-footer-nav .pagination {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.job-footer-nav .page-info {
  font-size: 0.85rem;
  color: #000;
  white-space: nowrap;
}
.job-footer-nav .page-info .bold {
  font-weight: 700;
  color: #000;
}
.job-footer-nav .prev-next {
  display: flex;
  gap: 4px;
}
.job-footer-nav .btn-nav {
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.job-footer-nav .btn-nav:hover {
  background-color: #f8f9fa;
  border-color: #dcdde1;
}
.job-footer-nav .btn-nav::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  display: block;
}
.job-footer-nav .prev::after {
  transform: rotate(-45deg);
  margin-left: 3px;
}
.job-footer-nav .next::after {
  transform: rotate(135deg);
  margin-right: 3px;
}

@media (max-width: 768px) {
  .job-title {
    font-size: 1.125rem;
  }
  .job-footer-nav {
    gap: 0.5rem;
  }
}
/* Form filter
----------------------- */
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
}

.main-wrapper {
  display: flex;
  margin: 0 auto;
  gap: 40px;
}

.sidebar-dialog {
  flex: 1;
  min-width: 300px;
  border: none;
}
.sidebar-dialog .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sidebar-dialog .filter-header h2 {
  margin: 0;
}
.sidebar-dialog .filter-header .badge {
  background: #4a4a4a;
  color: #fff;
  margin-right: 3rem;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.sidebar-dialog form.filter-container {
  position: relative;
  background: transparent;
  padding: 25px;
  border-radius: 0;
  border: none;
  top: 20px;
}
.sidebar-dialog form.filter-container button:focus, .sidebar-dialog form.filter-container input:focus, .sidebar-dialog form.filter-container summary:focus, .sidebar-dialog form.filter-container .filter-item:focus {
  outline: none;
}
.sidebar-dialog form.filter-container button:focus-visible, .sidebar-dialog form.filter-container input:focus-visible, .sidebar-dialog form.filter-container summary:focus-visible, .sidebar-dialog form.filter-container .filter-item:focus-visible {
  outline: 2px solid #F4A030;
  outline-offset: 2px;
}
.sidebar-dialog form.filter-container fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.sidebar-dialog form.filter-container fieldset .filter-content {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar-dialog form.filter-container fieldset .filter-content li:nth-child(n+3) {
  display: none !important;
}
.sidebar-dialog form.filter-container fieldset .filter-content.is-expanded li:nth-child(n+3) {
  display: flex !important;
}
.sidebar-dialog form.filter-container fieldset .filter-content .filter-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}
.sidebar-dialog form.filter-container fieldset .filter-content .filter-item label {
  font-size: 18px;
  cursor: pointer;
}
.sidebar-dialog form.filter-container fieldset .filter-content .filter-item input[type=checkbox] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 12px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: none;
  background-color: #fff;
}
.sidebar-dialog form.filter-container fieldset .filter-content .filter-item input[type=checkbox]:focus-visible {
  z-index: 11;
}
.sidebar-dialog form.filter-container fieldset .filter-content .filter-item input[type=checkbox]:checked::before {
  content: "✕";
  color: black;
  font-size: 16px;
  font-weight: bold;
}
.sidebar-dialog form.filter-container fieldset .filter-content .filter-item .count {
  color: #7f8c8d;
  font-size: 0.85rem;
  margin-left: 5px;
}
.sidebar-dialog form.filter-container fieldset .btn-toggle-more {
  background: none;
  border: none;
  color: #F4A030;
  font-weight: 800;
  font-size: 18px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  margin-top: 5px;
  transition: opacity 0.2s ease;
}

.btn {
  padding: 12px;
  border: none;
  border-radius: 0;
  font-weight: bold;
  cursor: pointer;
}

.btn-mobile-trigger {
  display: none;
  background: #4a4a4a;
  color: #fff;
  margin-bottom: 20px;
}

.form-actions {
  display: none;
  gap: 10px;
  margin-top: 30px;
}
.form-actions .btn-primary {
  width: 100%;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  background: #F4A030;
}
.form-actions .btn-secondary {
  width: 100%;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  background: #000;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .main-wrapper {
    flex-direction: column;
  }
  .btn-mobile-trigger {
    display: block;
  }
  .sidebar-dialog[open] {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
    overflow-y: auto;
    background: #DDE0E2;
  }
  .filter-summary {
    list-style: none;
    padding: 15px 0;
    font-weight: bold;
    border-top: 1px solid #dcdde1;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }
  .filter-summary::after {
    content: "+";
  }
  .filter-group fieldset button {
    margin-bottom: 1.25rem;
  }
  .filter-group[open] .filter-summary::after {
    content: "−";
  }
  .btn-close {
    position: absolute;
    top: 14px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 10px;
    z-index: 10;
  }
  .form-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .sidebar-dialog {
    display: block !important;
    position: static;
    background: transparent;
  }
  .filter-summary {
    list-style: none;
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    cursor: pointer;
    border-radius: 0;
  }
  .filter-summary::-webkit-details-marker {
    display: none;
  }
  .btn-close {
    display: none;
  }
  .filter-group {
    margin-bottom: 2.25rem;
    display: block;
  }
  .filter-group > fieldset, .filter-group > ul {
    display: block !important;
  }
  .filter-group .filter-summary {
    display: block;
    pointer-events: none;
    cursor: default;
    list-style: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .filter-group .filter-summary::-webkit-details-marker {
    display: none;
  }
  #filter_anzahl.badge {
    display: none;
  }
}
.content {
  flex: 2;
}

.job-card {
  background: #fff;
  padding: 20px;
  border-radius: 0;
  border: 1px solid #dcdde1;
  margin-bottom: 20px;
}

/* Form search
----------------------- */
.search-form input,
.search-form .selection-item,
.search-form button {
  position: relative;
}
.search-form input:focus,
.search-form .selection-item:focus,
.search-form button:focus {
  outline: none;
}
.search-form input:focus-visible,
.search-form .selection-item:focus-visible,
.search-form button:focus-visible {
  outline: 2px solid #F4A030;
  outline-offset: 2px;
  z-index: 4;
}
.search-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.search-form fieldset .search-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.search-form fieldset .search-wrapper .input-wrapper {
  position: relative;
  width: 100%;
}
.search-form fieldset .search-wrapper .input-wrapper input[type=text] {
  width: 100%;
  font-size: clamp(13px, 0.73rem + 0.32vw, 18px);
  border: 0;
  border-right: 1px solid #e0e0e0;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
}
.search-form fieldset .search-wrapper .job-title-selection, .search-form fieldset .search-wrapper .vorschlaege {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 0 0 0 0;
}
.search-form fieldset .search-wrapper .job-title-selection[hidden], .search-form fieldset .search-wrapper .vorschlaege[hidden] {
  display: none;
}
.search-form fieldset .search-wrapper .job-title-selection .selection-list, .search-form fieldset .search-wrapper .vorschlaege .selection-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-form fieldset .search-wrapper .job-title-selection .selection-list .selection-item, .search-form fieldset .search-wrapper .vorschlaege .selection-list .selection-item {
  padding: 12px 15px;
  border-bottom: 1px solid #f8f9fa;
  cursor: pointer;
}
.search-form fieldset .search-wrapper .job-title-selection .selection-list .selection-item:hover, .search-form fieldset .search-wrapper .job-title-selection .selection-list .selection-item:focus-visible, .search-form fieldset .search-wrapper .vorschlaege .selection-list .selection-item:hover, .search-form fieldset .search-wrapper .vorschlaege .selection-list .selection-item:focus-visible {
  background: #f8f9fa;
}
.search-form fieldset .search-wrapper .job-title-selection .btn-apply, .search-form fieldset .search-wrapper .vorschlaege .btn-apply {
  width: 100%;
  padding: 1rem;
  color: #fff;
  font-size: clamp(13px, 0.73rem + 0.32vw, 18px);
  border: none;
  background-color: #F4A030;
}
.search-form fieldset .search-wrapper .clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #eee;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.search-form fieldset .search-wrapper .job-title-wrapper {
  flex: 0 0 30%;
}
.search-form fieldset .search-wrapper .job-title-wrapper input {
  background: #fff url(https://salesjob.de/wp-content/themes/salesjob_theme/img/beruf.svg) 15px center no-repeat;
  background-size: 20px auto;
}
.search-form fieldset .search-wrapper .job-location-container {
  display: flex;
  flex: 0 0 40%;
}
.search-form fieldset .search-wrapper .job-location-container .job-location-wrapper {
  flex: 0 0 75%;
}
.search-form fieldset .search-wrapper .job-location-container .job-location-wrapper input {
  background: #fff url(https://salesjob.de/wp-content/themes/salesjob_theme/img/ort.svg) 15px center no-repeat;
  background-size: 20px auto;
}
.search-form fieldset .search-wrapper .job-location-container .job-area-wrapper {
  flex: 0 0 25%;
}
.search-form fieldset .search-wrapper .job-location-container .job-area-wrapper f input {
  border-right: 0;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 10px center no-repeat;
  background-size: 16px auto;
}
.search-form fieldset .search-wrapper .form-actions {
  display: block;
  flex: 0 0 30%;
  margin-top: 0;
}
.search-form fieldset .search-wrapper .form-actions .btn-submit {
  width: 100%;
  height: 100%;
  padding: 0;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 0;
  background-color: #F4A030;
}
.search-form fieldset .search-wrapper .form-actions .btn-submit span {
  color: #fff;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 18px;
  font-weight: 800;
  background: #F4A030 url(https://salesjob.de/wp-content/themes/salesjob_theme/img/search-white.svg) 10px center no-repeat;
  background-size: 26px auto;
}
@media screen and (max-width: 767px) {
  .search-form .search-wrapper {
    flex-direction: column !important;
    gap: 10px;
  }
  .search-form .search-wrapper .job-title-wrapper,
  .search-form .search-wrapper .job-location-container,
  .search-form .search-wrapper .form-actions {
    flex: 0 0 100%;
  }
  .search-form .search-wrapper .job-location-container {
    flex-direction: row;
  }
  .search-form .search-wrapper .job-location-container .job-location-wrapper {
    flex: 0 0 80%;
  }
  .search-form .search-wrapper .job-location-container .job-area-wrapper {
    flex: 0 0 20%;
  }
  .search-form input[type=text] {
    height: 53px !important;
    padding: 0 15px 0 45px !important;
  }
  .search-form .btn-submit {
    height: 53px !important;
  }
  .search-form .job-area-wrapper input {
    padding-left: 15px !important;
  }
  .search-form .btn-submit {
    background-position: 20px center;
  }
}
@media screen and (min-width: 768px) {
  .search-form input[type=text], .search-form .btn-submit {
    height: 68px;
    padding: 0 20px 0 60px;
  }
  .search-form .job-area-wrapper input {
    padding-left: 20px;
  }
}

/* Job results
----------------------- */
.job-results {
  margin: 0 auto;
}
.job-results .job-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 0;
  transition: box-shadow 0.3s ease;
  background: #fff;
}
.job-results .job-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.job-results .job-card .main-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-decoration: none;
}
.job-results .job-card .main-link:focus-visible {
  outline: 2px solid #F4A030;
  outline-offset: 2px;
}
.job-results .job-card .job-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.job-results .job-card .job-main .job-info {
  flex: 1;
}
.job-results .job-card .job-main .job-info .job-title {
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0 0 10px 0;
  color: #000;
  font-weight: 700;
  transition: color 0.2s ease;
}
.job-results .job-card .job-main .job-info .company {
  font-weight: 600;
}
.job-results .job-card .job-main .job-info .company::after {
  content: "•";
  margin-left: 12px;
  color: #adb5bd;
}
.job-results .job-card .job-main .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.job-results .job-card .job-main .job-logo img {
  max-width: 110px;
  max-height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}
.job-results .job-card .btn-heart {
  position: relative;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-image: url("https://www.salesjob.de/wp-content/themes/salesjob_theme/img/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  transition: background-color 0.2s;
  margin-top: 10px;
  z-index: 2;
}
.job-results .job-card .btn-heart.bookmark {
  background-image: url("https://www.salesjob.de/wp-content/themes/salesjob_theme/img/star-hover.svg");
}
.job-results .job-card .btn-heart:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.job-results .job-card .btn-heart:focus-visible {
  outline: 2px solid #F4A030;
  outline-offset: 2px;
}

.pagination-container {
  font-family: system-ui, -apple-system, sans-serif;
  margin: 2rem 0;
}
.pagination-container .pagination-info {
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 1rem;
  text-align: center;
}
.pagination-container .pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pagination-container .pagination-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  text-decoration: none;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.pagination-container .pagination-list li a:hover {
  background-color: #f8f9fa;
  border-color: #F4A030;
  color: #F4A030;
}
.pagination-container .pagination-list li a:focus {
  outline: 2px solid #F4A030;
  outline-offset: 2px;
}
.pagination-container .pagination-list li.active a {
  background-color: #F4A030;
  border-color: #F4A030;
  color: #fff;
  font-weight: bold;
  cursor: default;
}
.pagination-container .dots {
  color: #000;
  padding: 0 5px;
}
.pagination-container .paging-nav a {
  font-weight: 500;
}
@media (max-width: 768px) {
  .pagination-container .job-main {
    flex-direction: column-reverse;
  }
  .pagination-container .job-logo {
    align-self: flex-start;
  }
}

/* Top jobs
----------------------- */
body {
  background-color: #DDE0E2;
  margin: 0;
  padding: 40px 20px;
}

.top-jobs-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin: 0 auto;
}
.top-jobs-wrapper .top-job-card {
  background: #fff;
  border-radius: 0;
  border: 1px solid #e0e0e0;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
}
.top-jobs-wrapper .top-job-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.top-jobs-wrapper .top-job-card a {
  position: relative;
}
.top-jobs-wrapper .top-job-card a:focus {
  outline: none;
}
.top-jobs-wrapper .top-job-card a:focus-visible {
  outline: 2px solid #F4A030;
  outline-offset: -2px;
  z-index: 10;
}
.top-jobs-wrapper .top-job-card .top-job-link {
  text-decoration: none;
  color: inherit;
  padding: 20px;
  display: block;
  height: 100%;
}
.top-jobs-wrapper .top-job-card .logo-wrapper {
  height: 50px;
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.top-jobs-wrapper .top-job-card .logo-wrapper img {
  max-width: 120px;
  max-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-jobs-wrapper .top-job-card .content-wrapper {
  text-align: left;
  padding-bottom: 45px;
}
.top-jobs-wrapper .top-job-card .content-wrapper .top-job-title {
  font-size: 1.1rem;
  color: #000;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.top-jobs-wrapper .top-job-card .content-wrapper .top-job-company {
  font-weight: bold;
  margin: 0;
  color: #000;
  font-size: 0.95rem;
}
.top-jobs-wrapper .top-job-card .content-wrapper .top-job-location {
  color: #000;
  font-size: 0.85rem;
  margin: 4px 0;
}
.top-jobs-wrapper .top-job-card .btn-heart {
  position: relative;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-image: url("https://www.salesjob.de/wp-content/themes/salesjob_theme/img/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  transition: background-color 0.2s;
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.top-jobs-wrapper .top-job-card .btn-heart.bookmark {
  background-image: url("https://www.salesjob.de/wp-content/themes/salesjob_theme/img/star-hover.svg");
}
.top-jobs-wrapper .top-job-card .btn-heart:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.top-jobs-wrapper .top-job-card .btn-heart:focus {
  outline: none;
}
.top-jobs-wrapper .top-job-card .btn-heart:focus-visible {
  outline: 2px solid #F4A030;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .top-job-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .top-job-card {
    flex: 1 1 100%;
  }
}

/*# sourceMappingURL=main.min.css.map */