@font-face {
  font-family: "PostbankBlack";
  src: url("/fileadmin/templates/fonts/Postbank-Black.woff2") format("woff2"), url("/fileadmin/templates/fonts/Postbank-Black.woff") format("woff"), url("/fileadmin/templates/fonts/Postbank-Black.ttf") format("truetype");
}
@font-face {
  font-family: "PostbankBlackItalic";
  src: url("../fonts/Postbank-BlackItalic.woff2") format("woff2"), url("../fonts/Postbank-BlackItalic.woff") format("woff"), url("../fonts/Postbank-BlackItalic.ttf") format("truetype");
}
html, body {
  height: 100%;
}

.container-page {
  height: 100%;
  flex-direction: column;
  display: flex;
}

#page-main {
  flex: 1;
}

body {
  --dark-blue:#0A3478;
  --light-blue:#CED6E4;
  --grey-blue:#5371A0;
  --dark-grey:#333333;
  --light-grey:#666666;
  --bg-grey:#E5E5E5;
  --yelow: #FFCC00;
  color: var(--dark-grey);
  background: #F9FAFC;
}

h2 {
  margin-bottom: 1.5rem;
}

h3 {
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--dark-blue);
  font-family: PostBankBlack;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: 1.25rem;
  color: var(--dark-grey);
}

h5 {
  font-size: 0.875rem;
  color: var(--light-grey);
  font-weight: 400;
  font-family: Frutiger LT W01_55 Roma1475738;
  margin: 2px 0 5px;
}

ul {
  padding-left: 2rem;
}

@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 90px;
  }
}

a {
  padding: 5px 5px 3px;
  border: solid 1px transparent;
}

a:hover {
  text-decoration: underline;
  color: #3B5D93;
}

a:not(.button):focus {
  text-decoration: none;
  color: #3B5D93;
  border: solid #FFF 1px;
  outline: solid #5371A0 1px;
}

input, select {
  border-color: #4c4c4c;
  border-radius: 4px;
}
input:hover, select:hover {
  border-color: #1A1A1A;
}
input:focus, select:focus {
  border-color: #0A3478;
  outline: solid 3px #5371A0;
  border-width: 1px;
}

.input-wrapper:has(select):focus-within::before {
  height: calc(100% - 3px);
}

fieldset {
  padding: 0;
}

.input-select {
  color: #000;
  background: #FFF;
  border-color: #4c4c4c;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/select-arrow.svg) no-repeat right;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.no-wrap {
  white-space: nowrap;
}

.button {
  width: 100%;
  text-align: center;
  height: 3rem;
  position: relative;
  border: solid 2px transparent;
  padding: 16px 30px;
}
.button:focus {
  background: #3b5d93;
  border: solid 2px #FFF;
  border-radius: 8px;
  outline: solid 2px #5371A0;
}
.button.button--small {
  width: auto;
  float: right;
  line-height: 1.75rem;
  margin-bottom: 0;
}
.button.button--secondary {
  border: solid 2px transparent;
  margin-top: 0;
  padding: 10px;
}
.button.button--secondary:hover {
  background: #E7EBF2;
}
.button.button--secondary:focus {
  background: #E7EBF2;
  border: solid 2px #FFF;
  outline: solid 2px #5371A0;
  border-radius: 8px;
}

