/*! otm, Compiled at 2026-04-02 09:01:26 */
/**
 * bsu
 *
 * 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  2019 infomax websolutions GmbH
 * @link       https://www.infomax-online.de
 * @author     Florian Müller <mueller@infomax-it.de>
 * @since      07.05.19
 */
/*  =========================================================
basic config
general structure setup
========================================================== */
/*  =========================================================
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 setup
========================================================= */
.filterOpenerPositioner,
.filterOpener--desktop {
  display: none;
}
@media (min-width: 1001px) {
  .filterOpenerPositioner,
  .filterOpener--desktop {
    display: block;
  }
  .filterOpenerPositioner {
    position: absolute;
    height: 100%;
    margin: 20px;
  }
  .filterOpener {
    left: 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    width: 100%;
    z-index: 1;
    padding-top: 80px;
    transition: padding-top 0.25s ease;
  }
  header.pageHeader--hidden + #mainWrapper .filterOpener {
    padding-top: 0;
  }
  .filterOpener__content {
    font: 400 normal 14px/1em 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1em;
    background: rgb(var(--color-text-default));
    border: none;
    color: rgb(var(--color-white));
    cursor: pointer;
    display: block;
    margin: 0;
    max-width: 70px;
    padding: 19px;
    text-align: center;
    position: relative;
    border-radius: 50%;
  }
  .filterOpener__content [class*=icon-] {
    font-size: 25px;
  }
  .filterCounter {
    top: 0;
    right: 0;
    position: absolute;
    background: rgb(var(--color-button-default));
    color: rgb(var(--color-white));
    box-sizing: border-box;
    border-radius: 15px;
    padding: 5px 8px;
  }
  .filterCounter:empty {
    display: none;
  }
}
/**
 * bsu
 *
 * 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  2019 infomax websolutions GmbH
 * @link       https://www.infomax-online.de
 * @author     Florian Müller <mueller@infomax-it.de>
 * @since      07.05.19
 */
/*  =========================================================
basic config
general structure setup
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*  =========================================================
general structure setup
========================================================= */
.filterOpener--mobile {
  display: none;
}
@media (max-width: 1000px) {
  .filterOpener--mobile {
    display: block;
  }
  .filterOpener {
    bottom: 30px;
    padding-top: 20px;
    position: -webkit-sticky;
    position: sticky;
    text-align: center;
    z-index: 6;
    pointer-events: none;
  }
  .filterOpener__content {
    font: 600 normal 16px/1em 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 1em;
    background: rgb(var(--color-text-default));
    color: rgb(var(--color-white));
    cursor: pointer;
    padding: 8px 10px 8px 30px;
    position: relative;
    text-align: center;
    width: 150px;
    display: inline-block;
    border-radius: 3px;
    pointer-events: all;
  }
  .filterOpener__content::before {
    font-size: 18px;
    position: relative;
    top: 2px;
  }
  .filterOpener__content [class*=icon-] {
    position: absolute;
    left: 15px;
  }
  .filterCounter::before {
    content: '(';
  }
  .filterCounter::after {
    content: ')';
  }
  .filterCounter:empty {
    display: none;
  }
}
