/*
|--------------------------------------------------------------------------
| phpComasy - content management system
|--------------------------------------------------------------------------
|
| Copyright indual GmbH, Brig (https://www.indual.ch)
| phpComasy is released under his own licence: https://www.phpcomasy.com/licence/
|
 */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-VariableFont_wght.woff2") format("woff2");
  font-weight: -800;
  font-style: normal;
  font-display: swap;
}
/*
|--------------------------------------------------------------------------
| phpComasy - content management system
|--------------------------------------------------------------------------
|
| Copyright indual GmbH, Brig (https://www.indual.ch)
| phpComasy is released under his own licence: https://www.phpcomasy.com/licence/
|
 */
/* --------------------------------------------------------------------------

Content in this file:

- global helpers
- floating classes
- content: accordeon & table
- forms: checkbox & captcha
- entry links
- cookie banner / privacy banner
- tooltip
- custom font awesome

-----------------------------------------------------------------------------*/
/* !@group global helpers */
* {
  margin: 0;
  padding: 0;
}

a, object {
  outline: none !important;
}

.cf,
.clear {
  float: none;
  clear: both;
  line-height: 0;
  width: 1px;
  margin: 0;
  padding: 0;
  font-size: 0;
  height: 0;
}

.nomargin {
  margin: 0 !important;
}

.nopadding {
  padding: 0 !important;
}

.fullwidth,
.p_fullwidth input {
  width: 100% !important;
}

hr {
  display: none;
}

.nobr {
  white-space: nowrap;
}

.hidden {
  display: none;
}

.sr-only {
  clip: rect(0px, 0px, 0px, 0px) !important;
  height: 1px !important;
  position: absolute !important;
  width: 1px !important;
  border-width: 0px !important;
  border-style: initial !important;
  border-color: initial !important;
  border-image: initial !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0px !important;
  display: block !important;
}

/* @end */
/* @group picture styles */
.resource.picture:not(.picture_content) {
  float: left;
}

.resource.picture a img,
.resource.picture img {
  display: block;
}

/* @end */
/* @group floating classes */
.float_right {
  float: right;
}

.float_left, .float_left_no_clear {
  float: left;
  position: relative;
}

.float_right_with_clear {
  float: right;
  clear: right;
}

.float_left_with_clear {
  float: left;
  clear: left;
}

.clear {
  clear: both;
  float: none;
}

label.nofloat {
  clear: none;
  padding: 0;
  margin: 0;
  float: none !important;
  width: auto !important;
  max-width: none;
}

/* @end */
/* @group content: accordeon & table */
.accordeon {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.accordeon_content {
  display: none;
  padding: 2px 0 14px 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th,
table td {
  vertical-align: top;
}

.table_wrap_container,
.table_wrap {
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.table_wrap_container {
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}
.table_wrap_container.visible_indicator {
  position: relative;
  padding: 25px 0 0;
}
.table_wrap_container.visible_indicator .table_wrap_container table,
.table_wrap_container.visible_indicator .news_events_table {
  width: auto !important;
}
.table_wrap_container.visible_indicator .table_scroll_indicator {
  display: block;
}

.table_scroll_indicator {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}
.table_scroll_indicator:hover {
  cursor: pointer;
}

/* @end */
/* @group forms: checkbox & captcha */
label.label_remember_me_checkbox {
  display: block;
  padding: 4px 0;
}

input#remember_me {
  width: auto;
}

label.label_remember_me_checkbox label.checkbox {
  display: inline;
  width: auto !important;
  float: none !important;
  font-size: 93%;
}

label.label_remember_me_checkbox input {
  margin-right: 5px;
}

label.label_remember_me_checkbox label {
  pointer-events: none;
}

div.captcha_protection {
  padding: 14px 15px;
  background: #eee;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
  background: -moz-linear-gradient(top, #fff, #eee);
  background: -o-linear-gradient(top, #fff, #eee);
  background: linear-gradient(to bottom, #fff, #eee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#eeeeee");
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 3px #eee;
  width: auto;
  display: inline-block;
  zoom: 1;
  *display: inline;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

div.captcha_protection span.captcha_title {
  font-weight: normal;
  display: block;
  font-size: 12px;
  line-height: normal;
  border-bottom: 1px solid #ccc;
  margin: -14px -15px 8px;
  padding: 8px 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
  background: -moz-linear-gradient(top, #fff, #eee);
  background: -o-linear-gradient(top, #fff, #eee);
  background: linear-gradient(to bottom, #fff, #eee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#eeeeee");
  border-radius: 7px 7px 0 0;
  color: #333;
}

div.captcha_protection span.captcha_input_title {
  font-weight: normal;
  margin-bottom: 1px;
  display: block;
  color: #555;
}

div.captcha_protection label {
  margin-right: -8px;
  display: none !important;
}

div.captcha_protection span#captcha_help_link {
  font-size: 10px;
  text-decoration: underline;
  position: relative;
  cursor: help;
  color: #666;
  white-space: nowrap;
}

div.captcha_protection span#captcha_help_link:hover {
  color: #333;
}

div.captcha_protection span#captcha_help_text {
  position: absolute;
  top: 10px;
  right: -195px;
  width: 180px;
  background: #f0f0f0;
  border: 1px solid #666;
  border-radius: 5px;
  box-shadow: 0 0 3px #666;
  padding: 5px 8px;
  background: #eee;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#eee));
  background: -moz-linear-gradient(top, #fff, #ddd);
  background: -o-linear-gradient(top, #f0f0f0, #eee);
  background: linear-gradient(to bottom, #f0f0f0, #eee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f0f0f0", endColorstr="#eee");
}

div.captcha_protection img.captcha_img {
  width: 220px;
}

/* @end */
/* @group entire link */
.listing_entry_link,
.overview_entry_link,
.portlet_content_entry_link,
.portlet_listing_entry_link,
.portlet_shop_article_entry_link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 25;
}

/* @end entire link */
/* @group cookie banner / privacy banner */
#privacy_banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 100%;
  max-width: 460px;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}
#privacy_banner #privacy_banner_inner {
  padding: 20px;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  text-align: left;
  position: relative;
}
#privacy_banner #privacy_banner_inner #privacy_icon {
  display: inline-block;
  vertical-align: middle;
  width: 86px;
  margin-right: -5px;
}
#privacy_banner #privacy_banner_inner #privacy_icon i {
  font-size: 66px;
  line-height: 66px;
}
@media screen and (max-width: 380px) {
  #privacy_banner #privacy_banner_inner #privacy_icon {
    display: none;
  }
}
#privacy_banner #privacy_banner_inner #privacy_description_wrap {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 86px);
}
#privacy_banner #privacy_banner_inner #privacy_description_wrap .privacy_responsive_icon {
  display: none;
  float: left;
  margin-right: 10px;
}
#privacy_banner #privacy_banner_inner #privacy_description_wrap .privacy_responsive_icon i {
  font-size: 30px;
  line-height: 30px;
}
@media screen and (max-width: 380px) {
  #privacy_banner #privacy_banner_inner #privacy_description_wrap {
    width: 100%;
  }
  #privacy_banner #privacy_banner_inner #privacy_description_wrap .privacy_responsive_icon {
    display: block;
    float: left;
  }
  #privacy_banner #privacy_banner_inner #privacy_description_wrap .privacy_message {
    overflow: hidden;
  }
}
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_button,
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_more_information {
  margin-top: 10px;
  display: inline-block;
  vertical-align: middle;
}
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_button {
  margin-right: 10px;
  width: auto;
  padding: 8px 14px 7px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  outline: none;
  cursor: pointer;
  backface-visibility: hidden;
  -webkit-transition: color 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, background 0.2s ease-out;
  -o-transition: color 0.2s ease-out, background 0.2s ease-out;
  transition: color 0.2s ease-out, background 0.2s ease-out;
}
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_button i {
  margin-right: 6px;
}
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_button i:before {
  color: #fff;
}
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_button:hover, #privacy_banner #privacy_banner_inner #privacy_buttons #privacy_button:focus, #privacy_banner #privacy_banner_inner #privacy_buttons #privacy_button:active {
  opacity: 0.7;
}
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_more_information {
  position: relative;
  text-decoration: none;
  color: #fff;
}
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_more_information:before {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: #fff;
}
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_more_information:hover, #privacy_banner #privacy_banner_inner #privacy_buttons #privacy_more_information:focus, #privacy_banner #privacy_banner_inner #privacy_buttons #privacy_more_information:active {
  opacity: 0.7;
}
@media screen and (max-width: 500px) {
  #privacy_banner {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* @end */
/* @group tooltip  */
.tooltipster-default {
  border-radius: 5px;
  background: #343333;
  color: #fff;
}
.tooltipster-default .tooltipster-content {
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 14px;
  padding: 8px;
  overflow: hidden;
}

.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible;
}
.tooltipster-base .tooltipster-content {
  overflow: hidden;
}

.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tooltipster-arrow span {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}

.tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}

.tooltipster-arrow-top span,
.tooltipster-arrow-top-right span,
.tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.tooltipster-arrow-top .tooltipster-arrow-border,
.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tooltipster-arrow-bottom span,
.tooltipster-arrow-bottom-right span,
.tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tooltipster-arrow-top-left span,
.tooltipster-arrow-bottom-left span {
  left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px;
}

.tooltipster-arrow-top-right span,
.tooltipster-arrow-bottom-right span {
  right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px;
}

.tooltipster-arrow-left span,
.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px;
}

.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px;
}

.tooltipster-arrow-right span,
.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px;
}

.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}

.tooltipster-fade-show {
  opacity: 1;
}

/* @end */
/* @group font Awesome */
.fa-file-docx:before {
  content: "\e5ed";
}

.fa-photo:before {
  content: "\f03e";
}

/* @end */
/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2005-2014 indual GmbH (www.indual.ch)
-------------------------------------------------------------------------------- */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
/* @group basic */
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --management-highlight-color: #E51937;
  --management-highlight-color-rgb: 229, 25, 55;
  --management-panel-width: 0px;
}

body {
  font: 400 17px/27px "europa", Arial, sans-serif;
  color: #000;
  background: #fff;
  height: 100%;
  -ms-overflow-style: none;
  letter-spacing: 0.4px;
  overflow-x: hidden;
}

body > nav {
  display: none;
}

.page {
  height: 100%;
  background: #000;
}

.page_123 {
  display: none;
}

div#siteframe {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  position: relative;
  box-sizing: border-box;
  left: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.2s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.2s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.2s cubic-bezier(0.5, 1, 0.5, 1);
  /*overflow: hidden;*/
}
.mod_mailform div#siteframe {
  position: static;
}

.content {
  background: #fff;
}
.content.quickline {
  margin-bottom: -10px;
}
.content .content_inner {
  max-width: 1140px;
  padding: 80px 20px 70px;
  box-sizing: border-box;
  margin: 0 auto;
}
.content .content_inner.small_padding {
  padding: 20px 20px 20px;
}

#mixItUp #management {
  max-width: 1060px;
  padding: 46px 20px 60px;
  box-sizing: border-box;
  margin: 0 auto;
}

#logo_print {
  display: none;
}

/* --  header -- */
header {
  background: #fff;
  position: relative;
  z-index: 15 !important;
  top: 0;
  width: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}
header * {
  -webkit-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
}
header .header_inner {
  padding: 20px 20px 17px;
  max-width: 1370px;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 100;
  background: #fff;
}
header .header_inner #logo {
  float: left;
  width: 242px;
  margin-right: 40px;
  margin-bottom: -31px;
  position: relative;
  z-index: 10;
}
header .header_inner #logo img {
  width: 110%;
  height: auto;
}
header .header_inner #logo a {
  float: left;
  position: relative;
}
header .header_inner #logo a:first-child:after {
  content: "";
  position: absolute;
  width: 74%;
  height: 23px;
  top: 67%;
  left: 40%;
  display: block;
  background: #fff;
  z-index: -1;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 14px 20px 0 rgba(0, 0, 0, 0.15);
}
.is-sticky header .header_inner #logo a:first-child:after {
  top: 64%;
}
header .header_inner #logo a:first-child {
  width: 150px;
  margin-right: 20px;
}
header .header_inner #search_button {
  float: right;
  margin-left: 0;
  margin-top: 2px;
  font-size: 30px;
  color: #000;
}
header .header_inner #search_button i {
  margin-right: 0;
}
header .header_inner #search_button:hover {
  color: #E51937;
}
header .header_inner #quickline {
  margin-top: 5px;
  width: 70px;
}
header .header_inner #quickline img {
  width: 100%;
  height: auto;
}

#header-sticky-wrapper:not(.is-sticky) {
  height: 74px !important;
}

.is-sticky header .header_inner {
  padding: 12px 20px 10px;
}
.is-sticky + #search.visible {
  top: 59px;
}

