/*
|--------------------------------------------------------------------------
| phpComasy - content management system
|--------------------------------------------------------------------------
|
| Copyright indual GmbH, Brig (https://www.indual.ch)
| phpComasy is released under his own licence: https://www.phpcomasy.com/licence/
|
 */
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
/*
|--------------------------------------------------------------------------
| 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;
  -o-border-image: initial !important;
     border-image: initial !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0px !important;
  display: block !important;
}

/* @end */
/* @group picture styles */
.resource_background {
  display: block;
  position: relative;
}

.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: linear-gradient(to bottom, #fff, #eee);
  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%;
  -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: linear-gradient(to bottom, #fff, #eee);
  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: linear-gradient(to bottom, #f0f0f0, #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;
  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-default:not(.tooltipster-management) .tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tooltipster-default:not(.tooltipster-management) .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;
  transition-property: opacity;
}

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

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

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

/* @end */
/*
|--------------------------------------------------------------------------
| phpComasy - content management system
|--------------------------------------------------------------------------
|
| Copyright indual GmbH, Brig (https://www.indual.ch)
| phpComasy is released under his own licence: http://www.phpcomasy.com/licence/
|
 */
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
@font-face {
  font-family: "Figtree";
  src: url("fonts/Figtree-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("fonts/Figtree-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
}
/**********************************************************************************
* phpComasy Web Content Management System                                         *
* http://www.phpcomasy.com                                                        *
*                                                                                 *
* Copyright (c) 2005 - 2012 indual GmbH (http://www.indual.ch)                    *
*                                                                                 *
* phpComasy is released under his own licence (http://www.phpcomasy.com/licence)  *
**********************************************************************************/
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
/* BASIC -------------------------------------------------------------------------------- */
/* Page Parts --------------------------------------------------------------------------- */
html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font: 15px/23px "Figtree", Arial, Helvetica, sans-serif;
  text-align: center;
  overflow-x: hidden;
  background: #efefef;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --management-highlight-color: #87ba33;
  --management-highlight-color-rgb: 135, 186, 51;
}
body.navi_open {
  overflow: hidden;
}

.page {
  margin-bottom: 0px;
  overflow: hidden;
  min-height: 100%;
  box-sizing: border-box;
}

#background_image_left,
#background_image_right {
  position: absolute;
}

#background_image_left {
  left: -460px;
  z-index: -1;
  margin-top: 80px;
}

#background_image_right img,
#background_image_left img {
  width: 440px;
}

#background_image_right {
  right: -460px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: -1;
}

#background_image_left img {
  width: 430px;
  margin-left: 166px;
  transform: rotate(-30deg);
}

#background_image_right img {
  width: 440px;
  margin-right: 186px;
  transform: rotate(38deg);
}

img#pic_2 {
  width: 480px;
}

img#pic_3 {
  width: 380px;
}

img#pic_4 {
  width: 420px;
  margin-right: 135px;
}

img#pic_5 {
  margin-right: 160px;
}

img#pic_6 {
  width: 330px;
  margin-right: 230px;
}

img#pic_9 {
  margin-left: 200px;
}

img#pic_10 {
  margin-left: 185px;
  width: 500px;
}

img#pic_12 {
  width: 460px;
  margin-left: 185px;
}

img#pic_15 {
  width: 480px;
  margin-left: 170px;
}

img#pic_16 {
  margin-left: 220px !important;
}

img#pic_17 {
  width: 750px;
  margin-left: 190px;
}

img#pic_18 {
  margin-left: 190px;
}

#header_slider .slide.picture_slide.picture_slide_portrait.active-slide img {
  height: 500px !important;
  width: auto !important;
  left: 50% !important;
  position: relative;
  transform: translateX(-50%);
}

.bx-wrapper .bx-viewport {
  max-height: 500px !important;
  overflow: hidden;
}

.mod_news_events div#header_slider,
.mod_redirection_tool div#header_slider,
.system_page div#header_slider {
  max-height: 250px !important;
  overflow: hidden;
}

div#siteframe {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(10px, 3vw, 30px);
  box-sizing: content-box;
  text-align: left;
  position: relative;
  border-radius: 20px;
  margin-top: clamp(10px, 3vw, 30px);
}

div#contentframe {
  padding: 30px 20px 25px;
  margin: 0;
  background: #fff;
}

div#navigation {
  margin: 0;
  padding: 0;
  color: #fff;
  border-top: 1px solid #fff;
  background: #f49b00;
}

div#content_left {
  float: left;
  text-align: left;
  margin: 0;
}

div#content_left .sub-navigation {
  width: 215px;
  float: left;
  padding: 0 20px 10px 0;
}

div#content_right #portlets_right {
  float: right;
  width: 215px;
  padding: 0 0 10px 0;
}
div#content_right #portlets_right span.management_controls span.control_link > * {
  width: 30px !important;
}

div#content {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

div#content_right {
  float: right;
  text-align: left;
  margin: 0;
  padding-left: 10px;
  box-sizing: border-box;
}

div#content_footer {
  background: #DADADA;
  padding: 0 20px;
  color: #555;
  font-size: 12px;
  border-radius: 0 0 20px 20px;
}

div#content_footer a {
  color: #555;
  text-decoration: none;
}

div#content_footer span {
  color: #555;
  float: left;
  padding: 3px 9px 4px 8px;
  border-left: 1px solid #bbb;
  line-height: 20px;
}

div#content_footer span.no_border {
  border: 0;
  padding-left: 0;
}

div#energiestadt_logo {
  padding-top: 5px;
}

/* Header ------------------------------------------------------------------------------- */
div#header {
  margin: 0;
  padding: 0 0 0 20px;
  height: 150px;
  color: #fff;
  background: #fff;
  position: relative;
  z-index: 50;
  border-radius: 20px 20px 0 0;
}

