/**
 * Fonts.
 */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.eot"), url("../fonts/Montserrat-Regular.ttf"),
    url("../fonts/Montserrat-Regular.woff"), url("../fonts/Montserrat-Regular.woff2");
}

@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/Montserrat-Medium.eot"), url("../fonts/Montserrat-Medium.ttf"),
    url("../fonts/Montserrat-Medium.woff"), url("../fonts/Montserrat-Medium.woff2");
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.eot"), url("../fonts/Montserrat-Bold.ttf"),
  url("../fonts/Montserrat-Bold.woff"), url("../fonts/Montserrat-Bold.woff2");
}

body {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: var(--companyFontColor);
  font-size: 18px;
  line-height: 25px;
  margin: 0;
  padding: 0;
  min-width: 1px;
  width: 100%;
  box-sizing: border-box;
}

/**
 * Typography.
 */
h1, h2, h3, h4, b, strong {
  font-family: "Montserrat-Bold", Helvetica, Arial, sans-serif;
  font-weight: normal;
}

h1 {
  font-size: 54px;
  line-height: 64px;
  margin-bottom: 30px;
  word-wrap: break-word;
}

h2 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 50px;
}

h3,
h3:last-child {
  font-size: 18px;
  margin-top: 25px !important;
  text-transform: uppercase;
  margin-bottom: 25px;
}

h4 {
  margin-bottom: 0;
  text-transform: uppercase;
}

a {
  color: var(--companyLightGreen);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #0b3f75;
}

a label {
  cursor: pointer;
}

ul {
  padding-left: 20px;
  margin: 0;
}

li {
  list-style-type: none;
  margin-bottom: 10px;
}

strong {
  display: block;
}

p {
  margin: 0 0 10px;
}

em {
  font-style: normal;
}

/**
 * Layout
 */
#wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1), 0 0 0 rgba(0, 0, 0, 0.1);
  padding-top: 100px;
}

.multicolumn {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.multicolumn > * {
  display: table-cell;
  vertical-align: top;
  width: 100%;
}
.multicolumn > * img {
  width: 100%;
  height: auto;
  display: block;
}
.width-80 {
  width: 80%;
}

.width-75 {
  width: 75%;
}

.width-50 {
  width: 50%;
}

.width-66 {
  width: 66.666%;
}

.width-33 {
  width: 33.333%;
}

.width-25 {
  width: 25%;
}

.width-20 {
  width: 20%;
}

.separator {
  width: 70px;
}

@media screen and (max-width: 668px) {
  .multicolumn > * {
    display: block;
    width: 100%;
    clear: both;
  }
  .separator {
    display: none;
  }
}

/**
 * Header
 */

header {
  background: white;
  vertical-align: middle;
  box-sizing: border-box;
  position: fixed;
  max-width: 1200px;
  width: 100%;
  top: 0;
  z-index: 1;
  transition: all 0.2s ease 0s;
  padding: 60px 0 0;
}
header .content {
  margin: 0 auto;
}
header.sticky {
  padding-top: 20px;
  padding-bottom: 17px;
}
.logo {
  display: block;
  margin: 0 auto;
  float: right;
}
.logo img {
  display: block;
  height: 24px;
}
.social-icons {
  float: left;
  position: relative;
  margin-left: 0;
}

.social-icons a {
  margin-right: 20px;
  line-height: 10px;
  display: block;
  float: left;
}

.social-icons a svg {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.social-icons a svg * {
  fill: var(--companyLightGreen);
}

.social-icons a:hover svg {
  transform: scale(1.4);
}

.social-icons a.whatsapp {
  display: none;
}

.social-icon-popup {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  background: #0b3f75;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 20px;
  line-height: 26px;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: lighter;
  border: none;
  border-radius: 15px;
  transition: all 0.2s;
  transform: scale3d(1, 0.9, 1);
  right: -100px;
  top: 45px;
  width: 250px;
}
.social-icon-popup:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-11px);
  border: 11px solid transparent;
  border-bottom-color: #0b3f75;
}
.social-icon-popup.show {
  transition: transform 0.2s;
  opacity: 1;
  z-index: 10;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  -transform: scale3d(1, 1, 1);
  pointer-events: auto;
}
.social-icon-popup .content {
  margin: 0;
}
.social-icons .social-icon-popup a {
  margin: 0 7px;
}
.social-icons .social-icon-popup a svg * {
  fill: var(--companyLightGreen);
}

