@charset "UTF-8";
/* Webfont: GEInspiraSans-Regular */
@font-face {
  font-family: "GEInspiraSans";
  src: url("/css/fonts/GEInspiraSans-Regular.eot");
  src: url("/css/fonts/GEInspiraSans-Regular.eot?#iefix") format("embedded-opentype"), url("/css/fonts/GEInspiraSans-Regular.woff") format("woff"), url("/css/fonts/GEInspiraSans-Regular.ttf") format("truetype"), url("/css/fonts/GEInspiraSans-Regular.svg#GEInspiraSans-Regular") format("svg");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/* Webfont: GEInspiraSans-Bold */
@font-face {
  font-family: "GEInspiraSans";
  src: url("/css/fonts/GEInspiraSans-Bold.eot");
  /* IE9 Compat Modes */
  src: url("/css/fonts/GEInspiraSans-Bold.eot?#iefix") format("embedded-opentype"), url("/css/fonts/GEInspiraSans-Bold.woff") format("woff"), url("/css/fonts/GEInspiraSans-Bold.ttf") format("truetype"), url("/css/fonts/GEInspiraSans-Bold.svg#GEInspiraSans-Bold") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
/* Webfont: GEInspiraSans-BoldItalic */
@font-face {
  font-family: "GEInspiraSans";
  src: url("/css/fonts/GEInspiraSans-BoldItalic.eot");
  /* IE9 Compat Modes */
  src: url("/css/fonts/GEInspiraSans-BoldItalic.eot?#iefix") format("embedded-opentype"), url("/css/fonts/GEInspiraSans-BoldItalic.woff") format("woff"), url("/css/fonts/GEInspiraSans-BoldItalic.ttf") format("truetype"), url("/css/fonts/GEInspiraSans-BoldItalic.svg#GEInspiraSans-BoldItalic") format("svg");
  /* Legacy iOS */
  font-style: italic;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
/* Webfont: GEInspiraSans-Italic */
@font-face {
  font-family: "GEInspiraSans";
  src: url("/css/fonts/GEInspiraSans-Italic.eot");
  /* IE9 Compat Modes */
  src: url("/css/fonts/GEInspiraSans-Italic.eot?#iefix") format("embedded-opentype"), url("/css/fonts/GEInspiraSans-Italic.woff") format("woff"), url("/css/fonts/GEInspiraSans-Italic.ttf") format("truetype"), url("/css/fonts/GEInspiraSans-Italic.svg#GEInspiraSans-Italic") format("svg");
  /* Legacy iOS */
  font-style: italic;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  height: 25px;
  width: 30px;
  display: block;
  float: left;
  cursor: pointer;
  background: red;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-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.8;
}

.hamburger-box {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 100%;
  height: 3px;
  background-color: #595194;
  border-radius: 2px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  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.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html {
  height: 100%;
}

body {
  color: #333;
  font-family: GEInspiraSans, "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  padding-bottom: 80px;
}
body.select, body.home, body.missing {
  padding-bottom: 0;
}
body.printmyconfiguration h1 {
  margin: 30px 0 50px 0;
}
body.printmyconfiguration header {
  height: auto;
}

img {
  max-width: 100%;
}

main {
  padding-top: 90px;
}

a {
  color: #595194;
}

a:hover {
  color: #6c62b3;
}

header {
  height: 90px;
  background: #f7f7f7;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
}
header .logo {
  color: #333;
  font-size: 1.5rem;
  white-space: nowrap;
  width: 50px;
  height: 50px;
}
header .logo:hover {
  text-decoration: none;
}
header .logo img {
  width: 100%;
  height: 100%;
  margin-right: 50px;
}
header section {
  height: 100%;
  display: flex;
  align-items: center;
}

section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

#navright {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 20px;
}
#navright .showlang {
  cursor: pointer;
  margin-left: 0.5rem;
}
#navright.langopen nav#language {
  max-width: 500px;
  transition: 0.8s ease-in-out;
}

#showAllSystems {
  position: relative;
  z-index: 0;
}

nav#language {
  width: auto;
  max-width: 0px;
  transition: 0.8s ease-in-out;
  z-index: 1;
}
nav#language ul {
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  white-space: nowrap;
}
nav#language ul li {
  display: inline-block;
  padding: 5px 10px;
}
nav#language ul li a {
  color: #333;
}
nav#language ul li a:hover {
  text-decoration: none;
  color: #595194;
}
nav#language ul li.active {
  background: #595194;
  color: #fff;
}