div#header div#logo {
  display: inline;
  width: 291px;
  height: 102px;
  padding: 10px 0 0;
  margin: 0;
  position: absolute;
  z-index: 70;
}

div#header div#logo img {
  position: relative;
  z-index: 80;
}

div#header div#meta {
  float: right;
  display: inline;
  margin: 0 20px 0 0;
  padding: 10px 0 0;
  width: 500px;
}

div#header div#metanavigation {
  text-align: right;
  margin: 4px -3px 16px 0;
  padding: 0;
}

body:has(#metanavigation li.current) #content_left {
  display: none;
}

form#form_search_box {
  float: right;
  width: 400px;
}

a.search_button {
  display: block;
  height: 25px;
  width: 25px;
  background: #E7F1D6;
  float: right;
  border-left: 2px solid #fff;
  position: relative;
}

a.search_button:before {
  content: "\f002";
  font-family: "FontAwesome";
  font-size: 12px;
  position: absolute;
  top: 0;
  right: 7px;
  color: #777;
}

a.search_button:hover {
  background: #87BA33;
}

a.search_button:hover:before {
  color: #fff;
}

input#portlet-search-input {
  padding: 2px 8px;
  line-height: 20px;
  height: 21px;
  width: 182px;
  overflow: visible;
  border: 0;
  background: #ebebeb;
  color: #666;
  float: right;
  font-size: 13px;
  font-family: "Figtree", Arial, Verdana, Helvetica, sans-serif;
}

input#portlet-search-input:hover,
input#portlet-search-input:active,
input#portlet-search-input:focus {
  color: #333;
  border: 0;
}

/* ---------- Slider ---------- */
div#header_slider {
  min-height: 60px;
  height: auto !important;
  height: 60px;
  position: relative;
}

div#header_slider .pictures,
div#header_slider .picture,
div#header_slider .picture a {
  padding: 0;
  margin: 0;
  border: 0;
}

div#header_slider div.slider {
  margin: 0;
}

/*
div#header_slider div.slider,
div#header_slider div.slider div.slider_wrap,
div#header_slider div.slider div.slide {
	padding-right: 12px;
	background: none transparent;
}
*/
div#header_slider div.slider div.slider_wrap {
  width: 960px;
}

div#header_slider div.slider div.slider_arrows {
  top: 0;
  width: 960px;
}

div.header_slider_small div.slider div.slider_arrows {
  display: none;
}

.bx-wrapper .bx-controls-direction a {
  height: 400px;
  width: 45px;
  top: 66px;
  left: 0;
  background: url(../img/slider_arrows.png) no-repeat top left;
  z-index: 1;
}

.page_small_slider .bx-wrapper .bx-controls-direction a {
  top: -70px;
}

.page_small_slider #bx-slider-wrap {
  overflow: hidden;
}

.page_homepage .bx-controls-direction a {
  display: none;
}

.bx-wrapper .bx-controls-direction a.bx-next {
  background-position: top right;
  right: 0;
  left: auto;
}

.bx-wrapper .bx-controls-direction a.bx-prev:hover {
  background-position: bottom left;
}

.bx-wrapper .bx-controls-direction a.bx-next:hover {
  background-position: bottom right;
}

div#header_slider div.slider_thumbnails {
  display: none;
}

/* --- Slide text --- */
div#header_slider div.slide_text_container {
  top: auto;
  bottom: 0;
  left: 0;
  filter: inherit;
  opacity: inherit;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 20px 10px;
}

div#header_slider div.slide_text_container h2 {
  margin-bottom: 0;
}

div#header_slider div.slide_text {
  color: #fff;
  width: auto !important;
  z-index: 60;
  position: relative;
  filter: inherit;
  opacity: inherit;
}

div#header_slider div.slide_text * {
  font-weight: normal;
  font-size: 12px;
  padding: 0;
  color: #000;
}

div#header_slider div.slide_text p {
  margin-bottom: 0;
}

/* @group slick slider */
/* !@group slider standard styles */
.slick-track {
  display: flex;
  justify-content: center;
}

.slick-slide {
  margin: 0;
}
.slick-slide > div {
  display: flex;
  width: 100%;
  height: 100%;
}

.slick-list {
  width: auto;
  margin: 0;
  padding: 0 !important;
  overflow: hidden;
}

i.slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-width);
  height: var(--icon-width);
  position: absolute;
  font-size: calc(var(--icon-width) / 1.8);
  position: absolute;
  background: #87ba33;
  color: #fff;
  top: calc(50% - var(--icon-width) / 2);
  cursor: pointer;
  pointer-events: all;
  z-index: 10;
  border-radius: 100%;
}
i.slick-arrow:hover {
  background: rgb(105.9493670886, 145.9746835443, 40.0253164557);
}
i.slick-arrow[class*=left] {
  left: 20px;
}
i.slick-arrow[class*=right] {
  right: 20px;
}
i.slick-arrow.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.slick_slider:not(.slick-slider) {
  display: flex;
  justify-content: center;
}
.slick_slider:not(.slick-slider) .picture:not(:first-child) {
  display: none;
}

.slick_slider {
  --icon-width: 32px;
  position: relative;
  overflow: hidden;
}
.slick_slider .picture a {
  pointer-events: none;
}

.slick-slider .resource_background {
  display: flex;
  justify-content: center;
}

/* @end */
/* @end */
/* Footer ------------------------------------------------------------------------------- */
div#footer {
  margin: 0 auto;
  padding: 16px 0;
  color: #999;
  font-size: 10px;
}

div#footer a {
  color: #999;
  text-decoration: none;
  font-size: 10px;
}

