/*
 * GENERAL VARIABLES
 */
/* COLORS */
/* #ccc */
/* #f2f2f2 */
/* #000 */
/* opacity .8 */
/* opacity .8 */
/* FONT */
/* FONT-FAMILY */
/* Font-Size*/
/* Font-Weight */
/* Text */
/* WRAP */
/* SCROLL-TO-TOP */
/* SPACE */
/* PADDING */
/* TABLE */
/* CLASSES FOR MIXINS */
/*
 * NAVIGATION VARIABLES
 */
/*
 * Main
 */
/* mobile */
/* mobile */
/*
 * Mobile Navigation
 */
/*
 * MicroNav
 */
/*
 * FooterNavi
 */
/*
 * Aside
 */
/*
 * TEXT-BLOCK
 */
/*
 * Page-Image
 */
/*
 * Pagination
 */
/*
 * Input-Fields
 */
/*
 * Single-Content Navigation
 */
/*
 * Infinite Loading
 */
/*
 * CORE-DESIGN
 */
/*
 * CONTACT-FORM
 */
/*
 * BREADCRUMBS
 */
/*
 * SEARCH
 */
/*
 * Autosuggest
 */
/*
 * SOCIAL SHARING
 */
/*
 * CLICKLIST
 */
/*
 * CONSENT-TOOL
 */
/*
 * LOGIN-FORM FE
 */
/*
 * PROJECT ADAPTION
 */
/*
 * PAGE-ASIDE
 */
/* MODULE - ASIDE */
/*
 * aside single view
 */
/*
 * SECTION / PAGE-CONTENT
 */
/*
 * section single view
 */
/* FOOTER */
/*
 *  PLUGINS
 */
/*
 * InfoBox
 */
/*
 * InfoImage
 */
/*
 * Gallery
 */
/*
 * Accodreon
 */
/* ZOOM-INDICATOR */
/*
 * FAQ
 */
/*
 * COLS
 */
/*
 * ColRight & ColLeft Space
 */
/*
 * Listings
 */
/*
 * Space If elements > cols-numer (4 items > .cols .items-x3) || .doubleSpace-break
 */
/*
 * Listings
 */
/* Card-Item */
/* Shadow */
/* Zoom */
/* link-cover */
/* List-View */
/* Shadow */
/* Border */
/* Zoom */
/* Vertical Align Content */
/* Vertical Align Image */
/* Spacing */
/* link-cover */
/*
 * WIDGETS
 */
/* Contact */
/* Top-Line */
/* Cites */
/* Reviews */
/* Text with Link */
/* Adjustments */
/* Aside Links */
/*
 * Intern
 */
/* Gradiant for Items */
/* tabs */
/* Dropzone */
/* Dashboard */
/*
 * DEFAULT CSS - TOC
 *
 * 01) MIXINS
 * 02) GENERAL CSS
 * 03) NAVIGATIONS
 * 04) CONTENT CSS
 * 05) CORE DESIGN
 * 06) WIDGETS
 * 07) FORMS
 */