/**
 * Sticky title
 */
.sticky-title {
  position: fixed;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 4;
  transition: all 0.2s ease 0s;
  background: -webkit-linear-gradient(315deg, #007bc0 66%, #0b3f75 100%) #1e5a9a;
  background: -o-linear-gradient(315deg, #007bc0 66%, #0b3f75 100%) #1e5a9a;
  background: linear-gradient(135deg, #007bc0 66%, #0b3f75 100%) #1e5a9a;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 20px 0;
}
.sticky-title h1 {
  font-size: 32px;
  line-height: 51px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

header .sticky-title {
  visibility: hidden;
}

header.sticky .sticky-title {
  visibility: visible;
  opacity: 1;
  top: 67px;
}

header.sticky .sticky-title .content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/**
 * Content
 */
.content {
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  margin: 40px auto 65px;
}
article {
  margin: 40px 0 0;
}
article:first-child {
  margin-top: 0;
}
section article.multicolumn.article:last-child {
  margin-top: 0;
}
section article.multicolumn.article:last-child .width-50 {
  padding-top: 40px;
}
.content ul {
  margin: 10px 0 0;
  padding: 0;
}
.content ul li {
  padding-left: 20px;
  position: relative;
  list-style-type: none;
}
.content ul li:before {
  font-size: 12px;
  content: "\2014";
  position: absolute;
  top: 0;
  left: 0;
}
.content ul li:last-child {
  margin-bottom: 0;
}
.content ul.meta {
  margin-bottom: 35px;
}
.content ul.meta li {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  overflow: auto;
  padding: 0 20px 15px 0;
  font-size: 24px;
  line-height: 28px;
}
.content ul.meta li span {
  color: var(--companyPrimaryColor);
}
.content ul.meta li:before {
  display: none;
}
.content ul.meta li svg {
  display: block;
  height: 20px;
  width: auto;
}
.image {
  margin: 60px 0 0;
}
.image img {
  display: block;
  width: 100%;
  height: auto;
}
#introduction > .content {
  margin-bottom: 20px;
}
.content.video {
  margin-top: 0;
  margin-bottom: 0;
}
#video {
  width: 100%;
  position: relative;
  padding-bottom: 56.22%; /* Default for 1600x900 videos 16:9 ratio*/
  padding-top: 0;
  height: 0;
}

#video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
a.more {
  transition: color 0.3s ease;
  position: relative;
}
a.portrait-trigger {
  float: left;
  margin-right: 20px;
}
a#contact-trigger-portrait {
  font-size: 18px;
  line-height: 25px;
  text-decoration: underline;
  display: block;
}
a#contact-trigger-portrait:hover {
  color: var(--companyLightGreen);
}
a#contact-trigger-contact,
a#contact-trigger-portrait {
  display: inline-block;
  padding-left: 30px;
  background: url("../images/icons/social/icon-mail.svg") no-repeat left 2px;
  background-size: 22px;
  transition: all 0.2s ease;
  text-decoration: underline;
}
a#contact-trigger-contact:hover,
a#contact-trigger-portrait:hover {
  background-size: 25px;
}
.centered {
  text-align: center;
}
.mobile {
  display: none;
}
.promo {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 60px;
}
.promo img {
  width: 100%;
  max-width: 75px;
}
.promo span {
  margin-top: 10px;
  color: var(--companyFontColor);
}
#additionalDetails .content {
  min-height: 220px;
}
.shapeContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../images/stadler_shape.svg) no-repeat left 2px;
  min-height: 308px;
  float: right;
  margin-top: -84px;
  margin-bottom: 50px;
  position: relative;
  margin-left: 13%;
  aspect-ratio: 410 / 308;
  color: #FFFFFF;
  box-sizing: border-box;
}
.shapeContainer > div {
  display: flex;
  flex-direction: column;
  padding: 15% 20%;
  gap: 10px;
  margin-top: -25px;
}
.shapeContainer .shapeText2 {
  font-family: "Montserrat-Bold", Helvetica, Arial, sans-serif;
  font-size: 36px;
  line-height: 40px;
  max-width:200px;
}
@media screen and (max-width:880px) {
  .shapeContainer {
    float: initial;
    max-width: 410px;
    margin: -84px auto 50px;
    min-height: auto;
  }
}
@media screen and (max-width:450px) {
  .shapeContainer .shapeText1 {
    font-size: 16px;
  }
  .shapeContainer .shapeText2 {
    font-size: 26px;
    line-height: 30px;
  }
}
/**
 * Contact.
 */