div#footer ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}
div#footer ul li {
  list-style: none;
}

div#footer a:hover {
  text-decoration: underline;
}

div#footer a[href*=indual] span {
  display: none;
}

/* --- Popup --- */
.popup {
  border: 2px solid #333;
  border-radius: 5px;
  box-shadow: 0 0 5px #000;
  overflow: hidden;
}

td .popup {
  border: none;
  box-shadow: none;
}

.popup .popup_header {
  background: #0068cf;
  border-radius: 3px 3px 0 0;
  padding: 8px 20px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px rgba(255, 255, 255, 0.3), inset 0 20px rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid #333;
  position: relative;
}

.popup .popup_header .closelink,
.popup .popup_header .closelink * {
  color: transparent;
  font-size: 0;
  text-decoration: none !important;
}

.popup .popup_header .closelink a {
  position: absolute;
  right: 12px;
  top: 8px;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) no-repeat center center;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -10px rgba(255, 255, 255, 0.05), inset 0 20px rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 1px solid #333;
  transition: all 0.3s ease-out;
}

.popup .popup_header .closelink a:hover {
  background-color: #333;
}

.popup .popup_header,
.popup .popup_header .title,
.popup .popup_header * {
  color: #fff;
}

.popup .popup_header .title {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 3px;
}

.popup .popup_body {
  height: 306px;
}

.popup .resource_container.documents {
  padding-left: 0;
}

/* Additional stuff --------------------------------------------------------------------- */
div.message {
  background: #f49b00;
  border: 0;
  color: #fff;
  padding: 4px 10px;
  margin-top: 0;
  margin-right: 20px;
}
div.message p {
  margin-bottom: 5px;
}
div.message ul {
  margin-left: 12px;
  padding-bottom: 4px !important;
  line-height: 20px;
}

#google_maps_iframe {
  background: #fff;
}
#google_maps_iframe iframe {
  width: 100%;
}

div#contentframe div.documents {
  border: none;
  background: transparent none;
  margin: 10px 0 0 0;
  padding: 0;
}
div#contentframe div.documents .document {
  margin-bottom: 4px !important;
}
div#contentframe div.documents .document a {
  background: #efefef;
  display: block;
  padding: 10px 10px;
  border-radius: 0px;
  text-decoration: none;
  color: #000;
  hyphens: auto;
  line-height: 16px;
  display: flex;
}
div#contentframe div.documents .document a i {
  font-size: 15px;
  margin-right: 6px;
}
div#contentframe div.documents .document a span {
  display: flex;
  align-items: center;
}
div#contentframe div.documents .document a span span {
  text-decoration: none;
}

div#content #module_news_events div.documents {
  margin: 0 0 15px 0;
}

/**********************************************************************************
* phpComasy Web Content Management System                                         *
* http://www.phpcomasy.com                                                        *
*                                                                                 *
* Copyright (c) 2005 - 2012 indual GmbH (http://www.indual.ch)                    *
*                                                                                 *
* phpComasy is released under his own licence (http://www.phpcomasy.com/licence)  *
**********************************************************************************/
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
/* CONTENT ------------------------------------------------------------------------------ */
/* Headings ----------------------------------------------------------------------------- */
h1 {
  color: #000;
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding: 0;
  font-family: "Figtree", Arial, Verdana, Helvetica, sans-serif;
}

h2,
div#content h2 a,
div#content div.documents h2,
div.introduction {
  font-size: 18px;
  font-weight: normal;
  line-height: 24px;
  color: #333;
  margin: 10px 0 10px 0;
  padding: 0;
  text-decoration: none;
  font-family: "Figtree", Arial, Verdana, Helvetica, sans-serif;
}

div#content h2 a:hover {
  color: #66b67b;
  text-decoration: none;
}

div.gmap-map h2 {
  font-size: 15px;
  margin: 0 0 1px;
  line-height: normal;
  font-weight: 700;
}

div.gmap-map {
  font-family: "Figtree", Arial, Verdana, Helvetica, sans-serif;
}

h3, h3 a,
h4, h4 a,
h5, h5 a {
  font-size: 13px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 3px 0;
  padding: 0;
  border: none;
}

div.introduction {
  margin: 0 0 18px 0;
  padding: 0;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
}

p {
  margin: 0 0 10px 0;
  padding: 0;
}

strong {
  font-weight: 700;
}

/* Links -------------------------------------------------------------------------------- */
a {
  outline: none;
}

a img {
  border: none;
}

div#contentframe a,
div.gmap-map a {
  text-decoration: underline;
  color: #87BA33;
}

.system_page div#contentframe a {
  color: #000;
}

div#contentframe a:hover,
div.gmap-map a:hover {
  text-decoration: underline;
  color: #87BA33 !important;
}

.pictures img {
  height: auto;
}

/* Lists -------------------------------------------------------------------------------- */
div#content ul {
  margin: 0;
  padding: 0 0 10px;
}

.listing-content-text ul,
div#content ul {
  margin-left: 16px;
}

div#content ol {
  margin: 0 0 10px 30px;
}

div#content ul.sitemap,
div#content ul.sitemap li {
  background: none transparent;
  padding: 0;
  margin: 0;
}

/* Table styles ------------------------------------------------------------------------- */
div#content table,
.popup table.table {
  border: none;
  border-spacing: 0;
  border-collapse: separate;
  margin: 0 0 10px 0;
  width: 100%;
}

table td,
table.table td {
  border-bottom: 1px solid #ddd;
  padding: 3px 0;
}

table th,
table.table th {
  background: #fff;
  color: #333;
  border-bottom: 2px solid #333;
}

table.table th {
  padding-left: 3px;
  line-height: 22px;
}

td.news_events_month {
  color: #666;
  border-bottom: 2px solid #666;
}