.is_scrolled #search.visible {
  top: 59px;
}

/* --  search -- */
#search {
  background: #ededed;
  position: fixed;
  top: -88px;
  width: 100%;
  box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  z-index: 1;
}
#search.visible {
  top: 105px;
}
#search .search_inner {
  padding: 25px 20px 23px;
  max-width: 1370px;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 100;
}
#search .search_inner ul.controls,
#search .search_inner .portlet-title {
  display: none;
}
#search .search_inner .portlet-content input {
  font-family: "europa", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  border-radius: 4px;
  padding: 7px 15px 6px;
}
#search .search_inner .portlet-content #portlet-search-input {
  width: 60%;
  float: left;
  color: #4C4C4C;
  border: 1px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  outline: none;
}
#search .search_inner .portlet-content #portlet-search-input:hover, #search .search_inner .portlet-content #portlet-search-input:focus {
  border: 1px solid #d4d4d4;
}
#search .search_inner .portlet-content #portlet-search-button {
  float: left;
  width: auto;
  color: #fff;
  background: #d40037;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 20px;
  padding: 6px 20px 6px;
  cursor: pointer;
  box-sizing: border-box;
  border: 2px solid #d40037;
}
#search .search_inner .portlet-content #portlet-search-button:hover, #search .search_inner .portlet-content #portlet-search-button:focus {
  background: #b5002f;
}

/* -- content -- */
.preload #slider .slide_text_container_wrap .slide_text_container {
  display: none !important;
}

/* @group slider */
#slider {
  margin: 0 auto;
  position: relative;
}
#slider img {
  display: block;
  width: 100%;
  height: auto;
}
#slider div:not(.bx-viewport) > .bxslider {
  display: block;
  width: 100%;
}
#slider div:not(.bx-viewport) > .bxslider * {
  display: block;
  width: 100%;
}
#slider div:not(.bx-viewport) > .bxslider .slide + .slide {
  display: none;
}
#slider .bx-viewport {
  min-height: 31.53vw;
  background: #000;
}
#slider .bx-viewport img {
  width: 100%;
  height: auto;
}
#slider #bx-slider-wrap .video_slide .video_in_slider {
  object-fit: cover;
  z-index: 2;
  position: relative;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
}
#slider .bxslider .slide > video,
#slider .bxslider .slide > span,
#slider .bxslider .slide > a {
  max-width: 60%;
  min-width: 60%;
  float: right;
}
#slider .bxslider .slide video,
#slider .bxslider .slide img {
  aspect-ratio: 1000/530;
  object-fit: cover;
}
#slider .bxslider .slide.picture_fullscreen > video,
#slider .bxslider .slide.picture_fullscreen > span,
#slider .bxslider .slide.picture_fullscreen > a {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
#slider .bxslider .slide.picture_fullscreen video,
#slider .bxslider .slide.picture_fullscreen img {
  aspect-ratio: 1600/848;
}
#slider .badge {
  font-size: 20px;
  line-height: 31px;
  background: #E51937;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 40px;
  right: 40px;
  border-radius: 100%;
  max-width: 280px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  margin: 0;
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  transform: rotate(10deg);
}
#slider .badge a {
  background: none !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 15px 10px;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: all 0.2s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.2s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.2s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.2s cubic-bezier(0.5, 1, 0.5, 1);
}
#slider .badge a:before {
  content: "";
  font-size: 0 !important;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #E51937;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  z-index: -1;
}
#slider .badge a:hover {
  text-decoration: underline;
}
#slider .badge a:hover:before {
  background: #d40037;
}
#slider .badge.font_big {
  font-size: 25px;
  line-height: 36px;
}
#slider .badge.font_bigger {
  font-size: 30px;
  line-height: 41px;
}
#slider .slide_text_container {
  position: absolute;
  width: 40%;
  display: block;
  padding: 40px 100px 40px 150px;
  box-sizing: border-box;
  color: #fff;
  text-align: left;
  background: #000;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#slider .slide_text_container .badge {
  display: none;
}
#slider .slide_text_container h2 {
  font-size: 45px;
  line-height: 54px;
  color: #fff;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 20px;
  pointer-events: none;
}
#slider .slide_text_container h2 span {
  color: #E51937;
}
#slider .slide_text_container .slide_text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
#slider .slide_text_container .slide_text .content_button {
  margin-top: 50px;
  margin-bottom: 0;
}
#slider .slide_text_container .slide_text .content_button a {
  padding: 18px 30px 19px;
  border-radius: 40px;
}
#slider .bx-controls .bx-controls-direction a {
  background: url(../img/slider_arrow.png);
  background-size: 200% 200%;
  width: 20px;
  height: 38px;
  margin-top: -45px;
  top: 50%;
  text-indent: 0;
  color: transparent;
  text-decoration: none;
  position: absolute;
  z-index: 1;
}
#slider .bx-controls .bx-controls-direction a.bx-prev {
  background-position: left top;
  left: 12px;
}
#slider .bx-controls .bx-controls-direction a.bx-prev:hover {
  background-position: left bottom;
}
#slider .bx-controls .bx-controls-direction a.bx-next {
  background-position: right top;
  right: 12px;
}
#slider .bx-controls .bx-controls-direction a.bx-next:hover {
  background-position: right bottom;
}
#slider .bx-controls .bx-pager {
  display: block;
  position: relative;
  bottom: 0;
  text-align: center;
  font-size: 0.85em;
  width: 100%;
  padding-top: 0;
}
#slider .bx-controls .bx-pager .bx-pager-item {
  display: inline-block;
  padding-top: 20px;
}
#slider .bx-controls .bx-pager .bx-pager-item:only-child {
  display: none;
}
#slider .bx-controls .bx-pager a {
  width: 120px;
  height: 6px;
  border: none;
  background: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  border-radius: 100%;
  box-sizing: border-box;
  margin: 0 12px;
  display: block;
  text-indent: -9999px;
  border-radius: 0;
}
#slider .bx-controls .bx-pager a.active, #slider .bx-controls .bx-pager a:hover {
  background: #E51937;
}

/* @end */
/* @group slider */
.search {
  margin-top: 30px;
}
.search .search_item_wrap {
  margin-top: 45px;
}
.search .search_item_wrap:first-child {
  margin-top: 0;
}
.search .search_item_wrap .search_item_date,
.search .search_item_wrap .resource_container {
  display: none;
}
.search .search_item_wrap a {
  text-decoration: none;
  color: #000;
}
.search .search_item_wrap a h2 {
  color: #d40037;
}
.search .search_item_wrap a .search_item_details {
  font-size: 15px;
  color: #4C4C4C;
}
.search .search_item_wrap a:hover h2 {
  color: #bb0030;
  text-decoration: none;
}
.search .search_item_wrap .search_item_detail_link {
  display: block;
  max-width: max-content;
  margin-top: 10px;
}

.highlighting {
  background: #ededed;
}

/* @end */
/* @group footer */
#footer_navigation {
  background: #242424 !important;
  clear: both;
  position: relative;
}
#footer_navigation .footer_inner_navigation {
  max-width: 1370px;
  margin: 0 auto;
  padding: 55px 20px 45px;
  box-sizing: border-box;
}
#footer_navigation .footer_inner_navigation .navigation {
  margin-left: -30px;
}
#footer_navigation .footer_inner_navigation .navigation ul.level2 {
  display: none;
}
#footer_navigation .footer_inner_navigation .navigation li {
  list-style: none;
  line-height: 20px;
  padding: 0 0 10px 0;
}
#footer_navigation .footer_inner_navigation .navigation li#nav-209 > a span {
  position: relative;
  /*
  						&:after {
  							@include before(12px,11px,$black_light,auto,auto);
  							right: -1px;
  							bottom: 0;
  						}
  */
}
#footer_navigation .footer_inner_navigation .navigation li a {
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  display: block;
}
#footer_navigation .footer_inner_navigation .navigation li a:hover {
  text-decoration: underline;
}
#footer_navigation .footer_inner_navigation .navigation li.level1.current > a {
  text-decoration: underline;
}
#footer_navigation .footer_inner_navigation .navigation li.level0.current > a {
  font-weight: 800;
}
#footer_navigation .footer_inner_navigation .navigation > li {
  list-style: none;
  float: left;
  box-sizing: border-box;
  width: 25%;
  padding: 0 0 30px 30px;
  padding-bottom: 0;
  line-height: 26px;
  display: none;
}
#footer_navigation .footer_inner_navigation .navigation > li#nav-333, #footer_navigation .footer_inner_navigation .navigation > li#nav-34, #footer_navigation .footer_inner_navigation .navigation > li#nav-209, #footer_navigation .footer_inner_navigation .navigation > li#nav-85, #footer_navigation .footer_inner_navigation .navigation > li#nav-208 {
  display: block;
}
#footer_navigation .footer_inner_navigation .navigation > li > a {
  font-size: 25px;
  line-height: 34px;
  color: #fff;
  position: relative;
  display: block;
  text-decoration: none;
  font-weight: 700;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer_navigation .footer_inner_navigation .navigation > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 100%;
  left: auto;
  display: block;
  background: rgba(0, 0, 0, 0.1);
}

#footer {
  background: #000;
  clear: both;
  position: relative;
}
#footer .footer_inner {
  max-width: 1370px;
  margin: 0 auto;
  padding: 38px 20px;
  box-sizing: border-box;
}
#footer .footer_inner ul li {
  list-style: none;
  float: left;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-right: 35px;
}
#footer .footer_inner ul li a {
  color: #fff;
  text-decoration: none;
}
#footer .footer_inner ul li a:hover {
  text-decoration: underline;
}
#footer .footer_inner ul li.current a {
  text-decoration: underline;
}
#footer .footer_inner .social {
  float: right;
}
#footer .footer_inner .social a {
  margin-left: 38px;
  color: #fff;
}
#footer .footer_inner .social a:hover {
  opacity: 0.6;
}

#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_button {
  font-size: 14px;
  line-height: 21px;
}
#privacy_banner #privacy_banner_inner #privacy_buttons #privacy_button:before {
  display: none;
}

/* @end */
.quickline_iframe_container {
  position: relative;
}

.spinner_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 30px;
  height: 30px;
  border: 4px solid #e6e6e6;
  border-top: 4px solid #E51937;
  border-radius: 50%;
  animation: spin 1.5s ease-in-out infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2005-2014 indual GmbH (www.indual.ch)
-------------------------------------------------------------------------------- */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
/* @group headings, paragraph */
h1 {
  font-family: "europa", Arial, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 50px;
  color: #000;
  margin: 0 0 22px 0;
}

.breadcrumb + h1 {
  margin-top: 30px;
}

div.introduction {
  font-family: "europa", Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 34px;
  color: #000;
  margin: 0 0 16px 0;
  padding: 0;
}

h2 {
  font-family: "europa", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #d40037;
  margin: 0 0 15px 0;
}
* + h2 {
  margin-top: 40px;
}
h2 + h3 {
  margin-top: -10px;
}

h3, h3 a {
  font-family: "europa", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #d40037;
  margin: 0 0 4px 0;
  text-decoration: none;
}

p + h3 {
  margin-top: 25px;
}

h4, h4 a {
  font-family: "europa", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  margin: 20px 0 0px 0;
  text-decoration: none;
  letter-spacing: 1px;
}

h5, h5 a,
h6, h6 a {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 0 0;
  line-height: 24px;
  text-decoration: none;
}

p {
  margin: 0 0 15px 0;
}
.quickline p {
  margin-bottom: 0;
}
p:last-child {
  margin-bottom: 0;
}

/* @end */
/* @group link */
a {
  outline: none;
  color: #d40037;
  text-decoration: underline;
}

a:hover {
  color: #a1002a;
}

a img {
  border: none;
}

#contentframe .resource_subtitle {
  display: none;
}

/* @end */
/* @group unordrered list */
.content ol {
  margin: 0 0 18px 16px;
}
.content ol li {
  text-align: left;
}
.content .chosen ul {
  margin: 0;
}
.content ul {
  margin: 0 0 18px 15px;
}
.content ul li {
  padding: 0 0 0 0;
  position: relative;
  list-style: none;
}
.content ul li:before {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: -15px;
  top: 0px;
}
.content ul.controls li:before {
  display: none;
}

.sitemap li,
.multipage_controls li {
  padding: 0 !important;
}
.sitemap li:before,
.multipage_controls li:before {
  display: none;
}

.content ul.sitemap {
  margin: 0;
}