#contact {
    background: linear-gradient(93.48deg, #007bc0 0%, #0b3f75 100%);
    overflow: auto;
    margin: 60px 0;
    color: #fff !important;
}
#contact .content {
    display: flex;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow: auto;
    justify-content: space-between;
}
#contact .contactBlock {
    width: 100%;
    padding: 40px;
}
#contact .contactBlock h3:first-child {
  margin-top: 0 !important;
}
#contact article {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 30px;
    row-gap: 50px;
}
#contact article > div {
    flex: 1;
}
.contact-info {
    font-size: 14px;
    min-width: 178px;
}
.contact-info > p {
  margin-bottom: 20px;
}
.contact-info b {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    hyphens: auto;
}
.contactText {
    max-width: 590px;
}
#contact .contactDetails {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 36px;
    row-gap: 20px;
    overflow-wrap: anywhere;
}
.contact-person {
    width: 100%;
    max-width: 130px;
    min-width: 130px;
}
.contact a {
    text-decoration: underline;
}
.contact .contact-info a:hover {
    color: var(--companyLightGreen);
}
.contact-modals {
    overflow: auto;
}

@media screen and (max-width: 800px) {
  #contact .content {
      flex-direction: column;
  }
}

@media screen and (max-width: 460px) {
  #contact .contactDetails {
    flex-wrap: wrap;
  }
}

/* WhatsApp apply */
.whatsappApplyContainer {
  margin-top: 20px;
}
.button.apply.whatsapp {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  background: #25D366;
  color: white;
}

.button.apply.whatsapp::before,
.button.apply.whatsapp::after {
  border-color: white;
}

.apply.whatsapp svg {
  height: 20px;
}

/**
 * External Links
 */
#weitereLinks {
    background-color: var(--companyLightGreen);
    padding: 40px 60px;
    min-width: 360px;
}
#weitereLinks h4 {
    color: var(--companyFontColor);
}
#weitereLinks a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    color: var(--companyFontColor);
    margin-top: 20px;
    text-decoration: none;
}
#weitereLinks svg {
    height: 16px;
    width: 16px;
}
#weitereLinks span {
    white-space: nowrap;
}

@media screen and (max-width: 800px) {
  #weitereLinks {
    padding: 40px;
    min-width: auto;
  }
}

/**
 * Map
 */
#map iframe {
  width: 100%;
}

#video-modal.modal .content,
#map-modal.modal .content {
  margin: 20px 0;
}

/**
 * Footer
 */
footer {
  background-color: #f2f7fa;
  margin-top: 70px;
  padding: 0;
  overflow: auto;
}
footer .content {
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

/**
 * More Jobs
 */
.jobsHolder div {
  display: flex;
  flex-direction: row;
  flex-wrap:nowrap;
  align-items: center;
  max-width: calc(80% - 30px);
  gap: 20px;
}

.jobs a h3 {
  margin: 0 !important;
  font-size: 18px;
  line-height: 25px;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  text-transform: none;
}

.jobs a:first-child {
  border-top: 1px solid var(--companyPrimaryColor);
}

.jobsHolder > a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--companyPrimaryColor);
  padding: 20px 0;
  color: var(--companyFontColor);
}

.jobsHolder > a:hover {
  color: var(--companyPrimaryColor);
}

.jobsHolder span {
  text-align: right;
  min-width: 20%;
  max-width: 20%;
}