td p:last-child {
  margin-bottom: 0;
}

table.timetable tr td:last-child {
  width: 250px;
}

/* ---------- Stuff --------------------------------------------------------------------- */
div#content .search_item span {
  color: #333;
}

div#content .search_item h2 {
  text-decoration: none;
}

span.highlighting {
  background: rgba(244, 155, 0, 0.3);
}

span.search_item_details {
  display: none;
}

.search_item {
  border-top: 2px solid #ebebeb;
  margin: 15px 0 0;
  padding: 15px 0 0;
  text-decoration: none !important;
}
.search_item a.button {
  display: inline-block;
  margin-top: 2px;
}

.search_item h2 {
  margin-top: 0;
}

.search_item_wrap .resource_container {
  display: none;
}

.search_item_wrap .search_item_introduction {
  font-weight: 700;
}

/* ---------- Video --------------------------------------------------------------------- */
#resource_container_page_7_slider,
#resource_container_page_7_slider .slider_track,
#resource_container_page_7_slider .slider_track .slide {
  height: 541px !important;
}

#resource_container_page_7_slider .slider_arrows {
  display: none;
}

.video-js {
  width: 100% !important;
  height: 540px !important;
}

.vjs-default-skin .vjs-controls {
  z-index: 100;
}

.vjs-loading-spinner {
  opacity: 0;
}

/* ---------- Documents --------------------------------------------------------------------- */
div#contentframe .document a {
  text-decoration: none;
}

div#contentframe .document a span span {
  text-decoration: underline;
}

.resource_container .document .fa {
  margin-right: 4px;
}

/* ---------- Overview & Gallery -------------------------------------------------------- */
div#overview_title_content {
  display: none;
}

div.overview_item {
  float: left;
  width: 215px;
  border: 0;
  padding: 0;
  margin: 0 10px 10px 0;
}

div#content div.overview_item div.introduction {
  display: none;
}

div#content div.overview_item div.content h2,
div#content div.overview_item h2 {
  margin-top: 0;
  margin-left: 1px;
  display: block;
}

div#content div.overview_item h2 a {
  font-family: Verdana, Helvetica, sans-serif;
  font-size: 12px;
  padding: 0 10px 5px;
  line-height: 18px;
  font-weight: bold;
  display: block;
  margin: 0;
  border-bottom: 2px solid #b7b7b7;
}

div#content div.overview_item:hover h2 a {
  color: #66b67b;
}

div.overview_item a {
  padding: 0;
  border: 0;
}

div#content div.overview_item .picture {
  padding: 0 7px 7px;
}

div.gallery a {
  padding: 0;
  border: 0;
}

div.gallery div.picture {
  margin: 0 1px 1px 0;
}

div.gallery div.picture_0 {
  display: none;
}

/**********************************************************************************
* phpComasy Web Content Management System                                         *
* http://www.phpcomasy.com                                                        *
*                                                                                 *
* Copyright (c) 2005 - 2012 indual GmbH (http://www.indual.ch)                    *
*                                                                                 *
* phpComasy is released under his own licence (http://www.phpcomasy.com/licence)  *
**********************************************************************************/
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
/* FORMS -------------------------------------------------------------------------------- */
input.button:hover,
input.submit:hover {
  border: 1px solid #000;
  background: #000 none;
  color: #fff;
}

input,
select,
textarea {
  font: normal 14px "Figtree", Arial, Helvetica, Verdana, sans-serif;
  color: #666;
  margin: 0;
  padding: 4px 8px;
  outline: none;
  line-height: 17px;
  width: 200px;
  border: 1px solid #b7b7b7;
}

input:hover,
input:active,
input:focus,
select:hover,
select:active,
select:focus,
textarea:hover,
textarea:active,
textarea:focus {
  border: 1px solid #87BA33;
}

textarea {
  width: 350px;
  height: 100px;
  box-sizing: border-box;
}

input.submit,
input.button,
input.submit-button,
input.mailform-submit,
div#content a.button {
  background: #87BA33;
  border: 1px solid #87BA33;
  padding: 5px 8px 5px;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  width: auto;
}

div#content a.button {
  line-height: 24px;
  padding-top: 2px;
  padding-bottom: 1px;
}

input.submit:hover,
input.submit:active,
input.submit:focus,
input.button:hover,
input.button:focus,
input.button:active,
input.submit-button:hover,
input.submit-button:focus,
input.submit-button:active,
input.mailform-submit:hover,
input.mailform-submit:active,
input.mailform-submit:focus,
div#content a.button:hover,
div#content a.button:active,
div#content a.button:focus {
  border: 1px solid #f49b00;
  background: #f49b00;
  text-decoration: none;
  color: #fff !important;
}

input.mailform-submit {
  margin-top: 5px;
}

.required,
.mailform_error label {
  color: #f49b00 !important;
}

.mailform_element.mailform_error input,
.mailform_element.mailform_error textarea {
  border: 1px solid #87BA33;
}

span.mailform_field_actions {
  margin-left: 8px;
}

.checkbox_field {
  padding-left: 170px;
  box-sizing: border-box;
}
.checkbox_field > p {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.checkbox_field input {
  top: 2px;
  position: relative;
}
.checkbox_field input,
.checkbox_field label {
  width: auto !important;
}

.not_logged_in .add_element_link_wrap {
  display: none;
}

/* elements ----------------------------------------------------------------------------- */
label {
  display: block;
  margin: 0;
  padding: 0;
}

div.portlet label.empty {
  display: none !important;
}

div#management a.button {
  padding-bottom: 0;
  line-height: 27px;
}

.resource_container.documents h2 {
  display: none;
}

div#contentframe a i {
  color: #000;
}