/* @end */
/* @group content table */
.content table {
  border: none;
  border-spacing: 0;
  margin: 0 0 5px 0;
}
.content table th {
  border-bottom: 1px solid #ededed;
  padding: 0 12px 6px 0;
  text-align: left;
  font: 400 17px/27px "europa", Arial, sans-serif;
  font-weight: 700;
}
.content table td {
  border-bottom: 1px solid #ededed;
  padding: 8px 12px 8px 0;
  text-align: left;
}
.content table td p:last-child {
  margin-bottom: 0;
}
.content table tbody th:first-child {
  font: 400 17px/27px "europa", Arial, sans-serif;
  font-weight: 600;
  vertical-align: middle;
  padding-bottom: 0;
}
.content table.no_border th, .content table.no_border td {
  border-bottom: 0;
}

.table_wrap_container,
.table_wrap {
  /*width: 100%;*/
  width: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.table_wrap_container {
  overflow: hidden;
  margin: 0 0 20px 0;
}
.table_wrap_container .table_scroll_indicator {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: none;
}

.youtube_iframe_wrap {
  position: relative;
  height: 0;
  padding-bottom: 56.22%;
  z-index: 10;
}
.youtube_iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}
.youtube_iframe_wrap + .picture {
  display: none;
}

/* @end */
/* @group button */
#portlet_for_two_wrap .portlet .portlet_content_link,
#only_one_big_portlet .portlet .portlet_content_link,
#portlets_news .portlet_listing_show_all,
#portlets_news .portlet_content_link,
#knowledge_db_entries input.button,
#slider .slide_text_container .slide_text a,
#portlets_listing a.portlet_listing_show_all,
#portlets_listing a.portlet-entry-link,
#mixItUp .pagination .pagination-links a,
a.listing-more-button,
.content_button a,
.login_form input.button,
#mailform_submit_button input,
.portlets input.button,
a.add_portlet_link,
#content p.content_button a,
.content_left a.button,
.no_system_page a.button,
.listing_entry_backlink a,
a.button {
  font-family: "europa", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  border: none;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 8px 30px 7px 15px;
  color: #d40037;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #d40037;
  position: relative;
}
#portlet_for_two_wrap .portlet .portlet_content_link:before,
#only_one_big_portlet .portlet .portlet_content_link:before,
#portlets_news .portlet_listing_show_all:before,
#portlets_news .portlet_content_link:before,
#knowledge_db_entries input.button:before,
#slider .slide_text_container .slide_text a:before,
#portlets_listing a.portlet_listing_show_all:before,
#portlets_listing a.portlet-entry-link:before,
#mixItUp .pagination .pagination-links a:before,
a.listing-more-button:before,
.content_button a:before,
.login_form input.button:before,
#mailform_submit_button input:before,
.portlets input.button:before,
a.add_portlet_link:before,
#content p.content_button a:before,
.content_left a.button:before,
.no_system_page a.button:before,
.listing_entry_backlink a:before,
a.button:before {
  content: "\f054";
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 50%;
  left: auto;
  display: block;
  color: #d40037;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 12px;
}
@media screen and (max-width: 600px) {
  #portlet_for_two_wrap .portlet .portlet_content_link,
#only_one_big_portlet .portlet .portlet_content_link,
#portlets_news .portlet_listing_show_all,
#portlets_news .portlet_content_link,
#knowledge_db_entries input.button,
#slider .slide_text_container .slide_text a,
#portlets_listing a.portlet_listing_show_all,
#portlets_listing a.portlet-entry-link,
#mixItUp .pagination .pagination-links a,
a.listing-more-button,
.content_button a,
.login_form input.button,
#mailform_submit_button input,
.portlets input.button,
a.add_portlet_link,
#content p.content_button a,
.content_left a.button,
.no_system_page a.button,
.listing_entry_backlink a,
a.button {
    font-size: 15px;
    line-height: 24px;
  }
}
#portlet_for_two_wrap .portlet .portlet_content_link:hover,
#only_one_big_portlet .portlet .portlet_content_link:hover,
#portlets_news .portlet_listing_show_all:hover,
#portlets_news .portlet_content_link:hover,
#knowledge_db_entries input.button:hover,
#slider .slide_text_container .slide_text a:hover,
#portlets_listing a.portlet_listing_show_all:hover,
#portlets_listing a.portlet-entry-link:hover,
#mixItUp .pagination .pagination-links a:hover,
a.listing-more-button:hover,
.content_button a:hover,
.login_form input.button:hover,
#mailform_submit_button input:hover,
.portlets input.button:hover,
a.add_portlet_link:hover,
#content p.content_button a:hover,
.content_left a.button:hover,
.no_system_page a.button:hover,
.listing_entry_backlink a:hover,
a.button:hover {
  background: #ececec;
}

.listing_entry_backlink a {
  padding: 8px 15px 7px 30px;
}
.listing_entry_backlink a:before {
  content: "\f053";
  left: 12px;
  right: auto;
}

/* @end */
/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2005-2014 indual GmbH (www.indual.ch)
-------------------------------------------------------------------------------- */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
/* @group meta navigation */
#metanavigation {
  background: #d40037;
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
  position: relative;
  z-index: 10;
}
#metanavigation .meta_navigation_inner {
  max-width: 1370px;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 6px 0 6px;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#metanavigation .meta_navigation_inner .language_quicklinks {
  display: flex;
  margin-left: 20px;
}
#metanavigation .meta_navigation_inner .language_quicklinks a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
#metanavigation .meta_navigation_inner .language_quicklinks a + a {
  margin-left: 10px;
}
#metanavigation .meta_navigation_inner .language_quicklinks a:not(.current):hover {
  color: rgba(255, 255, 255, 0.6);
}
#metanavigation .meta_navigation_inner .language_quicklinks a.current {
  font-weight: 700;
}
#metanavigation ul {
  margin: 0;
  padding: 0;
  display: inline-block;
}
#metanavigation ul li {
  display: inline;
  margin: 0;
  padding: 0;
  float: left;
}
#metanavigation ul li a {
  color: #fff;
  padding: 0 10px 0;
  text-decoration: none;
  display: block;
  border-radius: 15px;
}
#metanavigation ul li:not(.current):hover {
  opacity: 0.7;
}
#metanavigation ul li.current a {
  font-weight: 700;
  background: #fff;
  color: #000;
}
#metanavigation #metanavigation_right {
  float: right;
}
#metanavigation #metanavigation_right a {
  float: left;
  text-decoration: none;
  color: #7F7F7F;
  padding: 16px 20px 16px 5px;
}
#metanavigation #metanavigation_right a:hover {
  color: #4C4C4C;
}

/* @end */
.responsive_navigation_toggle {
  z-index: 80;
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
  float: right;
  top: 5px;
  display: none;
  margin-left: 12px;
}
.responsive_navigation_toggle span {
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: #000;
  z-index: 80;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.responsive_navigation_toggle span:nth-child(2) {
  top: 10px;
}
.responsive_navigation_toggle span:nth-child(3) {
  top: 20px;
}
.navi_open .responsive_navigation_toggle span:first-child {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navi_open .responsive_navigation_toggle span:nth-child(2) {
  opacity: 0;
}
.navi_open .responsive_navigation_toggle span:last-child {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navi_open .responsive_navigation_toggle span:first-child,
.navi_open .responsive_navigation_toggle span:last-child {
  top: 10px;
}

.navi_is_open .responsive_navigation_toggle span:first-child {
  opacity: 0;
}
.navi_is_open .responsive_navigation_toggle span:nth-child(2) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navi_is_open .responsive_navigation_toggle span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* @group navigation */
div#navigation {
  margin-top: 4px;
}
div#navigation * {
  -webkit-transition: all 0s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0s cubic-bezier(0.5, 1, 0.5, 1);
}
div#navigation > ul > li {
  list-style: none;
  float: left;
  margin-right: 22px;
  position: relative;
}
div#navigation > ul > li:nth-last-child(2), div#navigation > ul > li:nth-last-child(3), div#navigation > ul > li:nth-last-child(4), div#navigation > ul > li:last-child {
  float: right;
}
div#navigation > ul > li#nav-378, div#navigation > ul > li#nav-379, div#navigation > ul > li#nav-333, div#navigation > ul > li#nav-307, div#navigation > ul > li#nav-268, div#navigation > ul > li#nav-59, div#navigation > ul > li#nav-214, div#navigation > ul > li#nav-34, div#navigation > ul > li#nav-85, div#navigation > ul > li#nav-209 {
  display: none;
}
div#navigation > ul > li#nav-328, div#navigation > ul > li#nav-327 {
  margin-right: 10px;
}
div#navigation > ul > li#nav-328:after, div#navigation > ul > li#nav-327:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 8px;
  top: auto;
  left: auto;
  display: block;
  background: #fff;
  right: 0;
  bottom: 0;
  z-index: 1;
}
div#navigation > ul > li#nav-381 a {
  color: #fff;
  background: #E51937;
  border-radius: 4px;
  font-size: 18px;
  padding: 5px 10px;
  position: relative;
  top: -5px;
}
div#navigation > ul > li#nav-340 ul.level1, div#navigation > ul > li#nav-264 ul.level1 {
  margin-left: 150px;
}
div#navigation > ul > li#nav-340 ul.level1:after, div#navigation > ul > li#nav-264 ul.level1:after {
  left: calc(50% - 150px);
}
div#navigation ul li {
  list-style: none;
}
div#navigation ul li.level0 > a {
  color: #000;
  font-size: 19px;
  font-weight: 500;
  display: block;
  position: relative;
}
div#navigation ul li.level0 > a:hover {
  text-decoration: underline;
}
div#navigation ul li.level0 > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  top: 100%;
  left: 0;
  display: block;
  background: transparent;
}
div#navigation ul li.level0.current > a {
  color: #d40037;
  font-weight: 700;
}
div#navigation ul li:hover ul.level1 {
  opacity: 1;
  visibility: visible;
}
div#navigation ul li ul.level1 {
  position: absolute;
  width: 1200px;
  background: #a5a5a5;
  text-align: center;
  top: 50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  padding: 17px 0 18px;
  opacity: 0;
  visibility: hidden;
}
div#navigation ul li ul.level1:before {
  content: "";
  position: absolute;
  width: 5000px;
  height: 100%;
  top: 0;
  left: -2000px;
  display: block;
  background: #a5a5a5;
  z-index: -1;
}
div#navigation ul li ul.level1:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: -8px;
  left: 50%;
  display: block;
  background: #a5a5a5;
  margin-left: -10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
div#navigation ul li ul.level1 > li {
  display: inline-block;
  margin: 0 20px;
}
div#navigation ul li ul.level1 > li.current a, div#navigation ul li ul.level1 > li:hover a {
  text-decoration: underline;
  color: #fff;
  font-weight: 500;
}
div#navigation ul li ul.level1 a {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
div#navigation ul li ul.level1 ul.level3,
div#navigation ul li ul.level1 ul.level2 {
  display: none;
}
div#navigation ul li a {
  text-decoration: none;
}

.is_scrolled div#navigation ul li ul.level1 {
  top: 44px;
}

#rwdnav {
  text-align: center;
}
#rwdnav .language_quicklinks {
  background: #eee;
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
#rwdnav .language_quicklinks a {
  padding: 8px 8px 7px;
  text-decoration: none;
  color: #111;
  flex: 1;
  font-size: 13px;
}
#rwdnav .language_quicklinks a + a {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
#rwdnav .language_quicklinks a.current {
  font-weight: 700;
}
#rwdnav li {
  list-style: none;
  background: #000;
}
#rwdnav li#rwdnav-34, #rwdnav li#rwdnav-209, #rwdnav li#rwdnav-85, #rwdnav li#rwdnav-333, #rwdnav li#rwdnav-1 {
  display: none;
}
#rwdnav li#rwdnav-287 .nav_icon {
  display: none;
}
#rwdnav li:not(.has_submenu) .nav_icon {
  display: none;
}
#rwdnav li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
}
#rwdnav li.level0 {
  border-bottom: 1px solid rgba(170, 170, 170, 0.31);
  position: relative;
}
#rwdnav li.level0.current {
  background: #242424;
}
#rwdnav li.level0 .nav_icon {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 25px;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
}
#rwdnav li.level0 .nav_icon i {
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
}
#rwdnav li.level0.visible_detail .nav_icon {
  background: #242424;
}
#rwdnav li.level0.visible_detail .nav_icon i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
#rwdnav li.level0 > a {
  padding: 16px 0;
  display: block;
}
#rwdnav li.level0.visible_detail ul.level1 {
  height: auto;
  visibility: visible;
  opacity: 1;
}
#rwdnav li.level0 ul.level1 {
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
}
#rwdnav li.level0 ul.level1 > li {
  background: #242424;
  border-top: 1px solid rgba(170, 170, 170, 0.31);
}
#rwdnav li.level0 ul.level1 > li > a {
  padding: 16px 0;
  display: block;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#rwdnav li.level0 ul.level1 > li.current > a {
  text-decoration: underline;
}
#rwdnav li.level0 ul.level1 ul.level2 {
  display: none !important;
}
#rwdnav #rwdnav-328 > a > span,
#rwdnav #rwdnav-327 > a > span {
  position: relative;
}
#rwdnav #rwdnav-328 > a > span:before,
#rwdnav #rwdnav-327 > a > span:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: auto;
  left: auto;
  display: block;
  background: #a5a5a5;
  right: 0;
  bottom: 0;
}
#rwdnav #rwdnav-328.current > a > span:before,
#rwdnav #rwdnav-327.current > a > span:before {
  background: #919191;
}
#rwdnav #rwdnav-25 {
  background: #d40037;
}
#rwdnav #rwdnav-25 .nav_icon,
#rwdnav #rwdnav-25 > a {
  display: none;
}
#rwdnav #rwdnav-25 li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#rwdnav #rwdnav-25 li.current {
  background: #bb0030;
}
#rwdnav #rwdnav-25 ul.level1 {
  height: auto;
  visibility: visible;
  opacity: 1;
}
#rwdnav #rwdnav-25 ul.level1 li {
  background: #d40037;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#rwdnav #rwdnav-25 ul.level1 li > a {
  padding: 16px 0;
  display: block;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#rwdnav #rwdnav-328,
