@charset "UTF-8";
/* moved by compressor */
/*!
 * jQuery mmenu v7.3.3
 * @requires jQuery 1.7.0 or later
 *
 * mmenujs.com
 *	
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
.mm-menu {
  --mm-line-height:20px;
  --mm-listitem-size:44px;
  --mm-navbar-size:44px;
  --mm-offset-top:0;
  --mm-offset-right:0;
  --mm-offset-bottom:0;
  --mm-offset-left:0;
  --mm-color-border:rgba(0, 0, 0, 0.1);
  --mm-color-button:rgba(0, 0, 0, 0.3);
  --mm-color-text:rgba(0, 0, 0, 0.75);
  --mm-color-text-dimmed:rgba(0, 0, 0, 0.3);
  --mm-color-background:#f3f3f3;
  --mm-color-background-highlight:rgba(0, 0, 0, 0.05);
  --mm-color-background-emphasis:rgba(255, 255, 255, 0.4);
  --mm-shadow:0 0 10px rgba( 0,0,0, 0.3 ); }

.mm-hidden {
  display: none !important; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
  line-height: 20px;
  line-height: var(--mm-line-height);
  box-sizing: border-box;
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  top: var(--mm-offset-top);
  right: var(--mm-offset-right);
  bottom: var(--mm-offset-bottom);
  left: var(--mm-offset-left);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  color: inherit;
  text-decoration: none; }

[dir=rtl] .mm-menu {
  direction: rtl; }

.mm-panels, .mm-panels > .mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.mm-panel, .mm-panels {
  box-sizing: border-box;
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text); }

.mm-panels {
  overflow: hidden; }

.mm-panel {
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  padding: 0 20px;
  transform: translate3d(100%, 0, 0);
  transition: transform .4s ease; }

.mm-panel:not(.mm-hidden) {
  display: block; }

.mm-panel:after, .mm-panel:before {
  content: '';
  display: block;
  height: 20px; }

.mm-panel_has-navbar {
  padding-top: 44px;
  padding-top: var(--mm-navbar-size); }

.mm-panel_opened {
  z-index: 1;
  transform: translate3d(0, 0, 0); }

.mm-panel_opened-parent {
  transform: translate3d(-30%, 0, 0); }

.mm-panel_highest {
  z-index: 2; }

.mm-panel_noanimation {
  transition: none !important; }

.mm-panel_noanimation.mm-panel_opened-parent {
  transform: translate3d(0, 0, 0); }

[dir=rtl] .mm-panel:not(.mm-panel_opened) {
  transform: translate3d(-100%, 0, 0); }

[dir=rtl] .mm-panel.mm-panel_opened-parent {
  transform: translate3d(30%, 0, 0); }

.mm-listitem_vertical > .mm-panel {
  transform: none !important;
  display: none;
  width: 100%;
  padding: 10px 0 10px 10px; }

.mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
  content: none;
  display: none; }

.mm-listitem_opened > .mm-panel {
  display: block; }

.mm-listitem_vertical > .mm-listitem__btn {
  height: 44px;
  height: var(--mm-listitem-size);
  bottom: auto; }

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent; }

.mm-listitem_opened > .mm-listitem__btn:after {
  transform: rotate(225deg);
  right: 19px; }

.mm-btn {
  box-sizing: border-box;
  width: 44px;
  padding: 0; }

.mm-btn:after, .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.1);
  border-color: var(--mm-color-button);
  border-width: 2px;
  border-style: solid; }

.mm-btn_close:after, .mm-btn_close:before {
  content: '';
  box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: rotate(-45deg); }

.mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px; }

.mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px; }

.mm-btn_next:after, .mm-btn_prev:before {
  content: '';
  border-bottom: none;
  border-right: none;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0; }

.mm-btn_prev:before {
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-btn_next:after {
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

[dir=rtl] .mm-btn_next:after {
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

[dir=rtl] .mm-btn_prev:before {
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

[dir=rtl] .mm-btn_close:after, [dir=rtl] .mm-btn_close:before {
  right: auto; }

[dir=rtl] .mm-btn_close:before {
  left: 25px; }

[dir=rtl] .mm-btn_close:after {
  left: 18px; }

.mm-navbar {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text-dimmed);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-align: center;
  display: none;
  height: 44px;
  height: var(--mm-navbar-size);
  padding: 0 44px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transition: opacity .4s ease; }

.mm-navbar > * {
  box-sizing: border-box;
  display: block;
  padding: 12px;
  padding: calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);
  padding-left: 0;
  padding-right: 0; }

.mm-navbar a, .mm-navbar a:hover {
  text-decoration: none; }

.mm-navbar__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.mm-navbar__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1; }

.mm-navbar__btn:first-child {
  text-align: left;
  left: 0; }

.mm-navbar__btn:last-child {
  text-align: right;
  right: 0; }

.mm-panel_has-navbar .mm-navbar {
  display: block; }

[dir=rtl] .mm-navbar__btn:first-child {
  text-align: right;
  right: 0;
  left: auto; }

[dir=rtl] .mm-navbar__btn:last-child {
  text-align: left;
  left: 0;
  right: auto; }

.mm-listitem, .mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-listitem {
  color: rgba(0, 0, 0, 0.75);
  color: var(--mm-color-text);
  border-color: rgba(0, 0, 0, 0.1);
  border-color: var(--mm-color-border);
  position: relative;
  display: flex;
  flex-wrap: wrap; }

.mm-listitem:after {
  content: '';
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 0; }

.mm-listitem a, .mm-listitem a:hover {
  text-decoration: none; }

.mm-listitem__btn, .mm-listitem__text {
  color: inherit;
  display: block;
  padding-top: 12px;
  padding-top: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);
  padding-bottom: 12px;
  padding-bottom: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2); }

.mm-listitem__text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 10px;
  flex-grow: 1;
  flex-basis: 10%; }

.mm-listitem__btn {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.4);
  tap-highlight-color: rgba(255, 255, 255, 0.4);
  -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
  tap-highlight-color: var(--mm-color-background-emphasis);
  background: rgba(3, 2, 1, 0);
  border-color: inherit;
  width: auto;
  padding-right: 54px;
  position: relative; }

.mm-listitem__btn:not(.mm-listitem__text) {
  border-left-width: 1px;
  border-left-style: solid; }

.mm-listitem_selected > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-listitem_opened > .mm-listitem__btn, .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
  background: var(--mm-color-background-highlight); }

.mm-panels > .mm-panel > .mm-listview {
  margin: 20px -20px; }

.mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listitem_divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  background: var(--mm-color-background-highlight);
  font-size: 75%;
  text-transform: uppercase;
  min-height: 20px;
  min-height: var(--mm-line-height);
  padding: 6.5px;
  padding: calc(((var(--mm-listitem-size) * .75) - var(--mm-line-height)) * .5);
  padding-right: 10px;
  padding-left: 20px; }

.mm-listitem_spacer {
  padding-top: 44px;
  padding-top: var(--mm-listitem-size); }

.mm-listitem_spacer > .mm-btn_next {
  top: 44px;
  top: var(--mm-listitem-size); }

[dir=rtl] .mm-listitem:after {
  left: 0;
  right: 20px; }

[dir=rtl] .mm-listitem__text {
  padding-left: 10px;
  padding-right: 20px; }

[dir=rtl] .mm-listitem__btn {
  padding-left: 54px;
  border-left-width: 0;
  border-left-style: none; }

[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
  padding-right: 0;
  border-right-width: 1px;
  border-right-style: solid; }

.mm-page {
  box-sizing: border-box;
  position: relative; }

.mm-slideout {
  transition: transform .4s ease;
  z-index: 1; }

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative; }

.mm-wrapper_background .mm-page {
  background: inherit; }

.mm-menu_offcanvas {
  display: none;
  position: fixed;
  right: auto;
  z-index: 0; }

.mm-menu_offcanvas.mm-menu_opened {
  display: block; }

.mm-menu_offcanvas {
  width: 80%;
  min-width: 240px;
  max-width: 440px; }

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0); }

.mm-wrapper__blocker {
  background: rgba(3, 2, 1, 0);
  overflow: hidden;
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2; }

.mm-wrapper_blocking {
  overflow: hidden; }

.mm-wrapper_blocking body {
  overflow: hidden; }

.mm-wrapper_blocking .mm-wrapper__blocker {
  display: block; }

.mm-sronly {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important; }

.mm-menu_autoheight {
  transition: none .4s ease;
  transition-property: transform,height; }

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
  position: relative; }

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
  max-height: 80%; }

.mm-menu_autoheight-measuring .mm-panel {
  display: block !important; }

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
  display: none !important; }

.mm-menu_autoheight-measuring .mm-panels > .mm-panel {
  bottom: auto !important;
  height: auto !important; }

[class*=mm-menu_columns-] {
  transition-property: width; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel {
  right: auto;
  transition-property: width,transform; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_opened, [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened-parent {
  display: block !important; }

[class*=mm-panel_columns-] {
  border-right: 1px solid;
  border-color: inherit; }

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
  border-right: none; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-0 {
  transform: translate3d(0, 0, 0); }

.mm-menu_columns-0 .mm-panels > .mm-panel {
  z-index: 0; }

.mm-menu_columns-0 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(100%, 0, 0); }

.mm-menu_columns-0 {
  width: 80%;
  min-width: 240px;
  max-width: 0; }

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0); }

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0); }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-1 {
  transform: translate3d(100%, 0, 0); }

.mm-menu_columns-1 .mm-panels > .mm-panel {
  z-index: 1;
  width: 100%; }

.mm-menu_columns-1 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(200%, 0, 0); }

.mm-menu_columns-1 {
  width: 80%;
  min-width: 240px;
  max-width: 440px; }

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0); }

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0); }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-2 {
  transform: translate3d(200%, 0, 0); }

.mm-menu_columns-2 .mm-panels > .mm-panel {
  z-index: 2;
  width: 50%; }

.mm-menu_columns-2 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(300%, 0, 0); }

.mm-menu_columns-2 {
  width: 80%;
  min-width: 240px;
  max-width: 880px; }

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0); }

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0); }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-3 {
  transform: translate3d(300%, 0, 0); }

.mm-menu_columns-3 .mm-panels > .mm-panel {
  z-index: 3;
  width: 33.34%; }

.mm-menu_columns-3 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(400%, 0, 0); }

.mm-menu_columns-3 {
  width: 80%;
  min-width: 240px;
  max-width: 1320px; }

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0); }

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0); }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-4 {
  transform: translate3d(400%, 0, 0); }

.mm-menu_columns-4 .mm-panels > .mm-panel {
  z-index: 4;
  width: 25%; }

.mm-menu_columns-4 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate3d(500%, 0, 0); }

.mm-menu_columns-4 {
  width: 80%;
  min-width: 240px;
  max-width: 1760px; }

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(80vw, 0, 0); }

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0); }

[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
  width: 100%;
  max-width: 100%;
  min-width: 100%; }

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
  transition-property: width,min-width,max-width,transform; }

.mm-counter {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  text-align: right;
  display: block;
  min-width: 44px;
  float: right; }

.mm-listitem_nosubitems > .mm-counter {
  display: none; }

[dir=rtl] .mm-counter {
  text-align: left;
  float: left; }

.mm-listitem_divider {
  opacity: 1;
  transition: opacity .4s ease; }

.mm-menu_dividers-light .mm-listitem_divider {
  background: inherit;
  font-size: inherit;
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  padding-top: 18px;
  padding-top: calc((var(--mm-listitem-size) - var(--mm-line-height)) * .75);
  padding-bottom: 6px;
  padding-bottom: calc((var(--mm-listitem-size) - var(--mm-line-height)) * .25); }

.mm-menu_border-none .mm-listitem_divider {
  border-top-width: 1px;
  border-top-style: solid; }

.mm-listview_fixeddivider {
  background: inherit;
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10; }

.mm-listview_fixeddivider:after {
  content: none !important;
  display: none !important; }

.mm-panel_dividers .mm-listview_fixeddivider {
  display: block; }

.mm-wrapper_opened.mm-dragging .mm-menu, .mm-wrapper_opened.mm-dragging .mm-slideout {
  transition-duration: 0s; }

.mm-menu_dropdown {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
  overflow: visible; }

.mm-wrapper_dropdown .mm-slideout {
  transform: none !important;
  z-index: 0; }

.mm-wrapper_dropdown .mm-wrapper__blocker {
  transition-delay: 0s !important;
  z-index: 1; }

.mm-wrapper_dropdown .mm-menu_dropdown {
  z-index: 2; }

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
  display: none; }

[class*=mm-menu_tip-]:before {
  content: '';
  background: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 0;
  transform: rotate(45deg); }

.mm-menu_tip-left:before {
  left: 22px; }

.mm-menu_tip-right:before {
  right: 22px; }

.mm-menu_tip-top:before {
  top: -8px; }

.mm-menu_tip-bottom:before {
  bottom: -8px; }

.mm-menu {
  --mm-iconbar-size:44px; }

.mm-iconbar {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  border: 0 solid rgba(0, 0, 0, 0.1);
  border-color: var(--mm-color-border);
  border-right-width: 1px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  width: 44px;
  width: var(--mm-iconbar-size);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2; }

.mm-menu_iconbar .mm-navbars_bottom, .mm-menu_iconbar .mm-navbars_top, .mm-menu_iconbar .mm-panels {
  left: 44px;
  left: var(--mm-iconbar-size); }

.mm-iconbar__bottom, .mm-iconbar__top {
  width: inherit;
  position: absolute; }

.mm-iconbar__bottom > *, .mm-iconbar__top > * {
  box-sizing: border-box;
  display: block;
  padding: 11px 0; }

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
  text-decoration: none; }

.mm-iconbar__top {
  top: 0; }

.mm-iconbar__bottom {
  bottom: 0; }

.mm-iconbar__tab_selected {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-menu_keyboardfocus a:focus, .mm-menu_keyboardfocus.mm-menu_opened ~ .mm-wrapper__blocker a:focus {
  outline: 0;
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-wrapper__blocker .mm-tabstart {
  cursor: default;
  display: block;
  width: 100%;
  height: 100%; }

.mm-wrapper__blocker .mm-tabend {
  opacity: 0;
  position: absolute;
  bottom: 0; }

.mm-menu {
  --mm-iconpanel-size:44px; }

.mm-panel_iconpanel-1, .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  width: calc(100% - (44px * 1));
  width: calc(100% - (var(--mm-iconpanel-size) * 1)); }

.mm-panel_iconpanel-2, .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  width: calc(100% - (44px * 2));
  width: calc(100% - (var(--mm-iconpanel-size) * 2)); }

.mm-panel_iconpanel-3, .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  width: calc(100% - (44px * 3));
  width: calc(100% - (var(--mm-iconpanel-size) * 3)); }

.mm-panel_iconpanel-first ~ .mm-panel, .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  width: calc(100% - 44px);
  width: calc(100% - var(--mm-iconpanel-size)); }

.mm-menu_iconpanel .mm-panels > .mm-listview_fixeddivider, .mm-menu_iconpanel .mm-panels > .mm-panel {
  left: auto;
  transition-property: transform,width; }

.mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left-width: 1px;
  border-left-style: solid; }

.mm-menu_iconpanel .mm-panels > .mm-panel_opened, .mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  display: block !important; }

.mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  overflow-y: hidden;
  transform: unset; }

.mm-menu_hidedivider .mm-panel_opened-parent .mm-listitem_divider, .mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
  opacity: 0; }

.mm-panel__blocker {
  background: inherit;
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  transition: opacity .4s ease; }

.mm-panel_opened-parent .mm-panel__blocker {
  opacity: .6;
  bottom: -100000px; }

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-listview_fixeddivider, [dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel {
  left: 0;
  right: auto;
  transition-property: transform,width; }

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left: none;
  border-right: 1px solid;
  border-color: inherit; }

.mm-navbars_bottom, .mm-navbars_top {
  background: inherit;
  border-color: inherit;
  border-width: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1; }

.mm-navbars_bottom > .mm-navbar, .mm-navbars_top > .mm-navbar {
  border-width: 0;
  display: flex;
  position: relative; }

.mm-navbars_bottom > .mm-navbar:not(.mm-navbar_has-btns), .mm-navbars_top > .mm-navbar:not(.mm-navbar_has-btns) {
  padding: 0; }

.mm-navbars_bottom > .mm-navbar > :not(img):not(.mm-btn), .mm-navbars_top > .mm-navbar > :not(img):not(.mm-btn) {
  flex: 1 1; }

.mm-navbars_top {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  top: 0;
  bottom: auto; }

.mm-menu_navbar_top-1 .mm-panels {
  top: 44px;
  top: calc(var(--mm-navbar-size) * 1); }

.mm-menu_navbar_top-2 .mm-panels {
  top: 88px;
  top: calc(var(--mm-navbar-size) * 2); }

.mm-menu_navbar_top-3 .mm-panels {
  top: 132px;
  top: calc(var(--mm-navbar-size) * 3); }

.mm-menu_navbar_top-4 .mm-panels {
  top: 176px;
  top: calc(var(--mm-navbar-size) * 4); }

.mm-navbars_bottom {
  border-top-style: solid;
  border-top-width: 1px;
  bottom: 0;
  top: auto; }

.mm-menu_navbar_bottom-1 .mm-panels {
  bottom: 44px;
  bottom: calc(var(--mm-navbar-size) * 1); }

.mm-menu_navbar_bottom-2 .mm-panels {
  bottom: 88px;
  bottom: calc(var(--mm-navbar-size) * 2); }

.mm-menu_navbar_bottom-3 .mm-panels {
  bottom: 132px;
  bottom: calc(var(--mm-navbar-size) * 3); }

.mm-menu_navbar_bottom-4 .mm-panels {
  bottom: 176px;
  bottom: calc(var(--mm-navbar-size) * 4); }

.mm-navbar_size-2 {
  height: 88px;
  height: calc(var(--mm-navbar-size) * 2); }

.mm-navbar_size-3 {
  height: 132px;
  height: calc(var(--mm-navbar-size) * 3); }

.mm-navbar_size-4 {
  height: 176px;
  height: calc(var(--mm-navbar-size) * 4); }

.mm-navbar__breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 20px; }

.mm-navbar__breadcrumbs > * {
  display: inline-block;
  padding-right: 6px;
  padding-top: 12px;
  padding-top: calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);
  padding-bottom: 12px;
  padding-bottom: calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5); }

.mm-navbar__breadcrumbs > a {
  text-decoration: underline; }

.mm-navbar_has-btns .mm-navbar__breadcrumbs {
  margin-left: -44px; }

.mm-navbar_has-btns .mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
  margin-left: 0;
  padding-left: 0; }

.mm-navbar__tab_selected {
  background: inherit !important;
  color: inherit !important;
  border-width: 1px;
  border-style: solid;
  border-color: inherit; }

.mm-navbar__tab_selected:first-child {
  border-left: none; }

.mm-navbar__tab_selected:last-child {
  border-right: none; }

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs, .mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
  background: inherit !important;
  color: inherit !important; }

.mm-navbars_top .mm-navbar_tabs:not(:last-child) {
  border-bottom-width: 1px;
  border-bottom-style: solid; }

.mm-navbars_top .mm-navbar__tab_selected {
  border-bottom: none;
  margin-bottom: -1px; }

.mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected {
  border-top: none; }

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
  background: inherit;
  color: inherit; }

.mm-navbars_bottom .mm-navbar_tabs:not(:first-child) {
  border-top-width: 1px;
  border-top-style: solid; }

.mm-navbars_bottom .mm-navbar__tab_selected {
  border-top: none;
  margin-top: -1px; }

.mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected {
  border-bottom: none; }

.mm-navbar_tabs > a:not(.mm-navbar__tab_selected), .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed); }

.mm-searchfield {
  display: flex;
  height: 44px;
  height: var(--mm-navbar-size);
  padding: 0;
  overflow: hidden; }

.mm-searchfield input {
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
  background: var(--mm-color-background-highlight);
  color: rgba(0, 0, 0, 0.75);
  color: var(--mm-color-text);
  font: inherit;
  font-size: inherit;
  line-height: 35.2px;
  line-height: calc(var(--mm-navbar-size) * .7);
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 24px;
  height: calc(var(--mm-navbar-size) * .7);
  min-height: unset;
  max-height: unset;
  margin: 0;
  padding: 0 10px; }

.mm-searchfield input::-ms-clear {
  display: none; }

.mm-searchfield__input {
  padding: 6.6px 10px 0 10px;
  padding-top: calc(var(--mm-navbar-size) * .15);
  position: relative; }

.mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  text-align: center;
  font-size: 150%;
  padding: 44px 0; }

.mm-searchfield__btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0; }

.mm-panel_search {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border-left: none !important; }

.mm-searchfield__input {
  flex: 1 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%; }

.mm-searchfield__cancel {
  line-height: 44px;
  line-height: var(--mm-navbar-size);
  text-decoration: none;
  display: block;
  padding-right: 10px;
  margin-right: -100px;
  transition: margin .4s ease; }

.mm-searchfield__cancel-active {
  margin-right: 0; }

.mm-panel > .mm-searchfield {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.mm-panel_has-searchfield {
  padding-top: 44px;
  padding-top: var(--mm-navbar-size); }

.mm-panel_has-navbar.mm-panel_has-searchfield {
  padding-top: 88px;
  padding-top: calc(var(--mm-navbar-size) * 2); }

.mm-panel_has-navbar.mm-panel_has-searchfield > .mm-searchfield {
  top: 44px;
  top: var(--mm-navbar-size); }

.mm-listitem_nosubitems > .mm-listitem__btn {
  display: none; }

.mm-listitem_nosubitems > .mm-listitem__text {
  padding-right: 10px; }

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 15;
  transition: right .4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; }

.mm-sectionindexer a {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  line-height: 1;
  text-decoration: none;
  display: block; }

.mm-sectionindexer ~ .mm-panels {
  transition: right .4s ease; }

.mm-menu_has-sectionindexer .mm-sectionindexer {
  right: 0; }

.mm-menu_has-sectionindexer .mm-panels {
  right: 20px; }

.mm-menu_navbar_top-1 .mm-sectionindexer {
  top: 46px;
  top: calc((var(--mm-navbar-size) * 1) + 2px); }

.mm-menu_navbar_top-2 .mm-sectionindexer {
  top: 90px;
  top: calc((var(--mm-navbar-size) * 2) + 2px); }

.mm-menu_navbar_top-3 .mm-sectionindexer {
  top: 134px;
  top: calc((var(--mm-navbar-size) * 3) + 2px); }

.mm-menu_navbar_top-4 .mm-sectionindexer {
  top: 178px;
  top: calc((var(--mm-navbar-size) * 4) + 2px); }

.mm-menu_navbar_bottom-1 .mm-sectionindexer {
  bottom: 46px;
  bottom: calc((var(--mm-navbar-size) * 1) + 2px); }

.mm-menu_navbar_bottom-2 .mm-sectionindexer {
  bottom: 90px;
  bottom: calc((var(--mm-navbar-size) * 2) + 2px); }

.mm-menu_navbar_bottom-3 .mm-sectionindexer {
  bottom: 134px;
  bottom: calc((var(--mm-navbar-size) * 3) + 2px); }

.mm-menu_navbar_bottom-4 .mm-sectionindexer {
  bottom: 178px;
  bottom: calc((var(--mm-navbar-size) * 4) + 2px); }

.mm-menu_selected-hover .mm-listitem > .mm-listitem__btn, .mm-menu_selected-hover .mm-listitem > .mm-listitem__text, .mm-menu_selected-parent .mm-listitem > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem > .mm-listitem__text {
  transition: background .4s ease; }

.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected .mm-listitem__text {
  background: 0 0; }

.mm-menu_selected-hover .mm-listitem__btn:hover, .mm-menu_selected-hover .mm-listitem__text:hover {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) .mm-listitem__text {
  background: 0 0; }

.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-menu, .mm-slideout {
  --mm-sidebar-collapsed-size:44px;
  --mm-sidebar-expanded-size:440px; }

.mm-wrapper_sidebar-collapsed body, .mm-wrapper_sidebar-expanded body {
  position: relative; }

.mm-wrapper_sidebar-collapsed .mm-slideout, .mm-wrapper_sidebar-expanded .mm-slideout {
  transition-property: width,transform; }

.mm-wrapper_sidebar-collapsed .mm-page, .mm-wrapper_sidebar-expanded .mm-page {
  background: inherit;
  box-sizing: border-box;
  min-height: 100vh; }

.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed, .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  display: block !important;
  top: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important; }

.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-listitem_divider, .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
  opacity: 0; }

.mm-wrapper_sidebar-collapsed .mm-slideout {
  width: calc(100% - 44px);
  width: calc(100% - var(--mm-sidebar-collapsed-size));
  transform: translate3d(44px, 0, 0);
  transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0); }

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  border-right-width: 1px;
  border-right-style: solid;
  min-width: 0 !important;
  max-width: 100000px !important; }

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
  content: none;
  display: none; }

.mm-wrapper_sidebar-expanded.mm-wrapper_blocking, .mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
  overflow: visible; }

.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
  display: none !important; }

.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  width: calc(100% - 440px);
  width: calc(100% - var(--mm-sidebar-expanded-size));
  transform: translate3d(440px, 0, 0);
  transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0); }

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  width: 440px;
  width: var(--mm-sidebar-expanded-size); }

.mm-menu__blocker {
  background: rgba(3, 2, 1, 0);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3; }

.mm-menu_opened .mm-menu__blocker {
  display: none; }

[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
  transform: translate3d(0, 0, 0); }

[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
  transform: translate3d(0, 0, 0); }

[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(0, 0, 0); }

label.mm-toggle {
  border-radius: 34px;
  min-width: 58px;
  width: 58px;
  height: 34px;
  margin: 0 10px;
  margin-top: 5px;
  margin-top: calc((var(--mm-listitem-size) - 34px)/ 2); }

label.mm-toggle:before {
  content: '';
  display: block;
  border-radius: 34px;
  width: 32px;
  height: 32px;
  margin: 1px; }

input.mm-toggle {
  position: absolute;
  left: -10000px; }

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right; }

label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
  background: var(--mm-color-border); }

label.mm-toggle:before {
  background: #f3f3f3;
  background: var(--mm-color-background); }

input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

label.mm-check {
  width: 34px;
  height: 34px; }

label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.75);
  border-color: var(--mm-color-text);
  content: '';
  display: block;
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: .1;
  transform: rotate(-45deg); }

input.mm-check {
  position: absolute;
  left: -10000px; }

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1; }

[dir=rtl] input.mm-toggle:checked ~ label.mm-toggle:before {
  float: left; }

.mm-menu_border-none .mm-listitem:after, .mm-panel_border-none .mm-listitem:after {
  content: none; }

.mm-menu_border-full .mm-listitem:after, .mm-panel_border-full .mm-listitem:after {
  left: 0 !important; }

.mm-menu_border-offset .mm-listitem:after, .mm-panel_border-offset .mm-listitem:after {
  right: 20px; }

.mm-menu_fx-menu-zoom {
  transition: transform .4s ease; }

.mm-wrapper_opened .mm-menu_fx-menu-zoom {
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform-origin: left center; }

.mm-wrapper_opening .mm-menu_fx-menu-zoom {
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right {
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform-origin: right center; }

.mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right {
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu_fx-menu-slide {
  transition: transform .4s ease; }

.mm-wrapper_opened .mm-menu_fx-menu-slide {
  transform: translate3d(-30%, 0, 0); }

.mm-wrapper_opening .mm-menu_fx-menu-slide {
  transform: translate3d(0, 0, 0); }

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
  transform: translate3d(30%, 0, 0); }

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-menu-fade {
  opacity: 0;
  transition: opacity .4s ease; }

.mm-wrapper_opening .mm-menu_fx-menu-fade {
  opacity: 1; }

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
  transition-property: none; }

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel, .mm-panel_fx-zoom {
  transform-origin: left center;
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened, .mm-panel_fx-zoom.mm-panel_opened {
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent, .mm-panel_fx-zoom.mm-panel_opened-parent {
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0); }

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent, .mm-panel_fx-slide-0.mm-panel_opened-parent {
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent, .mm-panel_fx-slide-100.mm-panel_opened-parent {
  transform: translate3d(-100%, 0, 0); }

.mm-menu_fx-panels-slide-up .mm-panel, .mm-panel_fx-slide-up {
  transform: translate3d(0, 100%, 0); }

.mm-menu_fx-panels-slide-up .mm-panel_opened, .mm-menu_fx-panels-slide-up .mm-panel_opened-parent, .mm-panel_fx-slide-up.mm-panel_opened {
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-slide-right .mm-panel, .mm-panel_fx-slide-right {
  transform: translate3d(-100%, 0, 0); }

.mm-menu_fx-panels-slide-right .mm-panel_opened, .mm-menu_fx-panels-slide-right .mm-panel_opened-parent, .mm-panel_fx-slide-right.mm-panel_opened {
  transform: translate3d(0, 0, 0); }

[class*=mm-menu_fx-listitems-] .mm-listitem {
  transition: none .4s ease; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(1) {
  transition-delay: 50ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2) {
  transition-delay: .1s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3) {
  transition-delay: 150ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4) {
  transition-delay: .2s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5) {
  transition-delay: 250ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6) {
  transition-delay: .3s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7) {
  transition-delay: 350ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8) {
  transition-delay: .4s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9) {
  transition-delay: 450ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10) {
  transition-delay: .5s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11) {
  transition-delay: 550ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12) {
  transition-delay: .6s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13) {
  transition-delay: 650ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14) {
  transition-delay: .7s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15) {
  transition-delay: 750ms; }

.mm-menu_fx-listitems-slide .mm-listitem {
  transition-property: transform,opacity;
  transform: translate3d(50%, 0, 0);
  opacity: 0; }

.mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem {
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.mm-menu_fx-listitems-fade .mm-listitem {
  transition-property: opacity;
  opacity: 0; }

.mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem {
  opacity: 1; }

.mm-menu_fx-listitems-drop .mm-listitem {
  transition-property: opacity,top;
  opacity: 0;
  top: -25%; }

.mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem {
  opacity: 1;
  top: 0; }

.mm-menu_fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px; }

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(100vw, 0, 0); }

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-100vw, 0, 0); }

.mm-menu_fullscreen.mm-menu_position-top {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px; }

.mm-menu_fullscreen.mm-menu_position-bottom {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px; }

.mm-menu_listview-justify .mm-panels > .mm-panel:after, .mm-menu_listview-justify .mm-panels > .mm-panel:before, .mm-panels > .mm-panel_listview-justify:after, .mm-panels > .mm-panel_listview-justify:before {
  content: none;
  display: none; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview, .mm-panels > .mm-panel_listview-justify .mm-listview {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem, .mm-panels > .mm-panel_listview-justify .mm-listitem {
  flex: 1 0 auto;
  min-height: 44px; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem:not(.mm-listitem_divider), .mm-panels > .mm-panel_listview-justify .mm-listitem:not(.mm-listitem_divider) {
  display: flex;
  flex-direction: column; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem__text, .mm-panels > .mm-panel_listview-justify .mm-listitem__text {
  box-sizing: border-box;
  flex: 1 0 auto;
  display: flex;
  align-items: center; }

.mm-listview_inset {
  list-style: inside disc;
  width: 100%;
  padding: 0 30px 15px 30px;
  margin: 0; }

.mm-listview_inset .mm-listitem {
  padding: 5px 0; }

.mm-menu_multiline .mm-listitem__text, .mm-panel_multiline .mm-listitem__text {
  text-overflow: clip;
  white-space: normal; }

[class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: 0; }

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: .3;
  transition: opacity .4s ease .4s; }

.mm-menu_opened.mm-menu_pagedim ~ .mm-wrapper__blocker {
  background: inherit; }

.mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
  background: #000; }

.mm-menu_opened.mm-menu_pagedim-white ~ .mm-wrapper__blocker {
  background: #fff; }

.mm-menu_popup {
  transition: opacity .4s ease;
  opacity: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
  min-height: 140px;
  max-height: 880px;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 2;
  transform: translate3d(-50%, -50%, 0); }

.mm-menu_popup.mm-menu_opened ~ .mm-slideout {
  transform: none !important;
  z-index: 0; }

.mm-menu_popup.mm-menu_opened ~ .mm-wrapper__blocker {
  transition-delay: 0s !important;
  z-index: 1; }

.mm-wrapper_opening .mm-menu_popup {
  opacity: 1; }

.mm-menu_position-right {
  left: auto;
  right: 0; }

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate3d(-80vw, 0, 0); }

.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
  transition: transform .4s ease; }

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
  z-index: 2; }

.mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout, .mm-menu_position-front.mm-menu_opened ~ .mm-slideout, .mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
  transform: none !important;
  z-index: 0; }

.mm-menu_position-bottom.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-front.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-top.mm-menu_opened ~ .mm-wrapper__blocker {
  z-index: 1; }

.mm-menu_position-front {
  transform: translate3d(-100%, 0, 0); }

.mm-menu_position-front.mm-menu_position-right {
  transform: translate3d(100%, 0, 0); }

.mm-menu_position-bottom, .mm-menu_position-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%; }

.mm-menu_position-top {
  transform: translate3d(0, -100%, 0); }

.mm-menu_position-top {
  height: 80vh;
  min-height: 140px;
  max-height: 880px; }

.mm-menu_position-bottom {
  transform: translate3d(0, 100%, 0);
  top: auto; }

.mm-menu_position-bottom {
  height: 80vh;
  min-height: 140px;
  max-height: 880px; }

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
  transform: translate3d(0, 0, 0); }

.mm-menu_shadow-page:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: var(--mm-shadow);
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 100;
  -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%); }

.mm-menu_shadow-page.mm-menu_position-right:after {
  left: auto;
  right: 100%;
  -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
  clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%); }

.mm-menu_shadow-page.mm-menu_position-front:after {
  content: none;
  display: none; }

.mm-menu_shadow-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: var(--mm-shadow); }

.mm-menu_shadow-panels .mm-panels > .mm-panel {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: var(--mm-shadow); }

.mm-menu_theme-white {
  --mm-color-border:rgba( 0,0,0, 0.1 );
  --mm-color-button:rgba( 0,0,0, 0.3 );
  --mm-color-text:rgba( 0,0,0, 0.7 );
  --mm-color-text-dimmed:rgba( 0,0,0, 0.3 );
  --mm-color-background:#fff;
  --mm-color-background-highlight:rgba( 0,0,0, 0.06 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.03 );
  --mm-shadow:0 0 10px rgba( 0,0,0, 0.2 ); }

.mm-menu_theme-dark {
  --mm-color-border:rgba( 0,0,0, 0.3 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.85 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#333;
  --mm-color-background-highlight:rgba( 255,255,255, 0.08 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.1 );
  --mm-shadow:0 0 20px rgba( 0,0,0, 0.5 ); }

.mm-menu_theme-black {
  --mm-color-border:rgba( 255,255,255, 0.25 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.75 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#000;
  --mm-color-background-highlight:rgba( 255,255,255, 0.2 );
  --mm-color-background-emphasis:rgba( 255,255,255, 0.15 );
  --mm-shadow:none; }

.mm-menu_tileview .mm-listview, .mm-panel_tileview .mm-listview {
  margin: 0 !important; }

.mm-menu_tileview .mm-listview:after, .mm-panel_tileview .mm-listview:after {
  content: '';
  display: block;
  clear: both; }

.mm-menu_tileview .mm-listitem, .mm-panel_tileview .mm-listitem {
  padding: 0;
  float: left;
  position: relative;
  width: 50%;
  height: 0;
  padding-top: 50%; }

.mm-menu_tileview .mm-listitem:after, .mm-panel_tileview .mm-listitem:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1; }

.mm-menu_tileview .mm-listitem.mm-tile-xs, .mm-panel_tileview .mm-listitem.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%; }

.mm-menu_tileview .mm-listitem.mm-tile-s, .mm-panel_tileview .mm-listitem.mm-tile-s {
  width: 25%;
  padding-top: 25%; }

.mm-menu_tileview .mm-listitem.mm-tile-l, .mm-panel_tileview .mm-listitem.mm-tile-l {
  width: 75%;
  padding-top: 75%; }

.mm-menu_tileview .mm-listitem.mm-tile-xl, .mm-panel_tileview .mm-listitem.mm-tile-xl {
  width: 100%;
  padding-top: 100%; }

.mm-menu_tileview .mm-listitem__text, .mm-panel_tileview .mm-listitem__text {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0; }

.mm-menu_tileview .mm-listitem__btn, .mm-panel_tileview .mm-listitem__btn {
  width: auto; }

.mm-menu_tileview .mm-listitem__btn:after, .mm-menu_tileview .mm-listitem__btn:before, .mm-panel_tileview .mm-listitem__btn:after, .mm-panel_tileview .mm-listitem__btn:before {
  content: none;
  display: none; }

.mm-menu_tileview .mm-listitem_divider, .mm-panel_tileview .mm-listitem_divider {
  display: none; }

.mm-menu_tileview .mm-panel, .mm-panel_tileview {
  padding-left: 0;
  padding-right: 0; }

.mm-menu_tileview .mm-panel:after, .mm-menu_tileview .mm-panel:before, .mm-panel_tileview:after, .mm-panel_tileview:before {
  content: none;
  display: none; }

body.modal-open .mm-slideout {
  z-index: unset; }

/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

.cc-window {
  opacity: 1;
  transition: opacity 1s ease; }

.cc-window.cc-invisible {
  opacity: 0; }

.cc-animate.cc-revoke {
  transition: transform 1s ease; }

.cc-animate.cc-revoke.cc-top {
  transform: translateY(-2em); }

.cc-animate.cc-revoke.cc-bottom {
  transform: translateY(2em); }

.cc-animate.cc-revoke.cc-active.cc-top {
  transform: translateY(0); }

.cc-animate.cc-revoke.cc-active.cc-bottom {
  transform: translateY(0); }

.cc-revoke:hover {
  transform: translateY(0); }

.cc-grower {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s; }

.cc-revoke, .cc-window {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Helvetica,Calibri,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: flex;
  flex-wrap: nowrap;
  z-index: 9999; }

.cc-window.cc-static {
  position: static; }

.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  flex-direction: column; }

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  flex-direction: row; }

.cc-revoke {
  padding: .5em; }

.cc-revoke:hover {
  text-decoration: underline; }

.cc-header {
  font-size: 18px;
  font-weight: 700; }

.cc-btn, .cc-close, .cc-link, .cc-revoke {
  cursor: pointer; }

.cc-link {
  opacity: .8;
  display: inline-block;
  padding: .2em;
  text-decoration: underline; }

.cc-link:hover {
  opacity: 1; }

.cc-link:active, .cc-link:visited {
  color: initial; }

.cc-btn {
  display: block;
  padding: .4em .8em;
  font-size: .9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap; }

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent; }

.cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline; }

.cc-close {
  display: block;
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: 1.6em;
  opacity: .9;
  line-height: .75; }

.cc-close:focus, .cc-close:hover {
  opacity: 1; }

.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: .5em;
  border-bottom-right-radius: .5em; }

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em; }

.cc-revoke.cc-left {
  left: 3em;
  right: unset; }

.cc-revoke.cc-right {
  right: 3em;
  left: unset; }

.cc-top {
  top: 1em; }

.cc-left {
  left: 1em; }

.cc-right {
  right: 1em; }

.cc-bottom {
  bottom: 1em; }

.cc-floating > .cc-link {
  margin-bottom: 1em; }

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em; }

.cc-window.cc-floating .cc-compliance {
  flex: 1 0 auto; }

.cc-window.cc-banner {
  align-items: center; }

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0; }

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0; }

.cc-banner .cc-message {
  display: block;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em; }

.cc-compliance {
  display: flex;
  align-items: center;
  align-content: space-between; }

.cc-floating .cc-compliance > .cc-btn {
  flex: 1 1; }

.cc-btn + .cc-btn {
  margin-left: .5em; }

.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px; }

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  flex: none; }

.cc-theme-classic .cc-btn {
  border-radius: 5px; }

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px; }

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block; }

.cc-theme-edgeless.cc-window {
  padding: 0; }

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em; }

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: .8em 1.8em;
  height: 100%; }

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em; }

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0; }

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  /* disable global scrolling when featherlights are visible */
  overflow: hidden; }