div#contentframe a:hover i {
  color: #87BA33;
}

/* portlet specials --------------------------------------------------------------------- */
div.portlet label {
  white-space: nowrap;
  font-size: 11px;
  text-transform: uppercase;
  color: #333;
  font-weight: bold;
}

div.portlet input {
  width: 160px;
}

div.portlet .submit,
div.portlet .send-button {
  margin: 5px 0;
  width: auto !important;
  cursor: pointer;
}

/*#management input, 
#management select, 
#management textarea,*/
.management_container input,
.management_container select,
.management_container textarea {
  width: auto;
}

/* @group management */
.logged_in div.portlets div.portlets_inner_wrap a.add_portlet_link i,
.logged_in div#contentframe div.portlets div.portlets_inner_wrap a.add_portlet_link:hover,
.logged_in div.portlets div.portlets_inner_wrap a.add_portlet_link {
  text-decoration: none !important;
  color: #666 !important;
}

html body.system_page #siteframe {
  width: 100%;
}
html body.system_page #siteframe #content_footer,
html body.system_page #siteframe #background_images {
  display: none;
}

/* @end */
/**********************************************************************************
* phpComasy Web Content Management System                                         *
* http://www.phpcomasy.com                                                        *
*                                                                                 *
* Copyright (c) 2005 - 2012 indual GmbH (http://www.indual.ch)                    *
*                                                                                 *
* phpComasy is released under his own licence (http://www.phpcomasy.com/licence)  *
**********************************************************************************/
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
/* NAVIGATION --------------------------------------------------------------------------- */
/* Main Menu ---------------------------------------------------------------------------- */
div#navigation ul.level0 {
  margin: 0;
  padding: 0;
}

div#navigation ul.level0 ul {
  margin: 0;
  padding: 0;
  background: transparent;
}

div#navigation ul.level0 li {
  margin: 0;
  padding: 0 0 0 2px;
  font-size: 12px;
  list-style: none;
  float: left;
  position: relative;
}

div#navigation ul.level0 li.sort-0 {
  padding: 0;
  background: none transparent;
}

div#navigation ul.level0 li a {
  display: block;
  font-weight: bold;
  text-decoration: none;
  line-height: 31px;
  margin: 0;
  padding: 0 19px 1px 19px;
  color: #fff;
  font-size: 15px;
}

div#navigation ul.level0 > li:hover {
  text-decoration: none;
  background: #dc8c04;
}

div#navigation ul.level0 li.current a:hover {
  color: #fff;
}

div#navigation ul.level0 li.level0.current > a {
  text-decoration: none;
  background: #87BA33;
}

/* 2nd navigation level */
div#navigation ul.level0 li ul.level1 {
  margin: 0;
  padding: 40px 15px 16px 15px;
  position: absolute;
  z-index: 90;
  left: 40%;
  top: 22px;
  display: none;
  background: url(../img/subnavi_bg.png) no-repeat left top;
  min-width: 160px;
  background-size: 100% auto;
}

div#navigation ul.level0 li:hover ul.level1,
div#navigation ul.level0 li ul.level1:hover {
  display: block;
}

div#navigation ul.level0 li.current:hover ul.level1,
div#navigation ul.level0 li.current ul.level1:hover {
  display: none;
}

div#navigation ul.level0 li ul li {
  border: none;
  margin: 0;
  padding: 0;
  float: none;
  background: none transparent;
}

div#navigation ul.level0 li ul li a {
  font-weight: normal;
  text-transform: none;
  line-height: 16px;
  padding-bottom: 7px !important;
  background: none;
  padding: 0;
  font-size: 13px;
  color: #333;
}

div#navigation ul.level0 li ul li a:hover {
  text-decoration: underline;
  color: #87BA33;
}

/* ---------- Subnavigation (in content) ------------------------------------------------ */
div#content_left ul,
div#content_left ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

div#content_left ul li a {
  display: block;
  padding: 3px 8px;
  background: #ebebeb;
  line-height: 19px;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  color: #333;
  font-size: 13px;
}

div#content_left ul li a:hover,
div#content_left ul li.current a {
  color: #87BA33;
  background: rgba(134, 186, 50, 0.2);
  text-decoration: none;
}

div#content_left ul li.current a {
  font-weight: bold;
}

/* Metanavigation ----------------------------------------------------------------------- */
div#metanavigation ul {
  margin: 0;
  padding: 0;
}

div#metanavigation li {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}

div#metanavigation a {
  color: #666;
  font-size: 12px;
  font-weight: normal;
  padding: 0 3px 0 9px;
  text-decoration: none;
  line-height: 16px;
  background: url(../img/metanavi_separator.gif) no-repeat left 1px;
}

div#metanavigation li.sort-1 a {
  background: none transparent;
  padding-left: 0;
}

div#metanavigation a:hover,
div#metanavigation li.current a {
  color: #87BA33;
  text-decoration: none;
  font-weight: normal;
}

