@charset "UTF-8";
/* Scss Document */
/* http://mmenu.frebsite.nl/documentation/core/scss.html */
.mm-menu {
  --mm-color-background: #0086cd;
  --mm-color-background-highlight: #0086cd;
  --mm-color-background-emphasis: #0086cd;
  --mm-color-text: #FFFFFF;
  --mm-color-text-dimmed: #ffffff;
  --mm-color-button: #ffffff;
  --mm-color-border: #ffffff;
  --mm-line-height: 40px;
  --mm-navbar-size: 50px;
  --mm-offset-top: 0px;
  border-top: #0086cd 1px solid;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 12px 12px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ffffff;
}

.hamburger-box {
  width: 30px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 60px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 60px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 60px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 60px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 60px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 60px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-6px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(6px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-6px, -7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 16px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 8px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -60px;
  top: -60px;
  transform: translate3d(60px, 60px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -60px;
  top: -60px;
  transform: translate3d(-60px, 60px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 8px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -60px;
  top: 60px;
  transform: translate3d(60px, -60px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -60px;
  top: 60px;
  transform: translate3d(-60px, -60px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-4.2857142857px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(4.2857142857px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 8px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 8px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* local fonts start */
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v15-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("../fonts/open-sans-v15-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v15-latin-regular.woff2") format("woff2"), url("../fonts/open-sans-v15-latin-regular.woff") format("woff"), url("../fonts/open-sans-v15-latin-regular.ttf") format("truetype"), url("../fonts/open-sans-v15-latin-regular.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* open-sans-600 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v15-latin-600.eot"); /* IE9 Compat Modes */
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"), url("../fonts/open-sans-v15-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v15-latin-600.woff2") format("woff2"), url("../fonts/open-sans-v15-latin-600.woff") format("woff"), url("../fonts/open-sans-v15-latin-600.ttf") format("truetype"), url("../fonts/open-sans-v15-latin-600.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v15-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("../fonts/open-sans-v15-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v15-latin-700.woff2") format("woff2"), url("../fonts/open-sans-v15-latin-700.woff") format("woff"), url("../fonts/open-sans-v15-latin-700.ttf") format("truetype"), url("../fonts/open-sans-v15-latin-700.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* local fonts end */
@font-face {
  font-family: "bh-configurator";
  src: url("../fonts/bh-configurator.eot?jpd6zh");
  src: url("../fonts/bh-configurator.eot?jpd6zh#iefix") format("embedded-opentype"), url("../fonts/bh-configurator.ttf?jpd6zh") format("truetype"), url("../fonts/bh-configurator.woff?jpd6zh") format("woff"), url("../fonts/bh-configurator.svg?jpd6zh#bh-configurator") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "bh-configurator" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home2:before {
  content: "\e601";
}

.icon-pencil:before {
  content: "\e60d";
}

.icon-envelope:before {
  content: "\e696";
}

.icon-play:before {
  content: "\e6f7";
}

.icon-cart:before {
  content: "\e74d";
}

.icon-refresh:before {
  content: "\e8d3";
}

.icon-sync:before {
  content: "\e8da";
}

.icon-magnifier:before {
  content: "\e922";
}

.icon-question:before {
  content: "\e933";
}

.icon-check:before {
  content: "\e934";
}

.icon-cross2:before {
  content: "\e935";
}

.icon-plus:before {
  content: "\e936";
}

.icon-minus:before {
  content: "\e937";
}

.icon-chevron-up:before {
  content: "\e939";
}

.icon-chevron-down:before {
  content: "\e93a";
}

.icon-chevron-left:before {
  content: "\e93b";
}

.icon-chevron-right:before {
  content: "\e93c";
}

.icon-tab:before {
  content: "\e94f";
}

.icon-question-circle:before {
  content: "\e957";
}

.icon-square:before {
  content: "\e98d";
}

/* CSS Document */
/* color background */
/* color black */
/* color white */
/* color light grey*/
/* color bedrunka hitrh blau */
/* color dark grey */
/* color mid grey */
/* color red application */
/* color liststyle */
/* ral */
body, html {
  margin: 0px;
  padding: 0px;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  color: #000000;
  background-color: #ffffff;
  position: relative;
}

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

a {
  text-decoration: underline;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #ebebeb;
}

/*FORM INPUT STYLES*/
input {
  font-family: "Open Sans", sans-serif;
}

/*input[type="text"], input[type="email"], input[type="password"], textarea, select {
    font-weight:normal;
	color: #000000;
	border: none;
	background-color: $color4;
	height:auto;
	padding:5px;
	padding-left:10px;
	padding-right:10px;
	cursor: pointer;
	text-align:left;
	width: 100%;
	font-size:14px

}*/
/*input[type="password"] {
	font-weight:normal;
	color: #000000;
	border: 1px #999999 solid;
	background-color: #ffffff;
	height:auto;
	padding:3px;
	padding-left:10px;
	padding-right:10px;
	-webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
	cursor: pointer;
	text-align:left;
	width: auto;
}*/
/*input[type="submit"] {
	font-weight:normal;
	color: $color2;
	font-size:14px;
	line-height:14px;
	border: none;
	background-color: $color3;
	width:100%;
	padding:8px;
	padding-left:10px;
	padding-right:10px;
	cursor: pointer;
	text-align:left;
}*/
/*input[type="file"] {
	font-weight: bold;
	color: #FFFFFF;
	height: auto;
	border: 1px #999999 solid;
	background-color: $color3;
	width: auto;
	height:auto;
	padding:3px;
	padding-left:10px;
	padding-right:10px;
	-webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
	cursor: pointer;
	text-align:left;
}*/
/*input[type="text"], input[type="password"] , input[type="email"], textarea, select {
  border: 1px solid $color2;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}*/
/*input[type="submit"] {
  border: 1px solid $color3;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}*/
/*input[type="text"]:focus, input[type="password"]:focus {
  border: 1px solid $color4;
}*/
/*input::-moz-focus-inner { border:0; padding:0 }

input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}*/
.placeholder {
  color: #000000;
}

/* local fonts start */
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v15-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("../fonts/open-sans-v15-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v15-latin-regular.woff2") format("woff2"), url("../fonts/open-sans-v15-latin-regular.woff") format("woff"), url("../fonts/open-sans-v15-latin-regular.ttf") format("truetype"), url("../fonts/open-sans-v15-latin-regular.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* open-sans-600 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v15-latin-600.eot"); /* IE9 Compat Modes */
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"), url("../fonts/open-sans-v15-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v15-latin-600.woff2") format("woff2"), url("../fonts/open-sans-v15-latin-600.woff") format("woff"), url("../fonts/open-sans-v15-latin-600.ttf") format("truetype"), url("../fonts/open-sans-v15-latin-600.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v15-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("../fonts/open-sans-v15-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v15-latin-700.woff2") format("woff2"), url("../fonts/open-sans-v15-latin-700.woff") format("woff"), url("../fonts/open-sans-v15-latin-700.ttf") format("truetype"), url("../fonts/open-sans-v15-latin-700.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* local fonts end */
@font-face {
  font-family: "bh-configurator";
  src: url("../fonts/bh-configurator.eot?jpd6zh");
  src: url("../fonts/bh-configurator.eot?jpd6zh#iefix") format("embedded-opentype"), url("../fonts/bh-configurator.ttf?jpd6zh") format("truetype"), url("../fonts/bh-configurator.woff?jpd6zh") format("woff"), url("../fonts/bh-configurator.svg?jpd6zh#bh-configurator") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "bh-configurator" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home2:before {
  content: "\e601";
}

.icon-pencil:before {
  content: "\e60d";
}

.icon-envelope:before {
  content: "\e696";
}

.icon-play:before {
  content: "\e6f7";
}

.icon-cart:before {
  content: "\e74d";
}

.icon-refresh:before {
  content: "\e8d3";
}

.icon-sync:before {
  content: "\e8da";
}

.icon-magnifier:before {
  content: "\e922";
}

.icon-question:before {
  content: "\e933";
}

.icon-check:before {
  content: "\e934";
}

.icon-cross2:before {
  content: "\e935";
}

.icon-plus:before {
  content: "\e936";
}

.icon-minus:before {
  content: "\e937";
}

.icon-chevron-up:before {
  content: "\e939";
}

.icon-chevron-down:before {
  content: "\e93a";
}

.icon-chevron-left:before {
  content: "\e93b";
}

.icon-chevron-right:before {
  content: "\e93c";
}

.icon-tab:before {
  content: "\e94f";
}

.icon-question-circle:before {
  content: "\e957";
}

.icon-square:before {
  content: "\e98d";
}

/* CSS Document */
/* color background */
/* color black */
/* color white */
/* color light grey*/
/* color bedrunka hitrh blau */
/* color dark grey */
/* color mid grey */
/* color red application */
/* color liststyle */
/* ral */
body, html {
  margin: 0px;
  padding: 0px;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  color: #000000;
  background-color: #ffffff;
  position: relative;
}

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

a {
  text-decoration: underline;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #ebebeb;
}

/*FORM INPUT STYLES*/
input {
  font-family: "Open Sans", sans-serif;
}

/*input[type="text"], input[type="email"], input[type="password"], textarea, select {
    font-weight:normal;
	color: #000000;
	border: none;
	background-color: $color4;
	height:auto;
	padding:5px;
	padding-left:10px;
	padding-right:10px;
	cursor: pointer;
	text-align:left;
	width: 100%;
	font-size:14px

}*/
/*input[type="password"] {
	font-weight:normal;
	color: #000000;
	border: 1px #999999 solid;
	background-color: #ffffff;
	height:auto;
	padding:3px;
	padding-left:10px;
	padding-right:10px;
	-webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
	cursor: pointer;
	text-align:left;
	width: auto;
}*/
/*input[type="submit"] {
	font-weight:normal;
	color: $color2;
	font-size:14px;
	line-height:14px;
	border: none;
	background-color: $color3;
	width:100%;
	padding:8px;
	padding-left:10px;
	padding-right:10px;
	cursor: pointer;
	text-align:left;
}*/
/*input[type="file"] {
	font-weight: bold;
	color: #FFFFFF;
	height: auto;
	border: 1px #999999 solid;
	background-color: $color3;
	width: auto;
	height:auto;
	padding:3px;
	padding-left:10px;
	padding-right:10px;
	-webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
	cursor: pointer;
	text-align:left;
}*/
/*input[type="text"], input[type="password"] , input[type="email"], textarea, select {
  border: 1px solid $color2;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}*/
/*input[type="submit"] {
  border: 1px solid $color3;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}*/
/*input[type="text"]:focus, input[type="password"]:focus {
  border: 1px solid $color4;
}*/
/*input::-moz-focus-inner { border:0; padding:0 }

input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}*/
.placeholder {
  color: #000000;
}

/* CSS Document */
/*bh-configurator-container*/
.bh-configurator-container {
  height: calc(100vh - 90px);
  /*overflow: hidden;*/
}

.bh-configurator-container .col-lg-6 {
  height: calc(100vh - 90px);
  /*min-height: 500px;*/
}

.bh-configurator-container .left {
  position: relative;
}

.bh-configurator-container .right {
  border-left: #cccccc 1px solid;
  min-height: calc(100vh - 90px) !important;
  /*height: auto !important;*/
  overflow: auto;
}

/*bh-accordion*/
/*bh-accordion-head*/
*:focus {
  outline: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bh-accordion-head {
  position: relative;
  min-height: 50px;
  background-color: #FFFFFF;
  font-size: 16px;
  color: #000000;
  border-bottom: #cccccc 1px solid;
  cursor: pointer;
}

.bh-accordion-head-bg {
  background-color: #ebebeb;
}

.bh-accordion-head:hover {
  background-color: #ebebeb;
}

.ui-accordion-header-active {
  background-color: #ebebeb;
}

.bh-accordion-content {
  border-bottom: #cccccc 1px solid;
  padding-bottom: 10px;
  display: none; /*closed on load*/
}

.bh-configuration-status {
  background-color: #ebebeb;
  font-size: 14px;
  padding: 10px;
}

.drawer-info-set {
  margin: 0;
  padding: 0;
}

.drawer-info-set li {
  list-style-type: none !important;
}

.drawer-info-set ul li:before {
  position: absolute;
  display: block;
  content: "\e93c";
  font-family: "bh-configurator";
  transform: rotate(135deg);
  color: #0086cd;
  margin-top: 2px;
  margin-left: -20px;
}

.bh-accordion-head-txt {
  display: block;
  padding: 10px;
  padding-top: 12px;
  padding-right: 40px;
}

.bh-accordion-head-cosed {
  position: absolute;
  display: block;
  widht: 50px;
  height: 50px;
  padding: 10px;
  right: 0px;
}

.bh-accordion-head-cosed::before {
  content: "\e93c";
  font-family: "bh-configurator";
  font-size: 26px;
}

.bh-accordion-head-open {
  position: absolute;
  display: block;
  widht: 50px;
  height: 50px;
  padding: 10px;
  right: 0px;
}

.bh-accordion-head-open::before {
  content: "\e93a";
  font-family: "bh-configurator";
  font-size: 26px;
  color: #0086cd;
}

.bh-accordion-content p {
  padding: 10px !important;
}

.bh-tooltip {
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  padding-bottom: 10px;
  position: relative;
}

.bh-tooltip::after {
  content: "\e933";
  font-family: "bh-configurator";
  font-size: 18px;
  color: #0086cd;
  opacity: 0.8;
  position: absolute;
  right: 15px;
  top: 10px;
}

.ui-tooltip {
  top: 0px !important;
  left: 50% !important;
  width: 50%;
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 80px;
  color: #FFFFFF;
  background-color: #666666;
  position: fixed !important;
  z-index: 1000000;
  cursor: pointer;
  border-left: #0086cd 10px solid;
}

.ui-tooltip::after {
  content: "\e933";
  font-family: "bh-configurator";
  font-size: 36px;
  color: #FFFFFF;
  opacity: 1;
  position: absolute;
  right: 10px;
  top: 12px;
}

/*grid-dimansion*/
.grid-dimension {
  display: inline-block;
  width: 25%;
  background-color: #ebebeb;
  border: #FFFFFF 1px solid;
  cursor: pointer;
  color: #000000;
  font-size: 14px;
  padding: 10px;
}

.grid-dimension:hover {
  background-color: #0086cd;
  color: #FFFFFF;
}

.grid-dimension.active {
  background-color: #0086cd;
  color: #FFFFFF;
}

/*usefull-housing-height*/
/*drawers*/
.drawers {
  display: inline-block;
  width: calc(100% - 2px);
  margin: 1px;
  min-height: 50px;
  height: auto;
  padding: 5px;
  padding-right: 25px;
  background-color: #ebebeb;
}

.drawers-right-group {
  display: block;
  float: right;
  width: auto;
}

.drawers .select-wrapper {
  display: inline-block;
  float: left;
  width: 140px !important;
  padding-right: 0px !important;
  padding-bottom: 0 !important;
}

.drawers .select-wrapper::after {
  right: 0px !important;
}

.drawers input[type=text] {
  width: 50px !important;
  float: left;
  margin-top: 1px;
  text-align: center;
}

.drawers-height {
  display: inline-block;
  padding: 15px;
  padding-top: 12px;
  font-size: 14px;
}

.load-information-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}

.drawers-height.max-load-info {
  padding-top: 0 !important;
  padding: 0 !important;
  background-color: #0086cd;
  color: #FFFFFF;
  margin-right: 1px;
}

.drawers-height.max-load-info.drawer-row.warn {
  font-style: italic;
}

#remaining-height {
  float: left;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #0086cd;
  color: #FFFFFF;
  font-weight: 600;
  margin-left: 5px;
  margin-bottom: 3px;
}

#remaining-height.warning {
  background-color: #bf111b;
}

.drawer-error-message {
  height: 30px;
  padding: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  font-style: italic;
  color: #bf111b;
}

/*partition-material*/
.partition-material {
  display: inline-block;
  width: calc(100% - 2px);
  margin: 1px;
  min-height: 50px;
  background-color: #ebebeb;
}

.partition-material-drawers {
  display: block;
  min-height: 50px;
  padding: 5px;
  padding-right: 25px;
  padding-left: 10px;
}

.partition-material-selected {
  display: inline-block;
  min-height: 50px;
  padding: 5px;
  padding-left: 10px;
  padding-right: 25px;
  background-color: #FFFFFF;
  width: 100%;
  /*border-top: $color6 1px solid;*/
}

.partition-material-drawers-info {
  display: inline-block;
  font-size: 14px;
}

.partition-material-drawers-info span {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.partition-material-right-group {
  display: block;
  float: right;
  width: auto;
}

.partition-material-selected-img {
  float: left;
  margin-right: 10px;
  margin-left: 25px;
}

.partition-material-selected-img-wrapper {
  width: 45px;
  height: 40px;
  background-color: #FFFFFF;
  display: table-cell;
  vertical-align: middle;
}

.partition-material-selected-img::before {
  position: absolute;
  display: block;
  content: "\e93c";
  font-family: "bh-configurator";
  transform: rotate(135deg);
  color: #0086cd;
  margin-top: 5px;
  margin-left: -25px;
}

.partition-material-selected-img img {
  max-height: 40px;
  max-width: 45px;
  width: auto;
  height: auto;
}

.partition-material-selected-description {
  float: left;
  font-size: 14px;
  max-width: 50%;
  padding-top: 5px;
}

/*closure*/
.add-product {
  display: inline-block;
  width: calc(100% - 2px);
  margin: 1px;
  min-height: 50px;
  background-color: #ebebeb;
}

.add-product-img {
  margin: 5px;
  margin-right: 10px;
  float: left;
}

.add-product-img-wrapper {
  width: 45px;
  height: 40px;
  background-color: #FFFFFF;
  display: table-cell;
  vertical-align: middle;
}

.add-product-img img {
  max-height: 40px;
  max-width: 45px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.add-product-art {
  display: inline-block;
  font-size: 14px;
  /*font-weight: 600;*/
  padding: 5px;
  padding-left: 10px;
  max-width: 65%;
}

.add-product-right-group {
  display: block;
  float: right;
  width: auto;
  padding: 5px;
  padding-right: 25px;
}

.add-product-no-bg {
  background: none;
}

/*slide-in-box*/
.slide-in-box {
  position: fixed;
  display: block;
  right: 0;
  top: 0;
  width: 0%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  border-left: #ebebeb 1px solid;
  z-index: 100000;
  overflow-y: auto;
  overflow-x: hidden;
}

.slide-in-box-headline {
  position: relative;
  display: block;
  padding: 20px;
  font-size: 20px;
  color: #0086cd;
}

.slide-in-box-close-box {
  position: absolute;
  top: 10px;
  left: 91%;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.slide-in-box-close-box::before {
  position: absolute;
  display: block;
  content: "\e935";
  font-family: "bh-configurator";
  color: #0086cd;
  width: 40px;
  height: 40px;
  font-size: 24px;
}

.slide-in-box-inner {
  position: relative;
  display: block;
  padding: 20px;
  width: 100%;
}

/*product-wrapper*/
.product-wrapper {
  position: relative;
  display: inline-block;
  width: 45%;
  margin-right: 1%;
  margin-bottom: 1%;
  border: #ebebeb 1px solid;
  padding: 0px;
}

.product-image {
  padding: 10px;
  padding-bottom: 0px;
  width: 100%;
  min-height: 150px;
}

.product-image img {
  display: block;
  max-height: 150px;
  max-width: 150px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.product-text {
  padding: 10px;
  padding-bottom: 0px;
  font-weight: 600;
  font-size: 14px;
  height: 50px;
  text-align: center;
  vertical-align: bottom;
}

.product-artnum {
  padding: 10px;
  font-size: 14px;
  width: auto;
  float: left;
}

.product-action {
  position: relative;
  display: block;
  width: 100%;
  text-align: right;
}

/*color-selector*/
.color-selector {
  display: inline-block;
  width: 25%;
  height: 60px;
  background-color: #ebebeb;
  border: #FFFFFF 1px solid;
  cursor: pointer;
  color: #000000;
  font-size: 14px;
}

.color-selector:hover {
  background-color: #0086cd;
  color: #FFFFFF;
}

.color-selector.active {
  background-color: #0086cd;
  color: #FFFFFF;
}

.color-selector p {
  padding-left: 10px;
  padding-top: 3px !important;
}

.color-field {
  width: 100%;
  height: 30px;
  border-bottom: #FFFFFF 1px solid;
}

.ral1023 {
  background-color: #f2bf00;
}

.ral3003 {
  background-color: #870a24;
}

.ral3020 {
  background-color: #bf111b;
}

.ral5002 {
  background-color: #162e7b;
}

.ral5005 {
  background-color: #004389;
}

.ral5010 {
  background-color: #00427f;
}

.ral5012 {
  background-color: #2781bb;
}

.ral5013 {
  background-color: #202e53;
}

.ral6011 {
  background-color: #68825f;
}

.ral6018 {
  background-color: #4b9b3e;
}

.ral7016 {
  background-color: #363d43;
}

.ral7035 {
  background-color: #c4caca;
}

.ral7040 {
  background-color: #9aa0a7;
}

.ral9005 {
  background-color: #151619;
}

.ral9010 {
  background-color: #f4f4ed;
}

/*select*/
.select-wrapper {
  width: 100%;
  padding: 1px;
  padding-right: 50px;
  padding-left: 10px;
  padding-bottom: 15px;
  position: relative;
}

.select-wrapper::after {
  content: "\e93a";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: absolute;
  right: 50px;
  top: 1px;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
}

select, input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
}

select::-ms-expand {
  display: none;
}

select {
  /* ... */
  width: 100%;
  height: 40px;
  background-color: #ebebeb;
  /*-moz-padding-start: calc(10px - 3px);*/
  padding-left: 10px;
  color: #000000;
  font-size: 14px;
  border: #cccccc 1px solid;
  cursor: pointer;
}

input[type=text] {
  width: 100%;
  height: 40px;
  background-color: #ebebeb;
  /*-moz-padding-start: calc(10px - 3px);*/
  padding-left: 10px;
  color: #000000;
  font-size: 14px;
  border: #cccccc 1px solid;
}

input[type=email] {
  width: 100%;
  height: 40px;
  background-color: #ebebeb;
  /*-moz-padding-start: calc(10px - 3px);*/
  padding-left: 10px;
  color: #000000;
  font-size: 14px;
  border: #cccccc 1px solid;
}

.hidden {
  display: none !important;
}

/*buttons*/
.button-plus::after {
  display: block;
  content: "\e936";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: relative;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
  margin-top: 1px;
  margin-left: 1px;
}

.button-plus {
  display: inline-block;
  height: 40px;
  cursor: pointer;
}

.button-minus::after {
  display: block;
  content: "\e937";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: relative;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
  margin-top: 1px;
  margin-left: 1px;
}

.button-minus {
  display: inline-block;
  height: 40px;
  cursor: pointer;
}

.button-change::after {
  display: block;
  content: "\e94f";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: relative;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
  margin-top: 1px;
  margin-left: 1px;
}

.button-change {
  display: inline-block;
  height: 40px;
  cursor: pointer;
  text-decoration: none;
}

.button-info::after {
  display: block;
  content: "\e933";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: relative;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
  margin-top: 1px;
  margin-left: 1px;
}

.button-info {
  display: inline-block;
  height: 40px;
  cursor: pointer;
  text-decoration: none;
}

.button-edit::after {
  display: block;
  content: "\e60d";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: relative;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
  margin-top: 1px;
  margin-left: 1px;
}

.button-edit {
  display: inline-block;
  height: 40px;
  cursor: pointer;
}

.button-delete::after {
  display: block;
  content: "\e935";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: relative;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
  margin-top: 1px;
  margin-left: 1px;
}

.button-delete {
  display: inline-block;
  height: 40px;
  cursor: pointer;
}

.button-add::after {
  display: block;
  content: "\e934";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: relative;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
  margin-top: 1px;
  margin-left: 1px;
}

.button-add {
  display: inline-block;
  height: 40px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1px;
}

.button-up::after {
  display: block;
  content: "\e939";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: relative;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
  margin-top: 1px;
  margin-left: 1px;
}

.button-up {
  display: inline-block;
  height: 40px;
  cursor: pointer;
}

.button-down::after {
  display: block;
  content: "\e93a";
  font-family: "bh-configurator";
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #FFFFFF;
  background-color: #0086cd;
  position: relative;
  pointer-events: none;
  padding: 5px;
  padding-left: 8px;
  margin-top: 1px;
  margin-left: 1px;
}

.button-down {
  display: inline-block;
  height: 40px;
  cursor: pointer;
}

.bh-submit {
  width: 100%;
  height: 50px;
  padding: 12px;
  margin-top: 5px;
  color: #FFFFFF;
  background-color: #0086cd;
  cursor: pointer;
}

.bh-submit::before {
  position: absolute;
  display: block;
  content: "\e93c";
  font-family: "bh-configurator";
  font-size: 26px;
  right: 10px;
}

.logo-box {
  width: 100%;
  height: 80px;
  display: block;
  position: relative;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0px;
}

.logo-box img {
  width: auto;
  height: 100%;
}

.rotation-box {
  position: absolute;
  width: 100%;
  height: auto;
}

.rotation {
  width: 40px;
  height: 40px;
  position: relative;
  font-size: 40px;
  line-height: 0;
  color: #0086cd;
  margin: 0 auto;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.additional-lock-product-text {
  float: left;
  width: auto;
  padding: 10px;
  font-size: 14px;
}

/*price*/
.bh-accordion-head-txt {
  display: inline-block;
}

.bh-accordion-head-txt.price {
  color: #0086cd;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  padding: 5px;
  padding-right: 10px;
  background-color: #FFFFFF;
  margin-bottom: 5px;
  margin-left: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: #0086cd 1px solid;
}

.repeating-configuration-info .price {
  border: none;
}

/*header-box*/
.header-box {
  position: relative;
  background-color: #0086cd;
  height: 50px;
}

.header-box .nav-button-container {
  width: auto;
  max-width: 80px;
  padding-top: 3px;
  padding-left: 5px;
}

.header-box .cart-box-container {
  width: auto;
  display: block;
  float: right;
  padding-right: 30px;
  padding-top: 13px;
}

.header-box .cart-box-container i {
  font-size: 18px !important;
  padding-right: 8px;
}

.header-box .cart-box-container a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
}

/*footer-box*/
.footer-box {
  position: relative;
  background-color: #ebebeb;
  height: 40px;
  position: relative;
  padding-left: 20px;
}

.footer-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-box ul li {
  display: inline-block;
  padding-top: 7px;
  padding-right: 20px;
}

.footer-box ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
}

/*mm*/
.mm-listitem__text {
  font-weight: bold !important;
}

.mm-navbar__title {
  font-weight: bold !important;
}

/*3d*/
canvas {
  margin-top: -100px;
}

/*info*/
#mobile-info, #grid-dimension-info, #height-info, #drawer-info, #corpus-color-info, #front-color-info {
  margin-top: 3px;
  margin-bottom: 3px;
}

/*3d temp*/
iframe {
  widht: 100%;
  border: 0px;
  display: block;
  position: relative;
  padding: 5%;
}

.dealer-configurator .header-box {
  background-color: #ebebeb;
}

.dealer-config-mode .bh-submit {
  background-color: #393939;
}
.dealer-config-mode .footer-box {
  background-color: #ebebeb;
}
.dealer-config-mode .bh-accordion-head-txt.price {
  color: #393939;
  border: #393939 1px solid;
}
.dealer-config-mode .bh-accordion-head-open::before {
  color: #393939;
}
.dealer-config-mode .grid-dimension.active {
  background-color: #393939;
}
.dealer-config-mode .bh-tooltip::after {
  color: #393939;
}
.dealer-config-mode .slide-in-box-close-box::before {
  color: #393939;
}
.dealer-config-mode .drawer-info-set ul li::before {
  color: #393939;
}
.dealer-config-mode .slide-in-box-headline {
  color: #393939;
}
.dealer-config-mode .select-wrapper::after {
  background-color: #393939;
}
.dealer-config-mode .button-plus::after {
  background-color: #393939;
}
.dealer-config-mode .button-minus::after {
  background-color: #393939;
}
.dealer-config-mode .button-info::after {
  background-color: #393939;
}
.dealer-config-mode .button-add::after {
  background-color: #393939;
}
.dealer-config-mode .button-change::after {
  background-color: #393939;
}
.dealer-config-mode #remaining-height {
  background-color: #393939;
}
.dealer-config-mode .drawers-height.max-load-info {
  background-color: #393939;
}
.dealer-config-mode .color-selector:hover {
  background-color: #393939;
}
.tx-ccm-order .button {
  background-color: #393939;
  color: #FFFFFF;
  padding: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 3px;
}

.tx-ccm-order ul {
  display: none;
}

.tx-ccm-order .f3-form-error {
  background-color: #EBCCD1;
  border: 1px solid #A94442;
}

/*stellt die höhe im ifram-mode auf 100vh*/
.bh-configurator-container.dealer-config-mode.view-mode-iframe {
  height: 100vh !important;
}

.bh-configurator-container.dealer-config-mode.view-mode-iframe .col-lg-6 {
  height: 100vh !important;
}

.tx-bh-workplace-configurator .channel-selector.left {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #ebebeb;
  height: 40px !important;
  color: #000000 !important;
  border-right: #FFFFFF 1px solid;
  width: 50%;
}

.tx-bh-workplace-configurator .channel-selector.right {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #ebebeb;
  height: 40px !important;
  color: #000000 !important;
  width: 50%;
}

.tx-bh-workplace-configurator .channel-selector.left.active,
.tx-bh-workplace-configurator .channel-selector.right.active {
  background-color: #0086cd !important;
  color: #FFFFFF !important;
}

.tx-bh-workplace-configurator .add-product.add-product-no-bg {
  background-color: #ebebeb !important;
  padding: 5px;
  font-size: 14px;
}

.tx-bh-workplace-configurator .add-product.add-product-no-bg .add-product-right-group {
  margin: -5px;
}

/* CSS Document */
/* color background */
/* color black */
/* color white */
/* color light grey*/
/* color bedrunka hitrh blau */
/* color dark grey */
/* color mid grey */
/* color red application */
/* color liststyle */
/* ral */
/* HEADER TOP LANGUAGE*/
.region-select-wrapper {
  display: inline-flex;
  float: right;
  margin-right: 20px;
}

.header-box .language-container {
  display: block;
  font-size: 14px;
}

.header-box .language-container ul {
  padding: 0px;
  padding-top: 15px;
  margin: 0px;
  text-transform: uppercase;
}

.header-box .language-container ul li {
  list-style: none;
  float: left;
  padding-left: 5px;
  padding-right: 5px;
}

.header-box .language-container ul li.active {
  color: #FFFFFF;
  font-weight: bold;
}

.header-box .language-container ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
}

.header-box .language-container ul li a:hover {
  text-decoration: underline;
}

.header-box .language-container ul li a.active {
  text-decoration: underline;
}

.region-container {
  margin-right: 20px;
}

.region-select {
  cursor: pointer;
  padding-top: 15px;
  padding-bottom: 15px;
  float: left;
}

.region-select img {
  height: 18px;
  width: auto;
}

.region-selected {
  padding-top: 12px;
  padding-bottom: 15px;
  padding-left: 10px;
  float: left;
}

.region-selected-txt {
  color: #FFFFFF;
  font-size: 14px;
  cursor: pointer;
}

.region-selected-country {
  color: #FFFFFF;
  font-size: 14px;
  cursor: pointer;
}

.region-country-select-box {
  background-color: #ebebeb;
  position: relative;
  height: 0;
  overflow: hidden;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-bottom: #ccc 1px solid;
}

.region-country-select-box.expand {
  height: 40px;
}

.region-country-select-box .container {
  position: relative;
}

.region-country-select-box ul {
  float: right;
  list-style: none;
  margin: 0;
  margin-top: 8px;
  padding: 0;
}

.region-country-select-box ul li {
  display: inline-block;
  height: 33px;
}

.region-country-select-box ul li a {
  padding: 3px;
  padding-left: 5px;
  padding-right: 5px;
  color: #0086cd;
  border: #0086cd 1px solid;
  background-color: #FFFFFF;
  border-radius: 1px;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-decoration: none;
}

.region-country-select-box ul li a:hover {
  color: #FFFFFF;
  background-color: #0086cd;
}

.region-country-select-box-close {
  color: #000000;
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .region-country-select-box ul {
    margin-right: 25px;
  }
}
@media (max-width: 768px) {
  .region-country-select-box ul li a {
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  .region-country-select-box {
    /*    position: absolute;
        top:50px;*/
  }
  .region-country-select-box.expand {
    height: 75px;
  }
}
@media (max-width: 320px) {
  .region-country-select-box ul li a {
    font-size: 10px;
  }
}
/* CSS Document */
@media (max-width: 768px) {
  .bh-configurator-container {
    overflow: auto;
    height: 100vh;
  }
  .bh-configurator-container .right {
    height: auto !important;
    overflow: hidden;
  }
  .bh-configurator-container .col-lg-6 {
    height: auto;
  }
  .partition-material-selected-description {
    max-width: 40%;
  }
  .product-wrapper {
    width: 90%;
  }
  .header-box .cart-box-container span {
    display: none;
  }
}
@media (max-width: 540px) {
  .grid-dimension {
    width: 33%;
  }
}
.netliva-switch {
  display: inline-block;
}

.netliva-switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}

.netliva-switch label {
  cursor: pointer;
  font-size: 14px;
  text-indent: -9999px;
  width: 60px;
  height: 30px;
  --switch-passive-color: #bbb;
  background: var(--switch-passive-color);
  display: block;
  border-radius: 100px;
  position: relative;
  margin: 0;
}

.netliva-switch input:checked + label {
  --switch-active-color: #1f7f4d;
  background: var(--switch-active-color);
}

.netliva-switch input:disabled + label {
  opacity: 0.6;
}

.netliva-switch label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

.netliva-switch input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.netliva-switch input:not(:disabled) + label:active:after {
  width: 90%;
  width: calc(100% - 4px);
}

.netliva-switch input + label:before {
  content: attr(data-passive-text);
  left: 30px;
  right: 10px;
  text-align: right;
  justify-content: flex-end;
  top: 5px;
  bottom: 5px;
  display: flex;
  align-items: center;
  position: absolute;
  transition: 0.3s;
  text-indent: 0;
  color: #fff;
  font-size: 14px;
}

.netliva-switch input:checked + label:before {
  content: attr(data-active-text);
  left: 10px;
  right: 30px;
  text-align: left;
  justify-content: flex-start;
}

.netliva-switch input[data-size=mini] + label {
  height: 16px;
}

.netliva-switch input[data-size=mini] + label:after {
  height: 12px;
  width: 12px;
}

.netliva-switch input[data-size=mini] + label::before {
  top: 1px;
  bottom: 1px;
  font-size: 10px;
  left: 10px;
  right: 5px;
}

.netliva-switch input[data-size=mini]:checked + label:before {
  left: 5px;
  right: 10px;
}

.netliva-switch input[data-size=mini] + label {
  font-size: 10px;
}

/* CSS Document */
.row {
  margin-right: 0;
  margin-left: 0;
}
.row > .col,
.row > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.container {
  /*width:1300px !important;*/
}

.container-fluid {
  padding: 0 !important;
}

@media (max-width: 1300px) {
  .container {
    /*width:1140px !important;*/
  }
}
@media (max-width: 580px) {
  .container {
    width: auto !important;
  }
}
@media (min-width: 992px) {
  #contact .col-lg-4 {
    padding-left: 25px;
  }
  h1, h3, h3, h4 {
    padding-left: 0px;
  }
  section ul, p {
    padding-left: 0px !important;
  }
}
@media (min-width: 768px) {
  .news .col-md-4 {
    padding-right: 25px;
  }
}
.ce-intext.ce-right .ce-gallery, .ce-intext.ce-left .ce-gallery, .ce-above .ce-gallery {
  margin-bottom: 0px;
}

/*# sourceMappingURL=styles.css.map */