.transitions {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
/**************************************
 *
 * 01) GERNERAL CSS
 *
 **************************************/
/*
 * RESET CSS PROPERTIES
 */
* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*
 * HTML AND BODY
 */
body {
  color: #696969;
  background: #ffffff;
  font-size: 100%;
  font-family: 'Roboto', sans-serif;
  position: relative;
}
/*
 * WRAPPER
 */
.wrap {
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  width: 100%;
}
.overflow {
  overflow: hidden;
}
/*
 * HIDING ELEMENTS // usability, responsive design buttons
 */
.donotdisplay,
.printonly,
.mobileonly,
.screanreader {
  left: -9999px;
  position: absolute;
}
/*
 * COLS AND SIDEBARS
 */
/*
 * COLS ALIGNMENT
 */
.colLeft,
.col-left {
  margin-right: 15px;
  float: left;
}
.colLeft.space-null,
.col-left.space-null,
.colLeft.nullSpace,
.col-left.nullSpace {
  margin-right: 0px;
}
.colLeft.space-double,
.col-left.space-double,
.colLeft.doubleSpace,
.col-left.doubleSpace {
  margin-right: calc(15px * 2);
}
.colLeft.space-tripple,
.col-left.space-tripple,
.colLeft.tripleSpace,
.col-left.tripleSpace {
  margin-right: calc(15px * 3);
}
.colRight,
.col-right {
  margin-left: 15px;
  float: right;
}
.colRight.space-null,
.col-right.space-null,
.colRight.nullSpace,
.col-right.nullSpace {
  margin-left: 0px;
}
.colRight.space-double,
.col-right.space-double,
.colRight.doubleSpace,
.col-right.doubleSpace {
  margin-left: calc(15px * 2);
}
.colRight.space-tripple,
.col-right.space-tripple,
.colRight.tripleSpace,
.col-right.tripleSpace {
  margin-left: calc(15px * 3);
}
/*
 * COLS WIDTH
 */
.col-w100 {
  width: 100%;
  margin: 0 !important;
  clear: both;
  overflow: hidden;
}
.col-w90 {
  width: calc(90% - 15px);
}
.col-w90.space-null,
.col-w90.nullSpace {
  width: 90%;
}
.col-w90.space-double,
.col-w90.doubleSpace {
  width: calc(90% - calc(15px * 2));
}
.col-w90.space-tripple,
.col-w90.tripleSpace {
  width: calc(90% - calc(15px * 3));
}
.col-w80 {
  width: calc(80% - 15px);
}
.col-w80.space-null,
.col-w80.nullSpace {
  width: 80%;
}
.col-w80.space-double,
.col-w80.doubleSpace {
  width: calc(80% - calc(15px * 2));
}
.col-w80.space-tripple,
.col-w80.tripleSpace {
  width: calc(80% - calc(15px * 3));
}
.col-w75 {
  width: calc(75% - 15px);
}
.col-w75.space-null,
.col-w75.nullSpace {
  width: 75%;
}
.col-w75.space-double,
.col-w75.doubleSpace {
  width: calc(75% - calc(15px * 2));
}
.col-w75.space-tripple,
.col-w75.tripleSpace {
  width: calc(75% - calc(15px * 3));
}
.col-w70 {
  width: calc(70% - 15px);
}
.col-w70.space-null,
.col-w70.nullSpace {
  width: 70%;
}
.col-w70.space-double,
.col-w70.doubleSpace {
  width: calc(70% - calc(15px * 2));
}
.col-w70.space-tripple,
.col-w70.tripleSpace {
  width: calc(70% - calc(15px * 3));
}
.col-w66 {
  width: calc(66% - 15px);
}
.col-w66.space-null,
.col-w66.nullSpace {
  width: 66%;
}
.col-w66.space-double,
.col-w66.doubleSpace {
  width: calc(66% - calc(15px * 2));
}
.col-w66.space-tripple,
.col-w66.tripleSpace {
  width: calc(66% - calc(15px * 3));
}
.col-w60 {
  width: calc(60% - 15px);
}
.col-w60.space-null,
.col-w60.nullSpace {
  width: 60%;
}
.col-w60.space-double,
.col-w60.doubleSpace {
  width: calc(60% - calc(15px * 2));
}
.col-w60.space-tripple,
.col-w60.tripleSpace {
  width: calc(60% - calc(15px * 3));
}
.col-w50 {
  width: calc(50% - 15px);
}
.col-w50.space-null,
.col-w50.nullSpace {
  width: 50%;
}
.col-w50.space-double,
.col-w50.doubleSpace {
  width: calc(50% - calc(15px * 2));
}
.col-w50.space-tripple,
.col-w50.tripleSpace {
  width: calc(50% - calc(15px * 3));
}
.col-w40 {
  width: calc(40% - 15px);
}
.col-w40.space-null,
.col-w40.nullSpace {
  width: 40%;
}
.col-w40.space-double,
.col-w40.doubleSpace {
  width: calc(40% - calc(15px * 2));
}
.col-w40.space-tripple,
.col-w40.tripleSpace {
  width: calc(40% - calc(15px * 3));
}
.col-w33 {
  width: calc(33.3333% - 15px);
}
.col-w33.space-null,
.col-w33.nullSpace {
  width: 33.3333%;
}
.col-w33.space-double,
.col-w33.doubleSpace {
  width: calc(33.3333% - calc(15px * 2));
}
.col-w33.space-tripple,
.col-w33.tripleSpace {
  width: calc(33.3333% - calc(15px * 3));
}
.col-w30 {
  width: calc(30% - 15px);
}
.col-w30.space-null,
.col-w30.nullSpace {
  width: 30%;
}
.col-w30.space-double,
.col-w30.doubleSpace {
  width: calc(30% - calc(15px * 2));
}
.col-w30.space-tripple,
.col-w30.tripleSpace {
  width: calc(30% - calc(15px * 3));
}
.col-w25 {
  width: calc(25% - 15px);
}
.col-w25.space-null,
.col-w25.nullSpace {
  width: 25%;
}
.col-w25.space-double,
.col-w25.doubleSpace {
  width: calc(25% - calc(15px * 2));
}
.col-w25.space-tripple,
.col-w25.tripleSpace {
  width: calc(25% - calc(15px * 3));
}
.col-w20 {
  width: calc(20% - 15px);
}
.col-w20.space-null,
.col-w20.nullSpace {
  width: 20%;
}
.col-w20.space-double,
.col-w20.doubleSpace {
  width: calc(20% - calc(15px * 2));
}
.col-w20.space-tripple,
.col-w20.tripleSpace {
  width: calc(20% - calc(15px * 3));
}
.col-w10 {
  width: calc(10% - 15px);
}
.col-w10.space-null,
.col-w10.nullSpace {
  width: 10%;
}
.col-w10.space-double,
.col-w10.doubleSpace {
  width: calc(10% - calc(15px * 2));
}
.col-w10.space-tripple,
.col-w10.tripleSpace {
  width: calc(10% - calc(15px * 3));
}
.cols-5 {
  width: 20%;
  padding: 0 15px;
  float: left;
}
.cols-5:nth-child(5n + 1) {
  padding-left: 0;
  clear: left;
}
.cols-5:nth-child(5n + 5) {
  padding-right: 0;
}
.cols-4 {
  width: 25%;
  padding: 0 15px;
  float: left;
}
.cols-4:nth-child(4n + 1) {
  padding-left: 0;
  clear: left;
}
.cols-4:nth-child(4n + 4) {
  padding-right: 0;
}
.cols-3 {
  width: 33.333%;
  padding: 0 15px;
  float: left;
}
.cols-3:nth-child(3n + 1) {
  padding-left: 0;
  clear: left;
}
.cols-3:nth-child(3n + 3) {
  padding-right: 0;
}
.cols-2 {
  width: 50%;
  padding: 0 15px;
  float: left;
}
.cols-2:nth-child(2n + 1) {
  padding-left: 0;
  clear: left;
}
.cols-2:nth-child(2n + 2) {
  padding-right: 0;
}
.cols-1 {
  width: 100%;
  clear: both;
}
/*
 * GENERAL TEXT STYLES - headlines
 */
h1 {
  font-size: 180%;
  font-weight: 600;
  color: #2f2c2c;
  padding: 10px 0 15px;
  line-height: initial;
  font-family: 'Roboto', sans-serif;
  hyphens: auto;
  word-break: break-word;
}
h2 {
  font-size: 160%;
  font-weight: 400;
  color: #e7590b;
  padding: 10px 0 5px;
  line-height: initial;
  font-family: 'Roboto', sans-serif;
  hyphens: auto;
  word-break: break-word;
}
h3 {
  color: #e7590b;
  font-weight: 600;
  font-size: 120%;
  padding: 5px 0;
  line-height: initial;
  font-family: 'Roboto', sans-serif;
  hyphens: auto;
  word-break: break-word;
}
h4 {
  color: #e7590b;
  font-weight: 400;
  font-size: 90%;
  padding: 5px 0 0;
  line-height: initial;
}
h5 {
  color: #e7590b;
  font-weight: 400;
  font-size: 90%;
  padding: 5px 0 0;
  line-height: initial;
}
/*
 * GENERAL TEXT STYLES - abstracts
 */
p {
  padding: 0 0 10px;
  line-height: 135%;
}
p.small-text {
  width: 50%;
  margin: 0 auto;
}
p.medium-text {
  width: 75%;
  margin: 0 auto;
}
a {
  color: #2f2c2c;
  text-decoration: underline;
  outline: none;
}
a:hover {
  color: #e7590b;
  text-decoration: none;
}
a:active,
a:focus {
  outline: none;
}
.disabled,
a.disabled {
  text-decoration: line-through !important;
}
a[href^="tel"]:link,
a[href^="tel"]:visited,
a[href^="tel"]:hover {
  text-decoration: none;
  color: #696969;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.justify {
  text-align: justify;
}
.floatleft,
.float-left {
  float: left;
}
.floatright,
.float-right {
  float: right;
}
.clearboth,
.clear-both {
  clear: both;
}
.clearleft,
.clear-left {
  clear: both;
}
.clearright,
.clear-right {
  clear: both;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.small {
  font-size: 80%;
}
.smaller {
  font-size: 70%;
}
.large {
  font-size: 120%;
}
.larger {
  font-size: 140%;
}
.honey,
.screenreader {
  position: absolute;
  left: -99999px;
}
.line-through {
  text-decoration: line-through;
}
.underline {
  text-decoration: underline;
}
.inline,
.display-inline {
  display: inline;
}
.inlineblock,
.inline-block,
.display-inlineblock,
.display-inline-block {
  display: inline-block;
}
.block,
.display-block {
  display: block;
}
.hidden {
  display: none;
}
.text-small {
  font-size: calc(100% - 10%) !important;
}
.text-large {
  font-size: calc(100% + 20%) !important;
}
.text-larger {
  font-size: calc(100% + 40%) !important;
}
.space-top-small {
  padding-top: 15px !important;
}
.space-bottom-small {
  padding-bottom: 15px !important;
}
.space-top-medium {
  padding-top: calc(15px * 2) !important;
}
.space-bottom-medium {
  padding-bottom: calc(15px * 2) !important;
}
.space-top-large {
  padding-top: calc(15px * 3) !important;
}
.space-bottom-large {
  padding-bottom: calc(15px * 3) !important;
}
.space-arround {
  padding-top: calc(15px * 2) !important;
  padding-bottom: calc(15px * 2) !important;
}
.margin-top-small {
  margin-top: 15px !important;
}
.margin-bottom-small {
  margin-bottom: 15px !important;
}
.margin-top-medium {
  margin-top: calc(15px * 2) !important;
}
.margin-bottom-medium {
  margin-bottom: calc(15px * 2) !important;
}
.margin-top-large {
  margin-top: calc(15px * 3) !important;
}
.margin-bottom-large {
  margin-bottom: calc(15px * 3) !important;
}
.toggle-btn {
  cursor: pointer;
}
.round-tiny {
  border-radius: 3px;
}
.round-small {
  border-radius: 5px;
}
.round-medium {
  border-radius: 10px;
}
.round-large {
  border-radius: 15px;
}
.round-full {
  border-radius: 50%;
}
.absolute-fullsize {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
/*
 * GENERAL TEXT STYLES - tables
 */
table {
  border: none;
}
table td,
table th {
  vertical-align: top;
}
table td,
table th {
  padding: 3px;
  border: none;
  text-align: left;
}
table td.vmiddle,
table th.vmiddle {
  vertical-align: middle;
}
table td.vbottom,
table th.vbottom {
  vertical-align: bottom;
}
table td.no-wrap,
table th.no-wrap {
  white-space: nowrap;
}
.table {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.table .trow {
  display: table-row;
  width: 100%;
}
.table .trow .tcell {
  display: table-cell;
  vertical-align: top;
}
.table .trow .tcell.vmiddle {
  vertical-align: middle;
}
.table .trow .tcell.vbottom {
  vertical-align: bottom;
}
.table .trow .tcell.no-wrap {
  white-space: no-wrap;
}
.tcell {
  display: table-cell;
  vertical-align: top;
}
.tcell.vmiddle {
  vertical-align: middle;
}
.tcell.vbottom {
  vertical-align: bottom;
}
.tcell.no-wrap {
  white-space: no-wrap;
}
/*
 * GENERAL TEXT STYLES - lists
 */
ul.bullet,
ul.square,
ul.bar,
ul.check,
ul.tags {
  margin: 0 0 0 20px;
}
ul.bullet > li,
ul.square > li,
ul.bar > li,
ul.check > li,
ul.tags > li {
  list-style: none;
}
ul.bullet > li:before,
ul.square > li:before,
ul.bar > li:before,
ul.check > li:before,
ul.tags > li:before {
  display: inline-block;
  margin-left: -30px;
  width: 30px;
  text-align: center;
  color: #e7590b;
}
ul.bullet > li::before {
  content: "\2022";
}
ul.square > li::before {
  content: "\25A0";
}
ul.bar > li::before {
  content: "-";
  font-size: 150%;
  font-weight: 700;
}
ul.check > li::before {
  content: "\f00c";
  font-family: FontAwesome;
}
ul.tags > li::before {
  content: "\f02b";
  font-family: FontAwesome;
}
/*
 * TRANSITIONS AND SHADOWS
 */
.transitions,
.main-navigation span.nav-item-wrap,
.main-navigation a,
ul.pagination > li a {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.transition-opacity {
  -moz-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  -ms-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.transition-height {
  -webkit-transition: height 0.3s ease-in;
  -moz-transition: height 0.3s ease-in;
  -o-transition: height 0.3s ease-in;
  -ms-transition: height 0.3s ease-in;
  transition: height 0.3s ease-in;
}
.box-shadow {
  -webkit-box-shadow: 2px 2px 2px #000000;
  -moz-box-shadow: 2px 2px 2px #000000;
  box-shadow: 2px 2px 2px #000000;
}
/**************************************
 *
 * 02) NAVIGATIONS
 *
 **************************************/
/*
 * HORIZONTAL MAIN NAVIGATION
 */
.main-navigation {
  list-style: none;
}
.main-navigation li {
  position: relative;
  list-style: none;
}
.main-navigation a {
  text-decoration: none;
}
@media only screen and (min-width: 1025px) {
  .main-navigation {
    /* Root Level */
  }
  .main-navigation span.nav-item-wrap {
    display: block;
  }
  .main-navigation.level-0 > li.with-dropdown > span.nav-item-wrap > a {
    padding: 0 0 0 10px;
  }
  .main-navigation.level-0 > li.with-dropdown span.dropdown-indicator:before {
    content: '\f107';
    font-family: fontAwesome;
  }
  .main-navigation > li {
    float: left;
    /* first level */
  }
  .main-navigation > li > span.nav-item-wrap {
    background: #ffffff;
  }
  .main-navigation > li > span.nav-item-wrap > span,
  .main-navigation > li > span.nav-item-wrap a {
    color: #2f2c2c;
    font-size: 105%;
    display: inline-block;
    padding: 0 10px;
  }
  .main-navigation > li > span.nav-item-wrap > span:hover,
  .main-navigation > li > span.nav-item-wrap a:hover {
    color: #ffffff;
  }
  .main-navigation > li > span.nav-item-wrap > span.dropdown-indicator {
    padding: 0 10px 0 0;
    color: #2f2c2c;
  }
  .main-navigation > li:hover > span.nav-item-wrap {
    background: #2f2c2c;
  }
  .main-navigation > li:hover > span.nav-item-wrap a span {
    color: #ffffff;
  }
  .main-navigation > li:hover .dropdown-indicator.level-0 {
    color: #ffffff;
  }
  .main-navigation > li:hover ul.level-1 {
    height: 500px;
  }
  .main-navigation > li:hover ul.level-1:hover {
    overflow: visible;
  }
  .main-navigation > li.active-item > span.nav-item-wrap {
    background: #2f2c2c;
  }
  .main-navigation > li.active-item .dropdown-indicator.level-0 {
    color: #ffffff;
  }
  .main-navigation > li.active-item > span.nav-item-wrap.level-0 a {
    color: #ffffff;
  }
  .main-navigation > li:last-child ul.level-1 {
    right: 0;
    left: inherit;
  }
  .main-navigation > li ul {
    /* Second Level */
  }
  .main-navigation > li ul > li:nth-child(n+2) {
    border-top: 1px solid #ffffff;
  }
  .main-navigation > li ul.level-1 {
    position: absolute;
    width: 250px;
    height: 0;
    left: 0;
    overflow: hidden;
    z-index: 100;
    -webkit-transition: height 0.3s ease-in;
    -moz-transition: height 0.3s ease-in;
    -o-transition: height 0.3s ease-in;
    -ms-transition: height 0.3s ease-in;
    transition: height 0.3s ease-in;
  }
  .main-navigation > li ul.level-1 > li {
    overflow: hidden;
  }
  .main-navigation > li ul.level-1 > li.with-dropdown span.dropdown-indicator {
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    padding: 10px;
    text-align: center;
    line-height: initial;
    color: #ffffff;
  }
  .main-navigation > li ul.level-1 > li.with-dropdown span.dropdown-indicator:before {
    content: '\f054';
    font-family: fontAwesome;
  }
  .main-navigation > li ul.level-1 > li:hover {
    overflow: visible;
  }
  .main-navigation > li ul.level-1 > li:hover > span.nav-item-wrap a {
    background: #e7590b;
  }
  .main-navigation > li ul.level-1 > li:hover > span.nav-item-wrap a span {
    color: #ffffff;
  }
  .main-navigation > li ul.level-1 > li:hover .level-2 {
    opacity: 1;
  }
  .main-navigation > li ul.level-1 a {
    padding: 10px;
    display: block;
    background: #2f2c2c;
    color: #ffffff;
  }
  .main-navigation > li ul.level-2 {
    width: 100%;
    position: absolute;
    left: 250px;
    top: 0px;
    opacity: 0;
  }
  .main-navigation > li ul.level-2 li > span.nav-item-wrap a {
    background: #e7590b;
    color: #ffffff;
  }
  .main-navigation > li ul.level-2 li:hover > span.nav-item-wrap a {
    background: #e4e4e4;
  }
  .main-navigation > li:nth-last-child(2) ul.level-2,
  .main-navigation > li:last-child ul.level-2 {
    left: -250px;
  }
}
@media only screen and (max-width: 1024px) {
  .main-navigation.level-0 li.with-dropdown span.dropdown-indicator:before {
    content: '\f107';
    font-family: fontAwesome;
  }
  .main-navigation.level-0 li.with-dropdown span.dropdown-indicator.open:before {
    content: '\f106';
    font-family: fontAwesome;
  }
}
/*
 * MICRO NAVIGATION
 */
#microNavi {
  overflow: hidden;
  padding: 15px;
  list-style: none;
}
#microNavi li {
  float: left;
}
#microNavi li a {
  color: #e7590b;
}
#microNavi li a:hover {
  color: #e4e4e4;
}
/*
 * FOOTER NAVIGATION
 */
footer#page-footer ul.navi.vertical > li {
  display: block;
}
footer#page-footer ul.navi.vertical > li:nth-child(n+2) {
  padding-top: 3px;
}
footer#page-footer ul.navi.vertical > li a {
  display: block;
}
/*
 * ASIDE NAVIGATION
 */