footer {
  background: #5a5194;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}
footer section a {
  color: #fff;
  display: inline-block;
  margin: 0 10px;
}
footer section a:hover {
  color: #eee;
}
footer .legal {
  margin-bottom: 1rem;
}
footer .disclaimer {
  font-size: 80%;
  color: #ddd;
}

#sliderBox {
  background: #595194;
}

#slider .item {
  position: relative;
}
#slider .item .block {
  position: absolute;
  top: 50px;
  right: 0;
  width: 40%;
  color: #fff;
}
#slider .item .block h2, #slider .item .block h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}
#slider .item .block p {
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-bottom: 1.5rem;
}
#slider .item img {
  width: 100%;
}

#carousel {
  margin: 0 50px;
  position: relative;
  top: -110px;
  margin-bottom: 50px;
}
#carousel .item {
  margin: 0 1rem;
  padding: 0 1rem;
  transition: all 0.6s ease-in-out;
  top: 0;
}
#carousel .item h2 {
  font-size: 1rem;
  color: #595194;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
#carousel .item .frame {
  background-image: linear-gradient(to bottom, rgba(218, 216, 229, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%);
  box-shadow: 0 -10px 7px 0 rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
}
#carousel .item .frame .button {
  margin-top: 2rem;
  display: none;
  transition: all 0.6s ease-in-out;
}
#carousel .item img {
  max-width: 100%;
}
#carousel .item.slick-current {
  position: relative;
  top: -50px;
  transition: all 0.6s ease-in-out;
}
#carousel .item.slick-current .frame {
  background-image: linear-gradient(to bottom, rgba(203, 199, 231, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%);
}
#carousel .item.slick-current .frame .button {
  display: block;
}
#carousel .slick-list {
  padding-bottom: 10px;
  padding-top: 50px;
}
#carousel .slick-next {
  right: -2rem;
  width: 3rem;
  height: 3rem;
}
#carousel .slick-next:before {
  font-size: 2.5rem;
}
#carousel .slick-prev {
  left: -2rem;
  width: 3rem;
  height: 3rem;
  z-index: 10;
}
#carousel .slick-prev:before {
  font-size: 2.5rem;
}
#carousel .slick-prev:before, #carousel .slick-next:before {
  color: #808080;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 3rem;
  height: 3rem;
  background-size: 0.9rem;
  content: "";
}
#carousel .slick-prev:before {
  content: "";
}
#carousel .slick-next:before {
  content: "";
}
#carousel .slick-prev.slick-disabled:before, #carousel .slick-next.slick-disabled:before {
  opacity: 0.2;
}

a:focus, img:focus, embed:focus, object:focus, button:focus, input:focus, *:focus {
  outline: none !important;
}

*:focus, *:active {
  outline: none;
}

.button {
  color: #595194;
  border: 2px solid #595194;
  padding: 12px 30px 10px 30px;
  display: inline-block;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: bold;
  transition: all 0.6s ease-in-out;
  background: none;
  text-align: center;
}
.button:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 10px 0 rgba(89, 81, 148, 0.5);
  background: #6c62b3;
}
.button.full {
  background: #595194;
  color: #eee;
}
.button.full:hover {
  background: #6c62b3;
}
.button.bgWhite {
  background: rgba(255, 255, 255, 0.9);
}
.button.bgWhite:hover {
  background: #6c62b3;
}
.button i.fa {
  margin-right: 5px;
}
.button.full {
  color: #fff;
  background: #595194;
}
.button.big {
  font-size: 1.2rem;
}
.button.medium {
  font-size: 0.9rem;
  line-height: 0.9rem;
  padding: 8px 25px;
}
.button.small {
  padding: 6px 20px 4px 20px;
  font-size: 0.8rem;
  line-height: 0.8rem;
}
.button.xsmall {
  padding: 5px 15px;
  font-size: 0.7rem;
  line-height: 0.7rem;
}
.button.grey {
  color: #b3b3b3;
  border: 2px solid #b3b3b3;
}
.button.grey:hover {
  color: #fff;
  background: #b3b3b3;
}
.button.white {
  color: #fff;
  border: 2px solid #fff;
}
.button.white:hover {
  background: #fff;
  color: #595194;
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}

.well {
  background: #f5f5f5;
  max-width: 1280px;
  margin: 0 20px;
  padding: 100px;
  text-align: center;
}

section#step {
  padding: 5rem 2rem;
}
section#step .unitimg {
  padding: 0.5rem 2rem;
  width: 100%;
}
section#step h1 {
  color: #595194;
  margin-bottom: 0;
}
section#step h2 {
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}
section#step h3 {
  text-transform: uppercase;
  color: #595194;
  margin: 0.5rem 0;
}