/* !@group responsive navigation toggle */
.responsive_navigation_toggle {
  margin-right: clamp(18px, 3vw, 30px);
  width: 40px;
  flex: 0 0 40px;
  height: 40px;
  position: relative;
  transform: rotate(0deg);
  transition: all 0.5s ease-out;
  cursor: pointer;
  z-index: 100;
  display: none;
  background: none;
  border: none;
  outline: none;
}
.responsive_navigation_toggle:after {
  content: "";
  position: absolute;
  top: -150px;
  left: auto;
  width: 100vw;
  height: calc(100vh + 150px);
  display: block;
  background: rgba(34, 34, 34, 0.1);
  position: fixed;
  right: calc(-1 * clamp(10px, 3vw, 30px) - clamp(18px, 3vw, 30px) - 20px);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  pointer-events: none;
}
.responsive_navigation_toggle span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 5px;
  background: #f49b00;
  border-radius: 3px;
  transform: rotate(0deg);
  transition: all 0.25s ease-out;
  opacity: 1;
  z-index: 1;
}
.responsive_navigation_toggle span:nth-child(1) {
  top: 4.5px;
}
.responsive_navigation_toggle span:nth-child(2) {
  top: 17.5px;
}
.responsive_navigation_toggle span:nth-child(3) {
  top: 30.5px;
}
.navi_open .responsive_navigation_toggle:after {
  opacity: 1;
  pointer-events: all;
}
.navi_open .responsive_navigation_toggle span:nth-child(1) {
  position: absolute;
  top: calc(50% - 2.5px);
  transform: rotate(45deg);
}
.navi_open .responsive_navigation_toggle span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.navi_open .responsive_navigation_toggle span:nth-child(3) {
  position: absolute;
  top: calc(50% - 2.5px);
  transform: rotate(-45deg);
}

/* @end */
/* !@group rwd navigation */
#rwdnav-45 {
  display: none;
}

#rwdnav {
  display: none;
  position: fixed;
  height: 100%;
  width: calc(100% - 160px);
  z-index: 300;
  background: #fff;
  left: -100%;
  border-right: 1px solid rgba(34, 34, 34, 0.1);
  transition: all 0.4s ease-out;
  overflow: auto;
}
.navi_open #rwdnav {
  left: 0;
  top: 0;
}
#rwdnav .rwdnav_inner {
  display: flex;
  flex-flow: column;
  padding: clamp(18px, 3vw, 30px);
  box-sizing: border-box;
  min-height: 100%;
}
#rwdnav a.search_button {
  height: 60px;
  width: 60px;
}
#rwdnav a.search_button::before {
  right: 22px;
  line-height: 60px;
  font-size: 18px;
}
#rwdnav form#form_search_box {
  float: left;
  width: 100%;
}
#rwdnav form#form_search_box input#portlet-search-input {
  width: calc(100% - 67px);
  height: 60px;
  box-sizing: border-box;
  font-size: 18px;
}
#rwdnav a {
  text-decoration: none;
  color: #333;
}
#rwdnav .current > a {
  opacity: 1 !important;
  font-weight: 700 !important;
  color: #f49b00 !important;
}
#rwdnav li {
  list-style: none;
  text-align: left;
}
#rwdnav li.level0 {
  padding: 0 clamp(6px, 1vw, 10px);
}
#rwdnav li.level0 > a {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 22px);
  line-height: clamp(28px, 3vw, 30px);
  padding-top: clamp(15px, 2vw, 20px);
  padding-bottom: clamp(15px, 2vw, 20px);
}
#rwdnav li.level0 > a:not(:only-child):after {
  font-family: "Font Awesome 7 Pro";
  content: "\f107";
  transition: all 0.3s ease-out;
}
#rwdnav li.level0:not(:first-child) {
  border-top: 1px solid rgba(34, 34, 34, 0.1);
}
#rwdnav li.level0.current > a:not(:only-child):after, #rwdnav li.level0.active > a:not(:only-child):after {
  transform: rotate(180deg);
}
#rwdnav li.level0.current ul.level1, #rwdnav li.level0.active ul.level1 {
  display: block;
}
#rwdnav ul.level1 {
  display: none;
  margin-top: 0;
  padding-bottom: clamp(15px, 2vw, 20px);
}
#rwdnav li.level1 > a {
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 19px);
  line-height: clamp(25px, 2.6vw, 26px);
}
#rwdnav li.level1:not(:first-child) {
  margin-top: clamp(6px, 1vw, 10px);
}
#rwdnav li.level1:not(:last-child) ul.level2 {
  margin-bottom: clamp(15px, 2vw, 20px);
}
#rwdnav ul.level2:not(:empty) {
  margin-top: clamp(3px, 0.5vw, 5px);
}
#rwdnav li.level2 {
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: clamp(21px, 2vw, 22px);
}
#rwdnav li.level2:not(:first-child) {
  margin-top: clamp(3px, 0.5vw, 5px);
}
#rwdnav li.level2 > a {
  opacity: 0.6;
}
#rwdnav li.level2 > a:before {
  content: "- ";
}
#rwdnav ul.level4,
#rwdnav ul.level3 {
  display: none;
}

/* @end */
/**********************************************************************************
* phpComasy Web Content Management System                                         *
* http://www.phpcomasy.com                                                        *
*                                                                                 *
* Copyright (c) 2005 - 2012 indual GmbH (http://www.indual.ch)                    *
*                                                                                 *
* phpComasy is released under his own licence (http://www.phpcomasy.com/licence)  *
**********************************************************************************/
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
/* PORTLETS ----------------------------------------------------------------------------- */
form.add_portlet {
  padding: 10px;
}

div#content form.add_portlet {
  float: left;
  width: 215px;
}

div#content div#portlets_homepage {
  margin-right: -20px;
}

div.portlet ul {
  margin: 0 0 0 14px;
}

/* --- Hide add-portlet and delete-portlet links --- */
div#content div#portlets_homepage a.add_portlet_link,
div#content div#portlets_homepage li.portlet-delete-link,
div#content div#portlets_homepage li.portlet-integration-link {
  display: none;
}

/* Portlets ----------------------------------------------------------------------------- */
div#contentframe div.portlet {
  background: transparent none;
  color: #333;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 18px;
  border-bottom: 2px solid #b7b7b7;
}

div#content div.portlet {
  float: left;
  width: 215px;
  margin-right: 20px;
}

div#content div.portlet ul.controls {
  padding: 5px 5px 0;
}

div#content div.portlet ul.controls li {
  background: none transparent;
  padding: 0;
}