.filter-container {
  background: #FFF;
  padding: 1.25rem 1.5rem 0;
  box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.4);
  float: none;
}
.filter-container .filter-column--6,
.filter-container .filter-column--6:last-child,
.filter-container .filter-column--12 {
  margin-bottom: 0rem;
  padding-bottom: 0.5rem;
  float: none;
}
.filter-container .no-bullets li {
  display: inline-block;
  width: 100%;
  margin: 10px 15px 12px 0;
  min-width: 17%;
}
@media screen and (min-width: 768px) {
  .filter-container .no-bullets li {
    width: auto;
  }
}
.filter-container .no-bullets li:last-of-type {
  width: auto;
  margin-right: 0;
}
.filter-container .input-checkbox {
  opacity: 0;
  position: absolute;
  visibility: visible;
}
.filter-container .input-checkbox:focus + label::before {
  border-color: var(--dark-blue);
  z-index: 10;
}
.filter-container .input-checkbox:focus + label::after {
  border: 4px solid var(--grey-blue);
  content: " ";
  display: inline-block;
  height: 30px;
  margin-right: 1em;
  border-radius: 6px;
  position: absolute;
  top: -3px;
  left: -16px;
  width: 28px;
  color: #4c4c4c;
  font-size: 20px;
  padding-left: 2px;
  margin-top: -4px;
}
.filter-container .input-checkbox + label {
  margin-left: 13px;
  padding-left: 31px;
  font-size: 1rem;
  padding-top: 0.25rem;
}
.filter-container .input-checkbox + label::before {
  width: 28px;
  height: 30px;
  border-color: #4C4C4C;
  box-shadow: none;
}
.filter-container .input-checkbox:checked + label::before {
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  content: " ";
}
.filter-container .input-checkbox:hover + label::before {
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  content: " ";
}
.filter-container .button {
  margin-bottom: 0;
}

.joblist-item {
  box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.4);
  border-top: solid var(--yelow) 0.5rem;
  padding: 25px;
}
@media screen and (min-width: 768px) {
  .joblist-item {
    padding-left: 1.5rem;
  }
}
.joblist-item h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--dark-grey);
  font-family: "Frutiger LT W01_65 Bold1475746";
}
@media screen and (min-width: 768px) {
  .joblist-item h3 {
    font-size: 1.5rem;
  }
}
.joblist-item .detail {
  font-size: 0.875rem;
  line-height: 21px;
}
.joblist-item .detail strong {
  font-family: "Frutiger LT W01_65 Bold1475746";
  font-weight: 400;
}
.joblist-item .detail div {
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .joblist-item .detail div {
    padding-bottom: 0.25rem;
  }
}
@media screen and (min-width: 768px) {
  .joblist-item .detail {
    padding-left: 1.5rem;
    float: left;
  }
}

.loading {
  background: var(--yelow);
  text-align: center;
  font-size: 1rem;
  padding: 0.5rem 0;
  clear: both;
}

.filter-values-container {
  box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.4);
  padding: 2.75rem 1.5rem 2rem;
  background: #fff;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .filter-values-container .button {
    width: auto;
    float: right;
    margin-top: -1rem;
  }
}

.search-data {
  background: var(--bg-grey);
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  font-size: 0.825rem;
  padding: 0.5rem 0.5rem 0.3125rem;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 4px;
}
.search-data strong {
  font-family: "Frutiger LT W01_65 Bold1475746";
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .search-data {
    display: inline-block;
  }
}

.results-count small {
  float: right;
  font-size: 1rem;
  font-weight: normal;
  padding-left: 1rem;
  font-family: Frutiger LT W01_55 Roma1475738;
}
@media screen and (min-width: 768px) {
  .results-count small {
    float: none;
  }
}

.white-box-teaser {
  margin: -2rem auto 0;
  padding: 2rem 1.5rem;
  box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.4);
}

.section-banner::before, .section-banner--secondary::before, .section-banner--accent-light::before, .section-banner--accent::before, .section-banner--white::before, .section-banner--base::before {
  box-shadow: none;
}