aside > ul {
  font-size: 100%;
}
aside ul {
  list-style: none;
  margin: 0 0 20px;
}
aside ul.navi li {
  display: block;
  border-top: solid 1px #2f2c2c;
}
aside ul.navi li > a {
  display: block;
  margin: 10px 0px;
  font-weight: 400;
  color: #696969;
}
aside ul.navi li:first-child {
  border-top: none;
}
aside ul.navi li:hover {
  color: #2f2c2c;
  text-decoration: none;
}
aside ul.navi li:hover a {
  color: #2f2c2c;
  text-decoration: none;
}
aside ul.navi li.activeItem {
  color: #2f2c2c;
  text-decoration: none;
}
aside ul.navi li.activeItem a {
  color: #2f2c2c;
  text-decoration: none;
  font-weight: 700;
}
aside ul.navi .navi.depth-2 {
  width: 95%;
  margin: 0 0 2% 5%;
}
aside ul.navi li.level-2 {
  border-top: dotted 1px #e7590b;
}
aside ul.navi li.level-2:first-child {
  border-top: none;
}
aside ul.navi li.level-2 .navi {
  padding: 10px;
  font-weight: 400;
  color: #000000;
}
aside ul.navi li.level-2 .navi:hover {
  color: #000000;
}
aside ul.navi li.level-2.activeItem .navi {
  font-weight: 700;
}
/*
 * PAGINATION
 */
nav.page-pagination {
  clear: both;
  padding: 50px 0 25px;
}
ul.pagination {
  display: block;
  overflow: hidden;
  list-style: none;
}
ul.pagination > li {
  display: inline-block;
  padding: 0;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  text-align: center;
  line-height: 40px;
  border: solid 1px #2f2c2c;
  color: #ffffff;
  overflow: hidden;
  background: #2f2c2c;
}
ul.pagination > li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}
ul.pagination > li a:hover {
  background: #ffffff;
  color: #2f2c2c;
}
ul.pagination > li.active-page {
  background: #ffffff;
  color: #2f2c2c;
}
ul.pagination > li.active-page a:hover {
  background: #ffffff;
  color: #2f2c2c;
}
/*
 * SINGLE PAGE CONTENT NAVIGATION
 */
.nav-pageview {
  list-style: none;
  overflow: hidden;
  margin-bottom: 30px;
}
.nav-pageview li {
  float: left;
  width: 33.333%;
}
.nav-pageview a {
  padding: 0 5px;
  color: #333333;
  font-weight: 600;
  text-decoration: none;
}
.nav-pageview a:hover {
  color: #000000;
  text-decoration: none;
}
.nav-pageview .center a {
  padding: 10px 15px;
}
/*
 * LANGUAGE NAVIGATION
 */
#langList {
  list-style: none;
  overflow: hidden;
  position: absolute;
  right: 5px;
  top: 5px;
}
#langList > li {
  float: left;
  overflow: hidden;
}
#langList img {
  display: block;
  overflow: hidden;
  padding-left: 3px;
}
/*
 * SCROLL TO TOP BUTTON
 */
a#scrollToTop {
  z-index: 5000;
  position: fixed;
  right: 55px;
  bottom: 75px;
  padding: 10px;
  display: inline-block;
  background: rgba(47, 44, 44, 0.6);
  border: solid 1px #ffffff;
  color: #ffffff;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
a#scrollToTop:hover {
  background: #2f2c2c;
}
/*
 * INFINITE LODING
 */
.hiddenData {
  opacity: 0;
}
#load-data {
  margin-top: 30px;
}
#load-data-button {
  background: #2f2c2c;
  color: #ffffff;
  width: 100%;
  padding: 30px 0px;
  margin-bottom: 15px;
  text-align: center;
  cursor: pointer;
  border: dotted 1px #ffffff;
}
#load-data-button:hover {
  background: #ffffff;
  color: #2f2c2c;
}
/**************************************
 *
 * 03) CONTENT CSS
 *
 **************************************/
/* TEXT BLOCK */
.module-text ul:not(.cols):not(.grid-view),
.simpletext ul:not(.cols):not(.grid-view),
.module-text ol:not(.cols):not(.grid-view),
.simpletext ol:not(.cols):not(.grid-view) {
  margin: 15px 0 15px 30px;
}
.module-text ul:not(.cols):not(.grid-view) > li,
.simpletext ul:not(.cols):not(.grid-view) > li,
.module-text ol:not(.cols):not(.grid-view) > li,
.simpletext ol:not(.cols):not(.grid-view) > li {
  padding: 0;
}
.module-text ul:not(.cols):not(.grid-view) > li:nth-child(n+2),
.simpletext ul:not(.cols):not(.grid-view) > li:nth-child(n+2),
.module-text ol:not(.cols):not(.grid-view) > li:nth-child(n+2),
.simpletext ol:not(.cols):not(.grid-view) > li:nth-child(n+2) {
  padding-top: 5px;
}
.module-text ul > li,
.simpletext ul > li,
.module-text ol > li,
.simpletext ol > li {
  padding: 0 15px;
  font-size: 100%;
}
.module-text ul > li p,
.simpletext ul > li p,
.module-text ol > li p,
.simpletext ol > li p {
  padding: 0;
}
.content-text ul.cols {
  margin: 0 -15px 0;
}
.module-text .map_canvas img,
.tabContainer .map_canvas img,
.module-text #map_canvas img,
.tabContainer #map_canvas img {
  margin: 0px;
  border: none;
  -webkit-box-shadow: 0 0 0px #000;
  -moz-box-shadow: 0 0 0px #000;
  box-shadow: 0 0 0px #000;
}
/*
 * PAGE MAIN IMAGE
 */