.hl {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hl .button {
  margin-left: 0.5rem;
}
.hl.bottom {
  border-bottom: none;
}

.list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.list .item {
  width: 25%;
  padding: 0 0.5rem;
  position: relative;
}
.list .item.active .cnt {
  background: #f5f5f5;
}
.list .item.basket .img {
  border: 1px solid #595194;
}
.list .item.basket .img:after {
  background-image: url(/img/selected_voc.svg);
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  content: "";
  display: block;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  outline: 1px solid #fff;
}
.list .item .cnt {
  padding: 1rem 0.5rem;
  height: 100%;
}
.list .item h4 {
  font-size: 1rem;
  padding-top: 0.5rem;
}
.list .item .img {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #ccc;
  cursor: pointer;
}
.list .item .img img {
  align-self: center;
}
.list .item .details {
  display: none;
}

.square {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.square div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.square .innersquare {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.square::before {
  content: "";
  display: block;
  padding-top: 100%;
}

#detailinfo {
  width: 100%;
  background: #f5f5f5;
  margin: 0 0.5rem;
  padding: 1.5rem;
  font-size: 0.9rem;
}
#detailinfo .hl {
  border: none;
  margin-bottom: 1rem;
}
#detailinfo h5 {
  color: #595194;
  font-size: 1.5rem;
  margin-bottom: 0;
}
#detailinfo h5.kits {
  margin-bottom: 0.5rem;
}
#detailinfo p {
  margin-bottom: 0.1rem;
}
#detailinfo .buttonbox {
  text-align: right;
  padding: 0.5rem;
  position: relative;
}
#detailinfo .biopsy {
  background: #fafafa;
  padding: 10px;
  border-top: 2px solid #595194;
}
#detailinfo .kititems {
  border-top: 1px solid #ccc;
}
#detailinfo .kititem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 7px 0;
}
#detailinfo .kititem .name:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  text-decoration: inherit;
  margin-right: 5px;
  color: #ccc;
}
#detailinfo .kititem.basket .name:before {
  content: "";
  color: green;
}
#detailinfo .subselects > div:before {
  content: "";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  margin-right: 5px;
  color: #e5e5e5;
}

#mailConfigurationModal .modal-header {
  background: #f5f5f5;
}

#myConfigurationModal .modal-header, #myConfigurationModal .modal-footer {
  background: #f5f5f5;
  align-items: center;
}
#myConfigurationModal .modal-header h3, #myConfigurationModal .modal-footer h3 {
  color: #595194;
}
#myConfigurationModal .modal-header .close, #myConfigurationModal .modal-footer .close {
  color: #595194;
  opacity: 1;
  font-size: 2rem;
}
#myConfigurationModal .modal-header .close:focus, #myConfigurationModal .modal-footer .close:focus {
  outline: none;
}
#myConfigurationModal .modal-header .buttons, #myConfigurationModal .modal-footer .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#myConfigurationModal .modal-header .buttons .button, #myConfigurationModal .modal-footer .buttons .button {
  margin-left: 1rem;
}
#myConfigurationModal .modal-dialog {
  max-width: 500px;
  height: 90%;
}
#myConfigurationModal .modal-dialog .modal-content {
  height: 100%;
}
#myConfigurationModal .modal-dialog .modal-content .modal-body {
  overflow: auto;
}
#myConfigurationModal #basketform {
  display: none;
}
#myConfigurationModal .modal-footer {
  display: block;
}
#myConfigurationModal .view1 {
  display: flex;
  justify-content: space-between;
}
#myConfigurationModal .view2 {
  display: none;
  justify-content: space-between;
}

#myConfigurationFooter {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: #f5f5f5;
  border-top: 1px solid #ccc;
  z-index: 1;
}
#myConfigurationFooter section {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#basketlist .item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
#basketlist .item .left {
  width: 20%;
}
#basketlist .item .right {
  padding-left: 1rem;
  width: 80%;
}
#basketlist .item .img {
  width: 100%;
  height: 120px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center 10px;
  background-color: #f5f5f5;
}
#basketlist .item h5 {
  color: #595194;
  font-size: 1rem;
  margin-bottom: 0;
}
#basketlist .item h2 {
  font-size: 1.3rem;
}
#basketlist .item .remove {
  float: right;
  color: #aaa;
  cursor: pointer;
}
#basketlist .item.unit .left {
  width: 30%;
}
#basketlist .item.unit .right {
  padding-left: 1rem;
  width: 70%;
}
#basketlist .item.unit h2 {
  font-size: 1.6rem;
}