.jobs svg {
  width: 28px;
  height: 28px;
  overflow:visible;
}

@media screen and (max-width:668px) {
  .jobsHolder > a {
    flex-direction: column;
    align-items: flex-start;
  }
  .jobsHolder div {
    max-width: 100%;
    align-items: flex-start;
    gap: 15px;
  }
  .jobs svg {
    margin-top: 5px;
  }
  .jobsHolder span {
    max-width: 100%;
    margin-left: 43px;
  }
}
@media screen and (max-width:668px) {
  .jobs a h3 {
    hyphens: auto;
  }
}

.follow {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
}

.follow a {
  display: inline-block;
  color: var(--companyPrimaryColor);
  text-decoration: underline;
}

.button.apply {
  font-family: "Montserrat-Medium", Helvetica, Arial, sans-serif;
  background: var(--companyLightGreen);
  border-radius: 2px;
  color: var(--companyFontColor);
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  padding: 15px 20px 11px;
  transition: all 0.2s ease;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  min-width: 270px;
}
.button.jobabo {
  font-family: "Montserrat-Medium", Helvetica, Arial, sans-serif;
  background: transparent;
  border: 2px solid var(--companyFontColor);
  border-radius: 2px;
  color: var(--companyFontColor);
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  padding: 15px 20px 11px;
  transition: all 0.2s ease;
  font-size: 20px;
  margin: 10px 0 30px;
  cursor: pointer;
  position: relative;
  width: auto;
}
.button::before,
.button::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 900ms ease;
  transform-origin: center;
}
.button::before {
  border-top: 0.1em solid #0b3f75;
  border-bottom: 0.1em solid #0b3f75;
  transform: scale3d(0, 1, 1);
}
.button::after {
  border-left: 0.1em solid #0b3f75;
  border-right: 0.1em solid #0b3f75;
  transform: scale3d(1, 0, 1);
}

.button:hover::before,
.button:hover::after {
  transform: scale3d(1, 1, 1);
  transition: transform 900ms;
}
/**
 * Moduls
 */
.ui.dimmer {
  background-color: rgba(0, 0, 0, 0.45);
}
.ui.modal {
  top: 10%;
  border-radius: 0;
  background: #fff;
}
.ui.modal.portrait-modal {
  top: 80px;
}
.modal iframe {
  width: 100%;
  display: block;
  overflow: hidden;
}
/*.modal #send2friend {
  min-height: 680px;
}*/
#contact-modal-contact iframe,
#contact-modal-portrait iframe {
  min-height: 970px;
}
.contact-modal .modal-close {
  position: absolute;
  right: 40px;
  bottom: 30px;
  width: 275px;
}
.modal-content {
  background: #fff;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.modal-content .section {
  padding: 60px;
}
.modal-content .section p {
  font-size: 20px;
  line-height: 28px;
}
.modal-content a svg {
  height: 25px;
  width: 25px;
  margin-right: 15px;
}
.modal-content a svg * {
  fill: var(--companyLightGreen);
}
.modal-content a.linkedin,
.modal-content a.xing {
  font-size: 16px;
  color: var(--companyPrimaryColor);
  text-decoration: underline;
  margin-top: 5px;
  display: inline-block;
}
.modal-close {
  font-family: "Montserrat-Medium", Helvetica, Arial, sans-serif;
  background: #fff;
  border-radius: 2px;
  border: solid 1px var(--companyFontColor);
  color: var(--companyFontColor);
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  padding: 15px 20px 11px;
  transition: all 0.2s ease;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  min-width: 270px;
}

/* Cookie modal */
#cookie-modal.ui.modal {
  border-radius: 10px;
  max-width: 900px;
  font-family: "sans-serif", Arial;
}

img#cookie-logo {
  margin: 23px;
  height: 32px;
}

#cookie-tabs {
  margin: 0;
  border-width: 1px;
}

#cookie-tabs .item {
  font-weight: bold;
  font-family: "sans-serif", Arial;
  font-size: 15px;
  padding: 23px;
}

#cookie-tabs .item.active {
  color: #1032cf !important;
  border-color: #1032cf !important;
  border-width: 3px;
}