#page-image {
  position: relative;
  height: 1px;
  width: 100%;
  padding-bottom: 30%;
}
#page-image picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#page-image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-image.headline-top .image-content,
#page-image.headline-middle .image-content,
#page-image.headline-bottom .image-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page-image.headline-top .image-content .image-content-title,
#page-image.headline-middle .image-content .image-content-title,
#page-image.headline-bottom .image-content .image-content-title,
#page-image.headline-top .image-content .image-content-text,
#page-image.headline-middle .image-content .image-content-text,
#page-image.headline-bottom .image-content .image-content-text {
  display: grid;
  text-align: center;
}
#page-image.headline-top .image-content {
  align-items: start;
}
#page-image.headline-middle .image-content {
  align-items: center;
}
#page-image.headline-bottom .image-content {
  align-items: end;
}
#page-image.headline-left .image-content {
  justify-content: left;
}
#page-image.headline-center .image-content {
  justify-content: center;
}
#page-image.headline-right .image-content {
  justify-content: right;
}
.singleview #page-main article.content {
  padding: 50px 0;
}
.singleview #page-main article.content header.content-header {
  padding-bottom: 50px;
}
.singleview #page-main article.content main.content-main section.content-section {
  margin-bottom: 15px;
}
.singleview #page-main article.content main.content-main aside.content-aside {
  margin-bottom: 30px;
}
.singleview #page-main article.content main.content-main aside.content-aside .content-aside-image {
  margin-bottom: 30px;
}
.singleview #page-main article.content main.content-main aside.content-aside .content-aside-image img {
  width: 100%;
  height: auto;
  display: block;
}
.singleview #page-main article.content main.content-main aside.content-aside .content-aside-info {
  list-style: none;
  margin-bottom: 30px;
  font-size: 90%;
}
.singleview #page-main article.content main.content-main aside.content-aside .content-aside-info > li:nth-child(n+2) {
  padding-top: 5px;
  margin-top: 5px;
  border-top: dotted 1px #2f2c2c;
}
.singleview #page-main article.content main.content-main.aside-right:not(.aside-narrow) section.content-section,
.singleview #page-main article.content main.content-main.aside-left:not(.aside-narrow) section.content-section,
.singleview #page-main article.content main.content-main.aside-right:not(.aside-wide) section.content-section,
.singleview #page-main article.content main.content-main.aside-left:not(.aside-wide) section.content-section {
  width: calc(100% -  400px);
}
.singleview #page-main article.content main.content-main.aside-right:not(.aside-narrow) aside.content-aside,
.singleview #page-main article.content main.content-main.aside-left:not(.aside-narrow) aside.content-aside,
.singleview #page-main article.content main.content-main.aside-right:not(.aside-wide) aside.content-aside,
.singleview #page-main article.content main.content-main.aside-left:not(.aside-wide) aside.content-aside {
  width: 400px;
}
.singleview #page-main article.content main.content-main.aside-right.aside-narrow section.content-section,
.singleview #page-main article.content main.content-main.aside-left.aside-narrow section.content-section {
  width: calc(100% -  300px);
}
.singleview #page-main article.content main.content-main.aside-right.aside-narrow aside.content-aside,
.singleview #page-main article.content main.content-main.aside-left.aside-narrow aside.content-aside {
  width: 300px;
}
.singleview #page-main article.content main.content-main.aside-right.aside-wide section.content-section,
.singleview #page-main article.content main.content-main.aside-left.aside-wide section.content-section {
  width: calc(100% -  500px);
}
.singleview #page-main article.content main.content-main.aside-right.aside-wide aside.content-aside,
.singleview #page-main article.content main.content-main.aside-left.aside-wide aside.content-aside {
  width: 500px;
}
.singleview #page-main article.content main.content-main.aside-right section.content-section {
  width: calc(100% -  400px);
  padding-right: 15px;
  float: left;
}
.singleview #page-main article.content main.content-main.aside-right aside.content-aside {
  width: 400px;
  float: right;
  padding-left: 30px;
}
.singleview #page-main article.content main.content-main.aside-left section.content-section {
  width: calc(100% -  400px);
  padding-left: 15px;
  float: right;
}
.singleview #page-main article.content main.content-main.aside-left aside.content-aside {
  width: 400px;
  float: left;
  padding-right: 30px;
}
.singleview #page-main article.content footer.content-footer {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .singleview #page-main article.content main.content-main.aside-right section.content-section,
  .singleview #page-main article.content main.content-main.aside-left section.content-section,
  .singleview #page-main article.content main.content-main.aside-right aside.content-aside,
  .singleview #page-main article.content main.content-main.aside-left aside.content-aside {
    width: 100% !important;
    padding-right: 0;
    padding-left: 0;
    float: none;
  }
}
/*
 * FORMS
 */
.default-field {
  overflow: hidden;
  padding-bottom: 10px;
}
.default-field input,
.default-field textarea,
.default-field select {
  width: 100%;
  border: solid 1px #333333;
  padding: 5px;
  margin: 5px 0px;
}
.default-field input:focus,
.default-field textarea:focus,
.default-field select:focus {
  border: solid 1px #000000;
  outline: none;
}
.default-field textarea {
  height: 200px;
  font-family: 'Roboto', sans-serif;
  font-size: 100%;
  color: #696969;
}
.default-field input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  margin-right: 10px;
}
.default-field input:not([type="radio"]):not([type="checkbox"]) {
  height: 40px;
}
.default-field.multi-radio input.radio {
  width: auto;
  display: inline-block;
}
.default-field.multi-radio label {
  display: inline-block;
  padding-left: 5px;
}
.default-field input.field-error,
.default-field textarea.field-error {
  border: solid 1px #c02e2e;
  margin-bottom: 0;
}
.default-field label,
.default-field div.labelFake {
  padding: 5px 0;
}
.default-field label.noFloat,
.default-field div.labelFake.noFloat {
  float: none;
}
.default-field div.field-error {
  width: 100%;
  clear: left;
  color: #ffffff;
  background: #c02e2e;
  font-size: calc(100% - 10%);
  padding: 5px;
  margin-bottom: 5px;
  line-height: 120%;
  display: inline-block;
}
.default-field .input-wrapper {
  overflow: hidden;
}
.default-field .input-wrapper span.small {
  line-height: 120%;
  display: inline-block;
}
.default-field.password .input-wrapper {
  position: relative;
}
.default-field.password .input-wrapper span.toggle-passwordfield {
  position: absolute;
  top: 0px;
  right: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  color: #696969;
  cursor: pointer;
}
.default-field.password span#generate-password {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
  border: solid 1px #e6e6e6;
  margin: 0 5px;
}
.default-field.password span#generate-password:hover {
  background: #e6e6e6;
}
.default-field.multi .itemWrap {
  display: inline-block;
  float: left;
  padding-right: 15px;
}
.default-field.multi label.noFloat {
  float: none;
  display: inline-block;
  width: auto;
  padding: 2px 0;
}
.default-field.multi input {
  width: auto;
  float: left;
  display: inline-block;
  margin-right: 5px;
}
.default-field.multi input-wrapper {
  margin: 0 0 5px;
}
.default-field.leftCB {
  margin: 5px 0;
}
.default-field.hidden {
  position: absolute;
  left: -9999px;
}
.default-field.select:focus {
  border: 1px solid #2f2c2c;
}
.default-field.select .input-wrapper {
  position: relative;
}
.default-field.select .input-wrapper select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  background-image: none;
  height: 40px;
}
.default-field.select .input-wrapper select option {
  border-radius: 0px;
  width: 100%;
}
.default-field.select .input-wrapper:after {
  content: '\f078';
  font: normal normal normal 12px/0 FontAwesome;
  color: #000;
  right: 10px;
  top: 10px;
  height: 15px;
  padding: 15px 0px 0px 8px;
  border-left: 1px solid #000;
  position: absolute;
  pointer-events: none;
}
.default-field.select .input-wrapper select::-ms-expand {
  display: none;
}
.modern-field {
  overflow: hidden;
  padding-bottom: 10px;
}
.modern-field.checkbox .input-wrapper {
  position: relative;
  display: inline-block;
}
.modern-field.checkbox .input-wrapper input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.modern-field.checkbox .input-wrapper input[type="checkbox"]:checked + .slider {
  background-color: #2196F3;
}
.modern-field.checkbox .input-wrapper input[type="checkbox"]:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.modern-field.checkbox .input-wrapper input[type="checkbox"]:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.modern-field.checkbox .input-wrapper .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  width: 50px;
  height: 25px;
}
.modern-field.checkbox .input-wrapper .slider.round {
  border-radius: 34px;
}
.modern-field.checkbox .input-wrapper .slider.round:before {
  border-radius: 50%;
}
.modern-field.checkbox .input-wrapper .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.modern-field.checkbox .input-wrapper label {
  padding-left: 65px;
  line-height: 25px;
  position: relative;
  cursor: pointer;
}
.modern-field.multi-radio ul > li {
  padding: 5px 0;
}
.modern-field.multi-radio ul > li input.radio {
  position: relative;
  margin: 0 15px 0 0 ;
  cursor: pointer;
}
.modern-field.multi-radio ul > li input.radio:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  content: "";
  position: absolute;
  top: 0;
  left: 0.125rem;
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  background: #16a085;
  border-radius: 50%;
}
.modern-field.multi-radio ul > li input.radio:checked:before {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.modern-field.multi-radio ul > li input.radio:after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.125rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 50%;
}
.modern-field.select {
  padding: 10px;
}
.modern-field.select .input-wrapper {
  position: relative;
}
.modern-field.select .input-wrapper select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  height: 40px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #2f2c2c;
  padding: 5px;
  margin: 5px 0px;
}
.modern-field.select .input-wrapper select option {
  border-radius: 0px;
  width: 100%;
}
.modern-field.select .input-wrapper select:focus {
  outline: none;
}
.modern-field.select .input-wrapper select::-ms-expand {
  display: none;
}
.modern-field.select .input-wrapper:after {
  content: '\f078';
  font: normal normal normal 12px/0 FontAwesome;
  color: #2f2c2c;
  right: 10px;
  top: 10px;
  height: 15px;
  padding: 15px 0px 0px 8px;
  position: absolute;
  pointer-events: none;
}
label.cbFloat {
  width: 200px;
  float: left;
}
.checkbox.label-right input,
.radio.label-right input {
  float: left;
  width: 20px;
}
.checkbox.label-right label,
.radio.label-right label {
  width: calc(100% - 30px);
  float: right;
}
.default-field.label-hide label {
  position: absolute;
  left: -9999999px;
}
fieldset.form-set {
  overflow: hidden;
  padding: 10px;
  border: solid 1px #e9e9e9;
}
input.button,
button.button {
  border: 1px solid #2f2c2c;
  color: #ffffff;
  background: #2f2c2c;
  padding: 10px 25px;
  margin: 15px 0 0 0;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
input.button:hover,
button.button:hover {
  background: #ffffff;
  color: #2f2c2c;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
input.button span,
button.button span {
  position: relative;
}
input.button span sup,
button.button span sup {
  position: absolute;
  top: -4px;
}
input.button.disabled,
button.button.disabled {
  background: #f2f2f2;
  color: #ccc;
  border: solid 1px #ccc;
  text-decoration: none !important;
  cursor: not-allowed;
}
.form-wrap {
  overflow: hidden;
}
.form-wrap .form-block {
  overflow: hidden;
}
.form-wrap .form-block .form-icon {
  width: 80px;
  float: left;
  text-align: center;
  font-size: 200%;
  padding-top: 10px;
}
.form-wrap .form-block .form-content {
  width: calc(100% - 80px);
  float: right;
  border-left: solid 1px #ccc;
  padding-left: 35px;
}
.form-wrap .form-block .form-content h2 span.small {
  display: block;
  font-size: 60%;
  color: #ccc;
}
.form-wrap .form-block .form-content .cols > li {
  margin-bottom: 0;
}
.form-wrap .form-block .table .trow .tcell.info {
  width: calc(100% - 30px);
}
.form-wrap .form-block .table .trow .tcell.info label {
  font-weight: 600;
}
.form-wrap .form-block .table .trow .tcell.info .info-text {
  font-style: italic;
  font-size: 90%;
}
.form-wrap .form-block .table .trow .tcell.action {
  width: 30px;
  text-align: center;
  vertical-align: middle;
}
.form-wrap .form-block ul.option-list {
  padding: 15px 0;
}
.form-wrap .form-block ul.option-list > li:nth-child(n+2) {
  padding-top: 10px;
  margin-top: 10px;
  border-top: dotted 1px #ccc;
}
/* address form block */
ul.form-block-address {
  width: calc(100% +  15px * 2);
  margin: 0 -15px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
ul.form-block-address > li {
  padding: 0 15px;
}
ul.form-block-address > li.address-street,
ul.form-block-address > li.address-locality {
  width: calc(100% - 200px);
}
ul.form-block-address > li.address-number,
ul.form-block-address > li.address-zip {
  width: 200px;
}
/* RANGE SLIDER WITH TWO HANDLES */
[slider] {
  position: relative;
  height: 14px;
  border-radius: 10px;
  text-align: left;
  margin: 45px 0 10px 0;
}
[slider] > div {
  position: absolute;
  left: 13px;
  right: 15px;
  height: 14px;
}
[slider] > div > [inverse-left] {
  position: absolute;
  left: 0;
  height: 14px;
  border-radius: 10px;
  background-color: #f2f2f2;
  margin: 0 7px;
}
[slider] > div > [inverse-right] {
  position: absolute;
  right: 0;
  height: 14px;
  border-radius: 10px;
  background-color: #f2f2f2;
  margin: 0 7px;
}
[slider] > div > [range] {
  position: absolute;
  left: 0;
  height: 14px;
  border-radius: 14px;
  background-color: #2f2c2c;
}
[slider] > div > [thumb] {
  position: absolute;
  top: -7px;
  z-index: 2;
  height: 28px;
  width: 28px;
  text-align: left;
  margin-left: -11px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  background-color: #e4e4e4;
  border-radius: 50%;
  outline: none;
}
[slider] > input[type=range] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 3;
  height: 14px;
  top: -2px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
[slider] [sign] {
  opacity: 1;
  position: absolute;
  margin-left: -11px;
  top: -39px;
  z-index: 3;
  background-color: #2f2c2c;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
[slider] [sign]:after {
  position: absolute;
  content: '';
  left: 0;
  border-radius: 16px;
  top: 19px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top-width: 16px;
  border-top-style: solid;
  border-top-color: #2f2c2c;
}
[slider] [sign] > span {
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
}
[slider]:hover > div > [sign] {
  opacity: 1;
}
div[slider] > input[type=range]::-ms-track {
  -webkit-appearance: none;
  background: transparent;
  color: transparent;
}
div[slider] > input[type=range]::-moz-range-track {
  -moz-appearance: none;
  background: transparent;
  color: transparent;
}
div[slider] > input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
  border: transparent;
}
div[slider] > input[type=range]:focus {
  outline: none;
}
div[slider] > input[type=range]::-ms-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}
div[slider] > input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}
div[slider] > input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
  background: red;
  -webkit-appearance: none;
}
div[slider] > input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0 none;
}
div[slider] > input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0 none;
}
div[slider] > input[type=range]::-ms-tooltip {
  display: none;
}
/*
 * GENERAL VARIABLES
*/
/* COLORS */
/* background cld */
/* #f2f2f2 */
/* #000 */
/* Black */
/* Orange */
/* dunkler Untergrund (Footer, Topline, CTA, ..) */
/* FONT */
/* FONT-FAMILY */
/* Font-Size*/
/* Font-Weight */
/* Special Options */
/* WRAP */
/* SCROLL-TO-TOP */
/* Top-Line */
/*
 * NAVIGATION VARIABLES
 */