.featherlight {
  display: none;
  /* dimensions: spanning the background from edge to edge */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  /* z-index needs to be >= elements on the site. */
  /* position: centering content */
  text-align: center;
  /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
  white-space: nowrap;
  /* styling */
  cursor: pointer;
  background: #333;
  /* IE8 "hack" for nested featherlights */
  background: rgba(0, 0, 0, 0); }

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8); }

.featherlight:before {
  /* position: trick to center content vertically */
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.featherlight .featherlight-content {
  /* make content container for positioned elements (close button) */
  position: relative;
  /* position: centering vertical and horizontal */
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  /* dimensions: cut off images */
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  /* dimensions: handling large content */
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  /* styling */
  background: #fff;
  cursor: auto;
  /* reset white-space wrapping */
  white-space: normal; }

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: block; }

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
  display: none; }

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  /* dimensions: 25px x 25px */
  line-height: 25px;
  width: 25px;
  /* styling */
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
  /* Set the background in case it overlaps the content */
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: none;
  padding: 0; }

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0; }

.featherlight .featherlight-image {
  /* styling */
  width: 100%; }

.featherlight-iframe .featherlight-content {
  /* removed the border for image croping since iframe is edge to edge */
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch; }

.featherlight iframe {
  /* styling */
  border: none; }