#cookie-modal.ui.modal .ui.tab {
  color: black;
}

#cookie-modal.ui.modal .ui.tab .inner {
  padding: 20px 5px 5px 15px;
}

#cookie-modal.ui.modal .ui.tab[data-tab="zustimmung"] .inner {
  padding: 24px 20px;
}
#cookie-modal.ui.modal .ui.tab[data-tab="cookies"] .inner {
  padding: 24px;
}

#cookie-modal.ui.modal .ui.tab p {
  font-family: "sans-serif", Arial;
  font-size: 15px;
  line-height: 24px;
}

#cookie-modal div.ui.tab[data-tab="cookies"] p {
  margin-bottom: 16px !important;
}

#cookie-modal div.ui.tab[data-tab="cookies"] p:last-of-type {
  margin-bottom: 0 !important;
}

#cookie-modal.ui.modal .ui.tab h2 {
  font-family: "sans-serif", Arial;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  font-weight: 600;
}

#cookie-modal .ui.horizontal.segments#cookie-tickboxes {
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  border-bottom: none;
}

#cookie-modal .ui.segment {
  padding: 23px 15px;
}

#cookie-modal .custom-checkbox {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cookie-modal .custom-checkbox label {
  margin-bottom: 16px;
  cursor: pointer;
  font-weight: bold;
  color: black;
}

#cookie-modal .custom-checkbox .ui.toggle.checkbox input + label:before {
  height: 32px;
  width: 57px;
  background: black !important;
}

#cookie-modal .custom-checkbox .ui.toggle.checkbox input + label:after {
  height: 24px;
  width: 24px;
  background: white !important;
  margin-top: 4px;
  margin-left: 5px;
  margin-right: 0;
}

#cookie-modal .custom-checkbox .ui.toggle.checkbox input:checked + label:after {
  margin-top: 4px;
  margin-right: 4px;
  margin-left: 0;
}

#cookie-modal .custom-checkbox .ui.toggle.checkbox input:checked + label:before {
  height: 32px;
  width: 57px;
}

#cookie-modal .custom-checkbox .ui.toggle.checkbox input:not(:disabled):checked + label:before {
  background-color: #1032cf !important;
}

#cookie-modal .ui.fitted.toggle.checkbox {
  width: 57px;
}

#cookie-modal .ui.toggle.checkbox label {
  width: inherit;
  padding: 0;
}

#cookie-modal .button-row {
  padding: 15px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  border-top: 1px solid rgb(214, 214, 214);
}
#cookie-modal .button-row button.cookie-btn-secondary {
  font-size: 15px;
  padding: 15px;
  border: 2px solid #1032cf;
  border-radius: 4px;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
}

#cookie-modal .button-row button.cookie-btn-main {
  font-size: 15px;
  cursor: pointer;
  color: white;
  padding: 15px;
  border: 2px solid #1032cf;
  border-radius: 4px;
  font-weight: 600;
  background: #1032cf;
  outline: none;
  box-sizing: border-box;
}

#cookie-modal .button-row button.cookie-btn-secondary:hover {
  color: rgb(60, 60, 60);
}

#cookie-modal .button-row button.cookie-btn-main:hover {
  background: rgb(55, 82, 201);
  border-color: rgb(55, 82, 201);
}

.cookie-layer {
  display: none;
  padding: 15px 20px;
  border: 1px solid rgb(11, 63, 117);
}
#video-modal .cookie-layer,
#map-modal .cookie-layer,
#location .cookie-layer {
  margin: 20px;
}

.cookie-layer h4 {
  font-size: 20px;
  text-transform: none;
}

.cookie-modal-trigger {
  cursor: pointer;
}
.footer-apply .cookie-modal-trigger {
  display: inline-block;
  text-decoration: underline;
  margin-top: 4px;
  color: var(--companyPrimaryColor) !important;
}
.cookie-details {
  border-bottom: 2px solid rgb(228, 228, 228);
  padding: 20px 0;
}
.cookie-details:last-of-type {
  border-bottom: none;
}
.cookie-details:first-of-type {
  padding-top: 0;
}

