.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 960px);
  max-width: 1920px;
}
@media screen and (max-width: 1920px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.jobteaser-container {
  border-radius: 8px;
  background: #FFF;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.25);
}
.jobteaser-container .jobteaser-wrapper {
  display: flex;
  flex-direction: row;
}
.jobteaser-container .jobteaser-content {
  width: 40%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jobteaser-container h2.jobteaser-title {
  margin-bottom: 12px;
  font-size: 3rem;
  line-height: 3.8rem;
  font-weight: 600;
}
.jobteaser-container h4.job-title {
  line-height: 2.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.jobteaser-container p.jobteaser-description {
  font-size: 16px;
  font-style: normal;
  font-weight: 100;
  line-height: 2.6rem;
  margin-bottom: 24px;
}
.jobteaser-container p.job-type {
  color: var(--bo-relaunch-bo-gruppe-mittelblau, #918EA5);
  margin-bottom: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px;
}
.jobteaser-container div.job-details {
  color: var(--BO-Blau, #241D4C);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px;
}
.jobteaser-container div.job-detail-item {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  gap: 8px;
  align-items: center;
  word-break: break-all;
}
.jobteaser-container div.job-detail-item > svg {
  width: 18px;
  height: 18px;
  color: var(--darkblue);
}
.jobteaser-container div.job-detail-item > span {
  color: var(--darkblue);
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 400;
}
.jobteaser-container .button-wrapper .button {
  width: fit-content !important;
}
.jobteaser-container .swiper {
  width: 60%;
  padding: 40px 20px 40px 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  display: none;
}
.jobteaser-container .swiper.swiper-initialized {
  display: block;
}
.jobteaser-container .swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  height: auto;
}
.jobteaser-container .swiper .swiper-slide {
  height: auto;
  text-decoration: none;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  padding: 16px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}
.jobteaser-container .swiper .swiper-slide:hover {
  background-color: #F3F3F7;
  box-shadow: unset;
}
.jobteaser-container .swiper-pagination {
  display: flex;
  justify-content: center;
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bullet-inactive-color: white;
  --swiper-pagination-color: var(--BO-Blau, #241D4C);
  --swiper-pagination-bullet-inactive-opacity: 0.9;
  --swiper-pagination-top: 16px;
  position: relative;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .jobteaser-container .swiper-pagination {
    --swiper-pagination-bullet-size: 12px;
    justify-content: center;
    bottom: 0;
  }
}
.jobteaser-container .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.25) inset;
  border: 1px solid #F4F4F4;
}
.jobteaser-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 1024px) {
  .jobteaser-container h4.job-title {
    font-size: 2.4rem;
    line-height: 2.8rem;
    font-weight: 600;
  }
  .jobteaser-container .jobteaser-wrapper {
    flex-direction: column;
  }
  .jobteaser-container .jobteaser-content {
    width: 100%;
    padding: 32px 32px 16px 32px;
  }
  .jobteaser-container .swiper {
    width: 100%;
    padding-left: 32px;
    padding-top: 42px;
  }
  .jobteaser-container .swiper-slide {
    margin-bottom: 40px;
  }
  .jobteaser-container .swiper-pagination {
    position: relative;
  }
}
.jobteaser-container.has-dark-mode {
  background: var(--BO-Blau, #241D4C);
  box-shadow: none;
}
.jobteaser-container.has-dark-mode h2.jobteaser-title,
.jobteaser-container.has-dark-mode p.jobteaser-description {
  color: #FFFFFF;
}
.jobteaser-container.has-dark-mode .swiper-pagination-bullet {
  background-color: #FFF;
  border-width: 1px;
  border-style: solid;
  border-color: var(--Lightgrey, #F4F4F4);
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.25) inset;
  opacity: 1;
}
.jobteaser-container.has-dark-mode .swiper-pagination-bullet-active {
  background-color: #FFF;
  box-shadow: none;
}

/*# sourceMappingURL=jobteaser.css.map */