/* Main */
/* mobile */
/* mobile */
/* MOBILE */
/* STICKY */
/* PAGE-ASIDE */
/* SECTION / PAGE-CONTENT */
/* FOOTER */
/* Pagination */
/* Nav-Pageview */
/* Single-Content Navigation */
/* Header-Elements */
/* BREADCRUMBS */
/* SEARCH */
/*
 * COLS
 */
/* List-View */
/* Mixin - Grid */
/* Image Filter */
/* Heading */
/* Listelemnts */
/* NavSpacer */
/* Absolute Position */
/**************************************
 *
 * 04) CORE DESIGN
 *
 **************************************/
/*
 * BASIC HTML ELEMENTS
 */
header,
main,
footer,
aside,
section {
  display: block;
  position: relative;
  z-index: 1;
}
header {
  z-index: 2;
}
body:not(.blank):not(.divide).aside-left aside#page-aside,
body:not(.blank):not(.divide).aside-both aside#page-aside.left {
  float: left;
  padding-right: 15px;
}
body:not(.blank):not(.divide).aside-right aside#page-aside,
body:not(.blank):not(.divide).aside-both aside#page-aside.right {
  float: right;
  padding-left: 15px;
}
body:not(.blank):not(.divide).aside-left section#page-content {
  float: right;
  padding-left: 15px;
}
body:not(.blank):not(.divide).aside-right section#page-content {
  float: left;
  padding-right: 15px;
}
body:not(.blank):not(.divide).aside-both section#page-content {
  width: calc( 100% - 270px - 270px );
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}
.default:not(.divide) aside#page-aside {
  width: 270px;
  padding: calc(15px * 2) 0 calc(15px * 2) 0;
  float: right;
}
.default:not(.divide) section#page-content {
  width: calc(100% - 270px);
  float: left;
  padding: calc(15px * 2) 0 calc(15px * 2) 0;
}
.divide #module-content {
  width: 50%;
  padding: calc(15px * 2) 0 calc(15px * 2) 0;
  float: right;
}
.divide #page-content {
  width: calc(100% - 50%);
  float: left;
  padding: calc(15px * 2) 0 calc(15px * 2) 0;
}
.divide.module-narrow #page-content {
  width: calc(100% -  40%);
}
.divide.module-narrow #module-content {
  width: 40%;
}
.divide.module-wide #page-content {
  width: calc(100% -  60%);
}
.divide.module-wide #module-content {
  width: 60%;
}
.divide.module-right #page-content {
  padding-right: 15px;
  padding-left: 0;
  float: left;
}
.divide.module-right #module-content {
  float: right;
  padding-left: 30px;
  padding-right: 0;
}
.divide.module-left #page-content {
  padding-left: 15px;
  padding-right: 0;
  float: right;
}
.divide.module-left #module-content {
  float: left;
  padding-right: 30px;
  padding-left: 0;
}
.section-aside {
  width: 270px;
  padding: calc(15px * 2) 0 calc(15px * 2) 0;
  float: right;
}
.section-aside h2.page-title {
  padding-top: 0px;
}
#page-footer {
  padding: 5px 0;
  overflow: hidden;
  clear: both;
  background: #2f2c2c;
  color: #ffffff;
  font-size: 100%;
}
#page-footer a {
  color: #ffffff;
  text-decoration: none;
}
#page-footer a:hover {
  color: #e7590b;
  text-decoration: none;
}
/*
 * PAGE ROW
 */
.page-row,
.page-row-extended {
  width: 100%;
  display: table-row;
}
.page-row-extended {
  height: 100%;
}
/*
 * BREADCRUMBS
 */
#page-breadcrumbs {
  overflow: hidden;
  clear: both;
}
#page-breadcrumbs #breadcrumb {
  list-style: none;
  overflow: hidden;
  padding: 5px 0;
}
#page-breadcrumbs #breadcrumb li {
  padding-right: 5px;
  display: block;
  float: left;
  list-style: none;
  position: relative;
  text-decoration: none;
  outline: none;
}
#page-breadcrumbs #breadcrumb li a {
  text-decoration: none;
  color: #333333;
}
#page-breadcrumbs #breadcrumb li a:hover {
  color: #e7590b;
}
/*
 * SOCIAL SHARING
 */
#sharePage {
  text-align: center;
  overflow: hidden;
  clear: both;
}
#social_share {
  list-style: none;
  overflow: hidden;
  width: 100%;
}
#social_share li {
  display: inline-block;
  height: 30px;
  margin-right: 10px;
  padding: 0 10px 0 0;
  overflow: hidden;
}
#social_share li:hover {
  -webkit-transition: background 0.3s ease-in;
  -moz-transition: background 0.3s ease-in;
  -o-transition: background 0.3s ease-in;
  -ms-transition: background 0.3s ease-in;
  transition: background 0.3s ease-in;
}
#social_share li:hover a {
  color: #ffffff;
}
#social_share a {
  font-weight: 300;
  text-decoration: none;
  line-height: 30px;
}
#social_share a > i {
  margin-right: 5px;
  text-align: center;
  width: 30px;
  line-height: 30px;
  color: #fff;
}
#fb_share > a > i {
  background: #3b5998;
}
#fb_share:hover {
  background: #3b5998;
}
#twitter_share > a > i {
  background: #2daae1;
}
#twitter_share:hover {
  background: #2daae1;
}
#xing_share > a > i {
  background: #006464;
}
#xing_share:hover {
  background: #006464;
}
#linkedin_share > a > i {
  background: #0073b1;
}
#linkedin_share:hover {
  background: #0073b1;
}
/*
 * CLICK LISTS
 */