.section {
  margin-bottom: 0;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .section.hero-section {
    margin: 0 0 1rem 0;
  }
}
.section.header {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .section {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section {
    padding-top: 30px;
  }
}

.job-detail {
  margin-bottom: 2rem;
}
.job-detail .back {
  padding-left: 1rem;
  font-weight: bold;
  line-height: 1.5rem;
}
.job-detail .back :before {
  content: " ";
  background: url(../images/back.svg) no-repeat;
  width: 1rem;
  height: 1.65rem;
  display: block;
  margin-left: -1.25rem;
  float: left;
  margin-top: -2px;
  background-position-y: 3px;
}
.job-detail .section {
  margin-bottom: 0;
  padding-bottom: 1rem;
}
.job-detail .section.hero-section {
  margin-bottom: 1rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .job-detail .section {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.job-detail h2, .job-detail h3 {
  color: var(--dark-grey);
  font-size: 1.25rem;
  font-family: "Frutiger LT W01_65 Bold1475746";
}
.job-detail p, .job-detail li {
  line-height: 1.375rem;
}
.job-detail .container {
  max-width: 646px;
}
@media screen and (max-width: 768px) {
  .job-detail .container .slick-track,
  .job-detail .container .slick-slide {
    width: 100vw !important;
  }
}
.job-detail .container--wide {
  max-width: 1312px;
}
@media screen and (max-width: 768px) {
  .job-detail .container--wide {
    max-width: 100vw;
    margin: 0 -1rem;
  }
}
.job-detail .headline--primary {
  color: var(--dark-blue);
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-family: PostBankBlack;
  font-size: 2rem;
}
.job-detail .classic-teaser {
  background: var(--yelow);
  text-align: center;
  padding: 30px 24px;
}
.job-detail .classic-teaser p {
  font-size: 1.25rem;
  font-weight: 700;
}
.job-detail .classic-teaser .button {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.job-detail .classic-teaser .button:focus {
  color: #FFF;
}

.hide-form {
  display: none;
}

.results-count {
  margin-top: 2rem;
}

.pb-1 {
  padding-bottom: 2rem;
}

.loading {
  display: none;
}

.hidden {
  display: none;
}

.load-more {
  float: left;
}

@media screen and (min-width: 1024px) {
  header {
    height: 4.8125rem;
  }
}
header .container {
  max-width: 86rem;
  padding: 0 2rem;
}
header #Logo {
  height: 3.313rem;
  width: 100%;
}
header .navi-wrapper .logo {
  margin-right: 4rem;
  margin-top: 0.75rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  header .navi-wrapper .logo {
    margin-top: 0.5rem;
    padding-top: 0.625rem;
  }
}
header .navi-wrapper .navi {
  float: none;
}
header .navi-wrapper .navi .nav-punkt {
  z-index: 10;
}
header .navi-wrapper .navi .nav-punkt.active, header .navi-wrapper .navi .nav-punkt:hover {
  background-color: transparent;
}
header .navi-wrapper .navi .nav-punkt a {
  margin: 1.5rem 1rem 1rem;
  padding: 5px 5px 3px;
  width: auto;
}
header .navi-wrapper .navi .nav-punkt a:hover {
  background-color: transparent;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  header .navi-wrapper .navi .nav-punkt a {
    color: #FFFFFF;
    margin-top: 0.6875rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .navi-wrapper .navi .nav-punkt {
    width: auto;
    float: none;
    display: inline-block;
  }
}
@media screen and (max-width: 1024px) {
  header .navi-wrapper .navi {
    display: block;
    clear: both;
    border: none;
    background: var(--dark-blue);
    margin-left: -2rem;
    width: 100vw;
    padding-left: 2rem;
  }
}

footer.footer .section {
  padding: 0.75rem 0 0.6125rem;
}
footer.footer .section .footer--meta-copyright {
  text-align: left;
}
footer.footer .container {
  max-width: 86rem;
}
@media screen and (min-width: 1024px) {
  footer.footer .container {
    padding: 0 2rem;
  }
}
footer.footer li {
  border: none;
}
@media screen and (max-width: 1024px) {
  footer.footer li {
    float: none;
    padding-left: 0;
    padding-top: 1rem;
  }
}
footer.footer li a {
  color: #0a3478;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
}
footer.footer .footer--meta-copyright {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #4c4c4c;
  font-weight: bold;
}

.section.hero-section {
  margin-bottom: 2rem;
  display: none;
}

.no-results {
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .hero-header--small.focus_links {
    height: 524px;
    background-position-y: 44%;
  }
}

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