div#contentframe h3.portlet-title {
  margin: 0;
  padding: 8px 10px 0;
  font-size: 14px;
  text-transform: none;
  font-weight: bold;
  border: none;
  border-top: 2px solid #b7b7b7;
  color: #333;
}

div#contentframe h3.portlet-title a {
  text-transform: none;
  color: #333;
  text-decoration: none;
}

div#contentframe h3.portlet-title a:hover {
  color: #0068cf;
}

div#contentframe div#header div.portlet-content {
  background: transparent none;
  padding: 0;
}

div#contentframe div.portlet-content {
  margin: 0;
  padding: 8px 10px 1px 10px;
  border: none;
}

div#contentframe div.portlet-content .document {
  margin-bottom: 8px;
}

/* ---------- Portlet News Events ------------------------------------------------------- */
div.portlet_news_events div.portlet-content a.button {
  display: none;
}

div#content div.portlet_news_events div.portlet-content ul,
div#content div.portlet_news_events div.portlet-content ul li.entry {
  margin: 0;
  padding: 0;
  border: none;
  list-style: none;
  background: none transparent;
}

div#content div.portlet_news_events div.portlet-content ul li.entry {
  line-height: 20px;
}

div#content div.portlet_news_events div.portlet-content ul li.entry span,
div#content div.portlet_news_events div.portlet-content ul li.entry a {
  color: #666;
}

div#content div.portlet_news_events div.portlet-content ul li.entry span.date {
  color: #999;
  padding-right: 5px;
  float: left;
}

div#content div.portlet_news_events div.portlet-content ul li.entry a {
  overflow: hidden;
  display: block;
}

/**********************************************************************************
* phpComasy Web Content Management System                                         *
* http://www.phpcomasy.com                                                        *
*                                                                                 *
* Copyright (c) 2005 - 2016 indual GmbH (http://www.indual.ch)                    *
*                                                                                 *
* phpComasy is released under his own licence (http://www.phpcomasy.com/licence)  *
**********************************************************************************/
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
/* --- mailform -- */
.login_form label,
#mailform_submit_button label,
.mailform_element label {
  float: left;
  width: 170px;
}

.login_form p,
.mailform_element p {
  margin-bottom: 5px;
}

.mailform_element input {
  box-sizing: border-box;
  width: 350px;
}

/* ---------- Listing ------------------------------------------------------------------- */
.mod_listing .bx-viewport {
  height: 220px !important;
}

.mod_listing.category_9 .bx-viewport {
  height: 400px !important;
}

div.listing_entry {
  border-top: 2px solid #ebebeb;
  padding-top: 8px;
  padding-bottom: 20px;
}

div.listing_entry:first-child {
  border-top: none;
}

div.listing_entry h2 {
  line-height: normal;
  font-weight: 700;
}

div.listing_entry .listing-content-text {
  overflow: hidden;
}

div.listing_entry div.picture {
  margin-right: 20px;
}

div.listing_entry div.picture a {
  padding: 0;
  border: 0;
}

div.listing_entry_detail_pictures div.pictures {
  float: none;
  width: 100%;
  padding-top: 10px;
}

div.listing_entry_detail_pictures div.picture {
  float: left;
  clear: none;
  margin: 0 1px 1px 0;
}

div.listing_entry_detail_pictures div.picture a {
  padding: 0;
  border: 0;
}

/* --- Pagination --- */
div#content div.pagination {
  background: #ebebeb;
  margin-top: 20px;
}

div#content div.pagination a {
  border-color: #b7b7b7;
  text-decoration: none;
  color: #333;
}

div#content div.pagination a.current,
div#content div.pagination a.current:hover {
  color: #fff;
  text-decoration: none;
  background: #333;
}

div#content div.pagination a.current span {
  color: #fff;
}

div#content div.pagination a:hover {
  background: #b7b7b7;
  color: #fff;
}

div#content div.management div.pagination {
  margin-bottom: 0;
  background: #ccc;
}

div#content div.management div.pagination a {
  padding: 3px 6px;
  margin: 0 2px;
  font-size: 10px;
  font-weight: normal !important;
  border-color: #b7b7b7;
}

div#content div.management div.pagination a.current {
  border-color: #333;
}

.pagination-numbers a, .pagination-numbers span.placeholder, .pagination-links a {
  float: left;
  margin: 0;
  padding: 5px 10px;
  color: #333;
  background: #eee none;
  border-right: 1px solid #fff;
  text-decoration: none;
}

div#content div.pagination a.next {
  border-right: none;
}

/* ---------- News Events -------------- */
#module_news_events .news_events_year {
  margin-top: 20px;
}

#module_news_events .year_nav {
  margin-top: -3px;
}

#module_news_events .month_nav_link.inactive:hover,
#module_news_events .month_nav_link.inactive {
  color: grey;
  cursor: default;
  text-decoration: none;
}

#module_news_events .news_events_event_date {
  width: 85px;
}

#module_news_events .news_events_event {
  padding-bottom: 0;
}

#module_news_events .year_nav a {
  margin: 0 0 0 14px;
}

div#content #module_news_events a.button {
  padding: 5px 6px 5px;
  line-height: 28px;
}

h1 + #module_news_events {
  margin-top: 25px;
}