#rwdnav #rwdnav-326,
#rwdnav #rwdnav-327,
#rwdnav #rwdnav-328 {
  background: #a5a5a5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#rwdnav #rwdnav-328 > a,
#rwdnav #rwdnav-326 > a,
#rwdnav #rwdnav-327 > a,
#rwdnav #rwdnav-328 > a {
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#rwdnav #rwdnav-328 .nav_icon,
#rwdnav #rwdnav-326 .nav_icon,
#rwdnav #rwdnav-327 .nav_icon,
#rwdnav #rwdnav-328 .nav_icon {
  display: none;
}
#rwdnav #rwdnav-328.current,
#rwdnav #rwdnav-326.current,
#rwdnav #rwdnav-327.current,
#rwdnav #rwdnav-328.current {
  background: #919191;
}
#rwdnav #rwdnav-327 .nav_icon {
  display: block;
  position: absolute;
  background: #a5a5a5;
  height: 58px;
}
#rwdnav #rwdnav-327.visible_detail .nav_icon {
  background: #919191;
}
#rwdnav #rwdnav-327 ul.level1 li {
  background: #919191;
}

/* @group breadcrumb */
.breadcrumb {
  color: #7F7F7F;
}
.breadcrumb .you_are_here {
  display: none;
}
.breadcrumb a {
  text-decoration: none;
  margin-right: 5px;
}
.breadcrumb a:hover {
  color: #d40037;
  text-decoration: underline;
}
.breadcrumb span {
  margin-right: 5px;
}

#nav-421.current > a,
#nav-421 > a {
  background-color: black;
  color: #d40037 !important;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: -4px;
}

/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 21.07.14 indual GmbH (www.indual.ch)
-------------------------------------------------------------------------------- */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
/* @group images */
.picture {
  width: 100%;
}
.picture * {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.6s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.6s cubic-bezier(0.5, 1, 0.5, 1);
}
.picture .resource_background {
  position: relative;
  overflow: hidden;
}
.picture .resource_background:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.picture .resource_background:hover:before {
  opacity: 1;
  visibility: visible;
}
.picture .resource_subtitle {
  display: none;
}

.gallery {
  margin: 30px 0 0 -30px;
}
.gallery .picture {
  float: left;
  box-sizing: border-box;
  width: 33.33%;
  padding: 0 0 30px 30px;
}
.gallery .picture img {
  width: 100%;
  height: auto;
}

/* @end */
/* @group document */
.documents {
  margin-top: 30px;
}
.documents h2 {
  display: none;
}
.documents .document a {
  text-decoration: none;
}
.documents .document a span {
  text-decoration: none;
}

/* @end */
/* @group fancybox */
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.fancybox-overlay .fancybox-wrap .fancybox-skin {
  padding: 25px !important;
  margin: 30px 0;
  background: #fff;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-outer a > span {
  background: none;
  visibility: visible;
  margin-top: -10px;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-outer a > span:before {
  content: "\f104";
  font-size: 33px;
  line-height: 33px;
  position: absolute;
  top: 0;
  left: -28px;
  display: block;
  color: #ededed;
  font-family: "Font Awesome 6 Pro";
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-outer a > span:before:hover {
  color: #E51937;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-outer a > span:hover:before {
  color: #E51937;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin .fancybox-outer a.fancybox-next span:before {
  content: "\f105";
  left: auto;
  right: -28px;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin a.fancybox-close {
  background: #fff;
  border-radius: 100%;
  top: -18px;
  right: -18px;
  text-decoration: none;
}
.fancybox-overlay .fancybox-wrap .fancybox-skin a.fancybox-close:before {
  content: "\f057";
  font-size: 45px;
  line-height: 45px;
  position: absolute;
  top: 6px;
  left: -2px;
  display: block;
  color: #ededed;
  font-family: "Font Awesome 6 Pro";
}
.fancybox-overlay .fancybox-wrap .fancybox-skin a.fancybox-close:hover:before {
  color: #E51937;
}

/* @end */
iframe.quickline_iframe {
  min-height: 2000px !important;
}

p img {
  max-width: 100%;
  height: auto !important;
}

.resource_container.videos h2 {
  display: none;
}
.resource_container.videos .video-js {
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 56.3%;
}

.content_inner p img {
  max-width: 100%;
  height: auto !important;
}

/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2005-2014 indual GmbH (www.indual.ch)
-------------------------------------------------------------------------------- */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
/* @group misc management elements */
.message {
  border: 1px solid #d40037;
  color: #d40037;
  background: #F7F7F7;
  font-weight: 700;
  padding: 9px 16px 8px;
  margin: 5px 0 20px;
  font-size: 16px;
  overflow: hidden;
  text-align: left;
}
.message ul {
  margin-bottom: 5px;
}

/* @end */
div#management div.button_bar_bottom .button.secondary:before {
  display: none;
}

.map_no_consent {
  box-sizing: border-box;
}

html body.system_page .page {
  background: none;
}
html body.system_page #metanavigation,
html body.system_page #footer_navigation,
html body.system_page #header-sticky-wrapper {
  display: none !important;
}

/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2005-2014 indual GmbH (www.indual.ch)
-------------------------------------------------------------------------------- */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
/* @group portlet basic styles */
.add_portlet span.select2-container {
  width: 300px !important;
}
.add_portlet h3 {
  font-family: "europa", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

div.portlets a.add_portlet_link:before {
  display: none !important;
}
div.portlets .portlet .resource_container .management_controls {
  display: none;
}

.logged_in #portlets_for_one .portlet_zone_label:after {
  content: "Zone: Fullscreen Portlet (Bild, YouTube Video, Text auf Grau)";
}
.logged_in #portlets_for_two .portlet_zone_label:after {
  content: "Zone: Text Portlets";
}
.logged_in #portlets_for_one_big_portlet .portlet_zone_label:after {
  content: "Zone: Portlet mit Rotem Hintergrund";
}
.logged_in #portlets_message .portlet_zone_label:after {
  content: "Zone: Messages";
}

.portlet.hidden {
  display: block;
}

h2.portlet_description {
  display: none;
}
.logged_in h2.portlet_description {
  display: inline-block;
  font-size: 20px;
  color: #000;
  background: #ededed;
  border-radius: 4px;
  padding: 5px 20px;
  margin: 30px 0 30px;
}

.portlets .portlet {
  position: relative;
}
.portlets .portlet .controls {
  position: absolute;
  right: 0;
  top: 0;
  background: #ededed;
  padding: 3px 10px 0;
  z-index: 1;
}

#portlets_metanavigation {
  margin-left: -30px;
}
#portlets_metanavigation .portlet {
  float: left;
  box-sizing: border-box;
  width: 25%;
  padding: 0 0 30px 30px;
  color: #000;
}
#portlets_metanavigation .portlet h3 {
  font-family: "europa", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 12px;
  color: #E51937;
  text-transform: none;
}

#portlets_metanavigation_login {
  margin-left: -20px;
}
#portlets_metanavigation_login .portlet {
  float: left;
  box-sizing: border-box;
  width: 50%;
  padding: 0 0 20px 20px;
  color: #000;
  display: block;
  padding-bottom: 0;
}
#portlets_metanavigation_login .portlet .portlet_inner {
  border: 1px solid #000;
  padding: 20px 10px;
  text-align: center;
}
#portlets_metanavigation_login .portlet .portlet_inner h3 a, #portlets_metanavigation_login .portlet .portlet_inner h3 {
  color: #000;
  font-size: 19px;
  font-weight: 500;
}
#portlets_metanavigation_login .portlet:first-child .portlet_inner {
  background: #E51937;
}
#portlets_metanavigation_login .portlet:first-child .portlet_inner h3 a, #portlets_metanavigation_login .portlet:first-child .portlet_inner h3 {
  color: #fff;
}
#portlets_metanavigation_login .portlet:nth-child(2) .portlet_inner {
  background: #fff;
}
#portlets_metanavigation_login .portlet:nth-child(3) .portlet_inner {
  background: #7F7F7F;
}

/* @end */
body.mod_quickline #portlet_navigation_wrap,
body.mod_quickline #portlet_navigation_wrap-sticky-wrapper {
  display: none;
}
body.portlet_navigation_visible #portlet_navigation_wrap,
body.portlet_navigation_visible #portlet_navigation_wrap-sticky-wrapper {
  display: block;
}

#portlet_navigation_wrap {
  width: 100%;
  background: #ededed;
  padding: 50px 0 30px;
}
#portlet_navigation_wrap #portlets_navigation {
  max-width: 1370px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