#pricerange {
  display: inherit;
}
#pricerange h4 {
  margin: 0;
  font-size: 1.4rem;
}
#pricerange .vline {
  border-right: 1px solid #ccc;
  margin: 0 1.8rem;
}

.priceBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
}
.priceBox .priceBar {
  width: 200px;
  margin: 0 1rem;
  height: 6px;
}
.priceBox .priceBar .base {
  height: 4px;
  border-radius: 2px;
  background: #ccc;
}
.priceBox .priceBar .price {
  height: 8px;
  border-radius: 4px;
  background: #595194;
  position: relative;
  top: -6px;
}

#overviewTeaser {
  margin-bottom: 2rem;
}

body.missing {
  height: 100%;
}
body.missing #container, body.missing #mm-0 {
  height: 100%;
}
body.missing section.missing {
  text-align: center;
}
body.missing section.missing article {
  padding: 10rem 0;
}
body.missing footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.cookieinfo {
  background: #5a5194;
  color: #fff;
  padding: 5rem 2rem;
  border-top: 2px solid #595194;
}
.cookieinfo .text {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
  padding-top: 0;
}
.cookieinfo .desc {
  float: left;
}
.cookieinfo .buttons {
  padding-top: 5px;
  float: right;
  text-align: right;
  margin-left: 2rem;
}
.cookieinfo .buttons #setcookieok {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 10px 0 rgba(115, 219, 229, 0.5);
  background: #69dbe5;
}

#cookieInfoModal .modal-dialog, #siteLeaveModal .modal-dialog {
  max-width: 500px;
}
#cookieInfoModal .vertical-alignment-helper, #siteLeaveModal .vertical-alignment-helper {
  display: table;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
#cookieInfoModal .vertical-align-center, #siteLeaveModal .vertical-align-center {
  /* To center vertically */
  display: table-cell;
  vertical-align: middle;
  pointer-events: none;
}
#cookieInfoModal .modal-content, #siteLeaveModal .modal-content {
  /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  width: inherit;
  max-width: inherit;
  /* For Bootstrap 4 - to avoid the modal window stretching full width */
  height: inherit;
  /* To center horizontally */
  margin: 0 auto;
  pointer-events: all;
}
#cookieInfoModal .modal-title, #siteLeaveModal .modal-title {
  color: #595194;
}
#cookieInfoModal .cookieswitch, #siteLeaveModal .cookieswitch {
  float: right;
  font-size: 24px;
  color: #666;
}
#cookieInfoModal .cookieswitch.marketing, #siteLeaveModal .cookieswitch.marketing {
  cursor: pointer;
}
#cookieInfoModal .cookieswitch.marketing.fa-toggle-on, #siteLeaveModal .cookieswitch.marketing.fa-toggle-on {
  color: green;
}
#cookieInfoModal .showCookieList, #siteLeaveModal .showCookieList {
  color: #595194;
  text-decoration: underline;
  font-size: 75%;
  cursor: pointer;
}
#cookieInfoModal .modal-footer, #siteLeaveModal .modal-footer {
  display: block;
  text-align: right;
}

.hamburger {
  padding: 10px;
  width: 50px;
  height: 45px;
  display: none;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-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;
  position: absolute;
  right: 10px;
}

.mm-slideout {
  z-index: auto;
}

.mm-opened .hamburger--collapse .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mm-opened .hamburger--collapse .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
.mm-opened .hamburger--collapse .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mm-menu .mm-navbar a, .mm-menu .mm-navbar > * {
  color: #fff;
  font-weight: bold;
  height: 80px;
  line-height: 60px;
  font-size: 1.5rem;
}

.mm-navbar {
  height: 80px;
  background: #595194;
}

.mm-title:hover {
  color: #fff;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: #fff;
}

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

.mm-listview > li > a, .mm-listview > li > span {
  padding: 20px 10px 20px 20px;
  font-size: 1rem;
}

.mm-listview > li:not(.mm-divider):after {
  left: 0;
}

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
  border-color: #fff;
}

.sub.mm-listview > li.active {
  background: #595194;
  color: #fff;
}

.FormConf {
  font-family: GEInspiraSans, "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", Arial, sans-serif !important;
  max-width: 450px;
}

.FormConf .mktoFormRow:nth-child(7) .mktoLabel {
  width: 100% !important;
  padding-left: 5px;
}

.FormConf .mktoFormRow:nth-child(7) .mktoGutter {
  display: none;
}

