/*! otm, Compiled at 2025-07-16 10:18:37 */
/**
 * Oldenburg
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2016 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @author     Matthias Kracke <kracke@infomax-it.de>
 * @since      2016-11-08
 * @version    $$Id$$
 **/
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      21.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
different width settings
general scroll area
========================================================== */
/*  =========================================================
basic config
========================================================= */
/* dimensions */
/* ultra tiny introduced for iPhone 5s */
/* corporate design */
/* @see src/portal/assets/styles/_brand for css variables */
/* other colors */
/* percentage dimensions */
/* percentage margins */
/* percentage paddings */
/* default font settings */
/* vertical aligns */
.verticalAlignHelper {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
  margin: 0;
}
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .offCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    height: 100%;
    overflow: hidden;
    background: rgb(var(--color-white));
    transition: margin 0.5s ease, width 0.5s ease;
  }
  /* visible flag  */
  .offCanvas--visible {
    margin-left: 0;
    z-index: 21;
  }
  #offCanvas--filter {
    z-index: 3;
  }
}
/*  =========================================================
different width settings
========================================================= */
@media all and (min-width: 1401px) {
  .offCanvas {
    width: 41.42857143%;
    /* only show shadow on part screen offCanvas */
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5) inset;
  }
  .offCanvas:not(.offCanvas--visible) {
    margin-left: -41.42857143%;
  }
}
@media all and (max-width: 1400px) {
  .offCanvas {
    width: 100%;
  }
  .offCanvas:not(.offCanvas--visible) {
    margin-left: -100%;
  }
}
/*  =========================================================
general scroll area
========================================================= */
@media all {
  .offCanvas__scrollArea {
    position: relative;
    height: 100%;
    box-sizing: border-box;
    /* remember to add some paddings on specific class, to spare space for functions and tabs if needed */
  }
  #offCanvas--filter .offCanvas__scrollArea {
    padding-bottom: 80px;
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      21.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .offCanvas__article__headerImage__image {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
  }
}
/*  =========================================================
cropping
========================================================= */
/* different behavior on different aspect ratios of the screen compared to the image */
@media all {
  .offCanvas__article__headerImage__image:not(.headerImage--verticalyCropped) > img {
    width: auto;
    height: 100%;
    margin: 0;
    object-fit: cover;
  }
  .offCanvas__article__headerImage__image.headerImage--verticalyCropped > img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      21.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
different height settings
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .offCanvas__article__headerImage {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 0 50px 0;
  }
}
/*  =========================================================
different height settings
========================================================= */
@media all and (min-width: 1401px) {
  .offCanvas__article__headerImage {
    height: 0;
    padding-bottom: 104.16666667%;
  }
}
@media all and (max-width: 1400px) and (orientation: portrait) {
  .offCanvas__article__headerImage {
    height: 0;
    padding-bottom: 104.16666667%;
  }
}
@media all and (max-width: 1400px) and (orientation: landscape) {
  .offCanvas__article__headerImage {
    height: 0;
    padding-bottom: 43.1547619%;
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      21.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .offCanvas__article__headerImage__pano {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      21.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
text
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
@media all {
  /* make sure, that the scrollbar overlaps the google pano */
  .offCanvas__article > .ps-scrollbar-y-rail {
    z-index: 1;
  }
}
/*  =========================================================
text
========================================================= */
@media all and (min-width: 1401px) {
  .offCanvas__article__text {
    padding-left: 10.63218391%;
    padding-right: 10.63218391%;
  }
}
@media all and (max-width: 1400px) {
  .offCanvas__article__text {
    padding-left: 4.4047619%;
    padding-right: 4.4047619%;
  }
}
@media all {
  .offCanvas__article__text > h2 {
    font: 300 normal 7rem/1em 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 7rem;
    line-height: 1em;
    color: rgb(var(--color-black));
    margin: 0;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
@media all {
  .offCanvas__article__text > h3 {
    font: 300 normal 5rem/1em 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 5rem;
    line-height: 1em;
    color: rgb(var(--color-black));
    margin: 0;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
@media all {
  .offCanvas__article__text > .subtitle {
    color: rgb(var(--color-black));
    margin: 0 0 2rem 0;
  }
  .offCanvas__article__text > h2 + .subtitle {
    font: 400 normal 3rem/1em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    line-height: 1em;
  }
  .offCanvas__article__text > h3 + .subtitle {
    font: 400 normal 2.5rem/1em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 1em;
  }
}
@media all {
  .offCanvas__article__text > p:not(.subtitle) {
    font: 400 normal 2rem/1.5em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    line-height: 1.5em;
    color: rgb(var(--color-black));
    margin: 0 0 2rem 0;
  }
  .offCanvas__article__text li {
    font: 400 normal 2.2rem/1.36363636em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.2rem;
    line-height: 1.36363636em;
    color: rgb(var(--color-text-default));
    padding: 0 0 0 20px;
    margin: 0 30px 0 0;
  }
  .offCanvas__article__text li::before {
    content: '';
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin: 0 10px 0 -20px;
    border-radius: 50%;
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      22.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
button
link
text container
speech booble
headline
subtitle
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
@media all {
  .autocomplete .item.type-article,
  .autocomplete .item.type-offer,
  .offCanvas__article__teaser {
    display: table;
    position: relative;
  }
}
@media all and (max-width: 1000px) {
  .offCanvas__article__teaser__speechBooble__price {
    display: inline-block;
    padding: 15px 25px 0 25px;
    margin: 0;
    background: rgb(var(--color-white));
    font: 400 normal 2.5rem/1em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 1em;
  }
}
@media all and (min-width: 1001px) {
  .offCanvas__article__teaser__text__speechBooble > .offCanvas__article__teaser__speechBooble__price + h2 {
    position: relative;
    min-height: 132px;
    margin-left: 90px;
    padding: 15px 15px 3px 15px;
  }
}
@media all and (min-width: 1401px) {
  .autocomplete .item.type-article,
  .autocomplete .item.type-offer,
  .offCanvas__article__teaser {
    width: 100%;
    height: 0;
    padding-bottom: 71.16788321%;
    margin-bottom: 1.82481752%;
  }
}
@media all and (max-width: 1400px) and (min-width: 701px) {
  .autocomplete .item.type-article,
  .autocomplete .item.type-offer {
    width: 100%;
  }
  .offCanvas__article__teaser {
    width: 49.67362924%;
    height: 0;
    padding-bottom: 34.82142857%;
    margin-bottom: 0.5952381%;
  }
  .offCanvas__article__teaser:nth-child(odd) {
    margin-right: 0.32637076%;
  }
  .offCanvas__article__teaser:nth-child(even) {
    margin-left: 0.32637076%;
  }
}
@media all and (max-width: 700px) {
  .autocomplete .item.type-article,
  .autocomplete .item.type-offer,
  .offCanvas__article__teaser {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 700px) and (orientation: landscape) {
  .autocomplete .item.type-article,
  .autocomplete .item.type-offer,
  .offCanvas__article__teaser {
    height: 0;
    padding-bottom: 44.67084639%;
  }
}
@media all and (max-width: 700px) and (orientation: portrait) {
  .autocomplete .item.type-article,
  .autocomplete .item.type-offer,
  .offCanvas__article__teaser {
    height: 0;
    padding-bottom: 105.83333333%;
  }
}
/*  =========================================================
button
========================================================= */
@media all {
  .offCanvas__article__teaser > .button {
    position: absolute;
  }
}
@media all and (min-width: 1401px) {
  .offCanvas__article__teaser > .button {
    bottom: 30px;
    right: 30px;
  }
}
@media all and (max-width: 1400px) {
  .offCanvas__article__teaser > .button {
    bottom: 20px;
    right: 20px;
  }
}
@media all and (max-width: 1000px) {
  .offCanvas__article__teaser > .button {
    display: none;
  }
}
/*  =========================================================
link
========================================================= */
@media all {
  .offCanvas__article__teaser > a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -100%;
  }
}
/*  =========================================================
image
========================================================= */
@media all {
  .offCanvas__article__teaser__image {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .offCanvas__article__teaser__image > img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
/*  =========================================================
text container
========================================================= */
@media all {
  .offCanvas__article__teaser__text {
    position: absolute;
    left: 0;
    box-sizing: border-box;
    text-align: left;
  }
}
@media all and (min-width: 1001px) {
  .offCanvas__article__teaser__text {
    bottom: 50px;
  }
}
@media all and (max-width: 1000px) {
  .offCanvas__article__teaser__text {
    bottom: 25px;
  }
}
@media all and (min-width: 1401px) {
  .offCanvas__article__teaser__text {
    padding: 30px;
  }
}
@media all and (min-width: 1001px) and (max-width: 1400px) {
  .offCanvas__article__teaser__text {
    padding: 20px;
  }
}
@media all and (max-width: 1000px) {
  .offCanvas__article__teaser__text {
    padding: 15px;
  }
}
/*  =========================================================
speech booble
========================================================= */
@media all {
  .offCanvas__article__teaser__text__speechBooble {
    position: relative;
    display: inline-block;
    color: rgb(var(--color-black));
  }
}
/* add this little funnny thing to make the box look like a speeachBooble */
@media all {
  .offCanvas__article__teaser__text__speechBooble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, rgb(var(--color-white)) 50%, rgba(255, 255, 255, 0) 51%);
  }
}
/*  =========================================================
headline
========================================================= */
@media all {
  .offCanvas__article__teaser__text__speechBooble > h2 {
    padding: 10px 15px 8px 15px;
    margin: 0;
    background: rgb(var(--color-white));
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    font: 300 normal 5rem/1em 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 5rem;
    line-height: 1em;
  }
}
@media all and (min-width: 1001px) and (max-width: 1400px) {
  .offCanvas__article__teaser__text__speechBooble > h2 {
    font-size: 4.44444444rem;
  }
}
/*  =========================================================
subtitle
========================================================= */
@media all {
  .offCanvas__article__teaser__text__speechBooble > .subtitle {
    padding: 5px 15px 3px 15px;
    margin: 0;
    background: rgb(var(--color-white));
    font: 400 normal 2rem/1em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    line-height: 1em;
  }
}
@media all and (min-width: 1001px) and (max-width: 1400px) {
  .offCanvas__article__teaser__text__speechBooble > .subtitle {
    font-size: 1.77777778rem;
  }
}
/*  =========================================================
background with hole on lg and md
========================================================= */
@media all and (min-width: 1001px) {
  .offCanvas__article__teaser__speechBooble__price + h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -90px;
    height: 100%;
    width: 90px;
    background: url('../images/headerImage/speechBooble.headline.info.98c6f86c.svg') 0 15px, -ms-linear-gradient(top, rgb(var(--color-white)) 0, rgb(var(--color-white)) 100%) top left, -ms-linear-gradient(top, rgb(var(--color-white)) 0, rgb(var(--color-white)) 100%) bottom left;
    background: url('../images/headerImage/speechBooble.headline.info.98c6f86c.svg') 0 15px, linear-gradient(top, rgb(var(--color-white)) 0, rgb(var(--color-white)) 100%) top left, linear-gradient(top, rgb(var(--color-white)) 0, rgb(var(--color-white)) 100%) bottom left;
    background-size: 90px 132px, 90px 15px, 90px calc(100% - 132px - 15px);
    background-repeat: no-repeat;
  }
}
/*  =========================================================
price element
========================================================= */
@media all and (min-width: 1001px) {
  .offCanvas__article__teaser__speechBooble__price {
    position: absolute;
    top: 19px;
    left: -38px;
    margin: 0;
    display: table;
    width: 124px;
    height: 124px;
    overflow: hidden;
    background: rgb(var(--color-white));
    border-radius: 50%;
  }
  .offCanvas__article__teaser__speechBooble__price > div {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20%;
    font: 300 normal 12px/1em 'Open Sans', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 1em;
    text-align: center;
  }
  .offCanvas__article__teaser__speechBooble__price > div > strong {
    font-weight: 600;
    font-size: 35px;
    line-height: 1em;
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      27.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
buttons
fieldsets
input groups
checklist
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .offCanvas__filter {
    position: relative;
    height: calc(100% - 96px);
    margin-top: 96px;
  }
  .offCanvas__tabs + .offCanvas__filter {
    height: calc(100% - 166px);
    margin-top: 166px;
  }
}
/*  =========================================================
buttons
========================================================= */
@media all {
  .offCanvas__filter_buttons {
    position: absolute;
    bottom: 20px;
    right: 26px;
    z-index: 1;
  }
  .offCanvas__filter_buttons__submit {
    display: inline-block;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    text-align: center;
    text-decoration: none;
    color: rgb(var(--color-white));
  }
  .offCanvas__filter_buttons__submit > span {
    font-size: 20px;
    line-height: 62px;
  }
  /* microsite specific */
  html:not(.-css-microsite-gruenkohl) .offCanvas__filter_buttons__submit {
    background: rgb(var(--color-cdRed1));
  }
  html.-css-microsite-gruenkohl .offCanvas__filter_buttons__submit {
    background: rgb(var(--color-white)) url('../images/_branding/background_microsite1.a4cf9239.jpg') 0 0 repeat;
  }
}
@media all {
  .offCanvas__filter div:not(.offCanvas__search__fieldset__fulltextSearch) button[type="submit"] {
    float: right;
    margin-bottom: 50px;
  }
}
/*  =========================================================
fieldsets
========================================================= */
@media all {
  .offCanvas__filter__fieldset {
    margin: 0;
    padding: 0;
    border: none;
    display: block;
    height: 100%;
  }
  .offCanvas__filter__fieldset > legend {
    display: none;
  }
  main#fullMap ~ #offCanvas--filter .offCanvas__filter__fieldset {
    height: 60vh;
  }
}
@media all {
  .offCanvas__tabs + .offCanvas__filter > .offCanvas__filter__fieldset.active {
    display: block;
  }
  .offCanvas__tabs + .offCanvas__filter > .offCanvas__filter__fieldset:not(.active) {
    display: none;
  }
}
/*  =========================================================
input groups
========================================================= */
@media all {
  .offCanvas__filter__inputGroup {
    position: relative;
  }
  .offCanvas__filter__inputGroup:not(:last-child) {
    border-bottom: 1px #d6d3d2 solid;
  }
}
@media all {
  .offCanvas__filter__inputGroup > input[type=checkbox] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    cursor: pointer;
    left: 52px;
    margin: 0;
    position: absolute;
    top: 24px;
  }
}
@media all {
  .offCanvas__filter__inputGroup > label {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 40px 20px 72px;
    font: 300 normal 25px/1em 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 25px;
    line-height: 1em;
    color: rgb(var(--color-black));
    cursor: pointer;
  }
  .offCanvas__filter__inputGroup > label::before {
    display: inline-block;
    vertical-align: baseline;
    box-sizing: border-box;
    border-radius: 3px;
    font: 400 normal 14px/20px 'icomoon';
    color: rgb(var(--color-white));
    margin: 0 13px 0 -20px;
    text-align: center;
  }
  .offCanvas__filter__inputGroup > input[type=checkbox],
  .offCanvas__filter__inputGroup > label::before {
    width: 20px;
    height: 20px;
  }
}
@media all {
  .offCanvas__filter__inputGroup > input[type=checkbox]:not(:checked) + label::before {
    /* added escaped unicode space to avoid shifting of pseudo checkbox after check */
    content: '\00a0';
    border: 1px #d6d3d2 solid;
  }
  .offCanvas__filter__inputGroup > input[type=checkbox]:checked + label::before {
    content: '\e911';
    border: 1px transparent solid;
  }
  /* microsite specific */
  html:not(.-css-microsite-gruenkohl) .offCanvas__filter__inputGroup > input[type=checkbox]:checked + label::before {
    background: rgb(var(--color-button-default));
  }
  html.-css-microsite-gruenkohl .offCanvas__filter__inputGroup > input[type=checkbox]:checked + label::before {
    background: #006b37;
  }
}
/*  =========================================================
checklist
========================================================= */
@media all {
  .offCanvas__filter__checkbox {
    position: relative;
    display: inline-block;
    margin: 0 10px 10px 0;
  }
}
@media all {
  .offCanvas__filter__checkbox > input {
    -webkit-appearance: none;
            appearance: none;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
  }
}
@media all {
  .offCanvas__filter__checkbox > label {
    display: block;
    padding: 0 10px;
    border-radius: 5px;
    font: 600 normal 18px/35px 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 35px;
    color: rgb(var(--color-white));
    cursor: pointer;
  }
  html.-css-microsite-club .offCanvas__filter__checkbox > label {
    font: 700 normal 18px/40px 'Open Sans Condensed', Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 40px;
  }
  .offCanvas__filter__checkbox > input:not(:checked) + label {
    background: rgb(var(--color-button-default));
  }
  .offCanvas__filter__checkbox > input:checked + label {
    background: rgb(var(--color-cdOrange1));
  }
}
.offCanvas__filter__group h3 {
  font: 600 normal 18px/35px 'HalvarEngschrift', Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 35px;
  color: rgb(var(--color-text-default));
  margin-top: 0;
  margin-bottom: 10px;
}
html.-css-microsite-club .offCanvas__filter__group h3 {
  font: 700 normal 18px/40px 'Open Sans Condensed', Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 40px;
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      21.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
buttons
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .offCanvas__functions {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 96px;
    box-sizing: border-box;
    text-align: right;
    transition: margin 0.5s ease;
  }
}
@media all and (min-width: 701px) {
  .offCanvas__functions {
    padding: 19px 25px;
  }
}
@media all and (max-width: 700px) {
  .offCanvas__functions {
    padding: 19px 20px;
  }
}
/*  =========================================================
buttons
========================================================= */
@media all {
  .offCanvas__functions > a {
    display: inline-block;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    color: rgb(var(--color-white));
  }
  .offCanvas__functions > a > span {
    font-size: 20px;
    line-height: 58px;
  }
  /* microsite specific */
  html:not(.-css-microsite-gruenkohl) .offCanvas__functions > a {
    background: rgb(var(--color-button-default));
  }
  html.-css-microsite-gruenkohl .offCanvas__functions > a {
    background: #006b37;
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      27.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
tab row
tab element
slider buttons
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .offCanvas__tabs {
    position: absolute;
    top: 96px;
    left: 0;
    z-index: 1;
    height: 70px;
    width: 100%;
    background: rgb(var(--color-button-default));
  }
  /* microsite specific */
  html:not(.-css-microsite-gruenkohl) .offCanvas__tabs {
    background: rgb(var(--color-button-default));
  }
  html.-css-microsite-gruenkohl .offCanvas__tabs {
    background: #006b37;
  }
}
/*  =========================================================
tab row
========================================================= */
@media all {
  .offCanvas__tabs__row {
    height: 70px;
    overflow: hidden;
    position: relative;
  }
  .offCanvas__tabs--buttons > .offCanvas__tabs__buttonLeft ~ .offCanvas__tabs__row {
    margin-left: 40px;
  }
  .offCanvas__tabs--buttons > .offCanvas__tabs__buttonRight ~ .offCanvas__tabs__row {
    margin-right: 40px;
  }
}
@media all {
  .offCanvas__tabs__row__collection {
    white-space: nowrap;
    display: table;
    height: 70px;
  }
}
/*  =========================================================
tab element
========================================================= */
@media all {
  .offCanvas__tabs__row__collection__element {
    background-color: transparent;
    border: none;
    position: relative;
    display: inline-block;
    padding: 0 0 0 25px;
    box-sizing: border-box;
    height: 70px;
    outline-offset: -5px;
    font: 300 normal 20px/70px 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 70px;
    color: rgb(var(--color-white));
    cursor: pointer;
  }
  .offCanvas__tabs__row__collection__element:last-child {
    padding-right: 25px;
  }
  .offCanvas__tabs__row__collection__element:not(:last-child)::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 50px;
    margin: 0 0 0 25px;
    background: rgba(255, 255, 255, 0.25);
  }
}
@media all {
  .offCanvas__tabs__row__collection__element.active {
    border-bottom: 5px rgb(var(--color-white)) solid;
  }
}
@media all {
  .offCanvas__tabs__row__collection__element__counter {
    position: absolute;
    top: 6px;
    right: 9px;
    padding: 2px 7px;
    border: 1px rgb(var(--color-white)) solid;
    border-radius: 10px;
    font: 700 normal 13px/1.25em 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    line-height: 1.25em;
    color: rgb(var(--color-white));
    background: rgb(var(--color-cdRed1));
  }
}
/*  =========================================================
slider buttons
========================================================= */
@media all {
  .offCanvas__tabs__buttonLeft,
  .offCanvas__tabs__buttonRight {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-align: center;
  }
  .offCanvas__tabs__buttonLeft::after,
  .offCanvas__tabs__buttonRight::after {
    font: 400 normal 20px/70px 'icomoon';
    color: rgb(var(--color-white));
  }
  .offCanvas__tabs:not(.offCanvas__tabs--buttons) > .offCanvas__tabs__buttonLeft,
  .offCanvas__tabs:not(.offCanvas__tabs--buttons) > .offCanvas__tabs__buttonRight {
    display: none;
  }
  .offCanvas__tabs__buttonLeft {
    left: 0;
  }
  .offCanvas__tabs__buttonLeft::after {
    content: '\e913';
  }
  .offCanvas__tabs__buttonRight {
    right: 0;
  }
  .offCanvas__tabs__buttonRight::after {
    content: '\e912';
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      21.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .tile:focus,
  .tile:focus-within {
    border: 2px solid black;
  }
  .tileNavi {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: none;
    bottom: 0;
    height: calc(100% - 70px);
    top: unset;
  }
  .tileNavi.offCanvas--visible {
    width: 100%;
  }
  .offCanvas__tileNavi {
    background: rgb(var(--color-white));
    width: 400px;
  }
  .tileNaviTextContainer {
    position: absolute;
    text-align: center;
  }
  .tileNaviNav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .tileNaviLink {
    font: 600 normal 14px/160% 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 160%;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    color: rgb(var(--color-white));
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    width: 100%;
  }
  .tileNaviLink picture {
    position: absolute;
    top: 0;
  }
  .tileNaviLink .tileNaviIcon {
    font-size: 25px;
    padding-bottom: 10px;
  }
  .tileNaviLink span {
    display: block;
  }
}
@media all and (max-width: 700px) {
  .tileNavi {
    height: calc(100% - 50px);
  }
}
@media all and (max-width: 700px) {
  .offCanvas__tileNavi {
    width: 310px;
  }
}
/*  =========================================================
sitemap link
========================================================= */
@media all {
  .offCanvas__sitemap {
    padding: 20px 0;
  }
  .offCanvas__sitemap a {
    font: 600 normal 18px/160% 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 160%;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    color: rgb(var(--color-black));
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      21.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
navi group
sub group
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .offCanvas__navi {
    padding-top: 96px;
  }
}
/*  =========================================================
navi group
========================================================= */
@media all {
  .offCanvas__navi__group {
    padding-bottom: 25px;
  }
  .offCanvas__navi__group:first-child {
    padding-top: 0;
  }
  .offCanvas__navi__group:not(:first-child) {
    padding-top: 30px;
  }
  .offCanvas__navi__group:not(:first-child) {
    border-top: 1px #d6d3d2 solid;
  }
}
/* different paddings for full screen and part screen offCanvas */
@media all and (min-width: 1401px) {
  .offCanvas__navi__group {
    padding-left: 10.05747126%;
    padding-right: 10.05747126%;
  }
}
@media all and (max-width: 1400px) {
  .offCanvas__navi__group {
    padding-left: 4.16666667%;
    padding-right: 4.16666667%;
  }
}
/* main link */
@media all {
  .offCanvas__navi__group > a {
    font: 300 normal 40px/1em 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    line-height: 1em;
    color: rgb(var(--color-text-default));
    text-decoration: none;
  }
  html.-css-microsite-club .offCanvas__navi__group > a {
    font: 600 normal 3.5rem/1.5em 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 3.5rem;
    line-height: 1.5em;
  }
}
@media all and (min-width: 1001px) and (max-width: 1400px) {
  html.-css-microsite-club .offCanvas__navi__group > a {
    font-size: 3.33333333rem;
  }
}
@media all and (min-width: 701px) and (max-width: 1000px) {
  html.-css-microsite-club .offCanvas__navi__group > a {
    font-size: 3.5rem;
  }
}
@media all and (max-width: 700px) {
  html.-css-microsite-club .offCanvas__navi__group > a {
    font-size: 3.71428571rem;
  }
}
/*  =========================================================
sub group
========================================================= */
@media all {
  .offCanvas__navi__group__sub {
    margin-top: 5px;
  }
}
/* sub links */
@media (min-width: 700px) {
  .offCanvas__navi__group__sub > a {
    font: 400 normal 24px/1.25em 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 1.25em;
    color: rgb(var(--color-text-default));
    text-decoration: underline;
    display: inline-block;
    padding: 5px 0;
    margin-bottom: 10px;
  }
  .offCanvas__navi__group__sub > a:not(:last-child) {
    margin-right: 25px;
  }
  html.-css-microsite-club .offCanvas__navi__group__sub > a {
    font: 400 normal 2rem/1.5em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    line-height: 1.5em;
  }
}
@media (min-width: 700px) and (min-width: 1001px) and (max-width: 1400px) {
  html.-css-microsite-club .offCanvas__navi__group__sub > a {
    font-size: 2.22222222rem;
  }
}
@media (min-width: 700px) and (min-width: 701px) and (max-width: 1000px) {
  html.-css-microsite-club .offCanvas__navi__group__sub > a {
    font-size: 2.5rem;
  }
}
@media (min-width: 700px) and (max-width: 700px) {
  html.-css-microsite-club .offCanvas__navi__group__sub > a {
    font-size: 2.85714286rem;
  }
}
@media (max-width: 700px) {
  .offCanvas__navi__group__sub > a {
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 10px;
    font: 400 normal 26px/1.25em 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
    line-height: 1.25em;
    text-decoration: none;
    color: rgb(var(--color-text-default));
    background: rgb(var(--color-button-light));
  }
  .offCanvas__navi__group__sub > a:not(:last-child) {
    margin-right: 10px;
  }
  .offCanvas__navi__group__sub > a {
    font: 400 normal 2rem/1.5em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    line-height: 1.5em;
  }
}
@media (max-width: 700px) and (min-width: 1001px) and (max-width: 1400px) {
  .offCanvas__navi__group__sub > a {
    font-size: 2.22222222rem;
  }
}
@media (max-width: 700px) and (min-width: 701px) and (max-width: 1000px) {
  .offCanvas__navi__group__sub > a {
    font-size: 2.5rem;
  }
}
@media (max-width: 700px) and (max-width: 700px) {
  .offCanvas__navi__group__sub > a {
    font-size: 2.85714286rem;
  }
}
/**
 * OTM - Hauptportal 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage offCanvas
 * @author     gueldner
 * @since      21.09.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
fieldset
fulltext search
autocomplete
inputset
button area
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure
========================================================= */
/* the main container */
@media all {
  .offCanvas__search {
    padding-top: 96px;
  }
}
/*  =========================================================
fieldset
========================================================= */
@media all {
  .offCanvas__search__fieldset {
    margin: 0;
    padding-top: 0;
    border: none;
  }
  .offCanvas__search__fieldset > legend {
    display: none;
  }
}
@media all and (min-width: 1401px) {
  .offCanvas__search__fieldset {
    padding-left: 10.63218391%;
    padding-right: 10.63218391%;
  }
}
@media all and (max-width: 1400px) {
  .offCanvas__search__fieldset {
    padding-left: 4.4047619%;
    padding-right: 4.4047619%;
  }
}
@media all {
  .offCanvas__search__fieldset > h3 {
    font: 300 normal 40px/1em 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    line-height: 1em;
    color: rgb(var(--color-text-default));
    margin: 0 0 35px 0;
  }
  html.-css-microsite-club .offCanvas__search__fieldset > h3 {
    font: 600 normal 2.5rem/1.5em 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 1.5em;
  }
}
@media all and (min-width: 1001px) and (max-width: 1400px) {
  html.-css-microsite-club .offCanvas__search__fieldset > h3 {
    font-size: 2.55555556rem;
  }
}
@media all and (min-width: 701px) and (max-width: 1000px) {
  html.-css-microsite-club .offCanvas__search__fieldset > h3 {
    font-size: 2.75rem;
  }
}
@media all and (max-width: 700px) {
  html.-css-microsite-club .offCanvas__search__fieldset > h3 {
    font-size: 2.85714286rem;
  }
}
/*  =========================================================
fulltext search
========================================================= */
@media all {
  .offCanvas__search__fieldset__fulltextSearch {
    border-bottom: 1px #d6d3d2 solid;
  }
}
@media all {
  .offCanvas__search__fieldset__fulltextSearch > input[type=text] {
    border: none;
    width: 100%;
    height: 55px;
    box-sizing: border-box;
    padding-right: 55px;
    margin-right: -55px;
    font: 300 normal 35px/55px 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 35px;
    line-height: 55px;
    color: rgb(var(--color-text-default));
  }
  html.-css-microsite-club .offCanvas__search__fieldset__fulltextSearch > input[type=text] {
    font: 400 normal 1.6rem/1.5em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.5em;
  }
}
@media all and (min-width: 1001px) and (max-width: 1400px) {
  html.-css-microsite-club .offCanvas__search__fieldset__fulltextSearch > input[type=text] {
    font-size: 1.66666667rem;
  }
}
@media all and (min-width: 701px) and (max-width: 1000px) {
  html.-css-microsite-club .offCanvas__search__fieldset__fulltextSearch > input[type=text] {
    font-size: 1.75rem;
  }
}
@media all and (max-width: 700px) {
  html.-css-microsite-club .offCanvas__search__fieldset__fulltextSearch > input[type=text] {
    font-size: 2rem;
  }
}
@media all {
  .offCanvas__search__fieldset__fulltextSearch > input[type=text] + button {
    border: none;
    height: 55px;
    width: 45px;
    background: transparent;
    text-align: center;
  }
  .offCanvas__search__fieldset__fulltextSearch > input[type=text] + button > span {
    line-height: 55px;
    font-size: 30px;
    color: rgb(var(--color-text-default));
  }
}
/*  =========================================================
autocomplete
========================================================= */
@media all {
  .autocomplete a.item {
    padding: 15px 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all {
  .autocomplete a.item > div:first-child {
    -webkit-flex: 1 1;
        -ms-flex: 1 1;
            flex: 1 1;
    font: 300 normal 22px/1em 'Open Sans', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 22px;
    line-height: 1em;
    color: rgb(var(--color-black));
    text-align: left;
  }
  .autocomplete a.item > div:first-child > strong {
    font-weight: 400;
  }
}
@media all {
  .autocomplete a.item > div:last-child {
    font: 300 normal 18px/1em 'Open Sans', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 1em;
    color: rgb(var(--color-black));
    text-align: right;
  }
}
/*  =========================================================
inputset
========================================================= */
@media all {
  .offCanvas__search__fieldset__inputSet {
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px #d6d3d2 solid;
  }
}
@media all {
  .offCanvas__search__fieldset__inputSet[class*='icon-']::before {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: 100%;
    padding-right: 5px;
    font-size: 25px;
    line-height: 40px;
    color: rgb(var(--color-text-default));
  }
}
/*  =========================================================
text inputs
========================================================= */
/* input */
@media all {
  .offCanvas__search__fieldset__inputSet > input[type=text] {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    padding: 0 3px;
    border: none;
    background: rgb(var(--color-white));
    font: 700 normal 18px/40px 'HalvarEngschrift', Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 40px;
    color: rgb(var(--color-text-default));
  }
  html.-css-microsite-club .offCanvas__search__fieldset__inputSet > input[type=text] {
    font: 400 normal 1.6rem/1.5em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.5em;
  }
}
@media all and (min-width: 1001px) and (max-width: 1400px) {
  html.-css-microsite-club .offCanvas__search__fieldset__inputSet > input[type=text] {
    font-size: 1.66666667rem;
  }
}
@media all and (min-width: 701px) and (max-width: 1000px) {
  html.-css-microsite-club .offCanvas__search__fieldset__inputSet > input[type=text] {
    font-size: 1.75rem;
  }
}
@media all and (max-width: 700px) {
  html.-css-microsite-club .offCanvas__search__fieldset__inputSet > input[type=text] {
    font-size: 2rem;
  }
}
/* label */
@media all {
  .offCanvas__search__fieldset__inputSet > input[type=text] + label {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: 100%;
    padding: 0 10px;
    font: 700 normal 18px/40px 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 40px;
    color: rgb(var(--color-white));
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  }
  /* microsite specific */
  html:not(.-css-microsite-gruenkohl) .offCanvas__search__fieldset__inputSet > input[type=text] + label {
    background: rgb(var(--color-cdOrange4));
  }
  html.-css-microsite-gruenkohl .offCanvas__search__fieldset__inputSet > input[type=text] + label {
    background: rgb(var(--color-white)) url('../images/_branding/background_microsite1.a4cf9239.jpg') 0 0 repeat;
  }
  /* use 1% and 101% instead of 0% and 100% because of crappy browser rendering (blitzer) */
  .offCanvas__search__fieldset__inputSet > input[type=text]:focus + label {
    -webkit-transform: translateX(1%);
        -ms-transform: translateX(1%);
            transform: translateX(1%);
  }
  .offCanvas__search__fieldset__inputSet > input[type=text]:not(:focus) + label {
    -webkit-transform: translateX(101%);
        -ms-transform: translateX(101%);
            transform: translateX(101%);
  }
}
/* datepicker */
@media all {
  #offCanvas--eventsearch .searchForm__form__inputSet.firstDateInput > input[type="text"] {
    padding-left: 14px;
  }
}
/*  =========================================================
selectbox
========================================================= */
/* sourounding helper box */
@media all {
  .offCanvas__search__select {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgb(var(--color-white));
  }
}
/* selectbox itself */
@media all {
  .offCanvas__search__select > select {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    padding: 0;
    border: none;
    background: rgb(var(--color-white));
    font: 700 normal 18px/40px 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 40px;
    color: rgb(var(--color-text-default));
  }
}
/* label */
@media all {
  .offCanvas__search__select > label {
    display: block;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 10px;
    background: rgb(var(--color-white));
    font-size: 12px;
    color: rgb(var(--color-text-default));
    line-height: 48px;
  }
}
/*  =========================================================
button area
========================================================= */
/* half background */
@media all {
  .offCanvas__search__buttonArea {
    border-top: 1px solid #E5E5E6;
    background: rgb(var(--color-white));
    bottom: 0;
    min-height: 60px;
    position: absolute;
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
  .offCanvas__search__buttonArea .button + .button {
    margin-left: 10px;
  }
}
@media all {
  .offCanvas__search__buttonArea > .h-grid > [class*='h-el'] {
    text-align: right;
  }
}