#portlet_navigation_wrap #portlets_navigation .portlets_inner_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -35px;
}
#portlet_navigation_wrap #portlets_navigation .controls {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 10;
}
#portlet_navigation_wrap #portlets_navigation .portlet {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 35px;
  box-sizing: border-box;
}
#portlet_navigation_wrap #portlets_navigation .portlet .portlet_inner {
  background: #fff;
  padding: 35px 30px 105px;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  position: relative;
  border-radius: 4px;
}
#portlet_navigation_wrap #portlets_navigation .portlet .portlet_text_wrap {
  max-width: 1100px;
  margin: 0 auto;
}
#portlet_navigation_wrap #portlets_navigation .portlet h3, #portlet_navigation_wrap #portlets_navigation .portlet h3 a {
  color: #000;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  display: block;
}
#portlet_navigation_wrap #portlets_navigation .portlet h3 {
  position: relative;
  margin-bottom: 15px;
}
#portlet_navigation_wrap #portlets_navigation .portlet h3:before {
  content: "\f135";
  font-size: 45px;
  line-height: 45px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  color: #d40037;
  font-family: "Font Awesome 6 Pro";
  position: relative;
  text-align: center;
  font-weight: 300;
  margin-bottom: 25px;
}
#portlet_navigation_wrap #portlets_navigation .portlet#portlet_content_115 h3:before {
  content: "\f1eb";
}
#portlet_navigation_wrap #portlets_navigation .portlet#portlet_content_116 h3:before {
  content: "\f26c";
}
#portlet_navigation_wrap #portlets_navigation .portlet#portlet_content_117 h3:before {
  content: "\f10b";
}
#portlet_navigation_wrap #portlets_navigation .portlet:hover .portlet_inner {
  background: #e6e6e6;
}
#portlet_navigation_wrap #portlets_navigation .portlet .portlet_content_link {
  font-family: "europa", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  border: none;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 8px 30px 7px 15px;
  color: #d40037;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #d40037;
  position: relative;
  z-index: 1;
  position: relative;
  position: absolute;
  bottom: 35px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  white-space: nowrap;
}
#portlet_navigation_wrap #portlets_navigation .portlet .portlet_content_link:before {
  content: "\f054";
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 50%;
  left: auto;
  display: block;
  color: #d40037;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 12px;
}
@media screen and (max-width: 600px) {
  #portlet_navigation_wrap #portlets_navigation .portlet .portlet_content_link {
    font-size: 15px;
    line-height: 24px;
  }
}
#portlet_navigation_wrap #portlets_navigation .portlet .portlet_content_link:hover {
  background: #ececec;
}
#portlet_navigation_wrap #portlets_navigation .portlet .full_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#portlet_navigation_wrap #portlets_navigation .portlet .resource_container {
  display: none;
}
#portlet_navigation_wrap #portlets_navigation .portlet .resource_container .picture {
  display: inline-block;
  float: none;
  width: 63px;
  -webkit-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
}
#portlet_navigation_wrap #portlets_navigation .portlet .resource_container .picture span {
  box-shadow: none !important;
}
#portlet_navigation_wrap #portlets_navigation .portlet .resource_container .picture img {
  width: 100%;
  height: auto;
}
#portlet_navigation_wrap #portlets_navigation .portlet .resource_container .picture_1 {
  display: none;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title {
  width: 100%;
  clear: both;
  flex: 0 0 100%;
  max-width: 100%;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title:not(:first-child) {
  margin-top: 50px;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title + .portlet .portlet_content_link {
  font-family: "europa", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  border: none;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 8px 30px 7px 15px;
  color: #d40037;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #d40037;
  position: relative;
  background: #d40037;
  border-color: #d40037;
  color: #fff;
  position: absolute !important;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title + .portlet .portlet_content_link:before {
  content: "\f054";
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 50%;
  left: auto;
  display: block;
  color: #d40037;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 12px;
}
@media screen and (max-width: 600px) {
  #portlet_navigation_wrap #portlets_navigation .portlet.title + .portlet .portlet_content_link {
    font-size: 15px;
    line-height: 24px;
  }
}
#portlet_navigation_wrap #portlets_navigation .portlet.title + .portlet .portlet_content_link:hover {
  background: #ececec;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title + .portlet .portlet_content_link:before {
  color: #fff;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title + .portlet .portlet_content_link:hover {
  background: #bb0030;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title:before {
  display: none;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title .portlet_inner {
  background: none;
  padding: 0;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title p > a {
  font-family: "europa", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  border: none;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 8px 30px 7px 15px;
  color: #d40037;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #d40037;
  position: relative;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title p > a:before {
  content: "\f054";
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 50%;
  left: auto;
  display: block;
  color: #d40037;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 12px;
}
@media screen and (max-width: 600px) {
  #portlet_navigation_wrap #portlets_navigation .portlet.title p > a {
    font-size: 15px;
    line-height: 24px;
  }
}
#portlet_navigation_wrap #portlets_navigation .portlet.title p > a:hover {
  background: #ececec;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title h3 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
  text-align: center;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title h3:hover {
  color: #000;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title h3:before {
  display: none;
}
#portlet_navigation_wrap #portlets_navigation .portlet.title .full_link {
  display: none;
}

.portlets_message .add_portlet_link {
  display: none !important;
}
.portlets_message .portlet {
  width: 100%;
  background: #ededed;
  padding: 50px 50px 30px;
  box-sizing: border-box;
}
.portlets_message .portlet .portlet_inner {
  max-width: 100%;
  box-sizing: border-box;
  background: white;
  padding: 35px 30px;
  border-radius: 4px;
  width: fit-content;
  margin: 0 auto;
}
.portlets_message .portlet .portlet_inner h3,
.portlets_message .portlet .portlet_inner h3 a {
  color: #000;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  display: block;
  text-align: center;
}
.portlets_message .portlet .portlet_inner .portlet_content_link {
  font-family: "europa", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  border: none;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 8px 30px 7px 15px;
  color: #d40037;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #d40037;
  position: relative;
  background: #d40037;
  border-color: #d40037;
  color: #fff;
  margin: 0 auto;
  margin-top: 30px;
  display: block;
  width: fit-content;
}
.portlets_message .portlet .portlet_inner .portlet_content_link:before {
  content: "\f054";
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 50%;
  left: auto;
  display: block;
  color: #d40037;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 12px;
}
@media screen and (max-width: 600px) {
  .portlets_message .portlet .portlet_inner .portlet_content_link {
    font-size: 15px;
    line-height: 24px;
  }
}
.portlets_message .portlet .portlet_inner .portlet_content_link:hover {
  background: #ececec;
}
.portlets_message .portlet .portlet_inner .portlet_content_link:before {
  color: #fff;
}
.portlets_message .portlet .portlet_inner .portlet_content_link:hover {
  background: #bb0030;
}

#only_one_big_portlet {
  max-width: 1370px;
  margin: 65px auto 10px;
  padding: 0 20px;
  box-sizing: border-box;
}
#only_one_big_portlet .portlets_inner_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -35px;
  position: relative;
}
#only_one_big_portlet .portlets_inner_wrap .add_portlet_link {
  position: absolute;
  bottom: 0;
  left: 35px;
}
#only_one_big_portlet .portlets_inner_wrap #add_portlet_for_one_big_portlet .portlet_inner {
  padding: 25px;
  box-sizing: border-box;
}
#only_one_big_portlet .portlets_inner_wrap #add_portlet_for_one_big_portlet .portlet_inner label,
#only_one_big_portlet .portlets_inner_wrap #add_portlet_for_one_big_portlet .portlet_inner h3 {
  color: #fff;
}
#only_one_big_portlet .portlets_inner_wrap #add_portlet_for_one_big_portlet .portlet_inner .button {
  background: #fff;
  color: #d40037;
}
#only_one_big_portlet .portlet {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 35px;
  padding-bottom: 35px;
  box-sizing: border-box;
}
#only_one_big_portlet .portlet:first-child {
  margin-top: 0;
}
#only_one_big_portlet .portlet video {
  height: 364px !important;
  padding-bottom: 0 !important;
  object-fit: cover;
}
#only_one_big_portlet .portlet .portlet_inner {
  height: 100%;
  background: #d40037;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
}
#only_one_big_portlet .portlet .portlet_inner.has_link:hover {
  background: #bb0030;
}
#only_one_big_portlet .portlet .full_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#only_one_big_portlet .portlet .portlet_content_link {
  font-family: "europa", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  border: none;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 8px 30px 7px 15px;
  color: #d40037;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #d40037;
  position: relative;
  position: absolute;
  left: 25px;
  bottom: 30px;
  background: #fff;
  color: #d40037;
}
#only_one_big_portlet .portlet .portlet_content_link:before {
  content: "\f054";
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 50%;
  left: auto;
  display: block;
  color: #d40037;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 12px;
}
@media screen and (max-width: 600px) {
  #only_one_big_portlet .portlet .portlet_content_link {
    font-size: 15px;
    line-height: 24px;
  }
}
#only_one_big_portlet .portlet .portlet_content_link:hover {
  background: #ececec;
}
#only_one_big_portlet .portlet .portlet_content_link.hidden {
  display: none;
}
#only_one_big_portlet .portlet .portlet_text_wrap {
  padding: 30px 25px 90px 25px;
  pointer-events: none;
}
#only_one_big_portlet .portlet .portlet_text_wrap h3, #only_one_big_portlet .portlet .portlet_text_wrap h3 a {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 15px;
  color: #fff;
}
#only_one_big_portlet .portlet .portlet_text_wrap .portlet_content_description {
  color: #fff;
  font-weight: 500;
}
#only_one_big_portlet .portlet .resource_container {
  width: 100%;
}
#only_one_big_portlet .portlet .resource_container img {
  width: 100%;
  height: auto;
}

#portlet_for_two_wrap {
  max-width: 1370px;
  margin: 40px auto 10px;
  padding: 0 20px;
  box-sizing: border-box;
}
#portlet_for_two_wrap #add_portlet_for_two .portlet_inner {
  text-align: left !important;
}
#portlet_for_two_wrap #portlets_for_two {
  margin-left: -35px;
}
#portlet_for_two_wrap #portlets_for_two .portlet {
  float: left;
  box-sizing: border-box;
  width: 33.33%;
  padding: 0 0 35px 35px;
  position: relative;
  text-align: center;
}
#portlet_for_two_wrap #portlets_for_two .portlet .portlet_text_wrap h3, #portlet_for_two_wrap #portlets_for_two .portlet .portlet_text_wrap h3 a {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 15px;
  color: #d40037;
}
#portlet_for_two_wrap #portlets_for_two .portlet .portlet_text_wrap .portlet_content_description {
  color: #000;
  font-weight: 500;
}
#portlet_for_two_wrap #portlets_for_two .portlet .portlet_text_wrap .portlet_content_link {
  margin-top: 20px;
}
#portlet_for_two_wrap #portlets_for_two .portlet .resource_container {
  width: 100%;
}
#portlet_for_two_wrap #portlets_for_two .portlet .resource_container img {
  width: 100%;
  height: auto;
}

#portlets_for_one .portlet_inner {
  background: #a5a5a5;
}
#portlets_for_one .iframe_wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
#portlets_for_one .iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#portlets_for_one h3 {
  display: none;
}
#portlets_for_one .portlet-content {
  color: #fff;
  max-width: 1340px;
  box-sizing: border-box;
  margin: 0 auto;
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
}
#portlets_for_one .portlet-content .portlet_content_link {
  font-family: "europa", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  border: none;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 8px 30px 7px 15px;
  color: #d40037;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #d40037;
  position: relative;
  font-size: 18px;
  padding-top: 16px;
  padding-bottom: 17px;
  margin-top: 40px;
}
#portlets_for_one .portlet-content .portlet_content_link:before {
  content: "\f054";
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 50%;
  left: auto;
  display: block;
  color: #d40037;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 12px;
}
@media screen and (max-width: 600px) {
  #portlets_for_one .portlet-content .portlet_content_link {
    font-size: 15px;
    line-height: 24px;
  }
}
#portlets_for_one .portlet-content .portlet_content_link:hover {
  background: #ececec;
}
#portlets_for_one .portlet-content .portlet_content_description {
  padding: 80px 20px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
#portlets_for_one p {
  margin-bottom: 0;
}
#portlets_for_one .pictures .picture {
  width: 100%;
  float: none;
}
#portlets_for_one .pictures .picture img {
  width: 100%;
  height: auto;
}

#portlets_news .portlet {
  background: #fff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
#portlets_news .portlet:nth-child(2n) {
  background: #F7F7F7;
  box-shadow: none;
  z-index: 0;
}
#portlets_news .portlet .portlet_inner {
  max-width: 1180px;
  padding: 50px 20px 60px;
  box-sizing: border-box;
  margin: 0 auto;
}
#portlets_news .portlet .portlet_inner h3 {
  font-family: "europa", Arial, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 50px;
  color: #000;
  margin: 0 0 22px 0;
}
#portlets_news .portlet .portlet_inner h3 a {
  font-family: "europa", Arial, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 50px;
  color: #000;
}
#portlets_news .portlet .portlet_inner .portlet_content_link {
  margin-top: 10px;
}
#portlets_news .portlet_listing .portlet_inner .portlet-entry-content {
  display: none;
}
#portlets_news .portlet_listing .portlet_inner h2, #portlets_news .portlet_listing .portlet_inner h2 a {
  font-size: 18px !important;
  line-height: 26px;
  margin-bottom: 10px;
  letter-spacing: 0;
  font-weight: 400;
  overflow: hidden;
}
#portlets_news .portlet_listing .portlet_inner .portlet-entry-date {
  color: #333;
  width: 160px;
  float: left;
}
#portlets_news .portlet_listing .portlet_inner .portlet_listing_show_all {
  margin-top: 14px;
}

/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2005-2014 indual GmbH (www.indual.ch)
-------------------------------------------------------------------------------- */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
/* @group listing */
#mixItUp .module-listing .listing_entry {
  margin-top: 30px;
  padding: 25px 30px;
  background: #ededed;
  border-radius: 4px;
}
#mixItUp .module-listing .listing_entry:first-child {
  margin-top: 0;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline {
  position: relative;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing-title {
  font-family: "europa", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #000;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing-title a {
  text-decoration: none;
  color: #000;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing-date {
  font-size: 16px;
  margin-bottom: 6px;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing-date + .listing-title {
  margin-top: 0;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing-content-text {
  text-align: left;
  margin-top: 6px;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing-content-text p:last-child {
  margin-bottom: 0;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing-more-button {
  margin-top: 14px;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .resource_container {
  margin: 8px 30px 0 0;
  width: 33.33%;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .resource_container .picture {
  display: none;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .resource_container .picture:hover .resource_background:before, #mixItUp .module-listing .listing_entry .listing-entry-inline .resource_container .picture:hover .resource_background:after {
  opacity: 1;
  visibility: visible;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .resource_container .picture:first-child {
  display: block;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .resource_container .picture img {
  width: 100%;
  height: auto;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing_entry_text {
  overflow: hidden;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing_actions {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
  padding: 8px 10px 7px 14px;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing_actions i {
  color: #E51937;
}
#mixItUp .module-listing .listing_entry .listing-entry-inline .listing_actions i:hover {
  color: #d40037;
}
#mixItUp .module-listing .listing_entry:nth-child(2n+1) .listing-entry-inline .resource_container {
  float: right;
  margin: 8px 0 0 30px;
}
#mixItUp .module-listing .pagination {
  clear: both;
  margin-top: 30px;
  font-weight: 400;
}
#mixItUp .module-listing .pagination .pagination_inner {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  justify-content: space-between;
}
#mixItUp .module-listing .pagination .pagination_inner > .cf {
  display: none;
}
#mixItUp .module-listing .pagination .pagination-numbers {
  line-height: 39px;
  font-size: 18px;
}
#mixItUp .module-listing .pagination .pagination-numbers a {
  text-decoration: none;
  color: #7F7F7F;
  padding: 0 15px 0 0;
  font-weight: 600;
}
#mixItUp .module-listing .pagination .pagination-numbers a:hover {
  color: #E51937;
}
#mixItUp .module-listing .pagination .pagination-numbers a.current {
  color: #E51937;
  font-weight: 900;
}
#mixItUp .module-listing .pagination .pagination-links {
  margin-right: 0;
}
#mixItUp .module-listing .pagination .pagination-links a {
  margin-left: 10px;
}
#mixItUp .module-listing .pagination .pagination-links a.inactive {
  display: none;
}