.wrap-clicklist {
  max-width: inherit;
  width: 100%;
  margin: 0;
}
.wrap-clicklist .click-list.carousel .click-list-wrap {
  padding: 15px 20%;
  margin: 0;
  width: 100%;
  overflow: hidden;
}
.wrap-clicklist .click-list.carousel.innerElements ul.clickable > li {
  padding: 15px 0;
}
.wrap-clicklist .click-list.carousel.innerElements ul.clickable > li.nextElement {
  margin-left: -4% !important;
}
.wrap-clicklist .click-list.carousel.innerElements ul.clickable > li.prevElement {
  margin-left: 4% !important;
}
.wrap-clicklist .click-list.carousel.outerElements ul.clickable > li {
  padding: 15px calc(15px * 4);
}
.wrap-clicklist .click-list.carousel ul.clickable {
  overflow: visible !important;
}
.wrap-clicklist .click-list.carousel ul.clickable > li {
  height: 100% !important;
  padding: 15px calc(15px * 4);
  margin: 0 0 !important;
}
.wrap-clicklist .click-list.carousel ul.clickable > li:not(.currentElement) {
  opacity: .2;
  transform-origin: 0 0;
  transform: scaleX(0.7) scaleY(0.7);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.wrap-clicklist .click-list.carousel ul.clickable > li.currentElement {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  top: 0 !important;
}
.wrap-clicklist .click-list.carousel ul.clickable > li .card-item-wrap {
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  box-shadow: 1px 1px 3px #696969;
}
.wrap-clicklist .click-list.carousel ul.clickable > li .card-item-wrap .card-item-image {
  width: 100%;
}
.wrap-clicklist .click-list.carousel ul.clickable > li .card-item-wrap .card-item-content {
  width: 100%;
  padding: 30px;
}
.wrap-clicklist .click-list .click-list-wrap {
  width: calc(100% +  15px * 2);
  margin: 0 -15px;
  max-width: inherit;
  overflow: hidden;
}
.wrap-clicklist .click-list .click-list-wrap ul.clickable {
  overflow: hidden;
  list-style: none;
  width: 1000%;
  margin: 0;
  position: relative;
}
.wrap-clicklist .click-list .click-list-wrap ul.clickable > li {
  position: relative;
  background: transparent;
}
.wrap-clicklist .click-list .click-list-wrap ul.clickable > li > div.card-item-wrap {
  width: 100%;
  margin: 0;
}
.wrap-clicklist .click-list .click-paging {
  display: none;
  z-index: 5;
  font-size: 200%;
  background: transparent;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #2f2c2c;
  cursor: pointer;
}
.wrap-clicklist .click-list .click-paging.click-paging-prev {
  float: left;
}
.wrap-clicklist .click-list .click-paging.click-paging-next {
  float: right;
}
.wrap-clicklist .click-list .click-pagingsecond {
  opacity: 0;
}
.wrap-clicklist .click-list .click-paging.enabled {
  display: block;
}
.wrap-clicklist .click-list .click-paging span:not(.donotdisplay) {
  z-index: 2;
  position: relative;
}
.wrap-clicklist.buttons-bottom .click-list #prevBefore,
.wrap-clicklist.buttons-bottom .click-list #nextBeforeSecond {
  display: none;
}
.wrap-clicklist.buttons-bottom .click-list .click-buttons {
  text-align: right;
  height: 40px;
  line-height: 40px;
  position: relative;
}
.wrap-clicklist.buttons-bottom .click-list .click-buttons .click-list-link {
  display: inline;
  padding: 0px 15px;
  line-height: 40px;
  height: 40px;
}
.wrap-clicklist.click-buttons-before,
.wrap-clicklist.click-buttons-after {
  overflow: hidden;
}
.wrap-clicklist.click-buttons-before .click-buttons.after {
  display: none;
}
.wrap-clicklist.click-buttons-after .click-buttons.before,
.wrap-clicklist.click-buttons-aside .click-buttons.before {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .wrap-clicklist.click-buttons-aside #nextAfter,
  .wrap-clicklist.click-buttons-aside #prevAfterSecond {
    position: relative;
    top: initial;
    right: initial;
    bottom: initial;
    left: initial;
    float: none;
  }
  .wrap-clicklist.click-buttons-aside div#prevAfter {
    position: absolute;
    left: -55px;
    top: 50%;
  }
  .wrap-clicklist.click-buttons-aside div#nextAfter {
    position: absolute;
    right: -55px;
    top: 50%;
  }
}
#navigation-points {
  display: inline-block;
  list-style: none;
}
#navigation-points[data-feature="icons"] > li.active:before {
  content: "\f111";
  font-family: FontAwesome;
}
#navigation-points[data-feature="icons"] > li:before {
  content: "\f1db";
  font-family: FontAwesome;
}
#navigation-points > li {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0 5px;
}
/*
 * FE LOGIN
 */
.login-form,
.password-form {
  width: 100%;
}
.login-form .login,
.password-form .login {
  display: block;
  font-weight: 700;
  overflow: hidden;
  padding: 5px 0;
}
.login-form .login-form-list,
.password-form .login-form-list {
  list-style: none;
  margin: 0;
}
.login-form .inputlogin,
.password-form .inputlogin,
.login-form .submitBtn,
.password-form .submitBtn {
  width: 100%;
  padding: 5px;
  margin-bottom: 5px;
  border: 1px solid #333333;
}
.login-form .submitBtn,
.password-form .submitBtn {
  width: auto;
  background: #2f2c2c;
  color: #ffffff;
  font-weight: 700;
  margin-top: 10px;
  padding: 10px 30px;
}
.login-form .submitBtn:hover,
.password-form .submitBtn:hover {
  cursor: pointer;
  background: #ffffff;
}
.login main {
  min-height: auto;
}
/*
 * BLOCK SCREENS
 */