.cookie-details i {
  transition: transform 0.2s ease-in-out;
}

.cookie-details.active .cookie-details-toggle i,
.cookie-details-list-item.active .cookie-details-inner-toggle i {
  transform: rotate(180deg);
}

.cookie-details-list {
  margin-top: 10px;
  display: none;
  transition: background-color 0.2s ease;
}
.cookie-details-list:hover {
  background-color: #f7f7f7;
}
.cookie-details-list-item {
  border: 1px solid rgb(214, 214, 214);
  border-radius: 8px;
  padding: 15px;
  margin-top: 8px;
}

.cookie-details.active .cookie-details-list {
  display: block;
}

.cookie-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
button.cookie-details-toggle {
  display: flex;
  align-items: center;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

button.cookie-details-inner-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 0;
}

button.cookie-details-inner-toggle .cookie-details-toggle-chip {
  margin-left: 6px;
}

button.cookie-details-toggle:hover,
button.cookie-details-inner-toggle:hover {
  color: #1032cf;
}

.cookie-details-title,
.cookie-link {
  font-weight: bold;
  font-family: "sans-serif", Arial;
  font-size: 15px;
}

.cookie-link {
  color: #1032cf;
  margin-top: 15px;
  display: inline-block;
  /* display:flex;
 align-items:center;
 justify-self: start; */
}

.cookie-link img {
  height: 18px;
  width: 18px;
  margin-left: 9px;
}

.cookie-link:hover {
  color: #2045e9;
}

.privacy-link {
  color: #2045e9;
  font-size: 15px;
  line-height: 24px;
}

.cookie-details-toggle .cookie-details-title {
  margin: 0 12px 0 20px;
}

.cookie-details-text {
  margin-left: 45px;
  margin-top: 10px;
  font-family: "sans-serif", Arial;
  font-size: 15px;
  line-height: 24px;
  color: rgb(20, 20, 20);
}

.cookie-details-toggle-chip {
  background-color: #d6d6d6;
  font-size: 12px;
  line-height: 14px;
  border-radius: 60px;
  padding: 3px 6px;
  font-weight: 700;
  font-family: sans-serif;
}

.divider {
  height: 1px;
  width: 100%;
  display: block;
  border-top: 1px solid rgb(214, 214, 214);
  margin: 15px 0;
}

.scroll-container {
  transition: padding 0.1s ease-in-out;
  overflow-y: scroll;
  padding-right: 10px;
  max-height: 300px;
}

.scroll-container::-webkit-scrollbar {
  width: 5px; /* Set the width of the scrollbar */
}

.scroll-container::-webkit-scrollbar-thumb {
  background-color: black;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background-color: black;
}

.individual-cookie-list {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgb(214, 214, 214);
  flex-direction: column;
  gap: 8px;
  display: none;
}

.cookie-details-list-item.active .individual-cookie-list {
  display: flex;
}

.individual-cookie {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(214, 214, 214);
  border-radius: 15px;
  padding: 15px;
}

.individual-cookie strong {
  display: inline;
  text-transform: initial;
  font-family: inherit;
  font-weight: 700;
}

.cookie-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 670px) {
  /* cookie-modal */
  #cookie-modal.ui.modal {
    top: 0;
    max-height: 96%;
  }
  img#cookie-logo {
    margin: 10px;
    height: 23px;
  }
  #cookie-modal .button-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  #cookie-modal .ui.horizontal.segments {
    flex-direction: column;
    border-left: none;
    border-right: none;
    padding: 15px 0;
  }
  #cookie-modal .ui.center.aligned.segment {
    padding: 15px;
  }

  #cookie-modal .custom-checkbox {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-details-text {
    margin-left: 0;
  }

  .modal.bottom-sheet {
    max-height: 100%;
    z-index: 2;
  }
}
.contact-success #content {
  padding: 60px;
}
.contact-success .centered .button.jobabo {
  padding-left: 80px;
  padding-right: 80px;
}
.portrait-modal .section {
  font-size: 20px;
  line-height: 27px;
}
.portrait-modal .portrait-person {
  color: var(--companyPrimaryColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 40px;
  row-gap: 20px;
  padding-bottom: 0;
}
.portrait-modal .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: 40px;
  row-gap: 20px;
}
.portrait-modal .section h4 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 27px;
}
.portrait-modal .section p {
  margin: 30px 0;
}
.portrait-modal a.contact-trigger {
  float: none;
  font-size: 18px;
  line-height: 24px;
}