.listing_detail_site .listing_entry_backlink {
  position: relative;
  z-index: 1;
}
.listing_detail_site .bx-slider-wrap {
  display: none;
}

/* @group overview */
#mod_overview {
  margin-left: -15px;
  margin-right: -15px;
}
#mod_overview .overview_item_wrap {
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  float: left;
  box-sizing: border-box;
  width: 33.33%;
  padding: 0 0 15px 15px;
  padding-top: 15px;
  padding-right: 15px;
  position: relative;
}
#mod_overview .overview_item_wrap:nth-child(3n+1) {
  clear: both;
}
#mod_overview .overview_item_wrap .overview_item {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#mod_overview .overview_item_wrap .overview_item .content {
  padding: 20px 30px;
  background: #fff;
}
#mod_overview .overview_item_wrap .overview_item h2 {
  clear: both;
  font-family: "europa", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 1px;
  text-align: left;
  color: #000;
  vertical-align: middle;
}
#mod_overview .overview_item_wrap .overview_item h2 a {
  text-decoration: none;
  color: #000;
}
#mod_overview .overview_item_wrap .overview_item h2 a:hover {
  color: #E51937;
}
#mod_overview .overview_item_wrap .overview_item .resource_container .picture {
  width: 100%;
}
#mod_overview .overview_item_wrap .overview_item .resource_container .picture img {
  width: 100%;
  height: auto;
}

/* @end */
/* @group google maps */
#google_map {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
#google_map .gmap-map {
  overflow: hidden;
}
#google_map div.infowindow h2 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 0 0;
  line-height: 28px;
}
#google_map div.infowindow p {
  margin-bottom: 0;
  font-family: "europa", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
}

/* @end */
/* @group mailform/login-form */
#module_mailform {
  margin-top: 0;
}
#module_mailform .heading2_field {
  width: 100%;
  margin-bottom: 16px;
}
#module_mailform .mailform_right_fields {
  float: right;
  padding-left: 20px;
  box-sizing: border-box;
  width: 50%;
}
#module_mailform .mailform_right_fields .mailform_element {
  width: 100%;
  padding-right: 0;
}
#module_mailform:has(.mailform_right_fields) .mailform_element {
  clear: none;
}
#module_mailform:has(.mailform_right_fields) #mailform_submit_button {
  max-width: 100%;
}
#module_mailform .mailform_element {
  width: 50%;
  padding-right: 20px;
  box-sizing: border-box;
  text-align: left;
  clear: both;
}
#module_mailform .mailform_element label {
  float: left;
  width: 35%;
  padding-top: 6px;
  padding-right: 10px;
  box-sizing: border-box;
}
#module_mailform .mailform_element label .required {
  color: #E51937 !important;
}
#module_mailform .mailform_element textarea,
#module_mailform .mailform_element input {
  width: 65%;
  background-color: #fff;
  border: 1px solid #7F7F7F;
  font: 400 17px/27px "europa", Arial, sans-serif;
  padding: 4px 10px 6px;
  outline: none;
  box-sizing: border-box;
  color: #4C4C4C;
  border-radius: 5px;
}
#module_mailform .mailform_element textarea:hover, #module_mailform .mailform_element textarea:focus,
#module_mailform .mailform_element input:hover,
#module_mailform .mailform_element input:focus {
  border-color: #d40037;
}
#module_mailform .mailform_element textarea {
  height: 150px;
}
#module_mailform .mailform_element p {
  margin: 0 0 13px 0;
}
#module_mailform .mailform_element.mailform_error label {
  color: #E51937;
}
#module_mailform .mailform_element.mailform_error input,
#module_mailform .mailform_element.mailform_error textarea {
  border: 1px solid #E51937;
}
#module_mailform .mailform_element.checkbox_field {
  margin-bottom: 20px;
}
#module_mailform .mailform_element.checkbox_field p {
  margin-left: 35%;
}
#module_mailform .mailform_element.checkbox_field input {
  display: none;
}
#module_mailform .mailform_element.checkbox_field input:checked + label:before {
  content: "\f14a";
  color: #d40037;
  font-weight: 900;
}
#module_mailform .mailform_element.checkbox_field label {
  width: auto;
  padding-left: 30px;
  position: relative;
  padding-top: 0;
  float: none;
}
#module_mailform .mailform_element.checkbox_field label:before {
  content: "\f0c8";
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  color: #7F7F7F;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
}
#module_mailform #mailform_submit_button {
  text-align: left;
  max-width: 50%;
  padding-right: 15px;
  box-sizing: border-box;
}
#module_mailform #mailform_submit_button label {
  float: left;
  width: 35%;
}
#module_mailform #mailform_submit_button input {
  padding-right: 15px;
}

.logged_in #module_mailform .mailform_element {
  width: 65%;
}
.logged_in #module_mailform .mailform_element textarea,
.logged_in #module_mailform .mailform_element input,
.logged_in #module_mailform .mailform_element span.select2-container {
  width: 50% !important;
}

.login_form {
  text-align: left;
}
.login_form label {
  float: left;
  width: 160px;
  padding-top: 6px;
}
.login_form label .required {
  color: #d40037 !important;
}
.login_form input {
  width: 350px;
  background-color: #fff;
  border: 1px solid #7F7F7F;
  font: 400 17px/27px "europa", Arial, sans-serif;
  padding: 5px 10px 5px;
  outline: none;
  box-sizing: border-box;
  color: #4C4C4C;
  border-radius: 5px;
}
.login_form input:hover, .login_form input:focus {
  border-color: #E51937;
}
.login_form input.button {
  width: auto;
}
.login_form p {
  margin: 0 0 13px 0;
}

/* --- select2 --- */
#module_mailform span.select2-container {
  width: 65% !important;
}

span.select2-container {
  max-width: 100% !important;
  box-sizing: border-box;
}
span.select2-container .select2-selection--single {
  border: 1px solid #7F7F7F;
  border-radius: 0 !important;
  background: #fff;
  border-radius: 5px !important;
  height: auto;
}
span.select2-container .select2-selection--single:hover {
  border-color: #E51937;
}
span.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
}
span.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 5px 10px 6px;
  font: 400 17px/27px "europa", Arial, sans-serif;
  color: #4C4C4C;
}
span.select2-container.select2-container--open .select2-selection--single {
  border: 1px solid #E51937;
  border-bottom: 1px solid transparent;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
span.select2-container .select2-dropdown {
  border: 1px solid #E51937;
  margin-top: -1px;
  border-top: none;
  background: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
}
span.select2-container .select2-dropdown .select2-results__option {
  padding: 5px 10px 6px;
}
span.select2-container .select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background: #E51937;
  color: #fff;
}
span.select2-container .select2-dropdown .select2-results__option[aria-selected=true] {
  background: #F7F7F7;
  color: #4C4C4C;
}

/* @end */
/* @group know-ledge db */
#knowledge_db_entries form {
  display: inline-block;
}
#knowledge_db_entries .knowledge_db_filter {
  background: none;
  margin: 0;
  padding: 0;
  float: left;
  margin-right: 20px;
}
#knowledge_db_entries .knowledge_db_filter .sort_selection {
  display: none;
}
#knowledge_db_entries .knowledge_db_filter input.button {
  padding: 8px 40px;
  display: block;
}
#knowledge_db_entries .knowledge_db_filter .text_filter {
  float: left;
  margin-right: 20px;
}
#knowledge_db_entries .knowledge_db_filter .text_filter input {
  border: 2px solid #d4d4d4;
  font: 400 17px/27px "europa", Arial, sans-serif;
  padding: 7px 10px 6px;
  border-radius: 5px;
  margin-top: -1px;
  width: 300px;
}
#knowledge_db_entries .knowledge_db_filter .text_filter + input + .cf {
  clear: none;
}
#knowledge_db_entries .knowledge_db_filter .filter_reset {
  margin-left: 18px;
}
#knowledge_db_entries .num_of_entries {
  display: none;
}
#knowledge_db_entries .knowledge_db_entries {
  margin-top: 40px;
  clear: both;
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry {
  background: #ededed;
  margin: 0 0 20px 0;
  padding: 20px 30px;
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry .options {
  z-index: 100;
  margin: 9px 43px 0 0;
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry .knowledge_db_text h2 {
  margin-bottom: 0;
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry .knowledge_db_text h2 a {
  color: #000;
  text-decoration: none;
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry .knowledge_db_text a.knowledge_db_detail_link {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry .knowledge_db_text a.knowledge_db_detail_link span {
  font-size: 0;
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry .knowledge_db_text a.knowledge_db_detail_link span:before {
  content: "";
  position: absolute;
  width: 1px;
  height: auto;
  top: 10px;
  left: 0;
  display: block;
  background: #E51937;
  bottom: 10px;
  right: 30px;
  left: auto;
  display: none;
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry .knowledge_db_text a.knowledge_db_detail_link span:after {
  content: "\f105";
  font-size: 35px;
  line-height: 35px;
  position: absolute;
  top: 50%;
  left: 100%;
  display: block;
  color: #d40037;
  font-family: "Font Awesome 6 Pro";
  left: auto;
  line-height: 35px;
  margin-top: -17px;
  font-weight: 300;
  right: 10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry .knowledge_db_text .knowledge_db_date_created,
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry .knowledge_db_text .knowledge_db_content {
  display: none;
  margin-top: 10px;
  padding-right: 20px;
}
#knowledge_db_entries .knowledge_db_entries .knowledge_db_entry.visible_detail .knowledge_db_text a.knowledge_db_detail_link span:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* @end */
/* @group tags */
.content .tags {
  list-style-type: none;
  overflow: auto;
  clear: both;
  margin: -18px 0 62px 0;
  text-align: center;
}
.content .tags li {
  display: inline-block;
  list-style: none;
}
.content .tags li:before {
  display: none;
}
.content .tags li button {
  cursor: pointer;
  border: 2px solid #7F7F7F;
  border-radius: 3px;
  margin: 8px 15px;
  padding: 1px 20px 1px 40px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-family: "europa", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 29px;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
}
.content .tags li button:before {
  left: 15px;
  top: 2px;
  position: absolute;
}
.content .tags li.active button, .content .tags li:hover button {
  border: 2px solid #E51937;
  color: #E51937;
}

.tags_cloud > span.active {
  color: #E51937 !important;
}

/* @end */
.mod_quickline .quickline_page_content {
  max-width: 1370px;
  padding: 80px 20px 70px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2005-2014 indual GmbH (www.indual.ch)
-------------------------------------------------------------------------------- */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
/* @group basic */
@media print {
  @page {
    margin: 1.5cm 0.8cm 1.5cm 1.5cm;
  }
  body,
.page {
    height: auto;
    background: #fff;
  }
  body {
    font-family: "europa", Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
    color: #000 !important;
    background: #FFF;
  }
  div#siteframe {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: #fff;
  }
  #mixItUp .module-listing .pagination .pagination-links a,
#only_one_big_portlet,
#popups,
#mixItUp .module-listing .pagination .pagination-numbers,
.breadcrumb,
#footer_navigation,
#portlets_news .portlet_listing_show_all,
#portlets_for_one,
#portlet_for_two_wrap,
#portlet_navigation_wrap-sticky-wrapper,
#metanavigation,
.content .tags,
#header-sticky-wrapper,
#portlets_listing a.portlet_listing_show_all,
#portlets_listing a.portlet-entry-link,
#listing .pagination .pagination-links a,
a.listing-more-button,
.content_button a,
.login_form input.button,
#mailform_submit_button input,
.portlets input.button,
a.add_portlet_link,
.listing_entry_backlink a,
#content p.content_button a,
.content_left a.button,
.no_system_page a.button,
a.button,
header,
#slider,
.portlets .portlet .portlet_inner .portlet-content a.portlet_content_link,
.content_left,
#mailform_submit_button,
.listing_entry_backlink a,
.mailform-submit,
.login_form .button,
.content_button,
.listing-more-button,
.bx-controls-direction,
.documents,
.header .partner,
div#navigation,
.imprint,
#footer {
    display: none !important;
  }
  #logo_print {
    display: block;
  }
  .content {
    background: #fff;
  }
  .content .content_inner {
    max-width: 100%;
    width: 100%;
    text-align: left !important;
    padding: 20px 0 0 0;
  }
  /* --- content --- */
  .breadcrumb + h1 {
    margin-top: 0;
  }
  h1 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
    text-align: left;
    color: #000;
    margin-bottom: 7px;
    font-weight: 600;
  }
  div.introduction {
    font-size: 14px !important;
    line-height: 16px !important;
    text-align: left;
    color: #000;
    margin-bottom: 5px;
  }
  #mixItUp .module-listing .listing_entry .listing-entry-inline .listing-title,
#portlets_news .portlet .portlet_inner h3,
#portlets_news .portlet .portlet_inner h3 a,
h2, h2 a {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 6px 0;
    text-align: left;
    color: #000;
  }
  p + h2 {
    margin-top: 18px;
  }
  h1 + div.introduction {
    margin-top: 0px;
    margin-bottom: 15px;
  }
  h3, h3 a {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 4px 0;
    color: #000;
  }
  p + h3 {
    margin-top: 15px;
  }
  h6, h6 a,
h4, h4 a,
h5, h5 a {
    font-size: 14px;
    line-height: 21px;
    color: #000;
  }
  p {
    margin: 0 0 15px;
    text-align: left !important;
  }
  a {
    color: #000 !important;
  }
  .table_wrap_container {
    margin: 10px 0 20px 0;
  }
  .content ul li {
    padding: 0 0 0 11px;
  }
  .content ol {
    justify-content: inherit;
  }
  .gallery {
    margin-top: 20px;
  }
  .footer_print {
    display: block;
    font-size: 12px;
    line-height: 18px;
  }
  /* @end */
  /* @group modules */
  #portlets_news .portlet {
    box-shadow: none;
    background: #fff !important;
  }
  #portlets_news .portlet .portlet_inner {
    max-width: 100%;
    padding: 10px 0 0 0;
  }
  #portlets_news .portlet_listing .portlet_inner h2,
#portlets_news .portlet_listing .portlet_inner h2 a {
    font-size: 15px !important;
    line-height: 23px !important;
  }
  #google_map {
    max-width: 100%;
    margin: 10px 0 10px 0;
  }
  #google_map .gmap-map {
    height: 300px !important;
  }
  #module_mailform {
    margin-top: 30px;
  }
  #module_mailform .mailform_element span.select2-container,