.lock-blockscreen,
.GMapLock {
  position: relative;
  width: 100%;
  height: 100%;
  display: table;
}
.blockscreen-overlay,
.GMLOverlay {
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #e4e4e4;
  display: table-row;
}
.blockscreen-overlay .blockscreen-content,
.GMLOverlay .blockscreen-content,
.blockscreen-overlay .GMLText,
.GMLOverlay .GMLText {
  width: 100%;
  height: 100%;
  padding: 15px;
  color: #333333;
  display: table-cell;
  vertical-align: middle;
}
.blockscreen-overlay .blockscreen-content .blockscreen-header,
.GMLOverlay .blockscreen-content .blockscreen-header,
.blockscreen-overlay .GMLText .blockscreen-header,
.GMLOverlay .GMLText .blockscreen-header,
.blockscreen-overlay .blockscreen-content .GMLHeader,
.GMLOverlay .blockscreen-content .GMLHeader,
.blockscreen-overlay .GMLText .GMLHeader,
.GMLOverlay .GMLText .GMLHeader {
  margin: 0;
  padding: 5px 15px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: #2f2c2c;
  color: #ffffff;
}
.blockscreen-overlay .blockscreen-content .blockscreen-hint,
.GMLOverlay .blockscreen-content .blockscreen-hint,
.blockscreen-overlay .GMLText .blockscreen-hint,
.GMLOverlay .GMLText .blockscreen-hint,
.blockscreen-overlay .blockscreen-content .SecureHint,
.GMLOverlay .blockscreen-content .SecureHint,
.blockscreen-overlay .GMLText .SecureHint,
.GMLOverlay .GMLText .SecureHint {
  margin: 25px 0 5px;
}
.blockscreen-overlay .blockscreen-content .blockscreen-hint > a,
.GMLOverlay .blockscreen-content .blockscreen-hint > a,
.blockscreen-overlay .GMLText .blockscreen-hint > a,
.GMLOverlay .GMLText .blockscreen-hint > a,
.blockscreen-overlay .blockscreen-content .SecureHint > a,
.GMLOverlay .blockscreen-content .SecureHint > a,
.blockscreen-overlay .GMLText .SecureHint > a,
.GMLOverlay .GMLText .SecureHint > a {
  color: #333333;
  text-decoration: underline;
}
.blockscreen-overlay .blockscreen-content .blockscreen-hint > a:hover,
.GMLOverlay .blockscreen-content .blockscreen-hint > a:hover,
.blockscreen-overlay .GMLText .blockscreen-hint > a:hover,
.GMLOverlay .GMLText .blockscreen-hint > a:hover,
.blockscreen-overlay .blockscreen-content .SecureHint > a:hover,
.GMLOverlay .blockscreen-content .SecureHint > a:hover,
.blockscreen-overlay .GMLText .SecureHint > a:hover,
.GMLOverlay .GMLText .SecureHint > a:hover {
  color: #000000;
  text-decoration: underline;
}
.blockscreen-overlay .blockscreen-content .blockscreen-button-wrap,
.GMLOverlay .blockscreen-content .blockscreen-button-wrap,
.blockscreen-overlay .GMLText .blockscreen-button-wrap,
.GMLOverlay .GMLText .blockscreen-button-wrap,
.blockscreen-overlay .blockscreen-content .SecureButtonText,
.GMLOverlay .blockscreen-content .SecureButtonText,
.blockscreen-overlay .GMLText .SecureButtonText,
.GMLOverlay .GMLText .SecureButtonText {
  width: calc(50% - 10px);
  margin: 15px 5px;
  float: left;
}
.blockscreen-overlay .blockscreen-content .blockscreen-button-wrap .blockscreen-button,
.GMLOverlay .blockscreen-content .blockscreen-button-wrap .blockscreen-button,
.blockscreen-overlay .GMLText .blockscreen-button-wrap .blockscreen-button,
.GMLOverlay .GMLText .blockscreen-button-wrap .blockscreen-button,
.blockscreen-overlay .blockscreen-content .SecureButtonText .blockscreen-button,
.GMLOverlay .blockscreen-content .SecureButtonText .blockscreen-button,
.blockscreen-overlay .GMLText .SecureButtonText .blockscreen-button,
.GMLOverlay .GMLText .SecureButtonText .blockscreen-button,
.blockscreen-overlay .blockscreen-content .blockscreen-button-wrap .secureBtn,
.GMLOverlay .blockscreen-content .blockscreen-button-wrap .secureBtn,
.blockscreen-overlay .GMLText .blockscreen-button-wrap .secureBtn,
.GMLOverlay .GMLText .blockscreen-button-wrap .secureBtn,
.blockscreen-overlay .blockscreen-content .SecureButtonText .secureBtn,
.GMLOverlay .blockscreen-content .SecureButtonText .secureBtn,
.blockscreen-overlay .GMLText .SecureButtonText .secureBtn,
.GMLOverlay .GMLText .SecureButtonText .secureBtn {
  padding: 5px 0;
  background: #e7590b;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}
.blockscreen-overlay .blockscreen-content .blockscreen-button-wrap .blockscreen-button:hover,
.GMLOverlay .blockscreen-content .blockscreen-button-wrap .blockscreen-button:hover,
.blockscreen-overlay .GMLText .blockscreen-button-wrap .blockscreen-button:hover,
.GMLOverlay .GMLText .blockscreen-button-wrap .blockscreen-button:hover,
.blockscreen-overlay .blockscreen-content .SecureButtonText .blockscreen-button:hover,
.GMLOverlay .blockscreen-content .SecureButtonText .blockscreen-button:hover,
.blockscreen-overlay .GMLText .SecureButtonText .blockscreen-button:hover,
.GMLOverlay .GMLText .SecureButtonText .blockscreen-button:hover,
.blockscreen-overlay .blockscreen-content .blockscreen-button-wrap .secureBtn:hover,
.GMLOverlay .blockscreen-content .blockscreen-button-wrap .secureBtn:hover,
.blockscreen-overlay .GMLText .blockscreen-button-wrap .secureBtn:hover,
.GMLOverlay .GMLText .blockscreen-button-wrap .secureBtn:hover,
.blockscreen-overlay .blockscreen-content .SecureButtonText .secureBtn:hover,
.GMLOverlay .blockscreen-content .SecureButtonText .secureBtn:hover,
.blockscreen-overlay .GMLText .SecureButtonText .secureBtn:hover,
.GMLOverlay .GMLText .SecureButtonText .secureBtn:hover {
  background: #2f2c2c;
  color: #ffffff;
}
.blockscreen-overlay .blockscreen-content .blockscreen-cookie-hint,
.GMLOverlay .blockscreen-content .blockscreen-cookie-hint,
.blockscreen-overlay .GMLText .blockscreen-cookie-hint,
.GMLOverlay .GMLText .blockscreen-cookie-hint,
.blockscreen-overlay .blockscreen-content .SecureHintCookie,
.GMLOverlay .blockscreen-content .SecureHintCookie,
.blockscreen-overlay .GMLText .SecureHintCookie,
.GMLOverlay .GMLText .SecureHintCookie {
  display: inline-block;
  padding: 5px 0;
  clear: both;
  font-size: 80%;
}
.blockscreen-image {
  position: unset;
}
.blockscreen-image-overlay {
  display: flex;
  flex-direction: column;
}
.blockscreen-image-overlay picture {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.blockscreen-image-overlay picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blockscreen-image-overlay .blockscreen-header {
  height: 30px;
  color: #ffffff;
  background: #2f2c2c;
  line-height: 30px;
  font-size: 105%;
}
.blockscreen-image-overlay .blockscreen-header i.fa {
  padding-right: 5px;
}
.blockscreen-image-overlay .blockscreen-content {
  background: #f2f2f2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  z-index: 5;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.blockscreen-image-overlay .blockscreen-content.active {
  opacity: 1;
  overflow-y: auto;
}
.blockscreen-image-overlay .blockscreen-content-action {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 215px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f2c2c;
  font-size: 165%;
  cursor: pointer;
  z-index: 15;
}
.blockscreen-image-overlay .blockscreen-content-action.hidden {
  display: none;
}
.blockscreen-image-overlay .blockscreen-content-action span.action-icon {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  display: inline-block;
  border-radius: 50%;
  border: solid 1px #2f2c2c;
  font-size: 40%;
  margin-right: 5px;
}
.blockscreen-image-overlay .blockscreen-content-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 45px;
  width: calc(100% - 45px);
  display: flex;
}
.blockscreen-image-overlay .blockscreen-content-buttons .blockscreen-button-wrap {
  font-size: 90%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f2c2c;
  width: 50%;
}
.blockscreen-image-overlay .blockscreen-content-buttons .blockscreen-button-wrap.consent-cookie {
  margin-right: 1px;
}
.blockscreen-image-overlay .blockscreen-content-buttons .blockscreen-button-wrap.consent-temp {
  margin-left: 1px;
}
.singleview .SecureButtonText,
.singleview .blockscreen-button {
  margin: 5px 0;
  width: 100%;
}
.singleview .secureBtn,
.singleview .blockscreen-button-wrap {
  width: 100%;
  margin: 0;
}
/*
 * ZOOM INDICATOR FOR LIGHTBOX IMAGES
 */
a.zoom-indicator {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
a.zoom-indicator span {
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 300%;
  text-shadow: 1px 1px 1px #333;
  text-align: center;
  opacity: 0.5;
}
a.zoom-indicator span i {
  margin: 0 auto;
}
a.zoom-indicator:hover span {
  opacity: 1;
  font-size: 400%;
}
/*
 * SCROLLBARS
 */
.scrollbar::-webkit-scrollbar-track {
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
  background-color: #fff;
}
.scrollbar::-webkit-scrollbar {
  width: 7px;
  background-color: #fff;
}
.scrollbar::-webkit-scrollbar-thumb {
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
  background-color: #2f2c2c;
}
/*
 * RESPONSIVE PLAYER
 */
.player-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0 !important;
  width: 100% !important;
  overflow: hidden;
}
.player-wrap.image-content.blocked {
  padding-bottom: calc(56.25% + 75px);
  position: relative;
}
.player-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*
 * DEFAULT WIDGET STYLES - TABLE OF CONTENTS
 */
/*
 * CONTACT WIDGET
 */
.widget-contact b span {
  display: block;
  text-transform: none;
  font-weight: 400;
}
.widget-contact .contact-address {
  padding: 5px 0;
}
.widget-contact .contact-address > span {
  display: block;
}
.widget-contact .contact-address > span > span:after {
  content: ' ';
}
.widget-contact ul.widget-contact-data {
  list-style: none;
}
.widget-contact ul.widget-contact-data > li:nth-child(n+2) {
  padding-top: 3px;
}
.widget-contact ul.widget-contact-data > li span.label {
  display: inline-block;
  width: 30px;
  padding-right: 5px;
  text-align: center;
}
.widget-contact ul.widget-contact-data > li span.text {
  display: inline-block;
  width: calc(100% - 30px);
}
.widget-contact a[href^="tel"]:link {
  color: #333333;
}
.widget-contact a[href^="tel"]:visited {
  color: #333333;
}
.widget-contact a[href^="tel"]:hover {
  color: #333333;
}
b.widget-contact-headline {
  display: block;
}
/*
 * CONTACT WIDGET - TOPLINE
 */
#page-topline {
  background: #2f2c2c;
  color: #ffffff;
  height: 30px;
  line-height: 30px;
}
#page-topline a {
  color: #ffffff;
  font-weight: 400;
}
#page-topline a:hover {
  color: #2f2c2c;
}
ul.topline-contact {
  list-style: none;
  overflow: hidden;
}
ul.topline-contact > li {
  display: inline-block;
  float: left;
  padding-right: 10px;
}
ul.topline-contact > li > i,
ul.topline-contact > li > a > i {
  padding-right: 5px;
}
ul.topline-contact > li ul.opening-list {
  list-style: none;
  display: inline;
}
ul.topline-contact > li ul.opening-list > li {
  display: inline-block;
  position: relative;
}
ul.topline-contact > li ul.opening-list > li:nth-child(n+2):before {
  content: '|';
  padding: 0 5px;
}
/*
 * SOCIAL LINKS
 */
ul.social-links {
  list-style: none;
  display: inline-block;
  margin: 0 !important;
  padding: 0;
}
ul.social-links > li {
  list-style: none;
  display: inline-block;
  margin: 0 !important;
  padding: 0 10px 0 0;
  font-size: 300%;
}
ul.social-links > li.facebook a {
  color: #4599ff;
}
ul.social-links > li.twitter a {
  color: #1d9bf0;
}
ul.social-links > li.instagram a {
  color: #0095f6;
}
/*
 * CITES WIDGET
 */
.widget-cite {
  width: 80%;
  margin: 0 10%;
}
.widget-cite .cite-text {
  font-size: calc(100% + 40%);
  text-align: center;
  font-style: italic;
  color: #333;
}
.widget-cite .cite-text span {
  color: #696969;
  display: inline-block;
  padding: 0 5px;
}
.widget-cite .cite-author {
  text-align: right;
  margin: 0 50px 0 0;
  padding: 10px 0 0 0;
  color: #696969;
}
/*
 * REVIEWS WIDGET
 */
.widget-review {
  width: 80%;
  margin: 0 10%;
  list-style: none;
}
.widget-review:nth-child(n+2) {
  padding-top: 30px;
}
.widget-review .review-meta span {
  display: inline-block;
  padding-right: 15px;
}
.widget-review .review-text {
  font-size: calc(100% + 40%);
  text-align: center;
  font-style: italic;
  color: #333;
}
.widget-review .review-text span {
  color: #696969;
  display: inline-block;
  padding: 0 5px;
}
.widget-review .review-author {
  text-align: right;
  color: #696969;
}
.widget-review .review-source a {
  color: inherit;
}
/*
 * SIMPLE IMAGE
 */