.news_events_entry_pictures {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.gallery.resource_container.pictures .picture,
.news_events_entry_pictures div.resource_container.pictures .picture {
  float: left;
  margin: 0 1px 1px 0;
  width: 229px;
  height: 152px;
  overflow: hidden;
  background: #f0f0f0;
}

.gallery.resource_container.pictures .picture img,
.news_events_entry_pictures div.resource_container.pictures .picture img {
  width: auto;
  max-height: 152px;
  height: auto;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

/* ------------- Mailform ----------- */
/* --- select2 --- */
span.select2.select2-container {
  width: 350px !important;
}

span.select2-container .select2-selection--single {
  height: 27px;
}

span.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #666 !important;
  padding-top: 1px;
  line-height: 24px;
}

span.select2-container--default .select2-selection--single {
  border: 1px solid #b7b7b7;
  border-radius: 0;
  color: #666 !important;
  background: transparent;
}

span.select2-container--default .select2-selection--single:hover {
  border: 1px solid #87BA33;
}

span.select2-container--default.select2-container--open .select2-selection--single {
  border: 1px solid #87BA33;
  border-bottom: none;
}

span.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #87BA33;
  color: #fff;
}

span.select2-container--default .select2-results__option[aria-selected=true] {
  background: rgba(134, 186, 50, 0.2);
  color: #87BA33;
}

ul.select2-results__option {
  padding: 6px 8px;
}

span.select2-container .select2-dropdown {
  border: 1px solid #87BA33;
  border-top: none;
  border-radius: 0;
  text-align: left;
}

/* @end */
/*
|--------------------------------------------------------------------------
| phpComasy - content management system
|--------------------------------------------------------------------------
|
| Copyright indual GmbH, Brig (https://www.indual.ch)
| phpComasy is released under his own licence: https://www.phpcomasy.com/licence/
|
 */
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
/* !@group max-width: 1200px */
@media screen and (max-width: 1200px) {
  .page {
    padding-bottom: 250px;
  }
  #background_image_right {
    right: 50%;
    transform: translate(50%, 0);
  }
  #background_image_left {
    left: 50%;
    transform: translate(-50%, 0);
  }
  #background_image_left,
  #background_image_right {
    top: calc(100% + 85px);
    margin-top: 0;
  }
  #background_image_left img,
  #background_image_right img {
    width: 250px;
    margin: 0;
    transform: none;
  }
}
/* @end */
/* !@group max-width: 1000px */
@media screen and (max-width: 1000px) {
  div#content_footer {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  div#content_footer span {
    border: none;
    padding: 0;
  }
  div#navigation ul.level0 li a {
    padding: 0 15px 1px 15px;
  }
}
/* @end */
/* !@group max-width: 900px */
@media screen and (max-width: 900px) {
  div#content_left {
    display: none;
  }
  div#navigation ul.level0 li.current:hover ul.level1, div#navigation ul.level0 li.current ul.level1:hover {
    display: block;
  }
  div#navigation ul.level0 li.current ul.level1 a:hover {
    color: #87ba33;
  }
  div#navigation ul.level0 li.current ul.level1 li.current a {
    color: #87ba33;
    text-decoration: underline;
  }
  #navigation,
  div#header div#search_field,
  div#header div#metanavigation {
    display: none;
  }
  #rwdnav,
  .responsive_navigation_toggle {
    display: block;
  }
  div#header div#meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
  }
  div#contentframe {
    border-top: 5px solid #f49b00;
  }
  div#content_right {
    float: none;
    padding: 0;
  }
  div#content_right #portlets_right {
    float: none;
    width: 100%;
  }
  .login_form label, #mailform_submit_button label, .mailform_element label {
    width: 100%;
  }
  span.select2.select2-container {
    width: 100% !important;
  }
  .mailform_element input {
    width: 100%;
  }
  .mailform_element textarea {
    width: 100%;
    box-sizing: border-box;
  }
  .checkbox_field {
    padding: 0;
  }
}
/* @end */
/* !@group max-width: 800px */
/* @end */
/* !@group max-width: 650px */
@media screen and (max-width: 650px) {
  h1 {
    margin: 0 0 15px 0;
  }
  div.introduction {
    margin: 0 0 10px 0;
  }
  div#contentframe {
    padding: 20px;
  }
}
/* @end */
/* !@group max-width: 600px */
@media screen and (max-width: 600px) {
  .resource.picture a img, .resource.picture img {
    width: 150px;
  }
  #rwdnav {
    width: calc(100% - 120px);
  }
  .resource.picture a img, .resource.picture img {
    width: 150px;
  }
  #rwdnav {
    width: calc(100% - 120px);
  }
}
/* @end */
/* !@group max-width: 500px */
@media screen and (max-width: 500px) {
  .responsive_navigation_toggle {
    margin: 0;
  }
  div#header div#logo {
    width: 250px;
    height: auto;
  }
  div#header div#logo img {
    width: 100%;
    height: 100%;
  }
}
/* @end */
/**********************************************************************************
* phpComasy Web Content Management System                                         *
* http://www.phpcomasy.com                                                        *
*                                                                                 *
* Copyright (c) 2005 - 2012 indual GmbH (http://www.indual.ch)                    *
*                                                                                 *
* phpComasy is released under his own licence (http://www.phpcomasy.com/licence)  *
**********************************************************************************/
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end */
/* PRINT ------------------------------------------------------------------------------- */
/***** You can put your own style stuff here in this file 
       For questions see www.phpcomasy.org *****/
/******************************** Additional styles **************************************/
@media print {
  div#meta,
  div#footer,
  div#navigation,
  div#content_right,
  div#content_left,
  div#content_footer {
    display: none !important;
  }
  div#siteframe,
  div#contentframe {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    width: auto;
  }
  div#contentframe {
    padding-top: 15px;
  }
  div#content {
    float: none;
    width: 100%;
    padding: 0;
    margin: 0;
    font: 13px/18px Verdana, "Figtree", Arial, Helvetica, sans-serif !important;
    color: black !important;
  }
}
/*****************************************************************************************/
/*
|--------------------------------------------------------------------------
| 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 fonts */
/* @end *//*# sourceMappingURL=template_styles_1.css.map */