#module_mailform .mailform_element textarea,
#module_mailform .mailform_element input {
    width: 220px !important;
    min-width: 220px !important;
  }
  #module_mailform .mailform_element label {
    width: 120px;
  }
  #mailform_elements {
    padding: 0 0 20px;
  }
  .mailform_element textarea {
    height: 150px;
  }
  #mixItUp .module-listing .listing_entry {
    padding: 0;
    box-shadow: none;
  }
  #mixItUp .module-listing .listing_entry .listing-entry-inline .listing-date {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 14px;
  }
  .css_team #mixItUp .module-listing .listing_entry {
    padding: 15px;
  }
  .css_team #mixItUp .module-listing .listing_entry .listing-entry-inline {
    box-shadow: none;
  }
  .css_team #mixItUp .module-listing .listing_entry .listing_entry_text {
    padding: 10px 0;
    min-height: auto !important;
  }
  #mod_overview .overview_item_wrap .overview_item {
    box-shadow: none;
  }
  #mod_overview .overview_item_wrap .overview_item .content {
    padding: 10px 0;
  }
  /* @end */
  /* @group resources */
  .pictures.gallery {
    padding: 0;
  }
  /* @end */
}
/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2005-2014 indual GmbH (www.indual.ch)
-------------------------------------------------------------------------------- */
/* @group design colors */
/* @end */
/* @group font family */
/* @end */
/* @group mixins */
/* @end */
/* @group differen */
/* @end */
@media screen and (min-width: 650px) {
  #portlet_navigation_wrap-sticky-wrapper.is-sticky #portlet_navigation_wrap #portlets_navigation .portlet {
    padding: 24px 20px 10px;
  }
  #portlet_navigation_wrap-sticky-wrapper.is-sticky #portlet_navigation_wrap #portlets_navigation .portlet.title h3 {
    font-size: 0;
    line-height: 0;
  }
  #portlet_navigation_wrap-sticky-wrapper.is-sticky #portlet_navigation_wrap #portlets_navigation .portlet h3, #portlet_navigation_wrap-sticky-wrapper.is-sticky #portlet_navigation_wrap #portlets_navigation .portlet h3 a {
    font-size: 21px;
    line-height: 20px;
  }
  #portlet_navigation_wrap-sticky-wrapper.is-sticky #portlet_navigation_wrap #portlets_navigation .portlet .resource_container {
    margin-bottom: -5px;
  }
  #portlet_navigation_wrap-sticky-wrapper.is-sticky #portlet_navigation_wrap #portlets_navigation .portlet .resource_container .picture {
    width: 24px;
  }
  #portlet_navigation_wrap-sticky-wrapper.is-sticky #portlet_navigation_wrap #portlets_navigation .portlet .resource_container .picture img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1650px) {
  #nav-327 ul.level1 li {
    position: relative;
    left: -125px;
  }
}
@media screen and (max-width: 1600px) {
  #slider .slide_text_container {
    padding: 40px 100px 40px 100px;
  }
}
@media screen and (max-width: 1450px) {
  #slider .slide_text_container {
    padding: 20px 50px 20px 50px;
  }
}
@media screen and (max-width: 1400px) {
  #only_one_big_portlet .portlet video {
    height: 26.2vw !important;
  }
}
@media screen and (max-width: 1350px) {
  div#navigation ul li.level0 > a {
    font-size: 17px;
  }
  div#navigation > ul > li#nav-381 a {
    font-size: 15px;
    padding: 4px 10px;
    position: relative;
    top: -3px;
  }
}
@media screen and (max-width: 1300px) {
  #slider .slide_text_container {
    padding: 20px 20px 20px 20px;
  }
  #slider .slide_text_container .slide_text .content_button {
    margin-top: 30px;
  }
  #slider .bx-controls .bx-controls-direction a {
    display: none;
  }
  #slider .badge {
    font-size: 17px;
    line-height: 27px;
    bottom: 30px;
    right: 30px;
    max-width: 230px;
  }
  #slider .badge.font_big {
    font-size: 21px;
    line-height: 31px;
  }
  #slider .badge.font_bigger {
    font-size: 25px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1250px) {
  div#navigation ul li.level0 > a {
    font-size: 16px;
  }
  div#navigation > ul > li {
    margin-right: 15px;
  }
  div#navigation > ul > li#nav-328,
div#navigation > ul > li#nav-327 {
    margin-right: 5px;
  }
  div#navigation ul li ul.level1 > li {
    margin: 0 15px;
  }
  div#navigation ul li ul.level1 > li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  #slider .slide_text_container h2 {
    font-size: 32px;
    line-height: 36px;
  }
  #slider .slide_text_container .slide_text {
    font-size: 17px;
    line-height: 27px;
  }
  #slider .slide_text_container .slide_text p + .content_button {
    margin-top: 15px;
  }
  #slider .slide_text_container .slide_text .content_button {
    margin-top: 25px;
  }
  #slider .slide_text_container .slide_text .content_button a {
    padding: 14px 20px 15px;
    border-radius: 40px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlets_inner_wrap {
    margin-left: -20px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet {
    padding-left: 20px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet .portlet_inner {
    padding: 30px 20px 70px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet .portlet_inner .portlet_content_link {
    bottom: 25px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet.title h3 {
    font-size: 40px;
    line-height: 50px;
  }
  #only_one_big_portlet .portlets_inner_wrap {
    margin-left: -20px;
  }
  #only_one_big_portlet .portlets_inner_wrap .portlet {
    padding: 0 0 20px 20px;
  }
}
@media screen and (max-width: 1180px) {
  #popups .popups_inner {
    width: auto;
    left: 20px;
    right: 20px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  #google_map #module_map {
    height: 400px !important;
  }
}
@media screen and (max-width: 1150px) {
  header .header_inner #logo {
    margin-right: 10px;
  }
  header .header_inner #logo a:first-child {
    margin-right: 12px;
  }
  header .header_inner #search_button {
    margin-left: -5px;
  }
  div#navigation ul li ul.level1 > li {
    margin: 0 15px;
  }
}
@media screen and (max-width: 1100px) {
  #portlets_metanavigation .portlet {
    width: 50%;
  }
  #portlets_metanavigation .portlet:nth-child(3) {
    clear: both;
  }
  .responsive_navigation_toggle {
    display: block;
  }
  #metanavigation,
#navigation {
    display: none;
  }
  #header-sticky-wrapper:not(.is-sticky) {
    height: 60px !important;
  }
  .is-sticky header .header_inner,
header .header_inner {
    padding: 13px 20px 9px;
  }
  .is-sticky header .header_inner #search_button,
header .header_inner #search_button {
    font-size: 26px;
    margin-top: 3px;
  }
  header .header_inner #logo a:first-child:after {
    top: 64%;
  }
  #rwdnav {
    display: block;
    position: fixed;
    top: -1500px;
    -webkit-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
    -moz-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
    -o-transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
    transition: all 0.5s cubic-bezier(0.5, 1, 0.5, 1);
    width: 100%;
    z-index: 10;
    height: calc(100% - 60px);
    overflow: scroll;
  }
  .navi_open #rwdnav {
    top: 60px;
  }
  #search {
    box-shadow: none;
  }
  #search .search_inner .portlet-content #portlet-search-input {
    width: calc(100% - 150px);
  }
  #search .search_inner .portlet-content #portlet-search-button {
    width: 130px;
  }
  #search.visible {
    top: 60px;
  }
}
@media screen and (max-width: 990px) {
  #slider {
    /*.slide>span:only-child, 
    .slide>a:only-child {
    	padding-bottom: 53%;
    }*/
  }
  #slider #bx-slider-wrap .video_slide .video_in_slider {
    width: 100% !important;
    max-width: 100%;
  }
  #slider .slide > span,
#slider .slide > a {
    width: 100%;
    max-width: 100%;
  }
  #slider .slide.picture_fullscreen > a:only-child {
    padding-bottom: 0;
  }
  #slider .badge {
    right: 10vw;
    bottom: auto;
    top: 51vw;
    -webkit-transform: rotate(10deg) translateY(-100%);
    -moz-transform: rotate(10deg) translateY(-100%);
    -o-transform: rotate(10deg) translateY(-100%);
    transform: rotate(10deg) translateY(-100%);
  }
  #slider .slide.picture_fullscreen .badge {
    right: 8vw;
    top: 27vw;
  }
  #slider .slide_text_container {
    width: 100%;
    position: relative;
    top: auto;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    clear: both;
  }
  #slider .bx-controls .bx-pager a {
    width: 70px;
    margin: 0 6px;
  }
  #slider .bx-controls .bx-controls-direction a {
    display: none;
  }
  #portlet_navigation_wrap {
    padding: 30px 0 40px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 20px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet:first-child, #portlet_navigation_wrap #portlets_navigation .portlet:nth-child(2), #portlet_navigation_wrap #portlets_navigation .portlet:nth-child(3) {
    margin-top: 0;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet.title h3 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 15px;
  }
  #portlets_for_one .portlet-content .portlet_content_description {
    padding: 40px 20px 40px;
    font-size: 22px;
    line-height: 35px;
  }
  #only_one_big_portlet {
    margin-top: 40px;
  }
  #footer_navigation .footer_inner_navigation {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  #footer_navigation .footer_inner_navigation .navigation > li > a {
    font-size: 18px;
    line-height: 28px;
  }
  #footer_navigation .footer_inner_navigation .navigation > li > a {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  #footer_navigation .footer_inner_navigation .navigation > li > a > span {
    position: relative;
  }
  #footer_navigation .footer_inner_navigation .navigation > li > a > span:before {
    content: "\f078";
    font-size: 15px;
    line-height: 15px;
    position: absolute;
    top: 3px;
    left: auto;
    display: block;
    color: #fff;
    font-family: "Font Awesome 6 Pro";
    right: -22px;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
    -moz-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
    -o-transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.5, 1, 0.5, 1);
  }
  #footer_navigation .footer_inner_navigation .navigation li {
    width: calc(100% + 20px);
    padding-bottom: 0;
    position: relative;
    border-bottom: 1px solid rgba(127, 127, 127, 0.3);
    text-align: center;
    padding-left: 0;
  }
  #footer_navigation .footer_inner_navigation .navigation li.visible_detail > a > span:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  #footer_navigation .footer_inner_navigation .navigation li a {
    font-weight: 500;
  }
  #footer_navigation .footer_inner_navigation .navigation li.no_dropdown > a > span:before {
    display: none !important;
  }
  #footer_navigation .footer_inner_navigation .navigation li a:hover {
    text-decoration: none !important;
  }
  #footer_navigation .footer_inner_navigation .navigation li ul.level1 {
    display: none;
    margin-bottom: 14px;
    background: #333333;
    margin-left: -20px;
    margin-bottom: 0;
  }
  #footer_navigation .footer_inner_navigation .navigation li ul.level1 li {
    padding-bottom: 12px;
    padding-top: 12px;
    border-bottom-color: #2b2b2b;
  }
  #footer_navigation .footer_inner_navigation .navigation li ul.level1 li:last-child {
    border-bottom: none;
  }
  #portlets_news .portlet .portlet_inner h3,