.FormConf .mktoFormRow:nth-child(8) .mktoHtmlText {
  width: 100% !important;
}

.FormConf .mktoFormRow:nth-child(8) .mktoOffset {
  display: none;
}

.FormConf .mktoLabel {
  width: 10px !important;
}
.FormConf .mktoButtonRow {
  padding-top: 20px !important;
  width: 100% !important;
  text-align: right !important;
}
.FormConf input[name=explicit_opt_in] {
  height: auto !important;
}

.mktoForm .mktoRequiredField label.mktoLabel, #LblformLeadNotes {
  width: 10px !important;
}

#Lblexplicit_opt_in {
  width: 100% !important;
}

.mktoForm .mktoRadioList, .mktoForm .mktoCheckboxList {
  width: 30px !important;
  position: absolute;
}

.mktoForm input[type=text], .mktoForm input[type=url], .mktoForm input[type=email], .mktoForm input[type=tel], .mktoForm input[type=number], .mktoForm input[type=date], .mktoForm textarea.mktoField, .mktoForm select.mktoField {
  width: 190px !important;
}

@media only screen and (max-width: 480px) {
  .mktoForm input[type=url], .mktoForm input[type=text], .mktoForm input[type=date], .mktoForm input[type=tel], .mktoForm input[type=email], .mktoForm input[type=number], .mktoForm textarea.mktoField, .mktoForm select.mktoField {
    width: 100% !important;
  }
}
@media only screen and (max-width: 480px) {
  .mktoForm .mktoFormRow .mktoField {
    clear: none !important;
    float: left !important;
    width: 95% !important;
    padding: 10px;
    height: 40px;
    margin-bottom: 0px;
  }

  #formLeadNotes {
    height: 100px !important;
  }
}
#overviewReadMoreButton {
  border-color: #818181 !important;
  color: #818181 !important;
  height: 30px;
  font-weight: bold;
  padding: 5px 15px 9px 15px !important;
  position: relative;
  top: -3rem;
  font-size: 0.8rem;
}

#buttonPdfDownload {
  padding: 5px 15px 5px 15px;
  font-size: 12px;
  margin: 20px;
}

#overviewReadMoreButton:hover {
  color: #ffffff !important;
  border-color: #595194 !important;
}

.unitButton {
  height: 30px;
  padding: 5px 30px 5px 30px;
  font-size: 14px;
  text-align: center;
  margin: auto;
}

.hovered {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #517694 !important;
  text-decoration: none !important;
  box-shadow: 0 0 10px 0 rgba(89, 81, 148, 0.5) !important;
}

.onSelectSite {
  background-color: #595194 !important;
  color: #ffffff !important;
}

#unitSelectButton0 {
  background-color: #517694;
  border-color: #517694;
  color: #ffffff;
}
#unitSelectButton0:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #517694;
}

#unitSelectButton1 {
  background-color: #516a94;
  border-color: #516a94;
  color: #ffffff;
}
#unitSelectButton1:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #516a94;
}

#unitSelectButton2 {
  background-color: #515f94;
  border-color: #515f94;
  color: #ffffff;
}
#unitSelectButton2:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #515f94;
}

#unitSelectButton3 {
  background-color: #515494;
  border-color: #515494;
  color: #ffffff;
}
#unitSelectButton3:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #515494;
}

#unitSelectButton4 {
  background-color: #595194;
  border-color: #595194;
  color: #ffffff;
}
#unitSelectButton4:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #595194;
}

#unitSelectButton5 {
  background-color: #645194;
  border-color: #645194;
  color: #ffffff;
}
#unitSelectButton5:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #645194;
}

#unitSelectButton6 {
  background-color: #6f5194;
  border-color: #6f5194;
  color: #ffffff;
}
#unitSelectButton6:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #6f5194;
}

#unitSelectButton7 {
  background-color: #7a5194;
  border-color: #7a5194;
  color: #ffffff;
}
#unitSelectButton7:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #7a5194;
}

#unitSelectButton8 {
  background-color: #855194;
  border-color: #855194;
  color: #ffffff;
}
#unitSelectButton8:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #855194;
}