.widget-simpleimage img {
  display: block;
  width: 100%;
  height: auto;
}
.widget-bg-image {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.widget-bg-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/*
 * TEXT WITH LINK WIDGET
 */
.text-with-link {
  border: solid 1px #2f2c2c;
  position: relative;
  margin: 50px 0 0 0;
}
.text-with-link .card-item-wrap {
  padding: 50px 15px 15px;
  text-align: center;
}
.text-with-link .icon-wrap {
  background: #333333;
  color: #ffffff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 250%;
  position: absolute;
  top: -35px;
  left: calc( 50% - 35px );
}
/*
 * TEXT WITH LINK WIDGET
 */
.widget-textWithImage.cta-background,
.text-with-image.cta-background,
.widget-textWithImage .cta-background,
.text-with-image .cta-background {
  position: relative;
}
.widget-textWithImage.cta-background picture,
.text-with-image.cta-background picture,
.widget-textWithImage .cta-background picture,
.text-with-image .cta-background picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.widget-textWithImage.cta-background picture img,
.text-with-image.cta-background picture img,
.widget-textWithImage .cta-background picture img,
.text-with-image .cta-background picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.widget-textWithImage.cta-background .cta-wrap,
.text-with-image.cta-background .cta-wrap,
.widget-textWithImage .cta-background .cta-wrap,
.text-with-image .cta-background .cta-wrap {
  padding: calc(15px * 4) 0;
}
.widget-textWithImage.cta-background .cta-wrap .cta-content,
.text-with-image.cta-background .cta-wrap .cta-content,
.widget-textWithImage .cta-background .cta-wrap .cta-content,
.text-with-image .cta-background .cta-wrap .cta-content {
  width: 75%;
  text-align: center;
  margin: 0 auto;
}
/*
 * ASIDE WIDGETS - ADJUSTMENTS
 */
ul.widgetlist-aside {
  margin-top: 25px;
}
ul.widgetlist-aside li {
  list-style: none;
}
ul.widgetlist-aside li h2 {
  padding: 0 0 5px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: calc(100% + 40%);
  color: #2f2c2c;
  border-bottom: solid 2px #2f2c2c;
}
/*
 * ASIDE LINKS
 */
div#aside-links {
  position: fixed;
  right: 0;
  top: 200px;
  z-index: 5000000000;
}
div#aside-links.only-icon {
  right: 15px;
}
div#aside-links.only-icon .aside-links-list > li {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid #2f2c2c;
  border-radius: 50%;
  background: #ffffff;
  height: 30px;
  width: 30px;
  line-height: calc(30px  - 2px);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
div#aside-links.only-icon .aside-links-list > li:hover {
  background: #2f2c2c;
  color: #ffffff;
  border-color: #2f2c2c;
}
div#aside-links.only-icon .aside-links-list > li:hover a {
  color: #ffffff;
}
div#aside-links.only-icon .aside-links-list > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(30px  - 2px);
  height: calc(30px  - 2px);
  color: #2f2c2c;
}
div#aside-links.only-icon .aside-links-list > li a i {
  font-size: 135%;
}
div#aside-links.only-icon .aside-links-list > li:nth-child(1) {
  top: 0;
}
div#aside-links.only-icon .aside-links-list > li:nth-child(2) {
  top: calc(30px  + 7.5px);
}
div#aside-links.only-icon .aside-links-list > li:nth-child(3) {
  top: calc(2 *  30px  + 2 * 7.5px);
}
div#aside-links.only-icon .aside-links-list > li:nth-child(4) {
  top: calc(3 *  30px  + 3 * 7.5px);
}
div#aside-links.only-icon .aside-links-list > li:nth-child(5) {
  top: calc(4 *  30px  + 4 * 7.5px);
}
div#aside-links.only-icon .aside-links-list > li:nth-child(6) {
  top: calc(5 *  30px  + 5 * 7.5px);
}
div#aside-links ul {
  list-style: none;
}
div#aside-links:not(.only-icon) .aside-links-list > li {
  height: 30px;
  overflow: hidden;
  border: 1px solid #2f2c2c;
  border-right: none;
  background: #2f2c2c;
  line-height: 28px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: border 0.3s ease-in;
  -moz-transition: border 0.3s ease-in;
  -o-transition: border 0.3s ease-in;
  -ms-transition: border 0.3s ease-in;
  transition: border 0.3s ease-in;
}
div#aside-links:not(.only-icon) .aside-links-list > li:nth-child(1) {
  top: 0;
}
div#aside-links:not(.only-icon) .aside-links-list > li:nth-child(2) {
  top: calc(30px  + 2px);
}
div#aside-links:not(.only-icon) .aside-links-list > li:nth-child(3) {
  top: calc(2 *  30px  + 2 * 2px);
}
div#aside-links:not(.only-icon) .aside-links-list > li:nth-child(4) {
  top: calc(3 *  30px  + 3 * 2px);
}
div#aside-links:not(.only-icon) .aside-links-list > li:nth-child(5) {
  top: calc(4 *  30px  + 4 * 2px);
}
div#aside-links:not(.only-icon) .aside-links-list > li:nth-child(6) {
  top: calc(5 *  30px  + 5 * 2px);
}
div#aside-links:not(.only-icon) .aside-links-list > li.closed {
  border: solid 1px #ffffff;
  border-right: none;
  width: 30px;
}
div#aside-links:not(.only-icon) .aside-links-list > li.closed .list-icon {
  color: #ffffff;
  background: #2f2c2c;
}
div#aside-links:not(.only-icon) .aside-links-list > li.closed:hover {
  border: solid 1px #2f2c2c;
}
div#aside-links:not(.only-icon) .aside-links-list > li.closed:hover .list-icon {
  color: #2f2c2c;
  background: #ffffff;
}
div#aside-links:not(.only-icon) .list-icon {
  display: inline-block;
  width: 30px;
  float: left;
  text-align: center;
  background: #ffffff;
  color: #2f2c2c;
}
div#aside-links:not(.only-icon) .list-link {
  display: inline-block;
  overflow: hidden;
  width: calc(100% - 30px);
}
div#aside-links:not(.only-icon) .list-link a {
  display: inline-block;
  color: #ffffff;
  padding: 0 35px 0 5px;
  font-size: calc(100% - 10%);
  white-space: nowrap;
}
/*
 * FOOTER WIDGETS - ADJUSTMENTS
 */
/* footer navigation widget */
#page-footer .widget-navigation {
  float: left;
}
#page-footer .widget-navigation ul.navi {
  overflow: hidden;
  list-style: none;
}
#page-footer .widget-navigation ul.navi > li {
  overflow: hidden;
  display: block;
}
.widgetlist-footer ul.navi > li:nth-child(n+2) {
  padding-top: 5px;
}
/*
 * WIDGET - SECTION
 */
section.widget-section.highlight {
  background: #2f2c2c;
}
section.widget-section.highlight h1,
section.widget-section.highlight h2,
section.widget-section.highlight h3,
section.widget-section.highlight p,
section.widget-section.highlight span,
section.widget-section.highlight a {
  color: #ffffff;
}
section.widget-section.main-left .section-main,
section.widget-section.main-right .section-main {
  width: calc( 100% - 300px );
}
section.widget-section.main-left .section-aside,
section.widget-section.main-right .section-aside {
  width: 300px;
}
section.widget-section.main-left.main-wide .section-main,
section.widget-section.main-right.main-wide .section-main {
  width: 75%;
}
section.widget-section.main-left.main-wide .section-aside,
section.widget-section.main-right.main-wide .section-aside {
  width: 25%;
}
section.widget-section.main-left.main-normal .section-main,
section.widget-section.main-right.main-normal .section-main {
  width: 66.666%;
}
section.widget-section.main-left.main-normal .section-aside,
section.widget-section.main-right.main-normal .section-aside {
  width: 33.333%;
}
section.widget-section.main-left.main-divide .section-main,
section.widget-section.main-right.main-divide .section-main {
  width: 50%;
}
section.widget-section.main-left.main-divide .section-aside,
section.widget-section.main-right.main-divide .section-aside {
  width: 50%;
}
section.widget-section.main-right .section-main {
  float: right;
  padding: 15px;
  padding-right: 0;
}
section.widget-section.main-right .section-aside {
  float: left;
  padding: 15px;
  padding-left: 0;
}
section.widget-section.main-left .section-main {
  float: left;
  padding: 15px;
  padding-left: 0;
}
section.widget-section.main-left .section-aside {
  float: right;
  padding: 15px;
  padding-right: 0;
}
.widget-countdown-circular {
  display: flex;
  gap: calc(15px / 2);
}
.widget-countdown-circular.default-background .circle-foreground {
  stroke: #696969;
}
.widget-countdown-circular.default-foreground .circle-foreground {
  stroke: #ffffff;
}
.widget-countdown-circular.highlight-background-1 .circle-background {
  stroke: #2f2c2c;
}
.widget-countdown-circular.highlight-background-2 .circle-background {
  stroke: #e7590b;
}
.widget-countdown-circular.highlight-foreground-1 .circle-foreground {
  stroke: #2f2c2c;
}
.widget-countdown-circular.highlight-foreground-2 .circle-foreground {
  stroke: #e7590b;
}
.widget-countdown-circular .timer-item {
  position: relative;
  display: inline-flex;
}
.widget-countdown-circular .timer-item .timer-text {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.widget-countdown-circular .timer-item .timer-text .number {
  font-size: 150%;
  line-height: 1;
}
.widget-countdown-circular .timer-item .timer-text .text {
  font-size: 80%;
}
.widget-countdown-circular svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.widget-countdown-circular .circle-foreground {
  transition: all 1s linear;
}