.featherlight * {
  /* See https://github.com/noelboss/featherlight/issues/42 */
  box-sizing: border-box; }

/* handling phones and small screens */

/* hide non featherlight items when printing */

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
.featherlight-next,
.featherlight-previous {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  bottom: 0;
  left: 80%;
  cursor: pointer;
  /* preventing text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* IE9 hack, otherwise navigation doesn't appear */
  background: rgba(0, 0, 0, 0); }

.featherlight-previous {
  left: 25px;
  right: 80%; }

.featherlight-next:hover,
.featherlight-previous:hover {
  background: rgba(255, 255, 255, 0.25); }

.featherlight-next span,
.featherlight-previous span {
  display: none;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 82%;
  /* center horizontally */
  text-align: center;
  font-size: 80px;
  line-height: 80px;
  /* center vertically */
  margin-top: -40px;
  text-shadow: 0px 0px 5px #fff;
  color: #fff;
  font-style: normal;
  font-weight: normal; }

.featherlight-next span {
  right: 5%;
  left: auto; }

.featherlight-next:hover span,
.featherlight-previous:hover span {
  display: inline-block; }

.featherlight-swipe-aware .featherlight-next,
.featherlight-swipe-aware .featherlight-previous {
  display: none; }

/* Hide navigation while loading */
.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
  display: none; }

/* Hide navigation in case of single image */
.featherlight-first-slide.featherlight-last-slide .featherlight-previous,
.featherlight-first-slide.featherlight-last-slide .featherlight-next {
  display: none; }

/* Always display arrows on touch devices */

/* handling phones and small screens */

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-search--inline {
  float: left; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none; }

.select2-results__option[aria-selected] {
  cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/*! Reflex v1.0.9 - https://github.com/leejordan/reflex */
/*
 *
 * Reflex is a flexbox grid which provides a way to take advantage of emerging
 * flexbox support while providing a fall back to inline-block on older browsers
 *
 * Built by Lee Jordan G.C.S.E.
 * email: ldjordan@gmail.com
 * github: https://github.com/leejordan
 *
 * Structure and calculations are inspired by twitter bootstrap
 *
 */
.grid {
  display: inline-block;
  display: flex;
  *display: inline;
  zoom: 1;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 109.5rem;
  list-style-type: none; }
  .grid:before, .grid:after {
    max-width: 100%; }
  .grid .grid {
    width: auto;
    flex: 1 1 auto;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem; }
  .grid *,
  .grid *:before,
  .grid *:after {
    box-sizing: border-box; }

[class*="grid__col-"] {
  position: relative;
  width: 100%;
  vertical-align: top;
  padding: 0 0.9375rem;
  display: inline-block;
  *display: inline;
  zoom: 1; }

.grid__col- {
  position: relative;
  width: 100%;
  vertical-align: top;
  padding: 0 0.9375rem;
  display: inline-block;
  *display: inline;
  zoom: 1; }

.grid__cell {
  position: relative;
  display: block;
  flex: 1 1 auto; }

_:-ms-fullscreen,
:root .grid__cell {
  width: 100%; }

.grid__col-24 {
  width: 100%; }

.grid__col-23 {
  width: 95.8333333333%; }

.grid__col-22 {
  width: 91.6666666667%; }

.grid__col-21 {
  width: 87.5%; }

.grid__col-20 {
  width: 83.3333333333%; }

.grid__col-19 {
  width: 79.1666666667%; }

.grid__col-18 {
  width: 75%; }

.grid__col-17 {
  width: 70.8333333333%; }

.grid__col-16 {
  width: 66.6666666667%; }

.grid__col-15 {
  width: 62.5%; }

.grid__col-14 {
  width: 58.3333333333%; }

.grid__col-13 {
  width: 54.1666666667%; }

.grid__col-12 {
  width: 50%; }

.grid__col-11 {
  width: 45.8333333333%; }

.grid__col-10 {
  width: 41.6666666667%; }

.grid__col-9 {
  width: 37.5%; }

.grid__col-8 {
  width: 33.3333333333%; }

.grid__col-7 {
  width: 29.1666666667%; }

.grid__col-6 {
  width: 25%; }

.grid__col-5 {
  width: 20.8333333333%; }

.grid__col-4 {
  width: 16.6666666667%; }

.grid__col-3 {
  width: 12.5%; }

.grid__col-2 {
  width: 8.3333333333%; }

.grid__col-1 {
  width: 4.1666666667%; }

.grid__col-auto {
  flex: 1 0 auto;
  width: auto !important;
  max-width: 100%; }

.grid--order-24 {
  order: 24; }

.grid--order-23 {
  order: 23; }

.grid--order-22 {
  order: 22; }

.grid--order-21 {
  order: 21; }

.grid--order-20 {
  order: 20; }

.grid--order-19 {
  order: 19; }

.grid--order-18 {
  order: 18; }

.grid--order-17 {
  order: 17; }

.grid--order-16 {
  order: 16; }

.grid--order-15 {
  order: 15; }

.grid--order-14 {
  order: 14; }

.grid--order-13 {
  order: 13; }

.grid--order-12 {
  order: 12; }

.grid--order-11 {
  order: 11; }

.grid--order-10 {
  order: 10; }

.grid--order-9 {
  order: 9; }

.grid--order-8 {
  order: 8; }

.grid--order-7 {
  order: 7; }

.grid--order-6 {
  order: 6; }

.grid--order-5 {
  order: 5; }

.grid--order-4 {
  order: 4; }

.grid--order-3 {
  order: 3; }

.grid--order-2 {
  order: 2; }

.grid--order-1 {
  order: 1; }

.grid--order-0 {
  order: 0; }

.grid--offset-23 {
  margin-left: 95.8333333333%; }

.grid--offset-22 {
  margin-left: 91.6666666667%; }

.grid--offset-21 {
  margin-left: 87.5%; }

.grid--offset-20 {
  margin-left: 83.3333333333%; }

.grid--offset-19 {
  margin-left: 79.1666666667%; }

.grid--offset-18 {
  margin-left: 75%; }

.grid--offset-17 {
  margin-left: 70.8333333333%; }

.grid--offset-16 {
  margin-left: 66.6666666667%; }

.grid--offset-15 {
  margin-left: 62.5%; }

.grid--offset-14 {
  margin-left: 58.3333333333%; }

.grid--offset-13 {
  margin-left: 54.1666666667%; }

.grid--offset-12 {
  margin-left: 50%; }

.grid--offset-11 {
  margin-left: 45.8333333333%; }

.grid--offset-10 {
  margin-left: 41.6666666667%; }

.grid--offset-9 {
  margin-left: 37.5%; }

.grid--offset-8 {
  margin-left: 33.3333333333%; }

.grid--offset-7 {
  margin-left: 29.1666666667%; }

.grid--offset-6 {
  margin-left: 25%; }

.grid--offset-5 {
  margin-left: 20.8333333333%; }

.grid--offset-4 {
  margin-left: 16.6666666667%; }

.grid--offset-3 {
  margin-left: 12.5%; }

.grid--offset-2 {
  margin-left: 8.3333333333%; }

.grid--offset-1 {
  margin-left: 4.1666666667%; }

.grid--full {
  max-width: 100%; }

.grid--max {
  max-width: 109.5rem; }

.grid--nested {
  margin-left: -0.9375rem !important;
  margin-right: -0.9375rem !important;
  width: auto;
  max-width: none; }

.grid--not-nested {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none; }

.grid--bleed [class*="grid__col-"] {
  padding: 0; }

.grid--wrap {
  flex-wrap: wrap; }

.grid--no-wrap {
  flex-wrap: nowrap; }

.grid--wrap-reverse {
  flex-wrap: wrap-reverse; }

.grid--direction-row {
  flex-direction: row; }

.grid--direction-row-reverse {
  flex-direction: row-reverse; }

.grid--direction-column {
  flex-direction: column; }

.grid--direction-column-reverse {
  flex-direction: column-reverse; }

.grid--align-start {
  align-items: flex-start; }

.grid--align-end {
  align-items: flex-end; }
  .grid--align-end [class*="grid__col-"] {
    vertical-align: bottom; }

.grid--align-center {
  align-items: center; }
  .grid--align-center [class*="grid__col-"] {
    vertical-align: middle; }

.grid--align-baseline {
  align-items: baseline; }
  .grid--align-baseline [class*="grid__col-"] {
    vertical-align: baseline; }

.grid--align-content-start {
  align-content: flex-start; }

.grid--align-content-end {
  align-content: flex-end; }
  .grid--align-content-end [class*="grid__col-"] {
    vertical-align: bottom; }

.grid--align-content-center {
  align-content: center; }

.grid--align-content-space-between {
  align-content: space-between; }

.grid--align-content-space-around {
  align-content: space-around; }

.grid--align-self-stretch {
  align-self: stretch; }

.grid--align-self-start {
  align-self: flex-start; }

.grid--align-self-end {
  align-self: flex-end;
  vertical-align: bottom; }

.grid--align-self-center {
  align-self: center;
  vertical-align: middle; }

.grid--align-self-baseline {
  align-self: baseline;
  vertical-align: baseline; }

.grid--justify-start {
  text-align: left;
  justify-content: flex-start; }

.grid--justify-end {
  text-align: right;
  -moz-text-align-last: right;
       text-align-last: right;
  justify-content: flex-end; }

.grid--justify-center {
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  justify-content: center; }

.grid--justify-space-between {
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  justify-content: space-between; }

.grid--justify-space-around {
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  justify-content: space-around; }

.grid__col--bleed {
  padding: 0; }

.grid__cell--flex {
  display: inline-block;
  display: flex;
  *display: inline;
  zoom: 1;
  flex-direction: column; }

.grid__cell--padding-sm {
  padding: 0.46875rem; }

.grid__cell--padding-md {
  padding: 0.9375rem; }

.grid__cell--padding-lg {
  padding: 1.875rem; }

.grid__cell-img {
  display: block;
  display: flex;
  flex: 0 0 auto;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  width: 100%;
  height: auto; }

.grid__cell-footer {
  display: inline-block;
  display: flex;
  *display: inline;
  zoom: 1;
  width: 100%;
  margin-top: auto; }

.grid--child > [class*="grid__col"] {
  display: flex;
  flex-wrap: wrap; }

.grid--max {
  max-width: 112.5rem; }

.grid__col- {
  position: relative;
  width: 100%;
  vertical-align: top;
  padding: 0 0.9375rem;
  display: inline-block;
  *display: inline;
  zoom: 1; }

blockquote, .u-text-quote {
  font-size: 1.5rem;
  display: block;
  margin: 0;
  line-height: 1.2777777778;
  font-weight: 300;
  font-style: italic; }
  blockquote + p, .u-text-quote + p {
    margin-top: 0.75rem; }

/* titillium-web-300 - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  src: url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-300.eot');
  /* IE9 Compat Modes */
  src: local("Titillium Web Light"), local("TitilliumWeb-Light"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-300.eot?#iefix') format("embedded-opentype"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-300.woff2') format("woff2"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-300.woff') format("woff"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-300.ttf') format("truetype"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-300.svg#TitilliumWeb') format("svg");
  /* Legacy iOS */ }

/* titillium-web-regular - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  src: url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local("Titillium Web Regular"), local("TitilliumWeb-Regular"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-regular.eot?#iefix') format("embedded-opentype"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-regular.woff2') format("woff2"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-regular.woff') format("woff"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-regular.ttf') format("truetype"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-regular.svg#TitilliumWeb') format("svg");
  /* Legacy iOS */ }

/* titillium-web-600 - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  src: url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-600.eot');
  /* IE9 Compat Modes */
  src: local("Titillium Web SemiBold"), local("TitilliumWeb-SemiBold"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-600.eot?#iefix') format("embedded-opentype"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-600.woff2') format("woff2"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-600.woff') format("woff"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-600.ttf') format("truetype"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-600.svg#TitilliumWeb') format("svg");
  /* Legacy iOS */ }

/* titillium-web-700 - latin */
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  src: url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-700.eot');
  /* IE9 Compat Modes */
  src: local("Titillium Web Bold"), local("TitilliumWeb-Bold"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-700.eot?#iefix') format("embedded-opentype"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-700.woff2') format("woff2"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-700.woff') format("woff"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-700.ttf') format("truetype"), url('../../../typo3conf/ext/lia_package/Resources/Public/Fonts/titillium-web-v7-latin/titillium-web-v7-latin-700.svg#TitilliumWeb') format("svg");
  /* Legacy iOS */ }

html {
  overflow-y: scroll;
  height: 100%;
  box-sizing: border-box;
  font-family: sans-serif; }

body {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Titillium Web", Helvetica Neue, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #717676;
  margin: 0; }

*, *:before, *:after {
  box-sizing: inherit; }

::-moz-selection {
  background-color: #000000;
  color: white; }

::selection {
  background-color: #000000;
  color: white; }

p {
  margin-bottom: 16px; }

hr {
  display: block;
  background-color: #717676;
  height: 1px;
  border: 0;
  margin: 1.875rem 0;
  padding: 0;
  width: 100%; }

h1, h2, h3, h4, h5 {
  margin-bottom: 16px;
  margin-top: 0; }

header {
  margin-bottom: 16px; }
  header h1, header h2, header h3, header h4, header h5 {
    margin-bottom: 0.5rem; }

h1.u-has-sub, h2.u-has-sub, h3.u-has-sub {
  margin-bottom: 0.5rem; }

h1, .u-h1 {
  line-height: 1.25;
  font-weight: 300;
  text-transform: uppercase;
  color: #000000;
  font-size: 2.8125rem; }
  h1 + .u-headline-sub,
  h1 + h2, .u-h1 + .u-headline-sub,
  .u-h1 + h2 {
    line-height: 1.4285714286;
    font-weight: 600;
    text-transform: none;
    font-size: 1.875rem; }

h2, .u-h2 {
  line-height: 1.2222222222;
  text-transform: uppercase;
  font-weight: 300;
  color: #000000;
  font-size: 2.1875rem; }
  h2 + .u-headline-sub,
  h2 + h3, .u-h2 + .u-headline-sub,
  .u-h2 + h3 {
    line-height: 1.3333333333;
    text-transform: none;
    font-size: 1.75rem; }

h3, .u-h3 {
  line-height: 45/35;
  text-transform: uppercase;
  font-weight: normal;
  color: #000000;
  font-size: 1.875rem; }
  h3 + .u-headline-sub,
  h3 + h4, .u-h3 + .u-headline-sub,
  .u-h3 + h4 {
    line-height: 1.3571428571;
    font-size: 28px;
    text-transform: none; }

h4, .u-h4 {
  line-height: 40/30;
  font-weight: normal;
  color: #000000;
  font-size: 1.375rem; }

p.u-h4 {
  margin-top: 0; }

h5, .u-h5 {
  line-height: 32/22;
  font-weight: bold;
  color: #000000;
  font-size: 0.875rem; }

h6, .u-h6 {
  font-size: 14px;
  margin: 14px 0; }

.u-text-transform-upper {
  text-transform: uppercase !important; }

.u-text-transform-none {
  text-transform: none !important; }

.u-text-left,
.text-left {
  text-align: left !important;
  justify-content: flex-start; }

.u-text-right,
.text-right {
  text-align: right !important;
  justify-content: flex-end; }

.u-text-center,
.text-center {
  text-align: center !important;
  justify-content: center; }

.u-font-bold {
  font-weight: bold; }

.u-font-normal {
  font-weight: normal; }

.u-text-block {
  display: block !important; }

.u-text-inline-block {
  display: inline-block !important; }

.u-animate {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.u-animate-fadeInUp {
  opacity: 0;
  transform: translate3d(0, 100%, 0); }
  .u-animate-fadeInUp.has-start {
    opacity: 1;
    transform: none;
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp; }

.u-position-corner {
  left: 0;
  top: -1px;
  bottom: -1px;
  right: 0;
  z-index: 1; }

.u-position-corner-bottom {
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1; }

.u-position-corner-top {
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1; }

.u-position-top {
  top: 0;
  z-index: 1; }

.u-position-center {
  top: 50%;
  transform: translateY(-50%); }

.u-position-fixed {
  position: fixed !important; }

.u-position-absolute {
  position: absolute !important; }

.u-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; }

.u-cover-center-center {
  -o-object-position: center center;
     object-position: center center; }

.u-cover-center-top {
  -o-object-position: center top;
     object-position: center top; }

.u-cover-center-bottom {
  -o-object-position: center bottom;
     object-position: center bottom; }

.u-cover-left-center {
  -o-object-position: left center;
     object-position: left center; }

.u-cover-left-top {
  -o-object-position: left top;
     object-position: left top; }

.u-cover-left-bottom {
  -o-object-position: left bottom;
     object-position: left bottom; }

.u-cover-right-center {
  -o-object-position: right center;
     object-position: right center; }

.u-cover-right-top {
  -o-object-position: right top;
     object-position: right top; }

.u-cover-right-bottom {
  -o-object-position: right bottom;
     object-position: right bottom; }

.u-blend-mode-color {
  mix-blend-mode: color; }

.u-grid-flexible {
  flex: 1 1;
  width: auto; }

.u-grid-nowrap {
  flex-wrap: nowrap !important; }

.u-grid-align-center {
  align-items: center !important; }

.u-grid-align-bottom {
  align-items: flex-end !important; }

.u-grid-justify-center {
  justify-content: center !important; }

.u-grid-justify-flex-end {
  justify-content: flex-end !important; }

.u-max-width {
  max-width: 109.5rem; }

.u-overflow {
  overflow: hidden; }

.u-noscroll {
  position: fixed;
  overflow: hidden; }

.u-contrast-box {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.25rem 0.5rem;
  display: inline-block;
  border-radius: 3px; }

.u-nowrap {
  white-space: nowrap; }