.saturation {
  background-image: linear-gradient(135deg, white 20%, #595194 100%) !important;
}

.showlang {
  font-size: 18px;
  padding: 0px;
  top: 30px !important;
  right: 16px !important;
}

.unitImageSelect {
  position: relative;
  width: 120px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.unitBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.unitBlock h1, .unitBlock h2 {
  font-size: 20px;
  color: #595194;
  margin: auto;
}

#unitImageContainer0 {
  background-image: linear-gradient(135deg, white 20%, #adbfcd 100%);
}

#unitImageContainer1 {
  background-image: linear-gradient(135deg, white 20%, #adb9cd 100%);
}

#unitImageContainer2 {
  background-image: linear-gradient(135deg, white 20%, #aeb5cd 100%);
}

#unitImageContainer3 {
  background-image: linear-gradient(135deg, white 20%, #aeafcd 100%);
}

#unitImageContainer4 {
  background-image: linear-gradient(135deg, white 20%, #b1aecd 100%);
}

#unitImageContainer5 {
  background-image: linear-gradient(135deg, white 20%, #b6aecd 100%);
}

#unitImageContainer6 {
  background-image: linear-gradient(135deg, white 20%, #bcaecd 100%);
}

#unitImageContainer7 {
  background-image: linear-gradient(135deg, white 20%, #c1aecd 100%);
}

#unitImageContainer8 {
  background-image: linear-gradient(135deg, white 20%, #c6aecd 100%);
}

#overviewBox, #overviewBoxMobile {
  background-color: #595194;
}
#overviewBox .item, #overviewBoxMobile .item {
  position: relative;
}
#overviewBox .item .block, #overviewBoxMobile .item .block {
  position: absolute;
  top: 50px;
  right: 0;
  width: 40%;
  color: #fff;
}
#overviewBox .item .block h1, #overviewBoxMobile .item .block h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}
#overviewBox .item .block p, #overviewBoxMobile .item .block p {
  text-transform: uppercase;
  font-size: 1.6rem;
}
#overviewBox .item img, #overviewBoxMobile .item img {
  width: 100%;
}

.overviewFeatureBackground {
  background: #f7f7f7;
}

.overviewPdfBackground {
  background-image: url("/img/overviewPdfBackground.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 80px;
}

#overviewText {
  text-align: justify;
  padding: 5rem 2rem 5.5rem 2rem;
  font-size: 18px;
  line-height: 26px;
  background-color: #ffffff;
}
#overviewText h1, #overviewText h2, #overviewText h3, #overviewText h4, #overviewText h5, #overviewText h6 {
  color: #595194;
  margin-bottom: 2rem;
}

#overviewContainer {
  display: block;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f7f7f7;
}

#overviewImageColumn {
  text-align: right;
}

.overviewPdfText h3 {
  text-align: center;
  font-size: 32px !important;
  line-height: 50px !important;
  font-weight: bold !important;
  padding-top: 80px !important;
}

#overviewFeatureText p strong {
  font-size: 1.5rem;
  line-height: 3rem;
}

.overviewImage {
  max-height: 580px;
}

.overviewItemContainer {
  background-color: #ffffff;
}

#overviewList {
  padding-top: 3rem;
}

#overviewItem {
  width: 25%;
  padding: 0.5rem;
}

#overviewPdfImage {
  border-style: solid;
  border-width: 5px;
  border-color: #595194;
}

#overviewListText {
  font-size: 18px;
  font-weight: bold;
  line-height: inherit;
  height: 3.5rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  padding-top: 1.2rem;
  margin: 0;
}

.box {
  padding-top: 0px;
  max-height: 520px;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.box.open {
  max-height: 150rem;
  transition: max-height 0.3s cubic-bezier(0.9, 0, 0.8, 0.2);
}

.square {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.square div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

#careAreaDropDown {
  display: none;
}

#dropdownMenuButton {
  border: 2px solid white;
  border-radius: 4px;
  padding: 0.7rem 1.8rem;
  color: #fff;
  display: inline-block;
  margin: 0 0.2rem 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: transparent;
}

#careAreaDropDown #dropDownMenue {
  font-size: 16px;
  font-family: GEInspiraSans;
}

@keyframes open {
  from {
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }
  to {
    line-clamp: initial;
    -webkit-line-clamp: initial;
  }
}
@keyframes close {
  from {
    line-clamp: initial;
    -webkit-line-clamp: initial;
  }
  to {
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }
}
.text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  animation: close 0.1s linear 0s forwards;
  font-size: 26px;
}
.text .li {
  font-size: 16px !important;
  line-height: 22px;
}

.open .text {
  animation: open 0.1s linear 0s forwards;
}

#overviewTextColumn {
  background-color: #f7f7f7;
}