#send2friend-close-button, #send2friend-submit-button {
  text-align: center;
}

.send2friend-modal .modal-close, #contact-modal-contact .modal-close {
  max-width: 275px;
  margin: 0 auto;
  display: block;
  position: relative;
  right: initial;
}

#send2friend {
  min-height: 653px;
}

.send2friend-modal .modal-close {
  margin: -15px auto 40px;
}

#contact-modal-contact .modal-close,
#contact-modal-portrait .modal-close {
  position: absolute;
  right: 60px;
  bottom: 45px;
  width: 275px;
}
/**
 * Media Queries
 */
@media screen and (max-width: 1024px) {
  #wrapper {
    padding-top: 80px;
  }
  h1 {
    font-size: 44px;
    line-height: 52px;
  }
  .logo {
    width: 169px;
  }
  .logo img {
    width: 100%;
    height: 16px;
  }
  a.contact-trigger,
  a#contact-trigger-contact {
    margin-top: 10px;
  }
  #contact-modal-contact .modal-close,
  #contact-modal-portrait .modal-close {
    bottom: 19px;
  }
}
@media screen and (max-width: 880px) {
  .sticky-title h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 780px) {
  .sticky-title h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 668px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: inline-block;
  }
  .sticky-title h1 {
    font-size: 24px;
    line-height: 30px;
    width: 100%;
    margin-top: 0 !important;
  }
  .content {
    width: 100%;
  }
  .teaser.box {
    width: calc(100% - 20px);
    float: none;
    box-sizing: border-box;
    margin-bottom: 20px;
    height: 160px;
  }
  .social-icons a.whatsapp {
    display: inline;
  }
  footer {
    margin-top: 40px;
  }
  footer .content {
    padding: 20px 20px 60px 20px;
  }
}

@media screen and (max-width: 520px) {
  #wrapper {
    box-shadow: none;
    padding-top: 50px;
  }
  header {
    left: 0;
    transform: none;
    padding: 20px;
    height: 55px;
  }
  header .content {
    padding: 0;
  }
  .sticky-title {
    background: linear-gradient(90.37deg, #007bc0 0%, #0b3f75 100%);
    padding: 10px 20px;
  }
  header.sticky .sticky-title {
    top: 55px;
  }
  header.sticky .content {
    padding: 0;
  }
  .social-icons {
    margin-right: 0;
    margin-top: 0;
  }
  .social-icons .print {
    display: none;
  }
  .social-icons a svg {
    width: 20px;
    height: 20px;
  }
  .content ul.meta {
    margin-bottom: 40px;
  }
  .content {
    padding: 0 20px;
  }
  .image {
    margin: 0;
  }
  article {
    margin: 0;
  }
  .content ul.meta li {
    font-size: 20px;
    line-height: 20px;
  }
  em {
    display: block;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 26px;
  }
  h1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
    margin-top: 30px !important;
  }
  h3 {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
  }
  .social-icon-popup {
    width: 240px;
    right: -190px;
  }
  .social-icon-popup:before {
    left: 10%;
  }
  #map iframe {
    height: 240px;
  }
  .modal iframe {
    height: 100%;
    overflow: auto;
  }
  .button.apply,
  .button.jobabo {
    width: 100%;
    max-width: 100%;
  }
  a.portrait-trigger {
    display: inline-block;
  }
  .modal-content .section {
    padding: 20px;
  }
  .modal-close {
    width: 100%;
    max-width: 100%;
  }
  #contact-modal-contact .modal-close,
  #contact-modal-portrait .modal-close {
    bottom: 10px;
    left: 20px;
    width: 88%;
  }
  #contact-modal-contact iframe,
  #contact-modal-portrait iframe {
    min-height: 1190px;
  }
}

.print-only,
.no-show {
  display: none;
}