.u-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; }
  .u-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.u-color-red {
  color: #E3000F; }

a {
  text-decoration: underline;
  color: #717676;
  display: inline-block;
  transition: all 300ms ease-in-out; }
  a[href^=tel] {
    color: inherit;
    text-decoration: none; }
  a:hover, a:active, a:focus {
    color: inherit; }
  a:active, a:hover {
    outline-width: 0; }

[data-ember-action] {
  cursor: pointer; }

a[id]:empty,
.empty-anchor {
  display: none; }

main a {
  font-weight: 600; }

dd, dt {
  display: block;
  margin: 0;
  padding: 3px 0; }

main ul {
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none; }
  main ul ul {
    padding-left: 2.5rem;
    margin-bottom: 0; }
  main ul li {
    position: relative;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-indent: 16px; }
    main ul li::before {
      content: '';
      position: absolute;
      top: 6px;
      left: 4px;
      width: 4px;
      height: 13px;
      background-color: #E3000F;
      transform: skew(-22deg, 10deg); }

img,
object,
embed,
picture {
  display: block; }

img:not(.staticimage),
picture:not(.staticimage),
object,
embed {
  max-width: 100%;
  height: auto;
  width: 100%; }

.staticimage {
  width: auto; }

iframe,
svg {
  display: block; }

object,
embed {
  height: 100%; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.gm-style img,
.gm-style embed,
.gm-style object {
  max-width: none !important; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

svg {
  pointer-events: none; }

table {
  width: 100%; }

th {
  text-transform: uppercase; }

th, td {
  padding: 0.4375rem;
  border-bottom: 1px solid #717676; }
  th:first-child, td:first-child {
    padding-left: 0; }
  th:last-child, td:last-child {
    padding-right: 0; }

input {
  border: 0; }

button {
  cursor: pointer; }

select,
input,
textarea,
.select2-container--default .select2-selection--single {
  border: 1px solid #717676;
  border-radius: 0;
  line-height: 1.5;
  color: #717676;
  background: #ffffff; }
  select.error,
  input.error,
  textarea.error,
  .select2-container--default .select2-selection--single.error {
    border-color: #000000; }

input[type="radio"], input[type="checkbox"] {
  padding: 0;
  border-radius: 0;
  background-color: transparent; }

button,
input,
optgroup,
select,
textarea,
.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0.5rem 1.25em;
  font-family: "Titillium Web", Helvetica Neue, Helvetica, sans-serif;
  line-height: 1.5; }

input, select, textarea {
  width: 100%; }

button, input, select, textarea {
  outline: none; }

input:not([type="radio"]):not([type="checkbox"]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  box-shadow: none; }

::-webkit-input-placeholder {
  opacity: 1;
  color: #717676; }

:-moz-placeholder {
  opacity: 1;
  color: #717676; }

::-moz-placeholder {
  opacity: 1;
  color: #717676; }

:-ms-input-placeholder {
  opacity: 1;
  color: #717676; }

textarea {
  height: 14.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem; }

select,
.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-right: 2.25rem; }

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml,%3Csvg fill='rgba(113, 118, 118, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M17.525 36.465l-7.071 7.07c-4.686 4.686-4.686 12.284 0 16.971L205.947 256 10.454 451.494c-4.686 4.686-4.686 12.284 0 16.971l7.071 7.07c4.686 4.686 12.284 4.686 16.97 0l211.051-211.05c4.686-4.686 4.686-12.284 0-16.971L34.495 36.465c-4.686-4.687-12.284-4.687-16.97 0z'/%3E%3C/svg%3E") no-repeat right 20px center;
  background-size: 0.625rem 1.25rem; }
  select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #717676; }
  select::-ms-expand {
    display: none; }

button > * {
  pointer-events: none; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }
  fieldset legend {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0; }

label:not(.form-check-label) {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-weight: 600; }

.form-check--custom input:checked ~ .form-check-custominput::after {
  opacity: 1; }

.form-check--custom .form-check-custominput {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  margin-right: 1.75rem;
  border: 1px solid #717676;
  cursor: pointer; }
  .form-check--custom .form-check-custominput::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 0.5rem;
    height: 1rem;
    border-right: 2px solid #717676;
    border-bottom: 2px solid #717676;
    transform: translate3d(-50%, -60%, 0) rotate(45deg);
    opacity: 0;
    transition: opacity .2s ease-in-out; }

.form-check-label {
  display: flex;
  align-items: center; }
  .form-check-label input {
    width: auto;
    margin-right: 0.75rem; }

.form-group {
  margin-bottom: 1rem; }

.form-navigation {
  margin-top: 2.5rem; }

.c-unit--main form {
  padding: 1.875rem;
  max-width: 95rem;
  margin: 0 auto; }
  .c-unit--main form .grid {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
    width: auto; }

#kontakt-15 .statictext-1 {
  order: -1;
  text-align: right; }

.select2-container--default {
  width: 100% !important; }
  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(90deg); }
  .select2-container--default .select2-selection--single {
    height: auto;
    outline: 0; }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
      color: #717676; }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
      display: block;
      right: 20px;
      top: 50%;
      transform: translate3d(0, -50%, 0);
      width: 0.625rem;
      height: 1.25rem; }
      .select2-container--default .select2-selection--single .select2-selection__arrow b {
        position: static;
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        border: 0;
        background: url("data:image/svg+xml,%3Csvg fill='rgba(113, 118, 118, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M17.525 36.465l-7.071 7.07c-4.686 4.686-4.686 12.284 0 16.971L205.947 256 10.454 451.494c-4.686 4.686-4.686 12.284 0 16.971l7.071 7.07c4.686 4.686 12.284 4.686 16.97 0l211.051-211.05c4.686-4.686 4.686-12.284 0-16.971L34.495 36.465c-4.686-4.687-12.284-4.687-16.97 0z'/%3E%3C/svg%3E") no-repeat 0 0;
        background-size: 0.625rem 1.25rem;
        transition: transform .2s ease-in-out; }
  .select2-container--default .select2-dropdown {
    border-radius: 0;
    border-color: #717676; }
  .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #F2F2F2; }
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #E3000F;
    color: #ffffff; }

@-webkit-keyframes remove-item {
  from {
    opacity: 1;
    transform: scale(1); }
  to {
    opacity: 0;
    transform: scale(0); } }

@keyframes remove-item {
  from {
    opacity: 1;
    transform: scale(1); }
  to {
    opacity: 0;
    transform: scale(0); } }

@-webkit-keyframes spin-item {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }

@keyframes spin-item {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden; } }

@keyframes blink-animation {
  to {
    visibility: hidden; } }

@-webkit-keyframes animate-placeholder {
  0% {
    background-position: 0 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0 50%; } }

@keyframes animate-placeholder {
  0% {
    background-position: 0 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0 50%; } }

@-webkit-keyframes bounce {
  0% {
    transform: translate3d(0, 0, 0); }
  1.72414% {
    transform: translate3d(0, 0, 0); }
  3.44828% {
    transform: translate3d(0, 0, 0); }
  6.89655% {
    transform: translate3d(0, -30px, 0); }
  8.62069% {
    transform: translate3d(0, 0, 0); }
  10.34483% {
    transform: translate3d(0, -15px, 0); }
  11.7931% {
    transform: translate3d(0, 0, 0); }
  100% {
    transform: translate3d(0, 0, 0); } }

@keyframes bounce {
  0% {
    transform: translate3d(0, 0, 0); }
  1.72414% {
    transform: translate3d(0, 0, 0); }
  3.44828% {
    transform: translate3d(0, 0, 0); }
  6.89655% {
    transform: translate3d(0, -30px, 0); }
  8.62069% {
    transform: translate3d(0, 0, 0); }
  10.34483% {
    transform: translate3d(0, -15px, 0); }
  11.7931% {
    transform: translate3d(0, 0, 0); }
  100% {
    transform: translate3d(0, 0, 0); } }

.is-spinning {
  -webkit-animation: spin-item 2s infinite linear;
          animation: spin-item 2s infinite linear; }

.is-visible {
  opacity: 1 !important;
  visibility: visible !important; }

.is-invisible {
  opacity: 0 !important;
  visibility: hidden !important; }

.is-removed {
  -webkit-animation: remove-item 0.6s cubic-bezier(0.55, -0.04, 0.91, 0.94) forwards;
          animation: remove-item 0.6s cubic-bezier(0.55, -0.04, 0.91, 0.94) forwards; }

.is-disabled {
  opacity: 0.5;
  cursor: default; }
  .is-disabled * {
    cursor: default !important; }

.is-hidden {
  display: none !important; }

.is-showing {
  display: block !important; }

.is-centered {
  text-align: center;
  justify-content: center !important; }

.c-logo {
  color: #E3000F;
  transition: color .3s; }
  .c-logo:hover, .c-logo:focus {
    color: #E3000F; }
  .c-logo__image {
    display: block;
    width: 297px;
    height: 54px;
    fill: currentColor; }
  .c-logo__image-gray {
    fill: #717776;
    transition: fill .3s; }

.c-btn, .cc-theme-block.cc-window.cc-floating .cc-btn,
.c-unit--main .c-btn,
.c-unit--main .cc-theme-block.cc-window.cc-floating .cc-btn,
.cc-theme-block.cc-window.cc-floating .c-unit--main .cc-btn {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.875rem 1.875rem;
  border: 1px solid #717676;
  line-height: 1.1111111111;
  font-size: 1.125rem;
  font-weight: 600;
  color: #717676;
  background-color: transparent;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis; }
  .c-btn:first-child:last-child, .cc-theme-block.cc-window.cc-floating .cc-btn:first-child:last-child,
  .c-unit--main .c-btn:first-child:last-child,
  .c-unit--main .cc-theme-block.cc-window.cc-floating .cc-btn:first-child:last-child,
  .cc-theme-block.cc-window.cc-floating .c-unit--main .cc-btn:first-child:last-child {
    margin-bottom: 0; }
  .c-btn:hover, .cc-theme-block.cc-window.cc-floating .cc-btn:hover,
  .c-unit--main .c-btn:hover,
  .c-unit--main .cc-theme-block.cc-window.cc-floating .cc-btn:hover,
  .cc-theme-block.cc-window.cc-floating .c-unit--main .cc-btn:hover {
    color: #ffffff;
    background-color: #717676; }
  .c-btn--red,
  .c-unit--main .c-btn--red {
    border-color: #E3000F;
    color: #ffffff;
    background-color: #E3000F; }
    .c-btn--red:hover,
    .c-unit--main .c-btn--red:hover {
      color: #E3000F;
      background-color: #ffffff; }
  .c-btn--red-outlined, .cc-theme-block.cc-window.cc-floating .cc-deny,
  .c-unit--main .c-btn--red-outlined,
  .c-unit--main .cc-theme-block.cc-window.cc-floating .cc-deny,
  .cc-theme-block.cc-window.cc-floating .c-unit--main .cc-deny {
    border-color: #ffffff;
    color: #ffffff;
    background-color: #E3000F; }
    .c-btn--red-outlined:hover, .cc-theme-block.cc-window.cc-floating .cc-deny:hover,
    .c-unit--main .c-btn--red-outlined:hover,
    .c-unit--main .cc-theme-block.cc-window.cc-floating .cc-deny:hover,
    .cc-theme-block.cc-window.cc-floating .c-unit--main .cc-deny:hover {
      color: #E3000F;
      background-color: #ffffff; }
  .c-btn--white, .cc-theme-block.cc-window.cc-floating .cc-allow,
  .c-unit--main .c-btn--white,
  .c-unit--main .cc-theme-block.cc-window.cc-floating .cc-allow,
  .cc-theme-block.cc-window.cc-floating .c-unit--main .cc-allow {
    border-color: #ffffff;
    background-color: #ffffff; }
    .c-btn--white:hover, .cc-theme-block.cc-window.cc-floating .cc-allow:hover,
    .c-unit--main .c-btn--white:hover,
    .c-unit--main .cc-theme-block.cc-window.cc-floating .cc-allow:hover,
    .cc-theme-block.cc-window.cc-floating .c-unit--main .cc-allow:hover {
      border-color: #717676; }
  .c-btn--white-outlined,
  .c-unit--main .c-btn--white-outlined {
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent; }
    .c-btn--white-outlined:hover,
    .c-unit--main .c-btn--white-outlined:hover {
      background-color: #ffffff;
      color: #E3000F; }
  .c-btn--download,
  .c-unit--main .c-btn--download {
    position: relative;
    padding: 1.5rem 1.875rem 1.5rem 4.5rem;
    border: 0;
    line-height: 1.5;
    font-weight: normal;
    font-size: inherit;
    background-color: #F2F2F2; }
    .c-btn--download:hover, .c-btn--download:focus,
    .c-unit--main .c-btn--download:hover,
    .c-unit--main .c-btn--download:focus {
      color: #585c5c;
      background-color: #e5e5e5; }
    .c-btn--download::before,
    .c-unit--main .c-btn--download::before {
      content: '';
      position: absolute;
      left: 1.875rem;
      top: 50%;
      transform: translate3d(0, -50%, 0);
      display: block;
      width: 21px;
      height: 28px;
      background: url("data:image/svg+xml,%3Csvg fill='rgba(113, 118, 118, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M216 236.07c0-6.63-5.37-12-12-12h-24c-6.63 0-12 5.37-12 12v84.01h-48.88c-10.71 0-16.05 12.97-8.45 20.52l72.31 71.77c4.99 4.95 13.04 4.95 18.03 0l72.31-71.77c7.6-7.54 2.26-20.52-8.45-20.52H216v-84.01zM369.83 97.98L285.94 14.1c-9-9-21.2-14.1-33.89-14.1H47.99C21.5.1 0 21.6 0 48.09v415.92C0 490.5 21.5 512 47.99 512h287.94c26.5 0 48.07-21.5 48.07-47.99V131.97c0-12.69-5.17-24.99-14.17-33.99zM255.95 51.99l76.09 76.08h-76.09V51.99zM336 464.01H47.99V48.09h159.97v103.98c0 13.3 10.7 23.99 24 23.99H336v287.95z'/%3E%3C/svg%3E") no-repeat center center;
      background-size: 21px 28px; }

.c-icon {
  display: inline-block;
  transition: all 300ms ease-in-out;
  pointer-events: none;
  fill: currentColor;
  height: 1.5rem;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  width: 1.5rem;
  top: -0.05em; }

.c-icon-i {
  display: inline-block;
  fill: currentColor;
  width: 1em;
  height: 1em; }

.frame-type-text,
.frame-type-header,
.frame-type-uploads,
.c-gallery,
.frame-type-list > header,
.tx-solr-resultcontent {
  margin: 2.5rem 1.875rem 1.875rem; }

.frame-type-menu_sitemap_pages {
  padding: 2.5rem 1.875rem 1.875rem;
  background-color: #F7F7F7; }

.frame-background-gray,
.c-tt__col--background-gray {
  background-color: #F7F7F7; }

.frame-background-red, .frame-background-red-citation,
.c-tt__col--background-red,
.c-tt__col--background-red-citation {
  background-color: #E3000F; }

.frame-background-red .ce-bodytext,
.frame-background-red .c-tt__col:first-child,
.c-tt .c-tt__col--background-red,
.frame-background-red-citation .ce-bodytext,
.frame-background-red-citation .c-tt__col:first-child,
.c-tt .c-tt__col--background-red-citation {
  color: #ffffff; }
  .frame-background-red .ce-bodytext h1,
  .frame-background-red .ce-bodytext .u-h1,
  .frame-background-red .ce-bodytext h2,
  .frame-background-red .ce-bodytext .u-h2,
  .frame-background-red .ce-bodytext h3,
  .frame-background-red .ce-bodytext .u-h3,
  .frame-background-red .ce-bodytext h4,
  .frame-background-red .ce-bodytext .u-h4,
  .frame-background-red .ce-bodytext a:not(.c-btn),
  .frame-background-red .c-tt__col:first-child h1,
  .frame-background-red .c-tt__col:first-child .u-h1,
  .frame-background-red .c-tt__col:first-child h2,
  .frame-background-red .c-tt__col:first-child .u-h2,
  .frame-background-red .c-tt__col:first-child h3,
  .frame-background-red .c-tt__col:first-child .u-h3,
  .frame-background-red .c-tt__col:first-child h4,
  .frame-background-red .c-tt__col:first-child .u-h4,
  .frame-background-red .c-tt__col:first-child a:not(.c-btn),
  .c-tt .c-tt__col--background-red h1,
  .c-tt .c-tt__col--background-red .u-h1,
  .c-tt .c-tt__col--background-red h2,
  .c-tt .c-tt__col--background-red .u-h2,
  .c-tt .c-tt__col--background-red h3,
  .c-tt .c-tt__col--background-red .u-h3,
  .c-tt .c-tt__col--background-red h4,
  .c-tt .c-tt__col--background-red .u-h4,
  .c-tt .c-tt__col--background-red a:not(.c-btn),
  .frame-background-red-citation .ce-bodytext h1,
  .frame-background-red-citation .ce-bodytext .u-h1,
  .frame-background-red-citation .ce-bodytext h2,
  .frame-background-red-citation .ce-bodytext .u-h2,
  .frame-background-red-citation .ce-bodytext h3,
  .frame-background-red-citation .ce-bodytext .u-h3,
  .frame-background-red-citation .ce-bodytext h4,
  .frame-background-red-citation .ce-bodytext .u-h4,
  .frame-background-red-citation .ce-bodytext a:not(.c-btn),
  .frame-background-red-citation .c-tt__col:first-child h1,
  .frame-background-red-citation .c-tt__col:first-child .u-h1,
  .frame-background-red-citation .c-tt__col:first-child h2,
  .frame-background-red-citation .c-tt__col:first-child .u-h2,
  .frame-background-red-citation .c-tt__col:first-child h3,
  .frame-background-red-citation .c-tt__col:first-child .u-h3,
  .frame-background-red-citation .c-tt__col:first-child h4,
  .frame-background-red-citation .c-tt__col:first-child .u-h4,
  .frame-background-red-citation .c-tt__col:first-child a:not(.c-btn),
  .c-tt .c-tt__col--background-red-citation h1,
  .c-tt .c-tt__col--background-red-citation .u-h1,
  .c-tt .c-tt__col--background-red-citation h2,
  .c-tt .c-tt__col--background-red-citation .u-h2,
  .c-tt .c-tt__col--background-red-citation h3,
  .c-tt .c-tt__col--background-red-citation .u-h3,
  .c-tt .c-tt__col--background-red-citation h4,
  .c-tt .c-tt__col--background-red-citation .u-h4,
  .c-tt .c-tt__col--background-red-citation a:not(.c-btn) {
    color: #ffffff; }

.frame-background-red-citation .ce-bodytext,
.frame-background-red-citation .c-tt__col:first-child,
.c-tt .c-tt__col--background-red-citation {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem; }
  .frame-background-red-citation .ce-bodytext::before, .frame-background-red-citation .ce-bodytext::after,
  .frame-background-red-citation .c-tt__col:first-child::before,
  .frame-background-red-citation .c-tt__col:first-child::after,
  .c-tt .c-tt__col--background-red-citation::before,
  .c-tt .c-tt__col--background-red-citation::after {
    content: '';
    position: absolute;
    display: block;
    width: 3.875rem;
    height: 4.5rem;
    background: linear-gradient(to top left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) calc(50% - 1px), white 50%, rgba(255, 255, 255, 0) calc(50% + 1px), rgba(255, 255, 255, 0) 100%); }
    @supports (-ms-ime-align: auto) {
      .frame-background-red-citation .ce-bodytext::before, .frame-background-red-citation .ce-bodytext::after,
      .frame-background-red-citation .c-tt__col:first-child::before,
      .frame-background-red-citation .c-tt__col:first-child::after,
      .c-tt .c-tt__col--background-red-citation::before,
      .c-tt .c-tt__col--background-red-citation::after {
        background: linear-gradient(to top left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 49%, white 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%); } }
  .frame-background-red-citation .ce-bodytext::before,
  .frame-background-red-citation .c-tt__col:first-child::before,
  .c-tt .c-tt__col--background-red-citation::before {
    top: 0;
    left: 1.875rem; }
  .frame-background-red-citation .ce-bodytext::after,
  .frame-background-red-citation .c-tt__col:first-child::after,
  .c-tt .c-tt__col--background-red-citation::after {
    bottom: 0;
    right: 1.875rem;
    height: 4.875rem; }

.ce-textpic__content,
.c-tt__content {
  padding: 1rem 1.875rem;
  max-width: 100%; }

.ce-textpic.ce-intext.ce-nowrap.ce-right .ce-gallery {
  order: 1; }

.ce-textpic.ce-intext.ce-nowrap .ce-gallery,
.ce-textpic.ce-intext.ce-nowrap .ce-column {
  float: none; }

.ce-textpic.ce-intext.ce-nowrap .ce-gallery.video {
  display: flex; }
  .ce-textpic.ce-intext.ce-nowrap .ce-gallery.video .ce-row {
    flex: 0 1 100%;
    align-self: center; }

.ce-textpic.ce-intext.ce-nowrap .ce-gallery {
  margin: 0; }
  .ce-textpic.ce-intext.ce-nowrap .ce-gallery figure {
    display: block; }
  .ce-textpic.ce-intext.ce-nowrap .ce-gallery img,
  .ce-textpic.ce-intext.ce-nowrap .ce-gallery video {
    display: block;
    width: 100%;
    height: auto; }
  .ce-textpic.ce-intext.ce-nowrap .ce-gallery .video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0; }
    .ce-textpic.ce-intext.ce-nowrap .ce-gallery .video-embed iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

.ce-textpic.ce-intext.ce-nowrap .ce-bodytext {
  display: flex;
  align-items: center; }
  .ce-textpic.ce-intext.ce-nowrap .ce-bodytext ul {
    padding-left: 0; }

.frame.frame-space-after-extra-small {
  margin-bottom: 0.5rem; }

.frame.frame-space-after-small {
  margin-bottom: 2rem; }

.frame.frame-space-after-medium {
  margin-bottom: 2.5rem; }

.frame.frame-space-after-large {
  margin-bottom: 4rem; }

.frame.frame-space-after-extra-large {
  margin-bottom: 5rem; }

.frame.frame-space-before-extra-small {
  margin-top: 0.5rem; }

.frame.frame-space-before-small {
  margin-top: 2rem; }

.frame.frame-space-before-medium {
  margin-top: 2.5rem; }

.frame.frame-space-before-large {
  margin-top: 4rem; }

.frame.frame-space-before-extra-large {
  margin-top: 5rem; }

.navigation {
  display: none; }

.mm-menu {
  --mm-color-background: #E3000F;
  --mm-color-text: #ffffff;
  background-color: #E3000F;
  color: #ffffff; }

.mm-wrapper_blocking {
  overflow: visible; }
  .mm-wrapper_blocking body {
    overflow: visible; }

.mm-menu_offcanvas {
  max-width: 870px; }

.mm-navbars_top {
  border-bottom: 0; }
  .mm-navbars_top .mm-navbar {
    height: 144px; }

.mm-navbar {
  height: auto;
  padding-left: 1.875rem;
  border-bottom: 0;
  text-align: left;
  color: #ffffff;
  background-color: transparent; }
  .mm-navbar__btn:first-child {
    left: 1.875rem;
    padding: 0; }
    .mm-navbar__btn:first-child::before {
      content: none; }
    .mm-navbar__btn:first-child::after {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      display: block;
      width: 23px;
      height: 6px;
      margin-top: -3px;
      border: none;
      background: url("data:image/svg+xml,%3Csvg fill='rgba(255, 255, 255, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1998.7 512'%3E%3Cpath d='M251.39,511.8l59.7-60.69-147.39-145H1998.91V221H158.67L312.17,58.17,250.31-.2.21,264.87Z'/%3E%3C/svg%3E") no-repeat center center;
      background-size: 23px 6px; }
  .mm-navbar__title {
    padding-left: 52px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase; }

.mm-menu_navbar_top-1 .mm-panels {
  top: 144px; }

.mm-panel {
  padding-left: 1.875rem;
  background-color: transparent; }
  .mm-panel#mm-c-inline-search, .mm-panel#mm-c-inline-contact {
    display: flex;
    padding: 1.875rem; }
    .mm-panel#mm-c-inline-search::before, .mm-panel#mm-c-inline-contact::before {
      content: none; }

.mm-panels {
  background-color: transparent; }
  .mm-panels::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 32px;
    background-image: linear-gradient(to bottom, #e3000f, rgba(227, 0, 15, 0)); }

.mm-panels .mm-navbar {
  margin-top: 32px; }
  .mm-panels .mm-navbar + .mm-listview {
    padding-top: 48px; }

.mm-panels > .mm-panel > .mm-listview {
  margin-bottom: 0; }

.mm-listview {
  margin-bottom: 0;
  padding-top: 32px; }
  .mm-listview .mm-listitem__text {
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.2;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase; }
  .mm-listview .is-active > .mm-listitem__text {
    font-weight: 600; }

.mm-listitem {
  color: #ffffff; }
  .mm-listitem.sub .mm-listitem__text::after {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 23px;
    height: 6px;
    margin-left: 26px;
    margin-top: .5em;
    border: none;
    background: url("data:image/svg+xml,%3Csvg fill='rgba(255, 255, 255, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1998.7 512'%3E%3Cpath d='M1747.73-.2,1688,60.5l147.4,145H.21V290.6H1840.45L1687,453.44l61.86,58.36,250.1-265.06Z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: 23px 6px; }

.has-dropdown.mm-listitem > .mm-listitem__btn {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  border: 0; }
  .has-dropdown.mm-listitem > .mm-listitem__btn::after {
    content: none; }

.meta-nav {
  margin-top: auto;
  font-size: 1.125rem; }
  .meta-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0; }
  .meta-nav a {
    display: block;
    margin-right: 1.25rem; }

.top-nav {
  display: flex;
  flex-direction: column-reverse;
  padding-left: 1.875rem;
  padding-right: 1.875rem; }

.mm-menu .meta-nav,
.mm-menu .toggle-nav,
.mm-menu .toggle-nav__btn {
  color: #ffffff; }

.mm-menu .toggle-nav__btn--contact {
  margin-left: 0; }

.mm-menu .toggle-nav__btn--contact, .mm-menu .toggle-nav__btn--search {
  display: block; }

.mm-menu .toggle-nav__btn:hover {
  color: #ffffff; }

.mm-menu .toggle-nav__diagonal {
  top: -138px; }
  .mm-menu .toggle-nav__diagonal::after {
    background-color: #ffffff; }

.toggle-nav {
  position: relative;
  z-index: 1;
  margin-left: auto; }
  .toggle-nav__diagonal {
    position: absolute;
    z-index: -1;
    display: block;
    width: 186px;
    height: 225px;
    left: -108px;
    top: -140px;
    transform: translate3d(6px, -17px, 0);
    transition: transform 200ms linear; }
    .toggle-nav__diagonal::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      width: 1px;
      height: 291.926360577px;
      transform: rotate(0.6907909283rad);
      background-color: #717676;
      transform-origin: 50% 0; }
  .toggle-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0; }
  .toggle-nav__btn {
    display: block;
    margin-left: 1.5rem;
    padding: 0.75rem;
    cursor: pointer;
    color: #717676;
    transition: color 300ms ease-in-out; }
    .toggle-nav__btn:hover {
      color: #E3000F; }
    .toggle-nav__btn:focus {
      outline: none; }
    .toggle-nav__btn.toggle-nav__btn--close .c-icon-i {
      font-size: 2.25rem; }
    .toggle-nav__btn .c-icon-i {
      display: block;
      font-size: 2rem; }

.c-breadcrumb {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  font-size: 1rem; }
  .c-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none; }
  .c-breadcrumb__item {
    max-width: 100%; }
  .c-breadcrumb__item:not(:last-child) {
    position: relative;
    padding-right: 23px; }
    .c-breadcrumb__item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      display: block;
      width: 23px;
      height: 6px;
      margin-top: -3px;
      background: url("data:image/svg+xml,%3Csvg fill='rgba(113, 118, 118, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1998.7 512'%3E%3Cpath d='M1747.73-.2,1688,60.5l147.4,145H.21V290.6H1840.45L1687,453.44l61.86,58.36,250.1-265.06Z'/%3E%3C/svg%3E") no-repeat center center;
      background-size: 23px 6px; }
  .c-breadcrumb__link {
    display: block;
    padding: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #717676;
    overflow: hidden;
    text-overflow: ellipsis; }
    .c-breadcrumb__link--nolink {
      font-weight: 600; }
  .c-breadcrumb a.c-breadcrumb__link:hover, .c-breadcrumb a.c-breadcrumb__link:focus {
    color: #3f4242; }

.tx-solr-search-form {
  max-width: 27.75rem;
  width: 100%;
  margin: 0 auto; }

.tx-solr-q, .tx-solr-submit {
  display: block;
  width: 100%; }

.tx-solr-q {
  border: 0;
  margin-right: 1.25rem;
  margin-bottom: 1.5rem;
  min-width: 0;
  width: 100%;
  flex-grow: 1; }

.tx-solr-submit {
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.tx-solr-resultitle {
  margin-bottom: 3.5rem; }

.tx-solr-resultcontent .solr-pagination:first-child {
  display: none; }

.tx_solr h2,
.tx_solr h3 {
  color: #000000; }

.tx_solr .results-list {
  margin-bottom: 7.5rem; }

.tx_solr .results-topic {
  margin-bottom: 0;
  font-size: 1.875rem;
  font-weight: normal;
  color: #000000;
  text-transform: none; }
  .tx_solr .results-topic a {
    text-decoration: none; }

.tx_solr .results-highlight {
  font-weight: bold; }

.tx_solr .results-teaser .c-breadcrumb {
  margin: 0;
  padding: 0; }
  .tx_solr .results-teaser .c-breadcrumb__item:first-child .c-breadcrumb__link {
    padding-left: 0; }

.tx_solr .result-header {
  margin-bottom: 2.25rem; }

.tx_solr .result-content {
  margin-bottom: 0; }

.tx_solr .relevance {
  font-weight: bold;
  color: #000000; }

.tx_solr .search-result {
  margin-bottom: 1.75rem; }

.tx_solr .solr-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0; }
  .tx_solr .solr-pagination .pagination li.active a {
    color: #ffffff;
    background-color: #717676; }
  .tx_solr .solr-pagination .pagination li.previous a,
  .tx_solr .solr-pagination .pagination li.next a {
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
    border-color: transparent;
    font-weight: normal;
    text-transform: uppercase; }
    .tx_solr .solr-pagination .pagination li.previous a:hover, .tx_solr .solr-pagination .pagination li.previous a:focus,
    .tx_solr .solr-pagination .pagination li.next a:hover,
    .tx_solr .solr-pagination .pagination li.next a:focus {
      color: #717676;
      background-color: transparent; }
  .tx_solr .solr-pagination .pagination li.previous a::before,
  .tx_solr .solr-pagination .pagination li.next a::after {
    content: '';
    display: block;
    width: 23px;
    height: 6px;
    margin: 0 0.75rem;
    background: url("data:image/svg+xml,%3Csvg fill='rgba(113, 118, 118, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1998.7 512'%3E%3Cpath d='M1747.73-.2,1688,60.5l147.4,145H.21V290.6H1840.45L1687,453.44l61.86,58.36,250.1-265.06Z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: 23px 6px; }
  .tx_solr .solr-pagination .pagination li.previous a::before {
    background: url("data:image/svg+xml,%3Csvg fill='rgba(113, 118, 118, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1998.7 512'%3E%3Cpath d='M251.39,511.8l59.7-60.69-147.39-145H1998.91V221H158.67L312.17,58.17,250.31-.2.21,264.87Z'/%3E%3C/svg%3E") no-repeat center center; }
  .tx_solr .solr-pagination .pagination a {
    display: block;
    margin: 0.5rem;
    padding: 0.625rem 1.125rem;
    border: 1px solid #717676;
    color: #717676;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none; }
    .tx_solr .solr-pagination .pagination a:hover, .tx_solr .solr-pagination .pagination a:focus {
      color: #ffffff;
      background-color: #a5a8a8; }

.c-container {
  max-width: 109.5rem;
  margin: 0 auto; }

.c-heromedia {
  background-color: #F7F7F7; }
  .c-heromedia--subpage .c-heromedia__content {
    position: static;
    padding-top: 2rem;
    padding-bottom: 2rem; }
    .c-heromedia--subpage .c-heromedia__content h1, .c-heromedia--subpage .c-heromedia__content .h1,
    .c-heromedia--subpage .c-heromedia__content p {
      color: #000000;
      overflow: visible; }
  .c-heromedia--subpage .c-heromedia__header__diagonal {
    top: -12px; }
    .c-heromedia--subpage .c-heromedia__header__diagonal::after {
      background-color: #E3000F; }
  .c-heromedia.c-heromedia--search .c-heromedia__content h1,
  .c-heromedia.c-heromedia--search .c-heromedia__content .h1 {
    margin-bottom: 0; }
  .c-heromedia.c-heromedia--search .c-heromedia__content .u-headline-sub {
    margin-top: 2.25rem;
    margin-bottom: 0.25rem;
    font-weight: normal; }
  .c-heromedia.c-heromedia--search .c-heromedia__content strong {
    font-weight: 600; }
  .c-heromedia__img-wrap {
    position: relative;
    background-color: #E3000F; }
  .c-heromedia__content, .c-heromedia__product {
    padding: 0 1.875rem 2.5rem; }
  .c-heromedia__content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 100%; }
    .c-heromedia__content h1, .c-heromedia__content .h1,
    .c-heromedia__content p {
      color: #ffffff; }
    .c-heromedia__content h1, .c-heromedia__content .h1 {
      margin-bottom: 1.25rem; }
    .c-heromedia__content p {
      margin: 0; }
  .c-heromedia__header {
    position: relative;
    z-index: 1;
    max-width: 41.5rem;
    margin: auto 0; }
    .c-heromedia__header__diagonal {
      position: absolute;
      z-index: -1;
      display: block;
      width: 42px;
      height: 49px;
      top: -8px;
      left: -56px;
      display: none; }
      .c-heromedia__header__diagonal::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 64.5368112011px;
        transform: rotate(0.7086262721rad);
        background-color: #ffffff;
        transform-origin: 50% 0; }
  .c-heromedia__product {
    padding-top: 2.5rem; }
    .c-heromedia__product p {
      margin: 0; }
    .c-heromedia__product img {
      display: block;
      max-width: 100%;
      width: auto;
      height: auto;
      margin: 0 auto 1rem; }
  .c-heromedia__product-item {
    flex-grow: 1;
    display: none; }
    .c-heromedia__product-item--active {
      display: block; }
    .c-heromedia__product-item .c-btn, .c-heromedia__product-item .cc-theme-block.cc-window.cc-floating .cc-btn, .cc-theme-block.cc-window.cc-floating .c-heromedia__product-item .cc-btn {
      margin-bottom: 0; }
  .c-heromedia__productinfo {
    margin-bottom: 2rem; }
  .c-heromedia__productinfo-text {
    font-size: 1.125rem; }
  .c-heromedia__productinfo-img-wrap {
    display: block; }
  .c-heromedia__search-wrap {
    position: relative;
    width: 100%;
    padding-top: 64.1552511416%;
    background-color: #E3000F; }
  .c-heromedia__search {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.875rem; }

.c-to-main {
  display: flex;
  justify-content: center;
  margin: 2.25rem 0 1.125rem; }
  .c-to-main__link {
    padding: 0 1rem;
    color: #707070;
    transform: translate3d(0, 0, 0);
    transform-origin: 50% 0;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-animation: bounce 2s linear 2s;
            animation: bounce 2s linear 2s; }
    .c-to-main__link:hover {
      transform: scaleY(1.2); }
  .c-to-main__icon {
    display: block;
    width: 6px;
    height: 75px;
    fill: currentColor; }

@keyframes bounce {
  0%,
  25%,
  75%,
  100% {
    transform: translate3d(0, 0, 0); }
  40% {
    transform: translate3d(0, -20px, 0); }
  50% {
    transform: translate3d(0, 12px, 0); }
  60% {
    transform: translate3d(0, -12px, 0); } }

.frame-type-uploads .ce-uploads {
  margin-bottom: 16px; }

.ce-uploads .ce-uploads__item {
  margin: 0;
  text-indent: 0; }
  .ce-uploads .ce-uploads__item::before {
    content: none; }

.ce-uploads__item:nth-child(2n) .ce-uploads__link {
  background-color: #F2F2F2; }
  .ce-uploads__item:nth-child(2n) .ce-uploads__link:hover, .ce-uploads__item:nth-child(2n) .ce-uploads__link:focus {
    background-color: #e5e5e5; }

.ce-uploads__link {
  position: relative;
  display: block;
  padding: 1.5rem 1.875rem 1.5rem 4.5rem;
  color: #717676;
  background-color: #F7F7F7;
  text-decoration: none; }
  .ce-uploads__link:hover, .ce-uploads__link:focus {
    color: #585c5c;
    background-color: #e5e5e5; }

.ce-uploads__icon {
  position: absolute;
  left: 1.875rem;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  display: block;
  width: 21px;
  height: 28px;
  fill: currentColor; }

.ce-uploads .ce-uploads__name,
.ce-uploads .ce-uploads__size {
  display: inline-block; }

.ce-uploads__name {
  font-weight: bold; }

.ce-uploads__description {
  margin: 0; }

.c-tt__col--white-bg {
  background-color: #ffffff; }

.c-tt .c-tt__col:first-child {
  border-bottom: 3rem solid #ffffff; }

.c-menupanel {
  max-width: 27.75rem;
  width: 100%;
  margin: 0 auto; }
  .c-menupanel__in {
    margin-bottom: 10rem; }
  .c-menupanel__title {
    margin-top: 0;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: normal;
    color: #ffffff; }

header + .c-gallery {
  margin-top: 0; }

.c-gallery__item {
  position: relative;
  z-index: 1;
  margin: 0;
  background-color: #F7F7F7;
  color: #E3000F;
  transition: z-index 0.3s steps(3, start); }
  .c-gallery__item.c-gallery__item--tap {
    z-index: 3;
    transition: none; }
    .c-gallery__item.c-gallery__item--tap .c-gallery__caption {
      opacity: 1;
      visibility: visible;
      transform: translateZ(0); }

.c-gallery__img, .c-gallery__imgwrap {
  display: block; }

.c-gallery__imgwrap {
  position: relative;
  z-index: 2; }

.c-gallery__img {
  width: 100%;
  height: auto; }

.c-gallery__caption {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  padding-top: 100%;
  background-color: #E3000F;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateZ(0) scale(0.8);
  transition: all .3s; }

.c-gallery__content {
  margin-top: auto;
  margin-bottom: auto;
  padding: 0 1.875rem 1.875rem;
  overflow: hidden;
  text-overflow: ellipsis; }
  .c-gallery__content p {
    margin-top: 0;
    margin-bottom: 0.125rem; }

.c-gallery__btnwrap {
  display: flex;
  position: absolute;
  right: 0.625rem;
  bottom: 1.25rem; }
  .c-gallery__btnwrap .c-gallery__btn {
    margin: 0 0.625rem; }

.c-gallery__btn {
  display: none;
  font-size: 1.75rem;
  cursor: pointer; }
  .c-gallery__btn--plus {
    position: absolute;
    z-index: 3;
    right: 1.25rem;
    bottom: 1.25rem; }
  .c-gallery__btn--expand {
    display: none !important; }
  .c-gallery__btn svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor; }

body .featherlight .featherlight-content {
  width: 1336px;
  height: 820px;
  max-width: 90%;
  max-height: 90%;
  margin: 0 5%;
  padding: 3rem 3.5rem;
  border: 1rem solid #ffffff;
  background-color: #F7F7F7;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.16); }

body .featherlight .featherlight-image {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%); }

body .featherlight-previous, body .featherlight-next {
  top: 0;
  height: 100%;
  width: 2.75rem;
  background: rgba(255, 255, 255, 0);
  transition: background-color .2s; }
  body .featherlight-previous::before, body .featherlight-next::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 28px;
    height: 56px;
    transform: translate(-50%, -50%);
    background-size: 1.375rem 2.75rem;
    background-repeat: no-repeat;
    background-position: center center; }
  body .featherlight-previous:hover, body .featherlight-next:hover {
    background-color: rgba(255, 255, 255, 0.25); }
  body .featherlight-previous span, body .featherlight-next span {
    display: none !important; }

body .featherlight-previous {
  left: 0; }
  body .featherlight-previous::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='rgba(113, 118, 118, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M238.475 475.535l7.071-7.07c4.686-4.686 4.686-12.284 0-16.971L50.053 256 245.546 60.506c4.686-4.686 4.686-12.284 0-16.971l-7.071-7.07c-4.686-4.686-12.284-4.686-16.97 0L10.454 247.515c-4.686 4.686-4.686 12.284 0 16.971l211.051 211.05c4.686 4.686 12.284 4.686 16.97-.001z'/%3E%3C/svg%3E"); }

body .featherlight-next {
  left: auto;
  right: 0; }
  body .featherlight-next::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='rgba(113, 118, 118, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M17.525 36.465l-7.071 7.07c-4.686 4.686-4.686 12.284 0 16.971L205.947 256 10.454 451.494c-4.686 4.686-4.686 12.284 0 16.971l7.071 7.07c4.686 4.686 12.284 4.686 16.97 0l211.051-211.05c4.686-4.686 4.686-12.284 0-16.971L34.495 36.465c-4.686-4.687-12.284-4.687-16.97 0z'/%3E%3C/svg%3E"); }

body .featherlight .featherlight-close-icon {
  width: 2.75rem;
  height: 2.75rem;
  background-color: transparent;
  background: url("data:image/svg+xml,%3Csvg fill='rgba(113, 118, 118, 0.99999)' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z'/%3E%3C/svg%3E") no-repeat center center;
  background-size: 1.125rem 1.75rem;
  text-indent: 999px;
  overflow: hidden; }

.featherlight:last-of-type {
  background: transparent; }

@-webkit-keyframes featherlightLoader {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }

@keyframes featherlightLoader {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }

body .featherlight-loading .featherlight-content {
  -webkit-animation: featherlightLoader 1s infinite linear;
          animation: featherlightLoader 1s infinite linear;
  background: transparent;
  border: 8px solid #8f8f8f;
  border-left-color: #fff;
  border-radius: 80px;
  width: 80px;
  height: 80px;
  padding: 0;
  min-width: 0; }

body .featherlight-loading .featherlight-content > * {
  display: none !important; }

body .featherlight-loading .featherlight-close,
body .featherlight-loading .featherlight-inner {
  display: none; }

.header {
  position: fixed;
  z-index: 998;
  left: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 5rem;
  padding: 0 0.9375rem; }
  .header::before, .header::after {
    content: '';
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 80px;
    background-color: #ffffff; }
  .header::before {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    will-change: opacity;
    transition: opacity 300ms linear; }
  .header__content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 109.5rem;
    height: 5rem;
    margin: 0 auto; }
  .header .diagonal {
    position: absolute;
    z-index: -1;
    display: block;
    width: 186px;
    height: 225px; }
    .header .diagonal::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      width: 1px;
      height: 291.926360577px;
      transform: rotate(0.6907909283rad);
      background-color: #000;
      transform-origin: 50% 0; }

.headroom--not-top {
  will-change: transform;
  transition: transform 300ms linear; }
  .headroom--not-top.headroom--unpinned, .headroom--not-top:not(.headroom--pinned) {
    transform: translate3d(0, -100%, 0); }
  .headroom--not-top.headroom--pinned, .headroom--not-top.headroom--bottom {
    transform: translate3d(0, 0, 0); }
    .headroom--not-top.headroom--pinned::before, .headroom--not-top.headroom--bottom::before {
      opacity: 1; }
  .headroom--not-top.header {
    position: fixed;
    height: 5rem; }
    .headroom--not-top.header::before, .headroom--not-top.header::after {
      position: absolute; }
  .headroom--not-top .c-logo {
    color: #E3000F; }
    .headroom--not-top .c-logo:hover, .headroom--not-top .c-logo:focus {
      color: #E3000F; }
    .headroom--not-top .c-logo__image-gray {
      fill: #717776; }
  .headroom--not-top .toggle-nav__diagonal {
    transform: translate3d(6px, -17px, 0); }

.wrapper {
  max-width: 1920px;
  margin: 0 auto .5px;
  padding-top: 5rem; }

.footer a {
  text-decoration: none; }
  .footer a:hover {
    text-decoration: underline; }

.footer__title {
  line-height: 1.3333333333;
  font-size: 1.875rem;
  color: #000000;
  text-transform: uppercase; }

.footer__top, .footer__middle, .footer__bottom {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

.footer__top {
  margin: 28px 0;
  padding-top: 2rem;
  padding-bottom: 1.625rem;
  background-color: #F7F7F7; }

.footer__dekra img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 133px;
  height: auto; }

.footer__middle {
  padding-top: 2.25rem;
  padding-bottom: 1.75rem;
  color: #ffffff;
  background-color: #E3000F; }
  .footer__middle a {
    color: inherit; }

.footer__metanav {
  font-weight: 600; }
  .footer__metanav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0; }
    .footer__metanav ul li {
      flex-shrink: 0; }
    .footer__metanav ul li:not(:last-child)::after {
      content: '/';
      padding-left: 0.25rem;
      padding-right: 0.25rem; }

.footer__logogroup {
  display: flex;
  align-items: center;
  justify-content: center; }

.footer__logogroup .footer__logo {
  margin: 1.75rem 1.75rem 0; }

.footer__logo {
  display: inline-block;
  margin-left: 0.9375rem;
  color: inherit; }
  .footer__logo--sprick {
    margin-bottom: 0.5rem; }
  .footer__logo--sprick .footer__logo__img {
    width: 225px;
    height: 41px; }
  .footer__logo--bvmw .footer__logo__img {
    width: 123px;
    height: 51px; }
  .footer__logo--vdwf .footer__logo__img {
    width: 103px;
    height: 38px; }
  .footer__logo--louis .footer__logo__img {
    width: 122px;
    height: 19px; }
  .footer__logo__img {
    display: block;
    fill: currentColor; }

.footer__bottom {
  padding: 1.875rem;
  font-size: 14px;
  text-align: center; }
  .footer__bottom a {
    color: #D0D1D1; }
    .footer__bottom a:hover, .footer__bottom a:focus {
      color: #009EE3;
      text-decoration: none; }
  .footer__bottom .footer__logo {
    margin-left: 0.5rem;
    vertical-align: top; }

#cookieconsent-container {
  height: 0;
  transition: height .2s; }

.cc-theme-block.cc-window.cc-floating {
  right: 5.25rem;
  max-width: 29.5rem;
  max-height: 100%;
  overflow: auto;
  padding: 32px 35px 24px;
  font-size: 18px;
  font-family: "Titillium Web", Helvetica Neue, Helvetica, sans-serif; }
  .cc-theme-block.cc-window.cc-floating .cc-message {
    margin-bottom: 1.5rem; }
  .cc-theme-block.cc-window.cc-floating .cc-btn {
    flex: 0 1 auto; }
  .cc-theme-block.cc-window.cc-floating .cc-allow {
    margin-left: 0 !important; }
  .cc-theme-block.cc-window.cc-floating .cc-deny {
    order: 1; }
    .cc-theme-block.cc-window.cc-floating .cc-deny:hover, .cc-theme-block.cc-window.cc-floating .cc-deny:focus {
      text-decoration: none; }

.cc-revoke.cc-bottom {
  right: 1.875rem;
  border-radius: 0; }

.cc-revoke.cc-right {
  left: auto; }

.p-404 {
  display: flex;
  width: 100%;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0 auto; }
  .p-404 h1,
  .p-404 h2 {
    margin-bottom: 1.5rem; }
  .p-404 p {
    margin-bottom: 2rem; }
  .p-404 .c-btn:last-child, .p-404 .cc-theme-block.cc-window.cc-floating .cc-btn:last-child, .cc-theme-block.cc-window.cc-floating .p-404 .cc-btn:last-child {
    margin-right: 0; }
  .p-404 .frame-type-text {
    margin: 0;
    padding: 0; }
  .p-404__in {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.875rem;
    background-color: #F7F7F7; }
  .p-404__logo-wrap {
    padding-bottom: 2.5rem; }
  .p-404__logo {
    display: block;
    width: 297px; }
    .p-404__logo img {
      display: block;
      width: 100%;
      height: auto; }
  .p-404__content {
    max-width: 42rem;
    margin: auto; }
  @media only screen and (min-width: 0px) {
  .grid__col-xs-24 {
    width: 100%; }
  .grid__col-xs-23 {
    width: 95.8333333333%; }
  .grid__col-xs-22 {
    width: 91.6666666667%; }
  .grid__col-xs-21 {
    width: 87.5%; }
  .grid__col-xs-20 {
    width: 83.3333333333%; }
  .grid__col-xs-19 {
    width: 79.1666666667%; }
  .grid__col-xs-18 {
    width: 75%; }
  .grid__col-xs-17 {
    width: 70.8333333333%; }
  .grid__col-xs-16 {
    width: 66.6666666667%; }
  .grid__col-xs-15 {
    width: 62.5%; }
  .grid__col-xs-14 {
    width: 58.3333333333%; }
  .grid__col-xs-13 {
    width: 54.1666666667%; }
  .grid__col-xs-12 {
    width: 50%; }
  .grid__col-xs-11 {
    width: 45.8333333333%; }
  .grid__col-xs-10 {
    width: 41.6666666667%; }
  .grid__col-xs-9 {
    width: 37.5%; }
  .grid__col-xs-8 {
    width: 33.3333333333%; }
  .grid__col-xs-7 {
    width: 29.1666666667%; }
  .grid__col-xs-6 {
    width: 25%; }
  .grid__col-xs-5 {
    width: 20.8333333333%; }
  .grid__col-xs-4 {
    width: 16.6666666667%; }
  .grid__col-xs-3 {
    width: 12.5%; }
  .grid__col-xs-2 {
    width: 8.3333333333%; }
  .grid__col-xs-1 {
    width: 4.1666666667%; }
  .grid__col-xs-auto {
    flex: 1 0 auto;
    width: auto !important;
    max-width: 100%; }
  .grid--order-xs-24 {
    order: 24; }
  .grid--order-xs-23 {
    order: 23; }
  .grid--order-xs-22 {
    order: 22; }
  .grid--order-xs-21 {
    order: 21; }
  .grid--order-xs-20 {
    order: 20; }
  .grid--order-xs-19 {
    order: 19; }
  .grid--order-xs-18 {
    order: 18; }
  .grid--order-xs-17 {
    order: 17; }
  .grid--order-xs-16 {
    order: 16; }
  .grid--order-xs-15 {
    order: 15; }
  .grid--order-xs-14 {
    order: 14; }
  .grid--order-xs-13 {
    order: 13; }
  .grid--order-xs-12 {
    order: 12; }
  .grid--order-xs-11 {
    order: 11; }
  .grid--order-xs-10 {
    order: 10; }
  .grid--order-xs-9 {
    order: 9; }
  .grid--order-xs-8 {
    order: 8; }
  .grid--order-xs-7 {
    order: 7; }
  .grid--order-xs-6 {
    order: 6; }
  .grid--order-xs-5 {
    order: 5; }
  .grid--order-xs-4 {
    order: 4; }
  .grid--order-xs-3 {
    order: 3; }
  .grid--order-xs-2 {
    order: 2; }
  .grid--order-xs-1 {
    order: 1; }
  .grid--order-xs-0 {
    order: 0; }
  .grid--offset-xs-23 {
    margin-left: 95.8333333333%; }
  .grid--offset-xs-22 {
    margin-left: 91.6666666667%; }
  .grid--offset-xs-21 {
    margin-left: 87.5%; }
  .grid--offset-xs-20 {
    margin-left: 83.3333333333%; }
  .grid--offset-xs-19 {
    margin-left: 79.1666666667%; }
  .grid--offset-xs-18 {
    margin-left: 75%; }
  .grid--offset-xs-17 {
    margin-left: 70.8333333333%; }
  .grid--offset-xs-16 {
    margin-left: 66.6666666667%; }
  .grid--offset-xs-15 {
    margin-left: 62.5%; }
  .grid--offset-xs-14 {
    margin-left: 58.3333333333%; }
  .grid--offset-xs-13 {
    margin-left: 54.1666666667%; }
  .grid--offset-xs-12 {
    margin-left: 50%; }
  .grid--offset-xs-11 {
    margin-left: 45.8333333333%; }
  .grid--offset-xs-10 {
    margin-left: 41.6666666667%; }
  .grid--offset-xs-9 {
    margin-left: 37.5%; }
  .grid--offset-xs-8 {
    margin-left: 33.3333333333%; }
  .grid--offset-xs-7 {
    margin-left: 29.1666666667%; }
  .grid--offset-xs-6 {
    margin-left: 25%; }
  .grid--offset-xs-5 {
    margin-left: 20.8333333333%; }
  .grid--offset-xs-4 {
    margin-left: 16.6666666667%; }
  .grid--offset-xs-3 {
    margin-left: 12.5%; }
  .grid--offset-xs-2 {
    margin-left: 8.3333333333%; }
  .grid--offset-xs-1 {
    margin-left: 4.1666666667%; }
  .grid--offset-xs-0 {
    margin-left: 0; } }
  @media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(0, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(0, 0, 0); } }
  @media only screen and (min-width: 22.5em) {
    .tx-solr-search-form .input-group {
      display: flex; }
    .tx-solr-q {
      margin-bottom: 0; } }
  @media screen and (min-width: 22.5em) {
    h1, .u-h1 {
      font-size: calc(45px + 15 * (100vw - 359px) / 1240); }
      @supports not (font-size: 1vw) {
        h1, .u-h1 {
          font-size: 52.5px; } }
      h1 + .u-headline-sub,
      h1 + h2, .u-h1 + .u-headline-sub,
      .u-h1 + h2 {
        font-size: calc(30px + 5 * (100vw - 359px) / 1240); }
        @supports not (font-size: 1vw) {
          h1 + .u-headline-sub,
          h1 + h2, .u-h1 + .u-headline-sub,
          .u-h1 + h2 {
            font-size: 32.5px; } }
    h2, .u-h2 {
      font-size: calc(35px + 10 * (100vw - 359px) / 1240); }
      @supports not (font-size: 1vw) {
        h2, .u-h2 {
          font-size: 40px; } }
      h2 + .u-headline-sub,
      h2 + h3, .u-h2 + .u-headline-sub,
      .u-h2 + h3 {
        font-size: calc(28px + 2 * (100vw - 359px) / 1240); }
        @supports not (font-size: 1vw) {
          h2 + .u-headline-sub,
          h2 + h3, .u-h2 + .u-headline-sub,
          .u-h2 + h3 {
            font-size: 29px; } }
    h3, .u-h3 {
      font-size: calc(30px + 5 * (100vw - 359px) / 1240); }
      @supports not (font-size: 1vw) {
        h3, .u-h3 {
          font-size: 32.5px; } }
    h4, .u-h4 {
      font-size: calc(22px + 8 * (100vw - 359px) / 1240); }
      @supports not (font-size: 1vw) {
        h4, .u-h4 {
          font-size: 26px; } }
    h5, .u-h5 {
      font-size: calc(14px + 8 * (100vw - 359px) / 1240); }
      @supports not (font-size: 1vw) {
        h5, .u-h5 {
          font-size: 18px; } } }
  @media only screen and (min-width: 26.25em) {
    .c-btn, .cc-theme-block.cc-window.cc-floating .cc-btn,
    .c-unit--main .c-btn,
    .c-unit--main .cc-theme-block.cc-window.cc-floating .cc-btn,
    .cc-theme-block.cc-window.cc-floating .c-unit--main .cc-btn {
      margin-right: 0.75rem;
      display: inline-block;
      width: auto; }
      .mm-navbar__title {
        font-size: 20px; }
      .mm-listview .mm-listitem__text {
        font-size: 20px; }
  .c-gallery {
    display: flex;
    flex-wrap: wrap; }
    .c-gallery__item {
      flex: 0 0 50%;
      max-width: 50%; }
    .c-gallery__caption {
      width: 200%;
      min-height: 100%;
      padding-left: 100%;
      padding-top: 0; }
    .c-gallery__content {
      padding: 0.5rem 22%; }
      .cc-theme-block.cc-window.cc-floating .cc-allow {
        margin-right: 20px; }
    .p-404 .c-btn, .p-404 .cc-theme-block.cc-window.cc-floating .cc-btn, .cc-theme-block.cc-window.cc-floating .p-404 .cc-btn {
      margin-right: 1.125rem; } }
  @media only screen and (min-width: 26.25em) and (max-width: 47.9375em) {
    .c-gallery__item:nth-child(2n), .c-gallery__item:nth-child(4n-1) {
      background-color: #F2F2F2; }
    .c-gallery__item:nth-child(4n) {
      background-color: #F7F7F7; }
    .c-gallery__item:nth-child(2n) .c-gallery__caption {
      left: auto;
      right: 0;
      padding-left: 0;
      padding-right: 100%;
      justify-content: flex-end; }
    .c-gallery__item:nth-child(2n) .c-gallery__btnwrap {
      right: auto;
      left: 0.625rem; } }
  @media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(440px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(440px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-440px, 0, 0); }
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-440px, 0, 0); } }
  @media only screen and (min-width: 40em) and (max-width: 63.9375em) {
      .c-heromedia__productinfo-text {
        align-self: center;
        margin-top: 24px;
        margin-bottom: 24px; } }
  @media only screen and (min-width: 40em) {
  .grid__col-sm-24 {
    width: 100%; }
  .grid__col-sm-23 {
    width: 95.8333333333%; }
  .grid__col-sm-22 {
    width: 91.6666666667%; }
  .grid__col-sm-21 {
    width: 87.5%; }
  .grid__col-sm-20 {
    width: 83.3333333333%; }
  .grid__col-sm-19 {
    width: 79.1666666667%; }
  .grid__col-sm-18 {
    width: 75%; }
  .grid__col-sm-17 {
    width: 70.8333333333%; }
  .grid__col-sm-16 {
    width: 66.6666666667%; }
  .grid__col-sm-15 {
    width: 62.5%; }
  .grid__col-sm-14 {
    width: 58.3333333333%; }
  .grid__col-sm-13 {
    width: 54.1666666667%; }
  .grid__col-sm-12 {
    width: 50%; }
  .grid__col-sm-11 {
    width: 45.8333333333%; }
  .grid__col-sm-10 {
    width: 41.6666666667%; }
  .grid__col-sm-9 {
    width: 37.5%; }
  .grid__col-sm-8 {
    width: 33.3333333333%; }
  .grid__col-sm-7 {
    width: 29.1666666667%; }
  .grid__col-sm-6 {
    width: 25%; }
  .grid__col-sm-5 {
    width: 20.8333333333%; }
  .grid__col-sm-4 {
    width: 16.6666666667%; }
  .grid__col-sm-3 {
    width: 12.5%; }
  .grid__col-sm-2 {
    width: 8.3333333333%; }
  .grid__col-sm-1 {
    width: 4.1666666667%; }
  .grid__col-sm-auto {
    flex: 1 0 auto;
    width: auto !important;
    max-width: 100%; }
  .grid--order-sm-24 {
    order: 24; }
  .grid--order-sm-23 {
    order: 23; }
  .grid--order-sm-22 {
    order: 22; }
  .grid--order-sm-21 {
    order: 21; }
  .grid--order-sm-20 {
    order: 20; }
  .grid--order-sm-19 {
    order: 19; }
  .grid--order-sm-18 {
    order: 18; }
  .grid--order-sm-17 {
    order: 17; }
  .grid--order-sm-16 {
    order: 16; }
  .grid--order-sm-15 {
    order: 15; }
  .grid--order-sm-14 {
    order: 14; }
  .grid--order-sm-13 {
    order: 13; }
  .grid--order-sm-12 {
    order: 12; }
  .grid--order-sm-11 {
    order: 11; }
  .grid--order-sm-10 {
    order: 10; }
  .grid--order-sm-9 {
    order: 9; }
  .grid--order-sm-8 {
    order: 8; }
  .grid--order-sm-7 {
    order: 7; }
  .grid--order-sm-6 {
    order: 6; }
  .grid--order-sm-5 {
    order: 5; }
  .grid--order-sm-4 {
    order: 4; }
  .grid--order-sm-3 {
    order: 3; }
  .grid--order-sm-2 {
    order: 2; }
  .grid--order-sm-1 {
    order: 1; }
  .grid--order-sm-0 {
    order: 0; }
  .grid--offset-sm-23 {
    margin-left: 95.8333333333%; }
  .grid--offset-sm-22 {
    margin-left: 91.6666666667%; }
  .grid--offset-sm-21 {
    margin-left: 87.5%; }
  .grid--offset-sm-20 {
    margin-left: 83.3333333333%; }
  .grid--offset-sm-19 {
    margin-left: 79.1666666667%; }
  .grid--offset-sm-18 {
    margin-left: 75%; }
  .grid--offset-sm-17 {
    margin-left: 70.8333333333%; }
  .grid--offset-sm-16 {
    margin-left: 66.6666666667%; }
  .grid--offset-sm-15 {
    margin-left: 62.5%; }
  .grid--offset-sm-14 {
    margin-left: 58.3333333333%; }
  .grid--offset-sm-13 {
    margin-left: 54.1666666667%; }
  .grid--offset-sm-12 {
    margin-left: 50%; }
  .grid--offset-sm-11 {
    margin-left: 45.8333333333%; }
  .grid--offset-sm-10 {
    margin-left: 41.6666666667%; }
  .grid--offset-sm-9 {
    margin-left: 37.5%; }
  .grid--offset-sm-8 {
    margin-left: 33.3333333333%; }
  .grid--offset-sm-7 {
    margin-left: 29.1666666667%; }
  .grid--offset-sm-6 {
    margin-left: 25%; }
  .grid--offset-sm-5 {
    margin-left: 20.8333333333%; }
  .grid--offset-sm-4 {
    margin-left: 16.6666666667%; }
  .grid--offset-sm-3 {
    margin-left: 12.5%; }
  .grid--offset-sm-2 {
    margin-left: 8.3333333333%; }
  .grid--offset-sm-1 {
    margin-left: 4.1666666667%; }
  .grid--offset-sm-0 {
    margin-left: 0; }
    #kontakt-15 .statictext-1 p {
      margin-bottom: 1.75rem; }
      .mm-navbar__title {
        font-size: 24px; }
      .mm-listview .mm-listitem__text {
        font-size: 24px; }
        .c-heromedia__product img {
          margin-bottom: 0; }
      .c-heromedia__productinfo-img-wrap {
        margin-right: 1rem; }
    .c-menupanel {
      align-self: center;
      margin: auto; }
      .c-gallery__btn--expand {
        display: block !important; }
    .header {
      padding: 0 1.875rem; }
    .wrapper {
      padding: 5rem 1.875rem 0; }
    .footer__top p:last-child {
      margin-bottom: 0; }
    .footer__bottom {
      text-align: right; } }
  @media only screen and (min-width: 48em) {
  .grid__col-sd-24 {
    width: 100%; }
  .grid__col-sd-23 {
    width: 95.8333333333%; }
  .grid__col-sd-22 {
    width: 91.6666666667%; }
  .grid__col-sd-21 {
    width: 87.5%; }
  .grid__col-sd-20 {
    width: 83.3333333333%; }
  .grid__col-sd-19 {
    width: 79.1666666667%; }
  .grid__col-sd-18 {
    width: 75%; }
  .grid__col-sd-17 {
    width: 70.8333333333%; }
  .grid__col-sd-16 {
    width: 66.6666666667%; }
  .grid__col-sd-15 {
    width: 62.5%; }
  .grid__col-sd-14 {
    width: 58.3333333333%; }
  .grid__col-sd-13 {
    width: 54.1666666667%; }
  .grid__col-sd-12 {
    width: 50%; }
  .grid__col-sd-11 {
    width: 45.8333333333%; }
  .grid__col-sd-10 {
    width: 41.6666666667%; }
  .grid__col-sd-9 {
    width: 37.5%; }
  .grid__col-sd-8 {
    width: 33.3333333333%; }
  .grid__col-sd-7 {
    width: 29.1666666667%; }
  .grid__col-sd-6 {
    width: 25%; }
  .grid__col-sd-5 {
    width: 20.8333333333%; }
  .grid__col-sd-4 {
    width: 16.6666666667%; }
  .grid__col-sd-3 {
    width: 12.5%; }
  .grid__col-sd-2 {
    width: 8.3333333333%; }
  .grid__col-sd-1 {
    width: 4.1666666667%; }
  .grid__col-sd-auto {
    flex: 1 0 auto;
    width: auto !important;
    max-width: 100%; }
  .grid--order-sd-24 {
    order: 24; }
  .grid--order-sd-23 {
    order: 23; }
  .grid--order-sd-22 {
    order: 22; }
  .grid--order-sd-21 {
    order: 21; }
  .grid--order-sd-20 {
    order: 20; }
  .grid--order-sd-19 {
    order: 19; }
  .grid--order-sd-18 {
    order: 18; }
  .grid--order-sd-17 {
    order: 17; }
  .grid--order-sd-16 {
    order: 16; }
  .grid--order-sd-15 {
    order: 15; }
  .grid--order-sd-14 {
    order: 14; }
  .grid--order-sd-13 {
    order: 13; }
  .grid--order-sd-12 {
    order: 12; }
  .grid--order-sd-11 {
    order: 11; }
  .grid--order-sd-10 {
    order: 10; }
  .grid--order-sd-9 {
    order: 9; }
  .grid--order-sd-8 {
    order: 8; }
  .grid--order-sd-7 {
    order: 7; }
  .grid--order-sd-6 {
    order: 6; }
  .grid--order-sd-5 {
    order: 5; }
  .grid--order-sd-4 {
    order: 4; }
  .grid--order-sd-3 {
    order: 3; }
  .grid--order-sd-2 {
    order: 2; }
  .grid--order-sd-1 {
    order: 1; }
  .grid--order-sd-0 {
    order: 0; }
  .grid__col-sd-24 {
    width: 100%; }
  .grid__col-sd-23 {
    width: 95.8333333333%; }
  .grid__col-sd-22 {
    width: 91.6666666667%; }
  .grid__col-sd-21 {
    width: 87.5%; }
  .grid__col-sd-20 {
    width: 83.3333333333%; }
  .grid__col-sd-19 {
    width: 79.1666666667%; }
  .grid__col-sd-18 {
    width: 75%; }
  .grid__col-sd-17 {
    width: 70.8333333333%; }
  .grid__col-sd-16 {
    width: 66.6666666667%; }
  .grid__col-sd-15 {
    width: 62.5%; }
  .grid__col-sd-14 {
    width: 58.3333333333%; }
  .grid__col-sd-13 {
    width: 54.1666666667%; }
  .grid__col-sd-12 {
    width: 50%; }
  .grid__col-sd-11 {
    width: 45.8333333333%; }
  .grid__col-sd-10 {
    width: 41.6666666667%; }
  .grid__col-sd-9 {
    width: 37.5%; }
  .grid__col-sd-8 {
    width: 33.3333333333%; }
  .grid__col-sd-7 {
    width: 29.1666666667%; }
  .grid__col-sd-6 {
    width: 25%; }
  .grid__col-sd-5 {
    width: 20.8333333333%; }
  .grid__col-sd-4 {
    width: 16.6666666667%; }
  .grid__col-sd-3 {
    width: 12.5%; }
  .grid__col-sd-2 {
    width: 8.3333333333%; }
  .grid__col-sd-1 {
    width: 4.1666666667%; }
  .grid__col-sd-auto {
    flex: 1 0 auto;
    width: auto !important;
    max-width: 100%; }
  .grid--order-sd-24 {
    order: 24; }
  .grid--order-sd-23 {
    order: 23; }
  .grid--order-sd-22 {
    order: 22; }
  .grid--order-sd-21 {
    order: 21; }
  .grid--order-sd-20 {
    order: 20; }
  .grid--order-sd-19 {
    order: 19; }
  .grid--order-sd-18 {
    order: 18; }
  .grid--order-sd-17 {
    order: 17; }
  .grid--order-sd-16 {
    order: 16; }
  .grid--order-sd-15 {
    order: 15; }
  .grid--order-sd-14 {
    order: 14; }
  .grid--order-sd-13 {
    order: 13; }
  .grid--order-sd-12 {
    order: 12; }
  .grid--order-sd-11 {
    order: 11; }
  .grid--order-sd-10 {
    order: 10; }
  .grid--order-sd-9 {
    order: 9; }
  .grid--order-sd-8 {
    order: 8; }
  .grid--order-sd-7 {
    order: 7; }
  .grid--order-sd-6 {
    order: 6; }
  .grid--order-sd-5 {
    order: 5; }
  .grid--order-sd-4 {
    order: 4; }
  .grid--order-sd-3 {
    order: 3; }
  .grid--order-sd-2 {
    order: 2; }
  .grid--order-sd-1 {
    order: 1; }
  .grid--order-sd-0 {
    order: 0; }
  .grid--big.grid--nested {
    margin-left: -1.875rem !important;
    margin-right: -1.875rem !important; }
  .grid--big > [class*="grid__col-"] {
    padding-left: 1.875rem;
    padding-right: 1.875rem; }
  .grid--gap {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
    #kontakt-15 .statictext-1 {
      order: 0;
      align-self: flex-end; }
      .mm-navbars_top .mm-navbar {
        height: 80px; }
    .mm-navbar {
      padding-left: 84px; }
      .mm-navbar__btn:first-child {
        left: 84px; }
    .mm-menu_navbar_top-1 .mm-panels {
      top: 80px; }
    .mm-panel {
      padding-left: 84px; }
    .meta-nav {
      margin-top: 0; }
    .top-nav {
      flex-direction: row;
      align-items: center;
      padding-left: 84px;
      padding-right: 84px; }
    .c-gallery__item {
      flex: 0 0 33.3333333333%;
      max-width: 33.3333333333%; }
    .header {
      padding: 0 5.25rem; }
    .wrapper {
      padding: 5rem 5.25rem 0; }
    .cc-revoke.cc-bottom {
      right: 5.25rem; }
    .p-404 {
      padding: 1.875rem; } }
  @media only screen and (min-width: 48em) and (max-width: 89.9375em) {
    .c-gallery__item:nth-child(3n) .c-gallery__caption {
      left: auto;
      right: 0;
      padding-left: 0;
      padding-right: 100%;
      justify-content: flex-end; }
    .c-gallery__item:nth-child(3n) .c-gallery__btnwrap {
      right: auto;
      left: 0.625rem; }
    .c-gallery__item:nth-child(2n) {
      background-color: #F2F2F2; } }
  @media only screen and (min-width: 64em) {
  .grid__col-md-24 {
    width: 100%; }
  .grid__col-md-23 {
    width: 95.8333333333%; }
  .grid__col-md-22 {
    width: 91.6666666667%; }
  .grid__col-md-21 {
    width: 87.5%; }
  .grid__col-md-20 {
    width: 83.3333333333%; }
  .grid__col-md-19 {
    width: 79.1666666667%; }
  .grid__col-md-18 {
    width: 75%; }
  .grid__col-md-17 {
    width: 70.8333333333%; }
  .grid__col-md-16 {
    width: 66.6666666667%; }
  .grid__col-md-15 {
    width: 62.5%; }
  .grid__col-md-14 {
    width: 58.3333333333%; }
  .grid__col-md-13 {
    width: 54.1666666667%; }
  .grid__col-md-12 {
    width: 50%; }
  .grid__col-md-11 {
    width: 45.8333333333%; }
  .grid__col-md-10 {
    width: 41.6666666667%; }
  .grid__col-md-9 {
    width: 37.5%; }
  .grid__col-md-8 {
    width: 33.3333333333%; }
  .grid__col-md-7 {
    width: 29.1666666667%; }
  .grid__col-md-6 {
    width: 25%; }
  .grid__col-md-5 {
    width: 20.8333333333%; }
  .grid__col-md-4 {
    width: 16.6666666667%; }
  .grid__col-md-3 {
    width: 12.5%; }
  .grid__col-md-2 {
    width: 8.3333333333%; }
  .grid__col-md-1 {
    width: 4.1666666667%; }
  .grid__col-md-auto {
    flex: 1 0 auto;
    width: auto !important;
    max-width: 100%; }
  .grid--order-md-24 {
    order: 24; }
  .grid--order-md-23 {
    order: 23; }
  .grid--order-md-22 {
    order: 22; }
  .grid--order-md-21 {
    order: 21; }
  .grid--order-md-20 {
    order: 20; }
  .grid--order-md-19 {
    order: 19; }
  .grid--order-md-18 {
    order: 18; }
  .grid--order-md-17 {
    order: 17; }
  .grid--order-md-16 {
    order: 16; }
  .grid--order-md-15 {
    order: 15; }
  .grid--order-md-14 {
    order: 14; }
  .grid--order-md-13 {
    order: 13; }
  .grid--order-md-12 {
    order: 12; }
  .grid--order-md-11 {
    order: 11; }
  .grid--order-md-10 {
    order: 10; }
  .grid--order-md-9 {
    order: 9; }
  .grid--order-md-8 {
    order: 8; }
  .grid--order-md-7 {
    order: 7; }
  .grid--order-md-6 {
    order: 6; }
  .grid--order-md-5 {
    order: 5; }
  .grid--order-md-4 {
    order: 4; }
  .grid--order-md-3 {
    order: 3; }
  .grid--order-md-2 {
    order: 2; }
  .grid--order-md-1 {
    order: 1; }
  .grid--order-md-0 {
    order: 0; }
  .grid--offset-md-23 {
    margin-left: 95.8333333333%; }
  .grid--offset-md-22 {
    margin-left: 91.6666666667%; }
  .grid--offset-md-21 {
    margin-left: 87.5%; }
  .grid--offset-md-20 {
    margin-left: 83.3333333333%; }
  .grid--offset-md-19 {
    margin-left: 79.1666666667%; }
  .grid--offset-md-18 {
    margin-left: 75%; }
  .grid--offset-md-17 {
    margin-left: 70.8333333333%; }
  .grid--offset-md-16 {
    margin-left: 66.6666666667%; }
  .grid--offset-md-15 {
    margin-left: 62.5%; }
  .grid--offset-md-14 {
    margin-left: 58.3333333333%; }
  .grid--offset-md-13 {
    margin-left: 54.1666666667%; }
  .grid--offset-md-12 {
    margin-left: 50%; }
  .grid--offset-md-11 {
    margin-left: 45.8333333333%; }
  .grid--offset-md-10 {
    margin-left: 41.6666666667%; }
  .grid--offset-md-9 {
    margin-left: 37.5%; }
  .grid--offset-md-8 {
    margin-left: 33.3333333333%; }
  .grid--offset-md-7 {
    margin-left: 29.1666666667%; }
  .grid--offset-md-6 {
    margin-left: 25%; }
  .grid--offset-md-5 {
    margin-left: 20.8333333333%; }
  .grid--offset-md-4 {
    margin-left: 16.6666666667%; }
  .grid--offset-md-3 {
    margin-left: 12.5%; }
  .grid--offset-md-2 {
    margin-left: 8.3333333333%; }
  .grid--offset-md-1 {
    margin-left: 4.1666666667%; }
  .grid--offset-md-0 {
    margin-left: 0; }
    body {
      font-size: 18px; }
    p {
      margin-bottom: 24px; }
    h1, h2, h3, h4, h5 {
      margin-bottom: 24px; }
    header {
      margin-bottom: 24px; }
    main ul {
      margin-bottom: 24px; }
      main ul li {
        margin-bottom: 0.75rem;
        text-indent: 18px; }
        main ul li::before {
          height: 15px; }
    .frame-type-text,
    .frame-type-header,
    .frame-type-uploads,
    .c-gallery,
    .frame-type-list > header,
    .tx-solr-resultcontent {
      margin: 3.5rem 4rem 3.5rem; }
  .c-to-main + .c-unit--main .c-container__content > .frame-type-text:first-child {
    margin-top: 5rem; }
    .frame-type-menu_sitemap_pages {
      padding: 6rem 9.125rem 4rem; }
      .frame-background-red-citation .ce-bodytext::before,
      .frame-background-red-citation .c-tt__col:first-child::before,
      .c-tt .c-tt__col--background-red-citation::before {
        left: 3rem; }
      .frame-background-red-citation .ce-bodytext::after,
      .frame-background-red-citation .c-tt__col:first-child::after,
      .c-tt .c-tt__col--background-red-citation::after {
        right: 3.375rem; }
    .ce-textpic__content,
    .c-tt__content {
      padding: 1rem 3.375rem 1rem 3rem; }
    .ce-textpic__content > *:last-child,
    .c-tt__content > *:last-child {
      margin-bottom: 0; }
  .ce-textpic.ce-intext.ce-nowrap {
    display: flex; }
    .ce-textpic.ce-intext.ce-nowrap .ce-gallery {
      max-width: 50%;
      flex: 0 0 50%; }
    .ce-textpic.ce-intext.ce-nowrap .ce-bodytext {
      max-width: 50%;
      flex: 0 0 50%; }
    .frame.frame-space-after-medium {
      margin-bottom: 4rem; }
    .frame.frame-space-after-large {
      margin-bottom: 8rem; }
    .frame.frame-space-after-extra-large {
      margin-bottom: 10rem; }
    .frame.frame-space-before-medium {
      margin-top: 4rem; }
    .frame.frame-space-before-large {
      margin-top: 8rem; }
    .frame.frame-space-before-extra-large {
      margin-top: 10rem; }
      .mm-navbar__title {
        font-size: 30px; }
      .mm-listview .mm-listitem__text {
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 30px; }
      .meta-nav a {
        margin-right: 2.625rem; }
    .tx_solr .relevance {
      text-align: right; }
      .c-heromedia--subpage .c-heromedia__content {
        position: absolute;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem; }
      .c-heromedia--subpage .c-heromedia__content h1, .c-heromedia--subpage .c-heromedia__content .h1 {
        font-size: 2.25rem; }
      .c-heromedia--subpage .c-heromedia__content h1 + .u-headline-sub, .c-heromedia--subpage .c-heromedia__content .h1 + .u-headline-sub {
        font-size: 1.5rem; }
      .c-heromedia__product {
        display: flex;
        align-items: flex-end;
        height: 100%; }
    .frame-type-uploads .ce-uploads {
      margin-bottom: 24px; }
  .c-tt .c-tt__col {
    padding-top: 5rem;
    padding-bottom: 5rem; }
    .c-tt .c-tt__col:first-child {
      border-bottom: 0px; }
      .c-menupanel__title {
        margin-bottom: 3rem; }
    body .featherlight .featherlight-content {
      border-width: 1.375rem; }
    body .featherlight-previous, body .featherlight-next {
      width: 3.5rem; }
      body .featherlight-previous::before, body .featherlight-next::before {
        background-size: 1.75rem 3.5rem; }
    body .featherlight .featherlight-close-icon {
      width: 3.5rem;
      height: 3.5rem;
      background-size: 1.5rem 2.375rem; }
    .footer__middle__content {
      padding-left: 4.5rem; }
    .footer__logogroup {
      justify-content: flex-end; }
    .footer__logogroup .footer__logo {
      margin: 0 0.25rem 0 1.75rem; }
    .p-404 {
      padding: 5rem 5.25rem; }
      .p-404 h1,
      .p-404 h2 {
        margin-bottom: 2rem; }
      .p-404 p {
        margin-bottom: 2.5rem; } }
  @media screen and (min-width: 64em) {
    blockquote, .u-text-quote {
      font-size: calc(24px + 12 * (100vw - 1023px) / 576); }
      @supports not (font-size: 1vw) {
        blockquote, .u-text-quote {
          font-size: 30px; } } }
  @media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(880px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-880px, 0, 0); } }
  @media only screen and (min-width: 80em) {
    .c-logo {
      color: #ffffff; }
      .c-logo:hover, .c-logo:focus {
        color: #ffffff; }
      .c-logo__image-gray {
        fill: #ffffff; }
    .frame-type-text,
    .frame-type-header,
    .frame-type-uploads,
    .c-gallery,
    .frame-type-list > header,
    .tx-solr-resultcontent {
      margin: 4rem 9.125rem 3.5rem; }
    .frame-background-red-citation .ce-bodytext,
    .frame-background-red-citation .c-tt__col:first-child,
    .c-tt .c-tt__col--background-red-citation {
      padding-top: 9rem;
      padding-bottom: 9.75rem; }
      .frame-background-red-citation .ce-bodytext::before, .frame-background-red-citation .ce-bodytext::after,
      .frame-background-red-citation .c-tt__col:first-child::before,
      .frame-background-red-citation .c-tt__col:first-child::after,
      .c-tt .c-tt__col--background-red-citation::before,
      .c-tt .c-tt__col--background-red-citation::after {
        width: 7.75rem;
        height: 9rem; }
      .frame-background-red-citation .ce-bodytext::after,
      .frame-background-red-citation .c-tt__col:first-child::after,
      .c-tt .c-tt__col--background-red-citation::after {
        height: 9.75rem; }
      .mm-navbars_top .mm-navbar {
        height: 225px; }
    .mm-navbar {
      padding-left: 88px; }
      .mm-navbar__btn:first-child {
        left: 88px; }
    .mm-menu_navbar_top-1 .mm-panels {
      top: 225px; }
    .mm-panel {
      padding-left: 140px; }
    .mm-panels .mm-navbar {
      margin-top: 48px; }
      .mm-panels .mm-navbar + .mm-listview {
        padding-top: 92px; }
    .mm-listview {
      padding-top: 64px; }
    .top-nav {
      padding: 136px 120px 28px 140px; }
      .toggle-nav__diagonal {
        transform: none; }
    .c-heromedia.c-heromedia--search .c-heromedia__content,
    .c-heromedia.c-heromedia--search .c-heromedia__search {
      top: 3rem; }
      .c-heromedia.c-heromedia--search .c-heromedia__content h1:not(:last-child),
      .c-heromedia.c-heromedia--search .c-heromedia__content .h1:not(:last-child) {
        margin-top: 2rem; }
      .c-heromedia__content {
        top: 8.25rem; }
        .c-heromedia__product img {
          max-height: 16rem; }
      .c-heromedia__product-item {
        margin-top: 7rem; }
  .c-tt .c-tt__col {
    padding-top: 9rem;
    padding-bottom: 9.75rem; }
    .header {
      position: absolute;
      height: 13rem; }
      .header__content {
        padding: 0 2.25rem; } }
  @media only screen and (min-width: 90em) {
      .c-heromedia__content, .c-heromedia__product {
        padding: 4rem 1.875rem; }
        .c-heromedia__product img {
          max-height: 18rem; }
    .c-gallery__item {
      flex: 0 0 25%;
      max-width: 25%; }
      .c-gallery__item:nth-child(2n), .c-gallery__item:nth-child(8n-1), .c-gallery__item:nth-child(8n-3) {
        background-color: #F2F2F2; }
      .c-gallery__item:nth-child(8n), .c-gallery__item:nth-child(8n-2) {
        background-color: #F7F7F7; }
      .c-gallery__item:nth-child(4n) .c-gallery__caption {
        left: auto;
        right: 0;
        padding-left: 0;
        padding-right: 100%;
        justify-content: flex-end; }
      .c-gallery__item:nth-child(4n) .c-gallery__btnwrap {
        right: auto;
        left: 0.625rem; } }
  @media screen and (min-width: 100em) {
    blockquote, .u-text-quote {
      font-size: 2.25rem; }
    h1, .u-h1 {
      font-size: 3.75rem; }
      h1 + .u-headline-sub,
      h1 + h2, .u-h1 + .u-headline-sub,
      .u-h1 + h2 {
        font-size: 2.1875rem; }
    h2, .u-h2 {
      font-size: 2.8125rem; }
      h2 + .u-headline-sub,
      h2 + h3, .u-h2 + .u-headline-sub,
      .u-h2 + h3 {
        font-size: 1.875rem; }
    h3, .u-h3 {
      font-size: 2.1875rem; }
    h4, .u-h4 {
      font-size: 1.875rem; }
    h5, .u-h5 {
      font-size: 1.375rem; } }
  @media only screen and (min-width: 100em) {
  .grid__col-lg-24 {
    width: 100%; }
  .grid__col-lg-23 {
    width: 95.8333333333%; }
  .grid__col-lg-22 {
    width: 91.6666666667%; }
  .grid__col-lg-21 {
    width: 87.5%; }
  .grid__col-lg-20 {
    width: 83.3333333333%; }
  .grid__col-lg-19 {
    width: 79.1666666667%; }
  .grid__col-lg-18 {
    width: 75%; }
  .grid__col-lg-17 {
    width: 70.8333333333%; }
  .grid__col-lg-16 {
    width: 66.6666666667%; }
  .grid__col-lg-15 {
    width: 62.5%; }
  .grid__col-lg-14 {
    width: 58.3333333333%; }
  .grid__col-lg-13 {
    width: 54.1666666667%; }
  .grid__col-lg-12 {
    width: 50%; }
  .grid__col-lg-11 {
    width: 45.8333333333%; }
  .grid__col-lg-10 {
    width: 41.6666666667%; }
  .grid__col-lg-9 {
    width: 37.5%; }
  .grid__col-lg-8 {
    width: 33.3333333333%; }
  .grid__col-lg-7 {
    width: 29.1666666667%; }
  .grid__col-lg-6 {
    width: 25%; }
  .grid__col-lg-5 {
    width: 20.8333333333%; }
  .grid__col-lg-4 {
    width: 16.6666666667%; }
  .grid__col-lg-3 {
    width: 12.5%; }
  .grid__col-lg-2 {
    width: 8.3333333333%; }
  .grid__col-lg-1 {
    width: 4.1666666667%; }
  .grid__col-lg-auto {
    flex: 1 0 auto;
    width: auto !important;
    max-width: 100%; }
  .grid--order-lg-24 {
    order: 24; }
  .grid--order-lg-23 {
    order: 23; }
  .grid--order-lg-22 {
    order: 22; }
  .grid--order-lg-21 {
    order: 21; }
  .grid--order-lg-20 {
    order: 20; }
  .grid--order-lg-19 {
    order: 19; }
  .grid--order-lg-18 {
    order: 18; }
  .grid--order-lg-17 {
    order: 17; }
  .grid--order-lg-16 {
    order: 16; }
  .grid--order-lg-15 {
    order: 15; }
  .grid--order-lg-14 {
    order: 14; }
  .grid--order-lg-13 {
    order: 13; }
  .grid--order-lg-12 {
    order: 12; }
  .grid--order-lg-11 {
    order: 11; }
  .grid--order-lg-10 {
    order: 10; }
  .grid--order-lg-9 {
    order: 9; }
  .grid--order-lg-8 {
    order: 8; }
  .grid--order-lg-7 {
    order: 7; }
  .grid--order-lg-6 {
    order: 6; }
  .grid--order-lg-5 {
    order: 5; }
  .grid--order-lg-4 {
    order: 4; }
  .grid--order-lg-3 {
    order: 3; }
  .grid--order-lg-2 {
    order: 2; }
  .grid--order-lg-1 {
    order: 1; }
  .grid--order-lg-0 {
    order: 0; }
  .grid--offset-lg-23 {
    margin-left: 95.8333333333%; }
  .grid--offset-lg-22 {
    margin-left: 91.6666666667%; }
  .grid--offset-lg-21 {
    margin-left: 87.5%; }
  .grid--offset-lg-20 {
    margin-left: 83.3333333333%; }
  .grid--offset-lg-19 {
    margin-left: 79.1666666667%; }
  .grid--offset-lg-18 {
    margin-left: 75%; }
  .grid--offset-lg-17 {
    margin-left: 70.8333333333%; }
  .grid--offset-lg-16 {
    margin-left: 66.6666666667%; }
  .grid--offset-lg-15 {
    margin-left: 62.5%; }
  .grid--offset-lg-14 {
    margin-left: 58.3333333333%; }
  .grid--offset-lg-13 {
    margin-left: 54.1666666667%; }
  .grid--offset-lg-12 {
    margin-left: 50%; }
  .grid--offset-lg-11 {
    margin-left: 45.8333333333%; }
  .grid--offset-lg-10 {
    margin-left: 41.6666666667%; }
  .grid--offset-lg-9 {
    margin-left: 37.5%; }
  .grid--offset-lg-8 {
    margin-left: 33.3333333333%; }
  .grid--offset-lg-7 {
    margin-left: 29.1666666667%; }
  .grid--offset-lg-6 {
    margin-left: 25%; }
  .grid--offset-lg-5 {
    margin-left: 20.8333333333%; }
  .grid--offset-lg-4 {
    margin-left: 16.6666666667%; }
  .grid--offset-lg-3 {
    margin-left: 12.5%; }
  .grid--offset-lg-2 {
    margin-left: 8.3333333333%; }
  .grid--offset-lg-1 {
    margin-left: 4.1666666667%; }
  .grid--offset-lg-0 {
    margin-left: 0; }
    body {
      font-size: 22px; }
    p {
      margin-bottom: 40px; }
    h1, h2, h3, h4, h5 {
      margin-bottom: 40px; }
    header {
      margin-bottom: 40px; }
    main ul {
      margin-bottom: 40px; }
      main ul li {
        margin-bottom: 1rem;
        text-indent: 22px; }
        main ul li::before {
          top: 8px;
          width: 5px;
          height: 18px; }
    label:not(.form-check-label) {
      font-size: 1.125rem; }
    .form-navigation {
      margin-top: 3.5rem; }
    .frame-type-text,
    .frame-type-header,
    .frame-type-uploads,
    .c-gallery,
    .frame-type-list > header,
    .tx-solr-resultcontent {
      margin: 8rem 9.125rem 3.5rem; }
      .frame-background-red-citation .ce-bodytext::before,
      .frame-background-red-citation .c-tt__col:first-child::before,
      .c-tt .c-tt__col--background-red-citation::before {
        left: 5.25rem; }
      .frame-background-red-citation .ce-bodytext::after,
      .frame-background-red-citation .c-tt__col:first-child::after,
      .c-tt .c-tt__col--background-red-citation::after {
        right: 6rem; }
    .ce-textpic__content,
    .c-tt__content {
      padding: 1.5rem 6rem 1.5rem 5.25rem; }
    .c-breadcrumb {
      margin-bottom: 3.75rem;
      padding-left: 3.75rem; }
      .c-heromedia--subpage .c-heromedia__content h1, .c-heromedia--subpage .c-heromedia__content .h1 {
        font-size: 3.125rem; }
      .c-heromedia--subpage .c-heromedia__content h1 + .u-headline-sub, .c-heromedia--subpage .c-heromedia__content .h1 + .u-headline-sub {
        font-size: 1.875rem; }
      .c-heromedia__content, .c-heromedia__product {
        padding: 4rem 1.75rem 4rem 8.125rem; }
        .c-heromedia__header__diagonal {
          display: block; }
        .c-heromedia__product img {
          max-height: 21.5rem; }
      .c-heromedia__productinfo {
        margin-bottom: 3rem; }
      .c-heromedia__productinfo-img-wrap {
        margin-left: -2rem; }
    .frame-type-uploads .ce-uploads {
      margin-bottom: 40px; }
    .c-gallery__content {
      font-size: 1.125rem; }
  .footer__dekra {
    padding-left: 1.875rem; }
    .footer__middle {
      font-size: 1.125rem; }
      .p-404 h1,
      .p-404 h2 {
        margin-bottom: 4rem;
        font-size: 3.125rem; }
      .p-404 p {
        margin-bottom: 4.75rem; }
      .p-404__logo-wrap {
        padding: 1.9375rem 0.375rem; } }
  @media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(1320px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-1320px, 0, 0); } }
  @media only screen and (min-width: 105.0625em) {
        .c-heromedia__product img {
          max-height: none; } }
  @media only screen and (min-width: 120em) {
  .grid__col-xlg-24 {
    width: 100%; }
  .grid__col-xlg-23 {
    width: 95.8333333333%; }
  .grid__col-xlg-22 {
    width: 91.6666666667%; }
  .grid__col-xlg-21 {
    width: 87.5%; }
  .grid__col-xlg-20 {
    width: 83.3333333333%; }
  .grid__col-xlg-19 {
    width: 79.1666666667%; }
  .grid__col-xlg-18 {
    width: 75%; }
  .grid__col-xlg-17 {
    width: 70.8333333333%; }
  .grid__col-xlg-16 {
    width: 66.6666666667%; }
  .grid__col-xlg-15 {
    width: 62.5%; }
  .grid__col-xlg-14 {
    width: 58.3333333333%; }
  .grid__col-xlg-13 {
    width: 54.1666666667%; }
  .grid__col-xlg-12 {
    width: 50%; }
  .grid__col-xlg-11 {
    width: 45.8333333333%; }
  .grid__col-xlg-10 {
    width: 41.6666666667%; }
  .grid__col-xlg-9 {
    width: 37.5%; }
  .grid__col-xlg-8 {
    width: 33.3333333333%; }
  .grid__col-xlg-7 {
    width: 29.1666666667%; }
  .grid__col-xlg-6 {
    width: 25%; }
  .grid__col-xlg-5 {
    width: 20.8333333333%; }
  .grid__col-xlg-4 {
    width: 16.6666666667%; }
  .grid__col-xlg-3 {
    width: 12.5%; }
  .grid__col-xlg-2 {
    width: 8.3333333333%; }
  .grid__col-xlg-1 {
    width: 4.1666666667%; }
  .grid__col-xlg-auto {
    flex: 1 0 auto;
    width: auto !important;
    max-width: 100%; }
  .grid--order-xlg-24 {
    order: 24; }
  .grid--order-xlg-23 {
    order: 23; }
  .grid--order-xlg-22 {
    order: 22; }
  .grid--order-xlg-21 {
    order: 21; }
  .grid--order-xlg-20 {
    order: 20; }
  .grid--order-xlg-19 {
    order: 19; }
  .grid--order-xlg-18 {
    order: 18; }
  .grid--order-xlg-17 {
    order: 17; }
  .grid--order-xlg-16 {
    order: 16; }
  .grid--order-xlg-15 {
    order: 15; }
  .grid--order-xlg-14 {
    order: 14; }
  .grid--order-xlg-13 {
    order: 13; }
  .grid--order-xlg-12 {
    order: 12; }
  .grid--order-xlg-11 {
    order: 11; }
  .grid--order-xlg-10 {
    order: 10; }
  .grid--order-xlg-9 {
    order: 9; }
  .grid--order-xlg-8 {
    order: 8; }
  .grid--order-xlg-7 {
    order: 7; }
  .grid--order-xlg-6 {
    order: 6; }
  .grid--order-xlg-5 {
    order: 5; }
  .grid--order-xlg-4 {
    order: 4; }
  .grid--order-xlg-3 {
    order: 3; }
  .grid--order-xlg-2 {
    order: 2; }
  .grid--order-xlg-1 {
    order: 1; }
  .grid--order-xlg-0 {
    order: 0; }
  .grid--offset-xlg-23 {
    margin-left: 95.8333333333%; }
  .grid--offset-xlg-22 {
    margin-left: 91.6666666667%; }
  .grid--offset-xlg-21 {
    margin-left: 87.5%; }
  .grid--offset-xlg-20 {
    margin-left: 83.3333333333%; }
  .grid--offset-xlg-19 {
    margin-left: 79.1666666667%; }
  .grid--offset-xlg-18 {
    margin-left: 75%; }
  .grid--offset-xlg-17 {
    margin-left: 70.8333333333%; }
  .grid--offset-xlg-16 {
    margin-left: 66.6666666667%; }
  .grid--offset-xlg-15 {
    margin-left: 62.5%; }
  .grid--offset-xlg-14 {
    margin-left: 58.3333333333%; }
  .grid--offset-xlg-13 {
    margin-left: 54.1666666667%; }
  .grid--offset-xlg-12 {
    margin-left: 50%; }
  .grid--offset-xlg-11 {
    margin-left: 45.8333333333%; }
  .grid--offset-xlg-10 {
    margin-left: 41.6666666667%; }
  .grid--offset-xlg-9 {
    margin-left: 37.5%; }
  .grid--offset-xlg-8 {
    margin-left: 33.3333333333%; }
  .grid--offset-xlg-7 {
    margin-left: 29.1666666667%; }
  .grid--offset-xlg-6 {
    margin-left: 25%; }
  .grid--offset-xlg-5 {
    margin-left: 20.8333333333%; }
  .grid--offset-xlg-4 {
    margin-left: 16.6666666667%; }
  .grid--offset-xlg-3 {
    margin-left: 12.5%; }
  .grid--offset-xlg-2 {
    margin-left: 8.3333333333%; }
  .grid--offset-xlg-1 {
    margin-left: 4.1666666667%; }
  .grid--offset-xlg-0 {
    margin-left: 0; }
      .frame-background-red-citation .ce-bodytext::before,
      .frame-background-red-citation .c-tt__col:first-child::before,
      .c-tt .c-tt__col--background-red-citation::before {
        left: 9.125rem; }
      .frame-background-red-citation .ce-bodytext::after,
      .frame-background-red-citation .c-tt__col:first-child::after,
      .c-tt .c-tt__col--background-red-citation::after {
        right: 10.5rem; }
    .ce-textpic__content,
    .c-tt__content {
      padding: 2.5rem 10.5rem 2.5rem 9.125rem; }
  .frame-background-red-citation .ce-textpic__content,
  .frame-background-red-citation .c-tt__col:first-child .c-tt__content,
  .c-tt__col--background-red-citation .c-tt__content {
    padding-right: 8.75rem; }
      .c-heromedia--subpage .c-heromedia__content {
        padding-bottom: 40px; }
      .c-heromedia--subpage .c-heromedia__content h1, .c-heromedia--subpage .c-heromedia__content .h1 {
        margin-bottom: 2rem; }
      .c-heromedia__content, .c-heromedia__product {
        padding-top: 5.75rem;
        padding-bottom: 5.75rem; } }
  @media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(1760px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-1760px, 0, 0); } }
  @media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(10000px, 0, 0); }
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-10000px, 0, 0); } }
  @media only screen and (max-width: 99.9375em) {
    h1, h2, h3, h4, h5 {
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-hyphens: auto;
          -ms-hyphens: auto;
              hyphens: auto; } }
  @media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal; } }
  @media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0; }
  .cc-window.cc-bottom {
    bottom: 0; }
  .cc-window.cc-banner, .cc-window.cc-floating, .cc-window.cc-left, .cc-window.cc-right {
    left: 0;
    right: 0; }
  .cc-window.cc-banner {
    flex-direction: column; }
  .cc-window.cc-banner .cc-compliance {
    flex: 1 1 auto; }
  .cc-window.cc-floating {
    max-width: none; }
  .cc-window .cc-message {
    margin-bottom: 1em; }
  .cc-window.cc-banner {
    align-items: unset; }
  .cc-window.cc-banner .cc-message {
    margin-right: 0; } }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
      .frame-background-red-citation .ce-bodytext::before, .frame-background-red-citation .ce-bodytext::after,
      .frame-background-red-citation .c-tt__col:first-child::before,
      .frame-background-red-citation .c-tt__col:first-child::after,
      .c-tt .c-tt__col--background-red-citation::before,
      .c-tt .c-tt__col--background-red-citation::after {
        background: linear-gradient(to top left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 49%, white 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%); } }
  @media only screen and (max-width: 63.9375em) {
  .ce-textpic,
  .c-tt {
    margin-bottom: 3rem; }
        .c-heromedia__content h1:last-child, .c-heromedia__content .h1:last-child {
          margin-bottom: 0; }
  .c-gallery {
    margin-left: 0;
    margin-right: 0; }
    .cc-theme-block.cc-window.cc-floating {
      right: 0;
      left: 0;
      bottom: 0;
      max-width: none;
      padding: 0.9375rem 1.875rem; }
    .cc-theme-block.cc-window.cc-floating .cc-compliance {
      display: block; } }
  @media only screen and (min-height: 50.0625em) {
      .mm-panels .mm-navbar + .mm-listview {
        padding-top: 100px; }
    .mm-listview {
      padding-top: 148px; }
      .c-menupanel__in {
        margin-bottom: 12rem; } }
  @media only screen and (max-width: 47.9375em) {
  .mm-menu .toggle-nav {
    margin: 0; }
  .mm-menu .toggle-nav__list {
    justify-content: space-between; } }
  @media only screen and (max-width: 63.875em) {
      .toggle-nav__diagonal {
        display: none; }
      .toggle-nav__btn--contact, .toggle-nav__btn--search {
        display: none; } }
  @media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; }
  .featherlight-next,
  .featherlight-previous {
    top: 10px;
    right: 10px;
    left: 85%; }
  .featherlight-previous {
    left: 10px;
    right: 85%; }
  .featherlight-next span,
  .featherlight-previous span {
    margin-top: -30px;
    font-size: 40px; } }
  @media only screen and (max-device-width: 1024px) {
  .featherlight-next:hover,
  .featherlight-previous:hover {
    background: none; }
  .featherlight-next span,
  .featherlight-previous span {
    display: block; } }
  @media only screen and (max-width: 26.1875em) {
        .c-heromedia__content h1, .c-heromedia__content .h1 {
          margin-bottom: 0.75rem;
          font-size: 2.5rem; }
        .c-heromedia__content h1 + .u-headline-sub, .c-heromedia__content .h1 + .u-headline-sub {
          font-size: 1.5rem; }
    .frame-type-uploads .ce-uploads {
      margin-left: -1.875rem;
      margin-right: -1.875rem; }
      .c-menupanel__title {
        font-size: 1.25rem; }
    .c-gallery__item:nth-child(2n) {
      background-color: #F2F2F2; } }
  @media only screen and (max-width: 22.4375em) {
        .c-heromedia__content h1, .c-heromedia__content .h1 {
          margin-bottom: 0.5rem;
          font-size: 2rem; }
        .c-heromedia__content h1 + .u-headline-sub, .c-heromedia__content .h1 + .u-headline-sub {
          font-size: 1.125rem; } }
  @media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(140px, 0, 0); }
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-140px, 0, 0); } }
  @media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0); }
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-240px, 0, 0); } }
  @media print {
  .cc-revoke, .cc-window {
    display: none; }
  html.with-featherlight > * > :not(.featherlight) {
    display: none; }
  * {
    background: #ffffff !important;
    color: #717676 !important;
    text-shadow: none !important;
    box-shadow: none;
    margin: 0;
    padding: 0; }
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center, dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline; }
  img, object {
    display: block;
    margin: 0;
    padding: 0; }
  body {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-family: "Titillium Web", Helvetica Neue, Helvetica, sans-serif;
    background-image: none;
    margin: 0;
    padding: 0; }
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0.75em 0 0.5em;
    text-align: left;
    page-break-after: avoid; }
  h1 {
    padding: 0 0 0.5em;
    border-bottom: 1px solid #717676; }
  p {
    margin: 0.5em 0;
    font-stretch: expanded; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  a,
  a:visited {
    text-decoration: underline; }
  .print-show-url[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  img {
    padding: 0.5em 0;
    max-width: 100% !important; }
  #header {
    width: auto;
    height: auto; }
  footer,
  aside,
  nav,
  .pagination {
    display: none; }
  table {
    width: 100%; } }
  @media only screen and (max-width: 26.125em) {
  .u-headline-sub {
    overflow: hidden;
    text-overflow: ellipsis; }
      .c-logo__image {
        width: 100%;
        height: auto; } }
  @media (hover: hover), screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .c-gallery__item:hover {
      z-index: 3;
      transition: none; }
      .c-gallery__item:hover .c-gallery__caption {
        opacity: 1;
        visibility: visible;
        transform: translateZ(0); } }
  @media (hover: none) and (pointer: coarse) {
    .c-gallery__btn {
      display: block; } }
  @media only screen and (min-height: 58.8125em) {
      .p-404__content {
        padding-bottom: 5.875rem; } }