.unitImageColumn {
  padding-right: 0;
  padding-left: 0;
}
.unitImageColumn .square {
  transition: all 1s ease-in-out;
}
.unitImageColumn:hover .square {
  background-color: rgba(89, 81, 148, 0.25);
}
.unitImageColumn:hover .unitButton {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #517694 !important;
  text-decoration: none !important;
  box-shadow: 0 0 10px 0 rgba(89, 81, 148, 0.5) !important;
}

#overViewSvgOverlay {
  position: relative;
  top: -4rem;
  width: inherit;
  height: 4rem;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.001) 0%, #f7f7f7 100%);
}

.fullTransparent {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 100%) !important;
}

.imgBox {
  overflow: hidden;
  height: auto;
}

.imgBox img {
  display: block;
  transform: scale(1.5);
  position: relative;
  height: 200px;
  max-width: none;
}

#overviewTextBlock {
  position: absolute;
  top: 120px;
  width: 45%;
  right: 1rem;
  color: #ffffff;
}

@media (max-width: 1400px) {
  .unitImageColumn {
    max-width: 33.333%;
    flex-basis: 33.333%;
  }
}
@media (max-width: 1050px) {
  .unitImageColumn {
    max-width: 50%;
    flex-basis: 50%;
  }

  #overviewItem {
    width: 33.3333%;
  }
}
@media (max-width: 991px) {
  #slider .item {
    position: relative;
  }
  #slider .item .block h2 {
    font-size: 2.5rem;
  }
  #slider .item .block p {
    text-transform: uppercase;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  #overviewBox .item .block h2 {
    font-size: 2.5rem;
  }

  #overviewBox .item .block p {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  #overviewFeatureText p strong {
    font-size: 1.2rem;
  }

  #overviewItem {
    width: 50%;
    padding: 0.5rem;
  }

  #overviewButtonFull {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}
@media (max-width: 700px) {
  .unitImageColumn {
    max-width: 100%;
    flex-basis: 100%;
  }

  #overviewBox .item .block h2 {
    font-size: 2rem;
  }

  #overviewBox .item .block p {
    font-size: 1rem;
  }
}
@media (max-width: 670px) {
  #overviewH2 {
    font-size: 30px !important;
  }

  #overviewTeaser {
    font-size: 15px !important;
  }

  #overviewFeatureText p strong {
    font-size: 1.1rem;
    line-height: 3rem;
  }
}
@media (max-width: 650px) {
  #overviewBox .item {
    position: relative;
  }
  #overviewBox .item .block {
    right: 0;
    width: 40%;
  }
}
@media (max-width: 610px) {
  #showAllSystems {
    display: none;
  }

  #overviewText {
    text-align: left;
    padding: 2rem 0 2rem 0;
    font-size: 1rem;
  }

  #overviewList {
    padding-top: 1.5rem;
  }

  .overviewPdfText h3 {
    padding-top: 2.5rem !important;
  }

  #overviewBox {
    display: none;
  }

  #overviewBoxMobile {
    display: block !important;
  }

  #overviewButtonFullMobile {
    display: flex !important;
  }
  #overviewButtonFullMobile .button {
    font-size: 0.9rem;
    line-height: 0.9rem;
    padding: 8px 25px;
  }
}
@media (max-width: 575px) {
  #overviewH2 {
    font-size: 20px !important;
  }

  #overviewTeaser {
    font-size: 10px !important;
  }

  #overviewButtonFull {
    font-size: 8px;
    padding: 2px 5px;
  }

  #overviewList {
    padding-top: 1.5rem;
  }
}
@media (max-width: 475px) {
  #overviewFeatureText {
    text-align: left;
  }

  #overviewReadMoreButton {
    left: 2rem;
  }

  #overviewFeatureText p strong {
    font-size: 1.25rem !important;
    line-height: 2.5rem !important;
  }

  #overviewItem {
    width: 100%;
    padding: 1rem;
  }

  .mx-md-auto {
    padding-left: 0;
    padding-right: 0;
  }

  #overviewContainer {
    padding-bottom: 0;
  }

  #overviewTextBlock {
    right: 30px;
    text-align: right;
    width: 60%;
  }

  #overviewH2Mobile {
    font-size: 1.8rem;
  }
}
@media (max-width: 370px) {
  #overviewH2Mobile {
    font-size: 1.5rem;
  }

  #overviewTextBlock {
    width: 50%;
  }
}
@media (max-width: 300px) {
  #overviewTextBlock {
    width: 60%;
  }
}
.unitImageColumn img, .unitBlock h1, .unitBlock h2 {
  transition: all 0.6s ease-in-out;
  display: block;
}

.unitImageColumn:hover .unitImageSelect, .unitImageColumn:hover .unitBlock h1, .unitImageColumn:hover .unitBlock h2 {
  transform: scale(1.2);
}