#portlet_for_two_wrap #portlets_for_two .portlet .portlet_text_wrap h3 {
    font-size: 22px;
    line-height: 30px;
  }
  #portlets_news .portlet .portlet_inner h3 a,
#portlet_for_two_wrap #portlets_for_two .portlet .portlet_text_wrap h3 a {
    font-size: 22px;
    line-height: 30px;
  }
  #portlet_for_two_wrap #portlets_for_two {
    margin-left: -25px;
  }
  #portlet_for_two_wrap #portlets_for_two .portlet {
    padding: 0 0 25px 25px;
  }
  h1 {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 18px;
  }
  .breadcrumb + h1 {
    margin-top: 20px;
  }
  .content .content_inner {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  #footer .footer_inner {
    padding: 20px 20px;
    text-align: center;
  }
  #footer .footer_inner .social {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }
  #footer .footer_inner .social a {
    margin: 0 15px;
  }
  #footer .footer_inner ul {
    display: inline-block;
  }
  #footer .footer_inner ul li {
    float: none;
    display: inline-block;
    margin: 0 10px;
  }
}
@media screen and (max-width: 850px) {
  .portlets_message .portlet {
    padding: 30px;
  }
  .portlets_message .portlet .portlet_inner {
    padding: 20px;
  }
  .portlets_message .portlet .portlet_inner h3,
.portlets_message .portlet .portlet_inner h3 a {
    font-size: 19px;
  }
  #metanavigation li a {
    padding: 11px 16px !important;
  }
  #metanavigation li a span {
    line-height: 0;
    font-size: 0;
  }
  #metanavigation li a span:before {
    content: "\f015";
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    top: 13px;
    left: auto;
    display: block;
    color: #7F7F7F;
    font-family: "Font Awesome 6 Pro";
    position: relative;
  }
  #metanavigation li:hover a span:before, #metanavigation li.current a span:before {
    color: #fff;
  }
  #metanavigation li.sort-2 a span:before {
    content: "\f0b1";
  }
  #metanavigation li.sort-3 a span:before {
    content: "\f007";
  }
  #metanavigation #metanavigation_right a {
    padding: 11px 16px 11px 5px;
  }
  #metanavigation #metanavigation_right a span {
    line-height: 0;
    font-size: 0;
  }
  #metanavigation #metanavigation_right a span:before {
    content: "\f2ba";
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    top: 12px;
    left: auto;
    display: block;
    color: #7F7F7F;
    font-family: "Font Awesome 6 Pro";
    position: relative;
  }
  #metanavigation #metanavigation_right a.open-login span:before {
    content: "\f090";
  }
  #popups .popups_inner {
    top: 48px;
  }
}
@media screen and (max-width: 850px) and (max-height: 850px) {
  #popups.contact_is_open .popups_inner,
#popups.navi_is_open .popups_inner {
    bottom: 20px;
  }
}
@media screen and (max-width: 850px) {
  #popups.navi_is_open .popups_inner {
    top: 141px;
  }
  #popups.navi_is_open .popups_inner.header_is_sticky {
    top: 47px !important;
  }
}
@media screen and (max-width: 850px) {
  div#navigation {
    margin-top: -20px;
  }
  div#navigation > ul > li#nav-208,
div#navigation > ul > li#nav-34 {
    width: 100%;
    padding: 20px 0 0 0;
    border: none;
  }
  div#navigation > ul > li#nav-208 #navigation_left_elements,
div#navigation > ul > li#nav-34 #navigation_left_elements {
    float: none;
    width: 100%;
  }
  div#navigation > ul > li#nav-209 {
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 850px) {
  #portlets_metanavigation_login .portlet {
    width: 100%;
    padding-top: 20px;
  }
  #portlets_metanavigation_login .portlet:first-child {
    padding-top: 0;
  }
}
@media screen and (max-width: 850px) {
  #mod_overview .overview_item_wrap {
    width: 50%;
  }
  #mod_overview .overview_item_wrap:nth-child(3n+1) {
    clear: none;
  }
  #mod_overview .overview_item_wrap:nth-child(2n+1) {
    clear: both;
  }
  #mod_overview .overview_item_wrap .overview_item .content {
    padding: 13px 20px;
  }
}
@media screen and (max-width: 850px) {
  #mixItUp .module-listing .listing_entry {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 850px) {
  #knowledge_db_entries .knowledge_db_entries .knowledge_db_entry {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 850px) {
  #module_mailform .mailform_right_fields {
    width: 100%;
    padding-left: 0;
    float: left;
  }
  #module_mailform #mailform_submit_button,
#module_mailform .mailform_element {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 750px) {
  #portlet_for_two_wrap {
    margin: 20px auto 0;
  }
  #portlet_for_two_wrap #portlets_for_two .portlet {
    width: 100%;
    padding-bottom: 35px;
  }
  #portlet_for_two_wrap #portlets_for_two .portlet .portlet_text_wrap h3 {
    margin-bottom: 8px;
  }
  #portlet_for_two_wrap #portlets_for_two .portlet .portlet_text_wrap .portlet_content_link {
    margin-top: 0;
  }
  #only_one_big_portlet .portlet video {
    height: 48vw !important;
  }
  #portlets_news .portlet .portlet_inner {
    padding: 18px 20px 20px;
  }
  #portlets_news .portlet_listing .portlet_inner h2, #portlets_news .portlet_listing .portlet_inner h2 a {
    overflow: visible;
    width: 100%;
    clear: both;
  }
  .gallery .picture {
    width: 50%;
  }
  #footer_navigation .footer_inner_navigation {
    padding: 15px 20px;
  }
  #only_one_big_portlet {
    margin-top: 30px;
  }
  #only_one_big_portlet .portlets_inner_wrap .portlet {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 650px) {
  #slider .bx-controls .bx-pager a {
    width: 30px;
    margin: 0 5px;
  }
  #slider .slide.picture_fullscreen.has_badge {
    padding: 0 0 16vw 0;
  }
  #slider .slide.picture_fullscreen .badge {
    top: 45vw;
    right: 8vw;
  }
  #slider .badge {
    top: 54vw;
    right: 13vw;
    font-size: 15px;
    line-height: 22px;
  }
  #slider .badge.font_big {
    font-size: 18px;
    line-height: 25px;
  }
  #slider .badge.font_bigger {
    font-size: 22px;
    line-height: 30px;
  }
  div#navigation > ul > li#nav-209 ul.level1 li {
    float: none;
    padding-bottom: 6px;
    padding-right: 0;
  }
  #portlet_navigation_wrap-sticky-wrapper {
    height: auto !important;
  }
  #portlet_navigation_wrap {
    position: static !important;
    top: auto !important;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet {
    width: 50%;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet:before {
    display: none;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet.portlet_index_6 {
    width: 100%;
  }
  .portlet_navigation_visible #portlet_navigation_wrap .portlets_navigation_responsive {
    display: none;
  }
  .portlet_navigation_visible #portlet_navigation_wrap #portlets_navigation > .portlet {
    padding: 10px;
  }
  .portlet_navigation_visible #portlet_navigation_wrap #portlets_navigation > .portlet:nth-child(2) {
    width: 100%;
  }
  .portlet_navigation_visible #portlet_navigation_wrap #portlets_navigation > .portlet.title h3 {
    font-size: 21px;
    line-height: 28px;
  }
  .portlet_navigation_visible #portlet_navigation_wrap #portlets_navigation .portlet_index_6 {
    width: 50%;
  }
  #google_map #module_map {
    height: 300px !important;
  }
}
@media screen and (max-width: 600px) {
  #footer .footer_inner ul li {
    margin: 0 8px;
  }
  #portlets_metanavigation .portlet {
    width: 100%;
  }
  #search .search_inner .portlet-content #portlet-search-input {
    width: 100%;
  }
  #search .search_inner .portlet-content #portlet-search-button {
    width: 100%;
    margin-left: 0;
    padding: 6px 20px;
    margin-top: 10px;
  }
  #module_mailform .mailform_element textarea,
#module_mailform .mailform_element input,
#module_mailform .mailform_element label {
    width: 100%;
  }
  #module_mailform .mailform_element span.select2-container {
    width: 100% !important;
  }
  #module_mailform #mailform_submit_button label {
    display: none;
  }
  #module_mailform .mailform_element.checkbox_field p {
    margin-left: 0;
  }
  #slider .slide_text_container h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #slider .slide_text_container .slide_text {
    font-size: 16px;
    line-height: 26px;
  }
  #slider .slide_text_container .slide_text p + .content_button {
    margin-top: 10px;
  }
  #slider .slide_text_container .slide_text .content_button {
    margin-top: 20px;
  }
  #slider .slide_text_container .slide_text .content_button a {
    padding-top: 10px;
    padding-bottom: 11px;
    border-radius: 40px;
  }
  body {
    font-size: 16px;
    line-height: 26px;
  }
  #portlet_navigation_wrap {
    padding: 20px 0 10px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet h3, #portlet_navigation_wrap #portlets_navigation .portlet h3 a {
    font-size: 19px;
    margin-bottom: 7px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet h3:before {
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet.title h3 {
    font-size: 26px;
    line-height: 32px;
  }
  #only_one_big_portlet .portlet .portlet_text_wrap {
    padding: 18px 20px 60px 20px;
  }
  #only_one_big_portlet .portlet .portlet_text_wrap h3, #only_one_big_portlet .portlet .portlet_text_wrap h3 a {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  #only_one_big_portlet .portlet .portlet_text_wrap .portlet_content_link {
    bottom: 20px;
    left: 20px;
  }
  #portlet_for_two_wrap #portlets_for_two .portlet .portlet_text_wrap h3 {
    font-size: 20px;
    line-height: 28px;
  }
  #portlets_for_one .portlet-content .portlet_content_description {
    padding: 30px 20px 30px;
    font-size: 20px;
    line-height: 32px;
  }
  #portlets_for_one .portlet-content .portlet_content_description .portlet_content_link {
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 11px;
  }
  .content .content_inner {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  #knowledge_db_entries form {
    width: 100%;
  }
  #knowledge_db_entries .knowledge_db_filter {
    width: 100%;
    margin-right: 0;
  }
  #knowledge_db_entries .knowledge_db_filter .text_filter {
    margin: 0 0 10px 0;
    width: 100%;
  }
  #knowledge_db_entries .knowledge_db_filter .text_filter input {
    width: 100%;
    box-sizing: border-box;
  }
  #knowledge_db_entries .knowledge_db_filter input.button {
    width: 100%;
  }
  h1 {
    font-size: 28px;
    line-height: 35px;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  #mixItUp .module-listing .listing_entry .listing-entry-inline .listing-title,
h2 {
    font-size: 22px;
    line-height: 31px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 550px) {
  #mod_overview .overview_item_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  #slider .slide.picture_fullscreen .badge {
    font-size: 13px;
    line-height: 20px;
  }
  #slider .slide.picture_fullscreen .badge a {
    padding-left: 12px;
    padding-right: 12px;
  }
  #slider .slide.picture_fullscreen .badge.font_big {
    font-size: 16px;
    line-height: 23px;
  }
  #slider .slide.picture_fullscreen .badge.font_bigger {
    font-size: 20px;
    line-height: 27px;
  }
  #knowledge_db_entries .knowledge_db_filter .text_filter {
    float: none;
  }
  #knowledge_db_entries .knowledge_db_filter .text_filter input {
    width: 100%;
    margin-bottom: 12px;
    box-sizing: border-box;
  }
  #popups.navi_is_open .popups_inner {
    top: 110px;
  }
}
@media screen and (max-width: 450px) {
  #portlet_navigation_wrap #portlets_navigation .portlet {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #portlet_navigation_wrap #portlets_navigation .portlet:nth-child(3) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 400px) {
  .gallery .picture {
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .responsive_navigation_toggle {
    margin-left: 8px;
  }
  header .header_inner #logo {
    margin-right: 0;
    width: 208px;
  }
  header .header_inner #logo a:first-child {
    width: 130px;
    margin-top: 2px;
  }
  header .header_inner #logo a:first-child:after {
    top: 59% !important;
  }
  header .header_inner #quickline {
    width: 60px;
  }
  .is-sticky header .header_inner,
header .header_inner {
    padding: 14px 20px 10px;
  }
}

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