/*******************************************************************************************************************/
/*******************************************************************************************************************/
@media screen and (max-width: 1050px) {
  .list .item {
    width: 33.3333%;
  }
}
/*******************************************************************************************************************/
@media screen and (max-width: 992px) {
  #carousel .item {
    margin: 0 0.5rem;
  }

  #carousel {
    top: -80px;
  }

  #overviewBox .item .block h1 {
    font-size: 2.5rem;
  }
}
/*******************************************************************************************************************/
@media screen and (max-width: 900px) {
  #buttonSelector {
    display: none;
  }
}
/*******************************************************************************************************************/
@media screen and (min-width: 0px) and (max-width: 899px) {
  #careAreaDropDown {
    display: block;
    margin-bottom: 7rem;
  }
}
/*******************************************************************************************************************/
@media screen and (max-width: 815px) {
  #myConfigurationFooter {
    height: 60px;
  }

  body {
    padding-bottom: 60px;
  }

  #pricerange h4 {
    font-size: 1.2rem;
    padding-top: 0.2rem;
  }
}
/*******************************************************************************************************************/
@media screen and (max-width: 768px) {
  #carousel .item {
    margin: 0;
  }

  #carousel {
    top: -40px;
  }

  #slider .item img {
    width: auto;
    height: 100%;
    max-width: none;
    display: block;
    height: 250px;
  }
  #slider .item .block {
    position: static;
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
  }
  #slider .item .block h1, #slider .item .block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #slider .item .block p {
    display: none;
  }

  #sliderBox {
    margin-bottom: 100px;
  }
  #sliderBox section {
    padding: 0;
  }

  #carouselBox {
    display: none;
  }

  body.home {
    background: #595194;
  }
  body.home .slick-dots li button:before {
    color: #fff;
    opacity: 0.5;
  }
  body.home .slick-dots li.slick-active button:before {
    opacity: 1;
  }

  #myConfigurationModal .modal-dialog {
    height: 97%;
  }

  .hl {
    display: block;
    text-align: center;
  }
  .hl .button {
    margin-bottom: 10px;
  }

  .priceBox {
    font-size: 1rem;
  }
}
/*******************************************************************************************************************/
@media screen and (max-width: 767px) {
  #dropdownMenuButton {
    border: 2px solid #000;
    color: #000;
  }

  #careAreaDropDown {
    margin-bottom: 3rem;
  }

  section#step h2 {
    margin-bottom: 1rem;
  }
}
/*******************************************************************************************************************/
@media screen and (max-width: 752px) {
  .stepSubHeadline {
    margin-bottom: 1rem;
  }
}
/*******************************************************************************************************************/
@media screen and (max-width: 700px) {
  #pricerange h4, #pricerange .vline {
    display: none;
  }
}
/*******************************************************************************************************************/
@media screen and (max-width: 676px) {
  section#step {
    padding: 2rem;
  }
  section#step .unitimg {
    padding: 0.5rem 0;
    text-align: center;
  }
  section#step .unitimg img {
    max-height: 300px;
  }
  section#step h1, section#step h2, section#step .tw {
    text-align: center;
  }
  section#step #dropdownMenuButton, section#step .dropdown-menu.show {
    width: 100%;
  }

  .list .item {
    width: 50%;
  }

  body {
    padding-bottom: 100px;
  }

  #detailinfo .kititem .button {
    float: right;
  }

  #detailinfo .buttonbox {
    position: static;
    margin-bottom: 1rem;
  }

  #careAreaDropDown {
    margin-bottom: 5rem;
  }
}
/*******************************************************************************************************************/
@media screen and (max-width: 575px) {
  .hamburger {
    display: inline-block;
  }

  #navright, #showAllSystems {
    display: none;
  }

  header {
    height: 80px;
  }

  header .logo img {
    margin-right: 10px;
  }

  #pricerange h4, #pricerange .vline {
    display: none;
  }

  #myConfigurationFooter section {
    display: block;
    text-align: center;
    padding: 0;
  }

  #myConfigurationFooter {
    height: 100px;
  }

  #pricerange {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
  }
  #pricerange .vline {
    height: 30px;
    margin: 0 1rem;
  }
  #pricerange h4 {
    font-size: 1rem;
  }

  #carousel .item.slick-current {
    top: 0;
  }

  #myConfigurationModal .modal-header {
    display: block;
  }

  #careAreaDropDown {
    margin-bottom: 1rem;
  }
}
/*******************************************************************************************************************/

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