
  @media only screen and (min-width: 1025px) {
    #offcanvas-content {
      height: auto; } }

.offcanvas-navigation-container {
  position: fixed;
  z-index: 5000;
  top: 45px;
  left: 0;
  bottom: 0;
  width: 100%;
  /**
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    */
  background: #fff;
  -webkit-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out; }
  .offcanvas-navigation-container[data-offcanvas-nav="offcanvas-open-left"] {
    left: 0;
    right: auto;
    -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  .offcanvas-navigation-container[data-offcanvas-nav="offcanvas-open-right"] {
    left: auto;
    right: 0;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0); }

#offcanvas-overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

.offcanvas-open-left {
  overflow: hidden; }
  .offcanvas-open-left .offcanvas-navigation-container[data-offcanvas-nav="offcanvas-open-left"] {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0); }
  .offcanvas-open-left #offcanvas-content {
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  .offcanvas-open-left #offcanvas-overlay {
    opacity: 1;
    z-index: 200;
    pointer-events: auto;
    -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0); }

.offcanvas-open-right {
  overflow: hidden; }
  .offcanvas-open-right .offcanvas-navigation-container[data-offcanvas-nav="offcanvas-open-right"] {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0); }
  .offcanvas-open-right #offcanvas-content {
    -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  .offcanvas-open-right #offcanvas-overlay {
    opacity: 1;
    z-index: 200;
    pointer-events: auto;
    -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
    -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }

.offcanvas-open-right .header__main .search-field,
.offcanvas-open-left .header__main .search-field {
  opacity: 1; }

/* OFFCANVAS TRIGGER
##################################################################################################################### */
.offcanvas-trigger {
  display: block;
  position: absolute;
  z-index: 80;
  top: 0;
  right: 0.3rem;
  width: 42px;
  padding: 0.6rem 0.45rem 0.45rem;
  cursor: pointer; }
  .offcanvas-trigger:focus {
    outline: none; }
  .offcanvas-trigger .offcanvas-trigger__icon-open,
  .offcanvas-trigger .offcanvas-trigger__icon-close {
    -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
  .offcanvas-trigger .offcanvas-trigger__icon-open {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }
    .offcanvas-trigger .offcanvas-trigger__icon-open span {
      display: block;
      height: 2px;
      margin-bottom: 4px;
      position: relative;
      background: #5a5a5a;
      opacity: 1; }
      .offcanvas-trigger .offcanvas-trigger__icon-open span:last-child {
        margin-bottom: 0; }
  .offcanvas-trigger .offcanvas-trigger__icon-close {
    position: absolute;
    top: 6px;
    left: 8px;
    width: 25px;
    height: 25px;
    opacity: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0); }
    .offcanvas-trigger .offcanvas-trigger__icon-close:before, .offcanvas-trigger .offcanvas-trigger__icon-close:after {
      position: absolute;
      top: 15px;
      left: 0;
      content: "";
      display: block;
      width: 25px;
      height: 2px;
      background: #5a5a5a; }
    .offcanvas-trigger .offcanvas-trigger__icon-close:before {
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .offcanvas-trigger .offcanvas-trigger__icon-close:after {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg); }
  .offcanvas-trigger[data-offcanvas-action="close"] .offcanvas-trigger__icon-open {
    opacity: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0); }
  .offcanvas-trigger[data-offcanvas-action="close"] .offcanvas-trigger__icon-close {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }
  @media only screen and (min-width: 1025px) {
    .offcanvas-trigger {
      display: none; } }

.is-tablet .offcanvas-trigger {
  display: block;
  position: absolute;
  z-index: 80;
  top: 0;
  right: 0.3rem;
  width: 42px;
  padding: 0.6rem 0.45rem 0.45rem;
  cursor: pointer; }
  .is-tablet .offcanvas-trigger:focus {
    outline: none; }
  .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-open,
  .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-close {
    -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
  .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-open {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }
    .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-open span {
      display: block;
      height: 2px;
      margin-bottom: 4px;
      position: relative;
      background: #5a5a5a;
      opacity: 1; }
      .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-open span:last-child {
        margin-bottom: 0; }
  .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-close {
    position: absolute;
    top: 6px;
    left: 8px;
    width: 25px;
    height: 25px;
    opacity: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0); }
    .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-close:before, .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-close:after {
      position: absolute;
      top: 15px;
      left: 0;
      content: "";
      display: block;
      width: 25px;
      height: 2px;
      background: #5a5a5a; }
    .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-close:before {
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .is-tablet .offcanvas-trigger .offcanvas-trigger__icon-close:after {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg); }
  .is-tablet .offcanvas-trigger[data-offcanvas-action="close"] .offcanvas-trigger__icon-open {
    opacity: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0); }
  .is-tablet .offcanvas-trigger[data-offcanvas-action="close"] .offcanvas-trigger__icon-close {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }

/* OFFCANVAS LOADER
##################################################################################################################### */
.offcanvas-navigation__loader {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 40px auto; }

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #a0a0a0;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
          animation: sk-bounce 2s infinite ease-in-out; }

.double-bounce2 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

/* OFFCANVAS NAVIGATION
##################################################################################################################### */
.offcanvas-navigation {
  text-align: left;
  font-size: 0.9rem;
  background: whitesmoke; }
  .offcanvas-navigation .mm-panel {
    padding-bottom: 60px; }
    .offcanvas-navigation .mm-panel ul {
      background: whitesmoke; }
      .offcanvas-navigation .mm-panel ul li.hide {
        display: none; }
      .offcanvas-navigation .mm-panel ul li .highlight {
        font-weight: 700; }
      .offcanvas-navigation .mm-panel ul .search-container {
        position: relative;
        display: block;
        padding: 15px;
        border-top: 1px solid #d7d7d7; }
        .offcanvas-navigation .mm-panel ul .search-container:before, .offcanvas-navigation .mm-panel ul .search-container:after {
          font-family: "fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
        .offcanvas-navigation .mm-panel ul .search-container:before {
          content: "";
          margin-right: .3em; }
        .offcanvas-navigation .mm-panel ul .search-container:before {
          position: absolute;
          top: 1.05rem;
          right: 1rem;
          z-index: 10;
          font-size: 1rem; }
        .offcanvas-navigation .mm-panel ul .search-container input {
          position: relative;
          padding: 4px;
          width: 100%;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          margin: 0;
          padding: 0.25rem 2rem 0.25rem 0.5rem;
          -webkit-border-radius: 4px;
                  border-radius: 4px;
          border: 1px solid #b9b9b9;
          height: auto;
          font-size: .8rem;
          line-height: 1rem;
          color: black; }
          .offcanvas-navigation .mm-panel ul .search-container input::-webkit-search-cancel-button {
            -webkit-appearance: none; }
  .offcanvas-navigation #mm-0 ul {
    background: white; }
  .offcanvas-navigation .offcanvas-navigation__dark_item {
    background-color: #5a5a5a; }
    .offcanvas-navigation .offcanvas-navigation__dark_item > a {
      color: white; }
    .offcanvas-navigation .offcanvas-navigation__dark_item.mm-selected > a {
      background-color: #5a5a5a !important; }
  .offcanvas-navigation .offcanvas-navigation__meta_item {
    background-color: whitesmoke; }
    .offcanvas-navigation .offcanvas-navigation__meta_item.offcanvas-navigation__meta_item--first {
      margin-top: 1.75rem; }
    .offcanvas-navigation .offcanvas-navigation__meta_item [class^="icon-"] {
      border: 1px solid #c8c8c8;
      display: inline-block;
      vertical-align: middle;
      margin-right: 0.5rem; }
    .offcanvas-navigation .offcanvas-navigation__meta_item .icon-star {
      background-image: url("../assets/images/sprite.png");
      background-position: -114px -133px;
      background-repeat: no-repeat;
      width: 38px;
      height: 38px; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .offcanvas-navigation .offcanvas-navigation__meta_item .icon-star {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }
    .offcanvas-navigation .offcanvas-navigation__meta_item .icon-compare {
      background-image: url("../assets/images/sprite.png");
      background-position: -76px -133px;
      background-repeat: no-repeat;
      width: 38px;
      height: 38px; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .offcanvas-navigation .offcanvas-navigation__meta_item .icon-compare {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }
  .offcanvas-navigation .offcanvas-navigation__navbar__back {
    background-color: #5a5a5a;
    color: white; }
    .offcanvas-navigation .offcanvas-navigation__navbar__back:before, .offcanvas-navigation .offcanvas-navigation__navbar__back:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .offcanvas-navigation .offcanvas-navigation__navbar__back:before {
      content: "";
      margin-right: .3em; }
  .offcanvas-navigation .offcanvas-navigation__next {
    text-align: right;
    line-height: 57px;
    font-size: 1.2rem; }
    .offcanvas-navigation .offcanvas-navigation__next:before, .offcanvas-navigation .offcanvas-navigation__next:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .offcanvas-navigation .offcanvas-navigation__next:after {
      content: "";
      margin-left: .3em; }
  .offcanvas-navigation .offcanvas-navigation__navbar__title {
    background-color: white;
    color: #dc281e;
    border-bottom: 1px solid #d7d7d7;
    font-size: 0.9rem;
    font-weight: 600; }
    .offcanvas-navigation .offcanvas-navigation__navbar__title.title-link:before, .offcanvas-navigation .offcanvas-navigation__navbar__title.title-link:after {
      font-size: 1.2rem;
      font-family: "fontello";
      display: inline-block;
      position: relative;
      top: 2px;
      color: #dc281e; }
    .offcanvas-navigation .offcanvas-navigation__navbar__title.title-link:before {
      margin-right: .5rem;
      content: "\e800"; }
    .offcanvas-navigation .offcanvas-navigation__navbar__title.language-icon:before, .offcanvas-navigation .offcanvas-navigation__navbar__title.language-icon:after {
      font-family: "fontello"; }
    .offcanvas-navigation .offcanvas-navigation__navbar__title.language-icon:before {
      margin-right: .5rem;
      content: "\e80d"; }
  .offcanvas-navigation .offcanvas-navigation__navbar__title,
  .offcanvas-navigation .offcanvas-navigation__navbar__back {
    padding: 15px;
    display: block;
    padding-left: 15px; }
  .offcanvas-navigation ul li {
    list-style-type: none;
    font-size: 0.9rem; }
    .offcanvas-navigation ul li .offcanvas-navigation__item__link--selected {
      color: #dc281e; }
    .offcanvas-navigation ul li:not(.offcanvas-navigation__has-subnav) a.offcanvas-navigation__item__link:before, .offcanvas-navigation ul li:not(.offcanvas-navigation__has-subnav) a.offcanvas-navigation__item__link:after {
      font-size: 1.2rem;
      font-family: "fontello";
      display: inline-block;
      position: relative;
      top: 2px;
      color: #dc281e; }
    .offcanvas-navigation ul li:not(.offcanvas-navigation__has-subnav) a.offcanvas-navigation__item__link:before {
      margin-right: .5rem;
      content: "\e800"; }
    .offcanvas-navigation ul li.offcanvas-navigation__meta_item > a {
      font-size: 0.8rem; }

/* M01 Stage Module
##################################################################################################################### */
.m01-stage-module {
  overflow: hidden;
  height: 384px; }
  .m01-stage-module .m01-stage-module__parallax,
  .m01-stage-module .m01-stage-module__background {
    height: 534px; }
  @media only screen and (min-width: 641px) {
    .m01-stage-module {
      height: 455px; }
      .m01-stage-module .m01-stage-module__parallax,
      .m01-stage-module .m01-stage-module__background {
        height: 605px; } }
  @media only screen and (min-width: 1025px) {
    .m01-stage-module {
      height: 600px; }
      .m01-stage-module .m01-stage-module__parallax,
      .m01-stage-module .m01-stage-module__background {
        height: 750px; } }
  @media only screen and (min-width: 1441px) {
    .m01-stage-module {
      height: 600px; }
      .m01-stage-module .m01-stage-module__parallax,
      .m01-stage-module .m01-stage-module__background {
        height: 750px; } }
  .m01-stage-module .m01-stage-module__parallax {
    overflow: hidden; }
  .m01-stage-module .m01-stage-module__background {
    background-attachment: fixed;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover; }
    .m01-stage-module .m01-stage-module__background img {
      min-width: 100%; }

/* M02 Stage Module with CTA
##################################################################################################################### */
.m02-stage-with-cta-module {
  overflow: hidden;
  position: relative;
  height: 384px; }
  .m02-stage-with-cta-module .m02-stage-with-cta-module__parallax,
  .m02-stage-with-cta-module .m02-stage-with-cta-module__background {
    height: 534px; }
  @media only screen and (min-width: 641px) {
    .m02-stage-with-cta-module {
      height: 455px; }
      .m02-stage-with-cta-module .m02-stage-with-cta-module__parallax,
      .m02-stage-with-cta-module .m02-stage-with-cta-module__background {
        height: 605px; } }
  @media only screen and (min-width: 1025px) {
    .m02-stage-with-cta-module {
      height: 525px; }
      .m02-stage-with-cta-module .m02-stage-with-cta-module__parallax,
      .m02-stage-with-cta-module .m02-stage-with-cta-module__background {
        height: 675px; } }
  @media only screen and (min-width: 1441px) {
    .m02-stage-with-cta-module {
      height: 575px; }
      .m02-stage-with-cta-module .m02-stage-with-cta-module__parallax,
      .m02-stage-with-cta-module .m02-stage-with-cta-module__background {
        height: 725px; } }
  .m02-stage-with-cta-module .m02-stage-with-cta-module__parallax {
    overflow: hidden;
    position: relative; }
  .m02-stage-with-cta-module .m02-stage-with-cta-module__background {
    background-attachment: fixed;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover; }
    .m02-stage-with-cta-module .m02-stage-with-cta-module__background img {
      min-width: 100%; }
  .m02-stage-with-cta-module .m02-stage-with-cta-module__content {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    color: black; }
    @media only screen and (min-width: 1025px) {
      .m02-stage-with-cta-module .m02-stage-with-cta-module__content {
        bottom: 30px; } }
    .m02-stage-with-cta-module .m02-stage-with-cta-module__content .columns {
      text-align: center; }
    .m02-stage-with-cta-module .m02-stage-with-cta-module__content h2 {
      margin-bottom: 1.25rem; }
      @media only screen and (min-width: 641px) {
        .m02-stage-with-cta-module .m02-stage-with-cta-module__content h2 {
          font-size: 2rem;
          margin-bottom: 1rem; } }
    .m02-stage-with-cta-module .m02-stage-with-cta-module__content p {
      display: none; }
      @media only screen and (min-width: 641px) {
        .m02-stage-with-cta-module .m02-stage-with-cta-module__content p {
          display: block;
          margin-bottom: 1.25rem; } }
    .m02-stage-with-cta-module .m02-stage-with-cta-module__content .button {
      margin-bottom: 0; }
  .m02-stage-with-cta-module.m02-stage-with-cta-module--negative .m02-stage-with-cta-module__content h2, .m02-stage-with-cta-module.m02-stage-with-cta-module--negative .m02-stage-with-cta-module__content p {
    color: white;
    text-shadow: 0 0 20px black; }
  .m02-stage-with-cta-module.m02-stage-with-cta-module--negative .m02-stage-with-cta-module__content .button--cta {
    background-color: rgba(0, 0, 0, 0.3) !important; }
  .m02-stage-with-cta-module .button--cta {
    background-color: rgba(0, 0, 0, 0.1) !important; }

/* M03 Image Gallery Stage
##################################################################################################################### */
.m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick, .m104-carousel-module .m03-image-gallery-stage-module__slick, .m12-1-teaser-division-module .m12-1-teaser-division-module__slick, .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick,
.m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl, .m104-carousel-module .m03-image-gallery-stage-module__owl, .m104-carousel-module .m104-carousel-module__slick, .m104-carousel-module .m104-carousel-module__owl {
  visibility: hidden; }
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick.slick-initialized, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick.slick-initialized, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick.slick-initialized, .m104-carousel-module .m03-image-gallery-stage-module__slick.slick-initialized, .m12-1-teaser-division-module .slick-initialized.m12-1-teaser-division-module__slick, .m50-product-detail-with-table-module .slick-initialized.m50-product-detail-with-table-module__slick,
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl.slick-initialized, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl.slick-initialized, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl.slick-initialized, .m104-carousel-module .m03-image-gallery-stage-module__owl.slick-initialized, .m104-carousel-module .slick-initialized.m104-carousel-module__slick, .m104-carousel-module .slick-initialized.m104-carousel-module__owl {
    visibility: visible; }
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick button:focus, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick button:focus, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick button:focus, .m104-carousel-module .m03-image-gallery-stage-module__slick button:focus, .m12-1-teaser-division-module .m12-1-teaser-division-module__slick button:focus, .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick button:focus,
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl button:focus, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl button:focus, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl button:focus, .m104-carousel-module .m03-image-gallery-stage-module__owl button:focus, .m104-carousel-module .m104-carousel-module__slick button:focus, .m104-carousel-module .m104-carousel-module__owl button:focus {
    outline: none; }

.m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick__item, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick__item, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick__item, .m104-carousel-module .m03-image-gallery-stage-module__slick__item, .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item,
.m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl__item, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl__item, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl__item, .m104-carousel-module .m03-image-gallery-stage-module__owl__item {
  overflow: hidden;
  position: relative;
  outline: none;
  height: 384px;
  text-align: center; }
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick__item img, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick__item img, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick__item img, .m104-carousel-module .m03-image-gallery-stage-module__slick__item img, .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item img,
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl__item img, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl__item img, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl__item img, .m104-carousel-module .m03-image-gallery-stage-module__owl__item img {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: auto;
    max-width: none;
    margin: 0; }
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick__item:after, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick__item:after, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick__item:after, .m104-carousel-module .m03-image-gallery-stage-module__slick__item:after, .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item:after,
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl__item:after, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl__item:after, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl__item:after, .m104-carousel-module .m03-image-gallery-stage-module__owl__item:after {
    display: none;
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .65;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 72;
    -webkit-transition: opacity .5s;
            transition: opacity .5s; }
    @media only screen and (min-width: 1025px) {
      .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick__item:after, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick__item:after, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick__item:after, .m104-carousel-module .m03-image-gallery-stage-module__slick__item:after, .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item:after,
      .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl__item:after, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl__item:after, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl__item:after, .m104-carousel-module .m03-image-gallery-stage-module__owl__item:after {
        display: block; } }
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick__item.slick-after-change:after, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick__item.slick-after-change:after, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick__item.slick-after-change:after, .m104-carousel-module .m03-image-gallery-stage-module__slick__item.slick-after-change:after, .m12-1-teaser-division-module .slick-after-change.m12-1-teaser-division-module__slick__item:after,
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl__item.slick-after-change:after, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl__item.slick-after-change:after, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl__item.slick-after-change:after, .m104-carousel-module .m03-image-gallery-stage-module__owl__item.slick-after-change:after {
    opacity: 0;
    -webkit-transition: opacity .5s;
            transition: opacity .5s;
    z-index: 71; }
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick__item.slick-after-change .fancybox-expand, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick__item.slick-after-change .fancybox-expand, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick__item.slick-after-change .fancybox-expand, .m104-carousel-module .m03-image-gallery-stage-module__slick__item.slick-after-change .fancybox-expand, .m12-1-teaser-division-module .slick-after-change.m12-1-teaser-division-module__slick__item .fancybox-expand,
  .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl__item.slick-after-change .fancybox-expand, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl__item.slick-after-change .fancybox-expand, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl__item.slick-after-change .fancybox-expand, .m104-carousel-module .m03-image-gallery-stage-module__owl__item.slick-after-change .fancybox-expand {
    z-index: 72; }
  @media only screen and (min-width: 641px) {
    .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick__item, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick__item, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick__item, .m104-carousel-module .m03-image-gallery-stage-module__slick__item, .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item,
    .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl__item, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl__item, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl__item, .m104-carousel-module .m03-image-gallery-stage-module__owl__item {
      height: 455px; } }
  @media only screen and (min-width: 1320px) {
    .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick__item, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick__item, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick__item, .m104-carousel-module .m03-image-gallery-stage-module__slick__item, .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item,
    .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl__item, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl__item, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl__item, .m104-carousel-module .m03-image-gallery-stage-module__owl__item {
      border-left: 1px solid #ffffff;
      width: 1320px; } }
  @media only screen and (min-width: 1025px) {
    .m03-image-gallery-stage-module .m03-image-gallery-stage-module__slick__item, .m12-1-teaser-division-module .m03-image-gallery-stage-module__slick__item, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__slick__item, .m104-carousel-module .m03-image-gallery-stage-module__slick__item, .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item,
    .m03-image-gallery-stage-module .m03-image-gallery-stage-module__owl__item, .m12-1-teaser-division-module .m03-image-gallery-stage-module__owl__item, .m50-product-detail-with-table-module .m03-image-gallery-stage-module__owl__item, .m104-carousel-module .m03-image-gallery-stage-module__owl__item {
      height: 587px; } }

/* M03b Image Gallery Small
##################################################################################################################### */
.m03b-image-gallery-small-module {
  max-width: 1350px;
  position: relative;
  margin: 0 auto; }
  .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick {
    position: relative;
    visibility: hidden;
    margin: 0 0.75rem; }
    .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick.slick-initialized {
      visibility: visible; }
    .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick button:focus {
      outline: none; }
    @media only screen and (min-width: 1025px) {
      .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick .slick-prev {
        margin-left: -80px; }
      .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick .slick-next {
        margin-left: 80px; } }
  .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item {
    overflow: hidden;
    position: relative;
    outline: none;
    height: 384px;
    text-align: center; }
    .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item img {
      display: block;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      width: auto;
      max-width: none;
      margin: 0; }
    .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item .fancybox-expand {
      display: none;
      z-index: 777; }
    .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item:after {
      display: none;
      content: "";
      width: 100%;
      height: 100%;
      background-color: black;
      opacity: .65;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 72;
      -webkit-transition: opacity .5s;
              transition: opacity .5s; }
      @media only screen and (min-width: 1025px) {
        .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item:after {
          display: block; } }
    .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item.slick-after-change:after {
      opacity: 0;
      -webkit-transition: opacity .5s;
              transition: opacity .5s;
      z-index: 71; }
    .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item.slick-activ .fancybox-expand, .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item.slick-current .fancybox-expand {
      display: block; }
    @media only screen and (min-width: 641px) {
      .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item {
        height: 455px; } }
    @media only screen and (min-width: 1025px) {
      .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item {
        width: 800px;
        border-left: 1px solid #ffffff;
        height: 500px; } }
    @media only screen and (min-width: 1441px) {
      .m03b-image-gallery-small-module .m03b-image-gallery-small-module__slick__item {
        width: 890px; } }

/* M03, M03b: Image Gallery
##################################################################################################################### */
.m03c-image-gallery-full-module .slick-slider {
  visibility: hidden; }
  .m03c-image-gallery-full-module .slick-slider.slick-initialized {
    visibility: visible; }

.m03c-image-gallery-full-module .m03c-image-gallery-full-module__single {
  width: 100%; }
  .m03c-image-gallery-full-module .m03c-image-gallery-full-module__single img {
    width: 100%;
    margin: 0 auto; }

@media only screen and (max-width: 640px) {
  .m03c-image-gallery-full-module .m03c-image-gallery-full-module__single {
    min-height: 350px; }
    .m03c-image-gallery-full-module .m03c-image-gallery-full-module__single img {
      min-height: inherit;
      -o-object-fit: cover;
         object-fit: cover; }
  .m03c-image-gallery-full-module .slick-arrow {
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5); }
  .m03c-image-gallery-full-module .slick-prev {
    left: 5px !important; }
  .m03c-image-gallery-full-module .slick-next {
    left: auto !important;
    right: 5px !important; }
  .m03c-image-gallery-full-module .slick-dots {
    padding: 6px 10px 2px; }
    .m03c-image-gallery-full-module .slick-dots li button {
      width: 10px;
      height: 10px; } }

/* M05 Illustration Layer
##################################################################################################################### */
.m05-illustration-layer-module {
  margin: 1rem 0; }
  .m05-illustration-layer-module .m05-illustration-layer-module__background {
    position: relative; }
    .m05-illustration-layer-module .m05-illustration-layer-module__background.m05-illustration-layer-module__background--cyan {
      background-image: url("../assets/images/m05-illustration-layer-module/texture-cyan.jpg"); }
  .m05-illustration-layer-module .m05-illustration-layer-module__background__image {
    padding: 37.5px 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
    @media only screen and (max-width: 640px) {
      .m05-illustration-layer-module .m05-illustration-layer-module__background__image {
        background-position: 50% 50%; } }
    .m05-illustration-layer-module .m05-illustration-layer-module__background__image img {
      visibility: hidden; }
    @media only screen and (min-width: 641px) {
      .m05-illustration-layer-module .m05-illustration-layer-module__background__image {
        padding: 75px 0; } }

/* M07 Next Best Actions Module
##################################################################################################################### */
.m07-next-best-actions-module {
  margin: 3rem 0;
  position: relative; }
  .m07-next-best-actions-module ul {
    margin: 0 1em;
    padding: 0;
    list-style: none;
    text-align: center; }
    .m07-next-best-actions-module ul li {
      margin: 0;
      padding: 0; }
    @media only screen and (min-width: 1025px) {
      .m07-next-best-actions-module ul {
        margin: 0; }
        .m07-next-best-actions-module ul li {
          display: inline-block;
          margin: 0 0.75rem; } }
  .m07-next-best-actions-module .m07-next-best-actions-module__button {
    display: block;
    background: #dc281e;
    color: white;
    margin: 0 auto 1em;
    padding: 0 0.75rem;
    min-height: 2.25rem;
    max-width: 300px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.25rem;
    text-align: center;
    -webkit-transition: all .1s ease-in-out;
            transition: all .1s ease-in-out; }
    @media only screen and (min-width: 1025px) {
      .m07-next-best-actions-module .m07-next-best-actions-module__button {
        height: 3rem;
        line-height: 2rem;
        font-size: 0.8rem;
        min-width: 200px;
        max-width: none; } }
    .m07-next-best-actions-module .m07-next-best-actions-module__button span {
      display: inline-block;
      vertical-align: middle; }
    .m07-next-best-actions-module .m07-next-best-actions-module__button:hover, .m07-next-best-actions-module .m07-next-best-actions-module__button:active, .m07-next-best-actions-module .m07-next-best-actions-module__button:focus {
      color: white;
      background: #9e1e14; }
    .m07-next-best-actions-module .m07-next-best-actions-module__button .m07-next-best-actions-module__button__icon {
      padding: 0.65rem 0;
      margin-right: 0.25rem;
      height: 100%; }
      @media only screen and (min-width: 1025px) {
        .m07-next-best-actions-module .m07-next-best-actions-module__button .m07-next-best-actions-module__button__icon {
          padding: 0.75rem 0;
          margin-right: 0.5rem; } }
      .m07-next-best-actions-module .m07-next-best-actions-module__button .m07-next-best-actions-module__button__icon img {
        max-height: 0.95rem;
        display: block; }
        @media only screen and (min-width: 1025px) {
          .m07-next-best-actions-module .m07-next-best-actions-module__button .m07-next-best-actions-module__button__icon img {
            max-height: 1.5rem; } }

/* M10 Product Explorer Static Teaser
##################################################*/
.m10-product-explorer-static-teaser {
  -webkit-box-shadow: 0 0 44px 22px whitesmoke inset;
          box-shadow: 0 0 44px 22px whitesmoke inset;
  padding-top: 1rem; }
  @media only screen and (min-width: 1025px) {
    .m10-product-explorer-static-teaser .block {
      padding: 0 10%; } }
  @media only screen and (min-width: 1441px) {
    .m10-product-explorer-static-teaser .block {
      padding: 0; } }
  .m10-product-explorer-static-teaser .m10-product-explorer-static-teaser__block {
    width: 30%;
    padding: 10px;
    display: inline-block; }
    @media only screen and (min-width: 1441px) {
      .m10-product-explorer-static-teaser .m10-product-explorer-static-teaser__block {
        width: 16%;
        padding: 15px; } }

/* M11 Rich Text Module
##################################################################################################################### */
.m11-rich-text-module, .m13-content-header-module {
  margin: 1.5rem 0; }
  .m11-rich-text-module ul a, .m13-content-header-module ul a, .m11-rich-text-module ol a, .m13-content-header-module ol a, .m11-rich-text-module p a, .m13-content-header-module p a {
    font-weight: 400;
    word-wrap: break-word; }
    .m11-rich-text-module ul a:before, .m13-content-header-module ul a:before, .m11-rich-text-module ul a:after, .m13-content-header-module ul a:after, .m11-rich-text-module ol a:before, .m13-content-header-module ol a:before, .m11-rich-text-module ol a:after, .m13-content-header-module ol a:after, .m11-rich-text-module p a:before, .m13-content-header-module p a:before, .m11-rich-text-module p a:after, .m13-content-header-module p a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m11-rich-text-module ul a:before, .m13-content-header-module ul a:before, .m11-rich-text-module ol a:before, .m13-content-header-module ol a:before, .m11-rich-text-module p a:before, .m13-content-header-module p a:before {
      content: "";
      margin-right: .3em; }
    .m11-rich-text-module ul a:after, .m13-content-header-module ul a:after, .m11-rich-text-module ul a:before, .m13-content-header-module ul a:before, .m11-rich-text-module ol a:after, .m13-content-header-module ol a:after, .m11-rich-text-module ol a:before, .m13-content-header-module ol a:before, .m11-rich-text-module p a:after, .m13-content-header-module p a:after, .m11-rich-text-module p a:before, .m13-content-header-module p a:before {
      margin: 0;
      padding-right: 3px; }
    .m11-rich-text-module ul a:hover, .m13-content-header-module ul a:hover, .m11-rich-text-module ul a:focus, .m13-content-header-module ul a:focus, .m11-rich-text-module ul a:active, .m13-content-header-module ul a:active, .m11-rich-text-module ol a:hover, .m13-content-header-module ol a:hover, .m11-rich-text-module ol a:focus, .m13-content-header-module ol a:focus, .m11-rich-text-module ol a:active, .m13-content-header-module ol a:active, .m11-rich-text-module p a:hover, .m13-content-header-module p a:hover, .m11-rich-text-module p a:focus, .m13-content-header-module p a:focus, .m11-rich-text-module p a:active, .m13-content-header-module p a:active {
      text-decoration: underline; }
      .m11-rich-text-module ul a:hover:after, .m13-content-header-module ul a:hover:after, .m11-rich-text-module ul a:hover:before, .m13-content-header-module ul a:hover:before, .m11-rich-text-module ul a:focus:after, .m13-content-header-module ul a:focus:after, .m11-rich-text-module ul a:focus:before, .m13-content-header-module ul a:focus:before, .m11-rich-text-module ul a:active:after, .m13-content-header-module ul a:active:after, .m11-rich-text-module ul a:active:before, .m13-content-header-module ul a:active:before, .m11-rich-text-module ol a:hover:after, .m13-content-header-module ol a:hover:after, .m11-rich-text-module ol a:hover:before, .m13-content-header-module ol a:hover:before, .m11-rich-text-module ol a:focus:after, .m13-content-header-module ol a:focus:after, .m11-rich-text-module ol a:focus:before, .m13-content-header-module ol a:focus:before, .m11-rich-text-module ol a:active:after, .m13-content-header-module ol a:active:after, .m11-rich-text-module ol a:active:before, .m13-content-header-module ol a:active:before, .m11-rich-text-module p a:hover:after, .m13-content-header-module p a:hover:after, .m11-rich-text-module p a:hover:before, .m13-content-header-module p a:hover:before, .m11-rich-text-module p a:focus:after, .m13-content-header-module p a:focus:after, .m11-rich-text-module p a:focus:before, .m13-content-header-module p a:focus:before, .m11-rich-text-module p a:active:after, .m13-content-header-module p a:active:after, .m11-rich-text-module p a:active:before, .m13-content-header-module p a:active:before {
        text-decoration: none; }
  .m11-rich-text-module.m11-rich-text-module--text-centered, .m11-rich-text-module--text-centered.m13-content-header-module {
    text-align: center; }
    .m11-rich-text-module.m11-rich-text-module--text-centered .list, .m11-rich-text-module--text-centered.m13-content-header-module .list {
      text-align: left; }

.m100-line-module + .m11-rich-text-module, .m100-line-module + .m13-content-header-module {
  margin-top: 2.5rem; }

/* M12-1 Teaser Division Module
##################################################################################################################### */
.m12-1-teaser-division-module {
  position: relative;
  height: 500px; }
  @media only screen and (min-width: 641px) {
    .m12-1-teaser-division-module {
      height: 560px; } }
  @media only screen and (min-width: 1025px) {
    .m12-1-teaser-division-module {
      height: 800px; } }
  @media only screen and (min-width: 1441px) {
    .m12-1-teaser-division-module {
      height: 920px; } }
  .m12-1-teaser-division-module .m12-1-teaser-division-module__slick {
    z-index: 777;
    background-color: black; }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__slick.m12-1-teaser-division-module__slick--static .m12-1-teaser-division-module__slick__item {
        width: 100%; } }
  .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item {
    height: 500px;
    border-left: 0 !important; }
    .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item:after {
      display: none !important; }
    .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item.slick-after-change:after {
      display: none !important; }
    .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: auto;
      max-width: none;
      margin: 0; }
    @media only screen and (min-width: 641px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item {
        height: 560px; } }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item {
        height: 800px; } }
    @media only screen and (min-width: 1441px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item {
        height: 920px; } }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item {
        border-left: 0; }
        .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item img {
          min-width: 100%;
          min-height: 100%; } }
  .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation {
    position: absolute;
    z-index: 778;
    left: 0;
    width: 100%;
    bottom: 35px; }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation {
        bottom: 0; } }
    @media only screen and (min-width: 1441px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation {
        max-width: 1320px;
        margin-left: -660px;
        left: 50%; } }
  .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item__flag {
    display: none;
    color: transparent; }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item__flag {
        display: block;
        background-color: #dc281e;
        min-width: 330px;
        max-width: 660px;
        min-height: 184px;
        padding: 30px;
        position: absolute;
        bottom: 60%;
        font-family: "Amatic SC", "Arial", sans-serif;
        font-size: 45px;
        line-height: 60px;
        color: white;
        text-transform: uppercase;
        margin-right: 0;
        right: 0; } }
    @media only screen and (min-width: 1441px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__slick__item__flag {
        margin-right: -659px;
        right: 50%; } }
  .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row {
    width: 85%;
    margin: 0 auto; }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row::after {
        clear: both;
        content: "";
        display: table; }
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row > div {
        width: 100%;
        display: table;
        table-layout: fixed; } }
  @media only screen and (min-width: 1025px) {
    .m12-1-teaser-division-module .teaserdivisionitem {
      display: table-cell; } }
  .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item {
    height: auto !important;
    display: block;
    position: relative;
    -webkit-transition: all .1s ease-in-out;
            transition: all .1s ease-in-out;
    margin-bottom: 2px; }
    .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item:before {
      display: block;
      z-index: 775;
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      background-color: rgba(0, 0, 0, 0.5);
      -webkit-transition: all .3s ease-out;
              transition: all .3s ease-out; }
    .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item:last-child .m12-1-teaser-division-module__navigation__row__column__item {
      margin-bottom: 0; }
    @media only screen and (max-width: 1024px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item:focus, .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item.active {
        margin-left: -3%; } }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item {
        margin: 0 1px;
        float: none;
        text-align: center; }
        .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item:hover:before, .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item.active:before, .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item:focus:before, .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item.active:before {
          top: -20px; } }
    @media only screen and (min-width: 1441px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item {
        margin: 0 1px; } }
  .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item__link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px;
    position: relative;
    z-index: 776; }
    .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item__link::after {
      clear: both;
      content: "";
      display: table; }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item__link {
        padding: 40px 20px 90px; } }
    @media only screen and (min-width: 1441px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item__link {
        padding: 50px 30px 118px; } }
  .m12-1-teaser-division-module h2, .m12-1-teaser-division-module p {
    color: white;
    margin: 0; }
  .m12-1-teaser-division-module h2 {
    float: left ;
    width: 75%;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 600; }
    .m12-1-teaser-division-module h2:before {
      content: "";
      background-image: url("../assets/images/sprite.png");
      background-position: -197px -112px;
      background-repeat: no-repeat;
      width: 8px;
      height: 14px;
      display: inline-block;
      margin-right: 8px; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .m12-1-teaser-division-module h2:before {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }
    @media only screen and (min-width: 641px) {
      .m12-1-teaser-division-module h2 {
        width: 65%; } }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module h2 {
        float: none;
        width: auto;
        margin-bottom: 0.5rem;
        word-spacing: 9999999px; }
        .m12-1-teaser-division-module h2:before {
          display: none; } }
    @media only screen and (min-width: 1441px) {
      .m12-1-teaser-division-module h2 {
        font-size: 1.5rem;
        line-height: 1.75rem; } }
  .m12-1-teaser-division-module p {
    float: right ;
    width: 15%;
    font-size: 0.7rem;
    line-height: 0.75rem; }
    @media only screen and (min-width: 641px) {
      .m12-1-teaser-division-module p {
        width: 25%; } }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module p {
        float: none;
        width: auto; } }
  .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item__button {
    display: none; }
    @media only screen and (min-width: 1025px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item__button {
        display: block;
        position: absolute;
        width: 100%;
        bottom: 20px;
        left: 0; }
        .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item__button .button--cta {
          margin: 0 30px;
          display: block;
          padding: 0.65rem; }
          .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item__button .button--cta__outer {
            width: 100%; } }
    @media only screen and (min-width: 1441px) {
      .m12-1-teaser-division-module .m12-1-teaser-division-module__navigation__row__column__item__button {
        bottom: 30px; } }

/* M13 Content Header Module
##################################################################################################################### */
.m13-content-header-module {
  margin: 3rem 0;
  text-align: center; }
  .m13-content-header-module.m13-content-header-module--show-large-up {
    display: none; }
    @media only screen and (min-width: 1025px) {
      .m13-content-header-module.m13-content-header-module--show-large-up {
        display: block; } }
  .m13-content-header-module h1 {
    font-size: 1.75rem;
    margin-bottom: .5em; }
    @media only screen and (min-width: 641px) {
      .m13-content-header-module h1 {
        font-size: 2.5rem; } }
    @media only screen and (min-width: 1025px) {
      .m13-content-header-module h1 {
        font-size: 3.5rem; } }
  @media screen and (min-width: 769px) {
    .m13-content-header-module .h-table-cell {
      display: table-cell; }
      .m13-content-header-module .h-table-cell .space-1 {
        margin-bottom: 0; } }

/* M14 Accordion Module
##################################################################################################################### */
.m14-accordion-module .accordionitem:last-child > .m14-accordion-module__navigation > .m14-accordion-module__navigation__toggler, .m106-filter-module .accordionitem:last-child > .m14-accordion-module__navigation > .m14-accordion-module__navigation__toggler {
  border-bottom: 0; }

.m14-accordion-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler, .m106-filter-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler {
  font-size: .9rem;
  font-weight: bold;
  text-align: center;
  padding: .7rem;
  border-bottom: 1px solid #e6e6e6; }
  .m14-accordion-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler:before, .m106-filter-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler:before, .m14-accordion-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler:after, .m106-filter-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
  .m14-accordion-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler:before, .m106-filter-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler:before {
    content: "";
    margin-right: .3em; }
  @media only screen and (max-width: 640px) {
    .m14-accordion-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler, .m106-filter-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler {
      text-align: center; } }
  .m14-accordion-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler:before, .m106-filter-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler:before {
    color: #dc281e;
    margin-right: 0.5em; }

.m14-accordion-module .m14-accordion-module__navigation.active > .m14-accordion-module__navigation__toggler, .m106-filter-module .m14-accordion-module__navigation.active > .m14-accordion-module__navigation__toggler {
  color: #dc281e; }
  .m14-accordion-module .m14-accordion-module__navigation.active > .m14-accordion-module__navigation__toggler:before, .m106-filter-module .m14-accordion-module__navigation.active > .m14-accordion-module__navigation__toggler:before {
    content: "\e807"; }

.m14-accordion-module .m14-accordion-module__navigation.active .content, .m106-filter-module .m14-accordion-module__navigation.active .content {
  -webkit-box-shadow: inset 0 -30px 20px -20px whitesmoke;
          box-shadow: inset 0 -30px 20px -20px whitesmoke; }

.m14-accordion-module .m14-accordion-module__navigation .content, .m106-filter-module .m14-accordion-module__navigation .content {
  padding: 0 0.75rem; }
  .m14-accordion-module .m14-accordion-module__navigation .content.active, .m106-filter-module .m14-accordion-module__navigation .content.active {
    background: transparent; }

.m14-accordion-module.m14-accordion-module--subaccordion, .m14-accordion-module--subaccordion.m106-filter-module {
  margin: 0 -0.75rem; }
  .m14-accordion-module.m14-accordion-module--subaccordion .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler, .m14-accordion-module--subaccordion.m106-filter-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler {
    text-align: left;
    font-size: .75rem;
    padding: .6rem .7rem; }
    @media only screen and (max-width: 640px) {
      .m14-accordion-module.m14-accordion-module--subaccordion .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler, .m14-accordion-module--subaccordion.m106-filter-module .m14-accordion-module__navigation .m14-accordion-module__navigation__toggler {
        text-align: left; } }

/* M16 Product Overview Module
##################################################################################################################### */
.m16-product-overview-module {
  padding: 1.5rem 0 0;
  background: whitesmoke;
  background-color: #eaeaea;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#eaeaea), color-stop(2em, whitesmoke), to(whitesmoke));
  background-image: linear-gradient(to top,#eaeaea, whitesmoke 2em, whitesmoke);
  border-bottom: 1px solid whitesmoke; }
  .m16-product-overview-module .m16-product-overview-module__actions {
    padding: 2.25rem 0;
    text-align: center; }
    .m16-product-overview-module .m16-product-overview-module__actions .button {
      margin: 0 1px; }

/* M17 Text Image Module
##################################################################################################################### */
.m17-text-image-module .m17-text-image-module__wrapper {
  padding: 0 0 1.5rem; }

.m17-text-image-module .m17-text-image-module__image,
.m17-text-image-module .m17-text-image-module__text {
  padding: 0; }

.m17-text-image-module .m17-text-image-module__text {
  padding: 0 0.75rem; }

.m17-text-image-module .m17-text-image-module__image {
  text-align: center; }

.m17-text-image-module ul a, .m17-text-image-module ol a, .m17-text-image-module p a {
  font-weight: 400; }
  .m17-text-image-module ul a:before, .m17-text-image-module ul a:after, .m17-text-image-module ol a:before, .m17-text-image-module ol a:after, .m17-text-image-module p a:before, .m17-text-image-module p a:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
  .m17-text-image-module ul a:before, .m17-text-image-module ol a:before, .m17-text-image-module p a:before {
    content: "";
    margin-right: .3em; }
  .m17-text-image-module ul a:after, .m17-text-image-module ul a:before, .m17-text-image-module ol a:after, .m17-text-image-module ol a:before, .m17-text-image-module p a:after, .m17-text-image-module p a:before {
    margin: 0;
    padding-right: 3px; }
  .m17-text-image-module ul a:hover, .m17-text-image-module ul a:focus, .m17-text-image-module ul a:active, .m17-text-image-module ol a:hover, .m17-text-image-module ol a:focus, .m17-text-image-module ol a:active, .m17-text-image-module p a:hover, .m17-text-image-module p a:focus, .m17-text-image-module p a:active {
    text-decoration: underline; }
    .m17-text-image-module ul a:hover:after, .m17-text-image-module ul a:hover:before, .m17-text-image-module ul a:focus:after, .m17-text-image-module ul a:focus:before, .m17-text-image-module ul a:active:after, .m17-text-image-module ul a:active:before, .m17-text-image-module ol a:hover:after, .m17-text-image-module ol a:hover:before, .m17-text-image-module ol a:focus:after, .m17-text-image-module ol a:focus:before, .m17-text-image-module ol a:active:after, .m17-text-image-module ol a:active:before, .m17-text-image-module p a:hover:after, .m17-text-image-module p a:hover:before, .m17-text-image-module p a:focus:after, .m17-text-image-module p a:focus:before, .m17-text-image-module p a:active:after, .m17-text-image-module p a:active:before {
      text-decoration: none; }

.m17-text-image-module img {
  width: 100%;
  margin-bottom: 1rem; }

@media only screen and (min-width: 641px) {
  .m17-text-image-module .m17-text-image-module__wrapper {
    padding: 1.5rem 0;
    width: 100%;
    display: table;
    table-layout: fixed; }
  .m17-text-image-module img {
    margin-bottom: 0; }
  .m17-text-image-module .m17-text-image-module__image,
  .m17-text-image-module .m17-text-image-module__text {
    display: table-cell;
    width: 50%;
    vertical-align: middle; }
  .m17-text-image-module .m17-text-image-module__image {
    padding-right: 1rem; }
  .m17-text-image-module .m17-text-image-module__text {
    padding-right: 0;
    padding-left: 2.5rem; }
  .m17-text-image-module .m17-text-image-module__wrapper--alternative .m17-text-image-module__image,
  .m17-text-image-module .m17-text-image-module__wrapper--alternative .m17-text-image-module__text {
    position: relative; }
  .m17-text-image-module .m17-text-image-module__wrapper--alternative .m17-text-image-module__image {
    left: 50%;
    padding-right: 0;
    padding-left: 1rem; }
  .m17-text-image-module .m17-text-image-module__wrapper--alternative .m17-text-image-module__text {
    right: 50%;
    padding-left: 0;
    padding-right: 2.5rem; } }

@media only screen and (min-width: 1025px) {
  .m17-text-image-module .m17-text-image-module__wrapper {
    padding-bottom: 3rem; }
  .m17-text-image-module .m17-text-image-module__text {
    padding-left: 5rem; }
  .m17-text-image-module .m17-text-image-module__wrapper--alternative .m17-text-image-module__text {
    padding-right: 5rem; } }

/* M104 Carousel
##################################################################################################################### */
.m19-product-picture-with-options-module {
  margin: 1.5rem 0; }
  .m19-product-picture-with-options-module .slick-list,
  .m19-product-picture-with-options-module .owl-list {
    margin: 0 1.5rem; }
  .m19-product-picture-with-options-module .slick-dots,
  .m19-product-picture-with-options-module .owl-dots {
    bottom: auto;
    display: inline-block;
    position: relative;
    margin-top: 1rem;
    left: auto;
    margin-left: auto !important;
    background-color: #d9d9d9; }
    @media only screen and (min-width: 641px) {
      .m19-product-picture-with-options-module .slick-dots,
      .m19-product-picture-with-options-module .owl-dots {
        margin-top: 2rem;
        margin-bottom: 3rem; } }
    .m19-product-picture-with-options-module .slick-dots li button,
    .m19-product-picture-with-options-module .owl-dots li button {
      background: white; }
    .m19-product-picture-with-options-module .slick-dots li.slick-active button,
    .m19-product-picture-with-options-module .owl-dots li.slick-active button {
      background: #b7b7b7;
      opacity: 0.75; }
    .m19-product-picture-with-options-module .slick-dots button:focus,
    .m19-product-picture-with-options-module .owl-dots button:focus {
      outline: none; }
  .m19-product-picture-with-options-module .slick-prev,
  .m19-product-picture-with-options-module .owl-prev {
    background-image: url("../assets/images/sprite.png");
    background-position: -230px -133px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px;
    left: 0; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m19-product-picture-with-options-module .slick-prev,
      .m19-product-picture-with-options-module .owl-prev {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
  .m19-product-picture-with-options-module .slick-next,
  .m19-product-picture-with-options-module .owl-next {
    background-image: url("../assets/images/sprite.png");
    background-position: -210px -133px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px;
    right: 0; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m19-product-picture-with-options-module .slick-next,
      .m19-product-picture-with-options-module .owl-next {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
  .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick__item,
  .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl__item {
    position: relative;
    outline: none; }
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick__item:focus,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl__item:focus {
      outline: auto 5px -webkit-focus-ring-color;
      outline: none; }
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper {
      position: relative; }
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper:after,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper:after,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper:after,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper:after {
        display: block;
        content: "";
        width: 100%; }
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper img,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper img,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper img,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        max-height: 100%;
        max-width: 100%; }
  .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot {
    text-align: center; }
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper:after,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper:after,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper:after,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper:after {
      padding-bottom: 60%; }
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper img,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper img,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper img,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper img {
      padding: 0.75rem 2.25rem; }
      @media only screen and (min-width: 641px) {
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper img,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper img,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper img,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__productshot .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper img {
          padding: 0.75rem 3rem; } }
  .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick,
  .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl {
    display: none;
    padding: 0 2rem; }
    @media only screen and (min-width: 641px) {
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl {
        display: block; } }
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__slick__item,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__owl__item,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__slick__item,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__owl__item {
      display: block;
      margin: 0.75rem;
      border: 1px solid #dfdfdf; }
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper,
      .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper {
        margin: 0.75rem; }
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper:after,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper:after,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper:after,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper:after,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__slick__item__wrapper:after,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__slick__item .m19-product-picture-with-options-module__owl__item__wrapper:after,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__slick__item__wrapper:after,
        .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .m19-product-picture-with-options-module__owl__item .m19-product-picture-with-options-module__owl__item__wrapper:after {
          padding-bottom: 100%; }
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__slick .current-active-item .m19-product-picture-with-options-module__owl__item,
    .m19-product-picture-with-options-module .m19-product-picture-with-options-module__owl .current-active-item .m19-product-picture-with-options-module__owl__item {
      border: 1px solid #dc281e; }

/* M20 Video Module
##################################################################################################################### */
.m20-video-module {
  margin: 1.5rem 0; }
  .m20-video-module .m20-video-module__background {
    background: whitesmoke;
    padding-top: 0; }
  .m20-video-module .m20-video-module__video__player__poster__button {
    position: absolute;
    display: block;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    .m20-video-module .m20-video-module__video__player__poster__button:after {
      display: block;
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -25px 0 0 -25px;
      background-image: url("../assets/images/sprite.png");
      background-position: -208px -82px;
      background-repeat: no-repeat;
      width: 50px;
      height: 50px; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .m20-video-module .m20-video-module__video__player__poster__button:after {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }
    @media only screen and (min-width: 641px) {
      .m20-video-module .m20-video-module__video__player__poster__button:after {
        background-image: url("../assets/images/sprite.png");
        background-position: -108px 0px;
        background-repeat: no-repeat;
        width: 100px;
        height: 100px;
        margin: -50px 0 0 -50px; } }
  @media only screen and (min-width: 641px) and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min-width: 641px) and (min--moz-device-pixel-ratio: 1.2), only screen and (min-width: 641px) and (min-device-pixel-ratio: 1.2), only screen and (min-width: 641px) and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-width: 641px) and (min-resolution: 110dpi), only screen and (min-width: 641px) and (min-resolution: 1.2dppx) {
    .m20-video-module .m20-video-module__video__player__poster__button:after {
      background-size: 265px 236px;
      background-image: url("../assets/images/sprite-2x.png"); } }

.vjs-loading-spinner {
  display: none !important; }

/* M20-1 Video Slider Module
##################################################################################################################### */
.m20-1-video-slider-module {
  margin-bottom: 2rem; }
  .m20-1-video-slider-module .owl-dots {
    bottom: 8px;
    padding: 4px 4px; }
    @media only screen and (min-width: 641px) {
      .m20-1-video-slider-module .owl-dots {
        bottom: 20px;
        padding: 9px 7px; } }

.owl-video-play-icon {
  position: absolute;
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: none !important; }
  .owl-video-play-icon:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    background-image: url("../assets/images/sprite.png");
    background-position: -208px -82px;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .owl-video-play-icon:after {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
  @media only screen and (min-width: 641px) {
    .owl-video-play-icon:after {
      background-image: url("../assets/images/sprite.png");
      background-position: -108px 0px;
      background-repeat: no-repeat;
      width: 100px;
      height: 100px;
      margin: -50px 0 0 -50px; } }
  @media only screen and (min-width: 641px) and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min-width: 641px) and (min--moz-device-pixel-ratio: 1.2), only screen and (min-width: 641px) and (min-device-pixel-ratio: 1.2), only screen and (min-width: 641px) and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-width: 641px) and (min-resolution: 110dpi), only screen and (min-width: 641px) and (min-resolution: 1.2dppx) {
    .owl-video-play-icon:after {
      background-size: 265px 236px;
      background-image: url("../assets/images/sprite-2x.png"); } }

.owl-carousel .fixed-video-aspect {
  position: relative; }

.owl-carousel .fixed-video-aspect:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%; }

.owl-carousel .fixed-video-aspect > .item-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.owl-video-tn {
  background-size: cover !important; }

/* M104 Carousel
##################################################################################################################### */
.m21-usps-module {
  background-color: #555555;
  padding: 15px 0; }
  @media only screen and (min-width: 641px) {
    .m21-usps-module {
      padding: 35px 0; } }
  .m21-usps-module .slick-list {
    width: auto;
    margin: 0 20px; }
    @media only screen and (min-width: 641px) {
      .m21-usps-module .slick-list {
        margin: 0 30px; } }
    @media only screen and (min-width: 1441px) {
      .m21-usps-module .slick-list {
        width: 100%;
        margin: 0; } }
  .m21-usps-module .slick-arrow:focus {
    background-color: transparent;
    outline: auto 5px -webkit-focus-ring-color; }
  .m21-usps-module .slick-arrow.slick-prev {
    background-image: url("../assets/images/sprite.png");
    background-position: -190px -133px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px;
    left: 0; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m21-usps-module .slick-arrow.slick-prev {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
    @media only screen and (min-width: 1441px) {
      .m21-usps-module .slick-arrow.slick-prev {
        left: -30px; } }
  .m21-usps-module .slick-arrow.slick-next {
    background-image: url("../assets/images/sprite.png");
    background-position: 0px -198px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px;
    right: 0; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m21-usps-module .slick-arrow.slick-next {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
    @media only screen and (min-width: 1441px) {
      .m21-usps-module .slick-arrow.slick-next {
        left: auto;
        right: -30px; } }
  .m21-usps-module .m21-usps-module__slick {
    visibility: hidden; }
    .m21-usps-module .m21-usps-module__slick.slick-initialized {
      visibility: visible; }
      @media only screen and (min-width: 1025px) {
        .m21-usps-module .m21-usps-module__slick.slick-initialized {
          height: auto; } }
  .m21-usps-module .m21-usps-module__slick__item {
    text-align: center;
    display: block;
    float: left ; }
    .m21-usps-module .m21-usps-module__slick__item .m21-usps-module__slick__item__wrapper {
      height: 80px;
      margin-bottom: 1rem; }
      .m21-usps-module .m21-usps-module__slick__item .m21-usps-module__slick__item__wrapper .m21-usps-module__slick__item__img {
        margin: 0 auto;
        max-height: 100%; }
    .m21-usps-module .m21-usps-module__slick__item .m21-usps-module__slick__item__caption {
      color: white;
      height: auto !important;
      font-size: 0.7rem;
      line-height: 0.85rem;
      margin: 0;
      font-weight: bold; }
      @media only screen and (min-width: 641px) {
        .m21-usps-module .m21-usps-module__slick__item .m21-usps-module__slick__item__caption {
          font-size: 0.8rem;
          line-height: 0.95rem;
          height: 50px; } }
      @media only screen and (min-width: 1025px) {
        .m21-usps-module .m21-usps-module__slick__item .m21-usps-module__slick__item__caption {
          font-size: 0.9rem;
          line-height: 1.05rem;
          height: 60px; } }

/* M23 Linklist
##################################################################################################################### */
.m23-linklist-module ul {
  list-style: none; }
  .m23-linklist-module ul .m23-linklist-module__item {
    border-bottom: 0.1rem solid white; }
    .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link {
      display: block;
      position: relative;
      padding: 1rem;
      padding-left: 4.25rem;
      background: whitesmoke;
      color: black;
      font-weight: 600;
      line-height: 1.25rem;
      height: 3.25rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
      .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:before, .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:before {
        content: "";
        margin-right: .3em; }
      .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:hover, .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:focus, .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:active {
        color: #dc281e; }
      .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:before, .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:after {
        position: absolute;
        left: 0;
        width: 3.25rem;
        color: #dc281e; }
      .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:before {
        top: 1rem;
        text-align: center;
        height: 1.25rem;
        line-height: 1.25rem;
        z-index: 777; }
      .m23-linklist-module ul .m23-linklist-module__item .m23-linklist-module__link:after {
        z-index: 776;
        top: 0;
        display: block;
        content: "";
        padding: 1rem;
        height: 100%;
        background: #f0f0f0; }

/* M22 Product Teaser Module
##################################################################################################################### */
.m22-product-teaser-module__list {
  text-align: center;
  position: relative;
  margin: 0 auto;
  max-width: 1350px;
  width: 100%;
  padding: 0 0.65rem; }
  .m22-product-teaser-module__list::after {
    clear: both;
    content: "";
    display: table; }
  .m22-product-teaser-module__list::after {
    clear: both;
    content: "";
    display: table; }
  @media only screen and (min-width: 1025px) {
    .m22-product-teaser-module__list {
      padding: 0 0.375rem; } }
  @media only screen and (min-width: 1441px) {
    .m22-product-teaser-module__list {
      padding: 0; } }

.m22-product-teaser-module__item-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin: 2px -4px 2px 0;
  padding: 0 2px; }
  .m22-product-teaser-module__item-wrapper.m22-product-teaser-module__item-wrapper--inactive {
    display: none;
    opacity: 0; }
  @media only screen and (min-width: 641px) {
    .m22-product-teaser-module__item-wrapper {
      width: 33.33333%;
      margin: 2px -4px 2px 0; } }
  @media only screen and (min-width: 1025px) {
    .m22-product-teaser-module__item-wrapper {
      width: 25%;
      margin: 0.375rem -4px 0.375rem 0;
      padding-left: 0.375rem;
      padding-right: 0.375rem; } }
  @media only screen and (min-width: 1441px) {
    .m22-product-teaser-module__item-wrapper {
      margin: 0.75rem -4px 0.75rem 0;
      padding-left: 0.75rem;
      padding-right: 0.75rem; } }

.m22-product-teaser-module__item {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px #c8c8c8;
          box-shadow: 0 0 8px #c8c8c8;
  height: 100%;
  background: white; }
  @media only screen and (min-width: 1441px) {
    .m22-product-teaser-module__item {
      padding-bottom: 0; } }
  .m22-product-teaser-module__item .m22-product-teaser-module__link,
  .m22-product-teaser-module__item .m22-product-teaser-module__overlay {
    position: relative;
    margin: 0;
    text-align: center;
    font-size: 0.75rem; }
    .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__inner-top,
    .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top {
      padding-top: 10%;
      padding-bottom: 80%;
      margin: 0 10% 10%;
      position: relative;
      overflow: hidden;
      min-height: 120px; }
    .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__inner-bottom,
    .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-bottom {
      padding: 0 20px 10px;
      width: 100%; }
      @media medium-up {
        .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__inner-bottom,
        .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-bottom {
          bottom: 20px; } }
      .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__inner-bottom .button,
      .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-bottom .button {
        margin: 0; }
  .m22-product-teaser-module__item .m22-product-teaser-module__link {
    background: white;
    display: block; }
    .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__inner-top img {
      position: absolute;
      bottom: 0;
      margin: 0 auto;
      left: 0;
      right: 0;
      max-width: 100%;
      max-height: 100%;
      display: block; }
    .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__inner-bottom {
      color: #585858;
      font-weight: 700; }
      .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__inner-bottom .button--cta__outer {
        padding-right: 1px;
        padding-left: 1px; }
    .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__link__title {
      line-height: 1.2em;
      font-size: .75rem;
      display: inline-block; }
      .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__link__title:before, .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__link__title:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__link__title:before {
        content: "";
        margin-right: .3em; }
      .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__link__title:before, .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__link__title:after {
        margin: 0;
        color: #dc281e; }
    .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__link__label {
      display: block;
      margin-top: -.5rem;
      line-height: 1.8em;
      font-size: .7rem;
      font-weight: 300; }
      @media only screen and (min-width: 641px) {
        .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__link__label {
          margin-top: -.15rem; } }
      @media only screen and (min-width: 1025px) {
        .m22-product-teaser-module__item .m22-product-teaser-module__link .m22-product-teaser-module__link__label {
          margin-top: -.25rem; } }
  .m22-product-teaser-module__item .m22-product-teaser-module__overlay {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    top: 105%;
    background: #585858;
    color: white;
    padding-bottom: 0;
    z-index: 2;
    -webkit-transition: top .3s ease-out;
            transition: top .3s ease-out; }
    @media only screen and (min-width: 1025px) {
      .m22-product-teaser-module__item .m22-product-teaser-module__overlay {
        display: block; } }
    .m22-product-teaser-module__item .m22-product-teaser-module__overlay .button {
      margin-bottom: 1.35rem;
      padding: 0.65rem 1.1rem; }
    .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top {
      padding-bottom: 0;
      height: 75%;
      margin-bottom: 0; }
      @media only screen and (min-width: 1320px) {
        .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top {
          height: 80%; } }
      .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top h4 {
        color: white;
        font-size: 0.8rem;
        text-transform: uppercase;
        text-align: center;
        font-weight: 600;
        margin-bottom: 1.25rem; }
      .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top a {
        color: white; }
      .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist {
        text-align: center;
        margin-bottom: 0.5rem;
        display: none; }
        .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist::after {
          clear: both;
          content: "";
          display: table; }
        @media only screen and (min-width: 641px) {
          .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist {
            display: inline-block; } }
        .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li {
          display: block;
          float: left ;
          padding: 0 0.65rem; }
          .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a {
            display: block;
            position: relative;
            border: 1px solid #6b6b6b;
            width: 30px;
            height: 30px;
            text-indent: -9999px; }
            .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a:before {
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              margin: auto;
              text-indent: 0;
              line-height: 1.4rem;
              cursor: pointer; }
            .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a.m22-product-teaser-module__overlay__iconlist__icon--expand:before {
              background-image: url("../assets/images/sprite.png");
              background-position: -160px -171px;
              background-repeat: no-repeat;
              width: 18px;
              height: 18px; }
              @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
                .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a.m22-product-teaser-module__overlay__iconlist__icon--expand:before {
                  background-size: 265px 236px;
                  background-image: url("../assets/images/sprite-2x.png"); } }
            .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a.m22-product-teaser-module__overlay__iconlist__icon--compare:before {
              background-image: url("../assets/images/sprite.png");
              background-position: -92px -198px;
              background-repeat: no-repeat;
              width: 22px;
              height: 10px; }
              @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
                .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a.m22-product-teaser-module__overlay__iconlist__icon--compare:before {
                  background-size: 265px 236px;
                  background-image: url("../assets/images/sprite-2x.png"); } }
            .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a.m22-product-teaser-module__overlay__iconlist__icon--favourites:before {
              background-image: url("../assets/images/sprite.png");
              background-position: -212px -171px;
              background-repeat: no-repeat;
              width: 16px;
              height: 15px; }
              @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
                .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a.m22-product-teaser-module__overlay__iconlist__icon--favourites:before {
                  background-size: 265px 236px;
                  background-image: url("../assets/images/sprite-2x.png"); } }
            .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a.active:after {
              content: "";
              display: block;
              position: absolute;
              top: -6px;
              right: -6px;
              background-image: url("../assets/images/sprite.png");
              background-position: -250px -133px;
              background-repeat: no-repeat;
              width: 15px;
              height: 15px; }
              @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
                .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top .m22-product-teaser-module__overlay__iconlist li a.active:after {
                  background-size: 265px 236px;
                  background-image: url("../assets/images/sprite-2x.png"); } }
      .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top dl {
        font-size: 0.6rem;
        text-align: left;
        margin-bottom: 1rem; }
        .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top dl dt, .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top dl dd {
          padding: 5px 0;
          line-height: 1.2em; }
          @media only screen and (min-width: 1320px) {
            .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top dl dt, .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top dl dd {
              line-height: 1.5em;
              padding: 7px 0; } }
        .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top dl dt {
          float: left ;
          width: 40%;
          overflow: hidden;
          clear: left;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .m22-product-teaser-module__item .m22-product-teaser-module__overlay .m22-product-teaser-module__inner-top dl dd {
          margin: 0;
          padding-left: 45%;
          border-bottom: 1px solid #6b6b6b; }
    .m22-product-teaser-module__item .m22-product-teaser-module__overlay.m22-product-teaser-module__overlay--inverse {
      top: 0;
      display: block; }
      .m22-product-teaser-module__item .m22-product-teaser-module__overlay.m22-product-teaser-module__overlay--inverse .m22-product-teaser-module__inner-top {
        font-weight: 600;
        line-height: 1rem;
        font-size: 0.8rem; }
        @media only screen and (min-width: 1025px) {
          .m22-product-teaser-module__item .m22-product-teaser-module__overlay.m22-product-teaser-module__overlay--inverse .m22-product-teaser-module__inner-top {
            line-height: 1.4rem;
            font-size: 1.2rem; } }
        @media only screen and (min-width: 1441px) {
          .m22-product-teaser-module__item .m22-product-teaser-module__overlay.m22-product-teaser-module__overlay--inverse .m22-product-teaser-module__inner-top {
            line-height: 1.6rem;
            font-size: 1.4rem; } }
      .m22-product-teaser-module__item .m22-product-teaser-module__overlay.m22-product-teaser-module__overlay--inverse .m22-product-teaser-module__inner-bottom {
        position: absolute;
        bottom: 3px; }
  .m22-product-teaser-module__item.m22-product-teaser-module__overlay--active .m22-product-teaser-module__overlay {
    top: 0; }

.m22-product-teaser-module__table {
  display: table;
  height: 100%; }
  .m22-product-teaser-module__table .m22-product-teaser-module__table-cell {
    display: table-cell;
    vertical-align: middle; }

.m22-product-teaser-module__product-flag {
  padding: 4px 16px;
  font-size: 0.8rem;
  line-height: 23px;
  color: white;
  font-weight: bold;
  position: absolute;
  z-index: 1; }
  @media only screen and (min-width: 360px) {
    .m22-product-teaser-module__product-flag {
      padding: 3px 6px;
      font-size: 0.6rem;
      line-height: 13px; } }
  @media only screen and (min-width: 641px) {
    .m22-product-teaser-module__product-flag {
      padding: 4px 16px;
      font-size: 0.8rem;
      line-height: 23px; } }
  .m22-product-teaser-module__product-flag[data-status="new"] {
    background: #dc281e; }
  .m22-product-teaser-module__product-flag[data-status="retired"] {
    background: #5a5a5a; }

.m22-product-teaser-module__remove-from-list {
  position: absolute;
  z-index: 500;
  top: .5rem;
  right: 0.5rem;
  display: block;
  font-size: 1rem;
  line-height: .9rem;
  color: #585858; }
  .m22-product-teaser-module__remove-from-list:before, .m22-product-teaser-module__remove-from-list:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
  .m22-product-teaser-module__remove-from-list:after {
    content: "";
    margin-left: .3em; }
  @media only screen and (min-width: 1025px) {
    .m22-product-teaser-module__remove-from-list {
      color: white; } }

/* M22.1 Product Teaser list view
##################################################################################################################### */
/**

 # content index

- m22.1 variables
- card wrapper & overwrites
- card
- card cells
- cell content areas (header, inner, bottom)
- cell content area - header
- cell content area - inner
- cell content area - bottom
 */
/**
 * m22.1 variables
 */
/**
 * card wrapper & overwrites
 */
.m22-1-product-teaser__card-wrapper {
  margin: 0 0 .4rem;
  min-height: 410px;
  /* flexslider overwrite */ }
  @media only screen and (min-width: 641px) {
    .m22-1-product-teaser__card-wrapper {
      margin: 0 0 1.5rem; } }
  .m22-1-product-teaser__card-wrapper button {
    background-color: transparent;
    text-transform: inherit;
    margin: 0;
    padding: 0; }
    .m22-1-product-teaser__card-wrapper button:hover, .m22-1-product-teaser__card-wrapper button:focus {
      color: inherit; }
  .m22-1-product-teaser__card-wrapper .m29-call-to-action-module {
    min-height: 48px; }
    .m22-1-product-teaser__card-wrapper .m29-call-to-action-module .button--cta__outer {
      width: 100%;
      padding-right: 1px; }
  .m22-1-product-teaser__card-wrapper .button--cta {
    width: 100%;
    margin-bottom: 0; }
  .m22-1-product-teaser__card-wrapper .slick-prev,
  .m22-1-product-teaser__card-wrapper .slick-next {
    position: absolute;
    top: 100%;
    margin-top: -20px;
    outline: none; }
  .m22-1-product-teaser__card-wrapper .slick-prev {
    left: 20%;
    background-image: url("../assets/images/sprite.png");
    background-position: -230px -133px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px;
    -webkit-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
            transform: scale(0.8, 0.8); }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m22-1-product-teaser__card-wrapper .slick-prev {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
  .m22-1-product-teaser__card-wrapper .slick-next {
    right: 20%;
    background-image: url("../assets/images/sprite.png");
    background-position: -210px -133px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px;
    -webkit-transform: scale(0.8, 0.8);
        -ms-transform: scale(0.8, 0.8);
            transform: scale(0.8, 0.8); }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m22-1-product-teaser__card-wrapper .slick-next {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
  .m22-1-product-teaser__card-wrapper .m19-product-picture-with-options-module__slick__item__img {
    padding-bottom: 32px;
    margin: 0 auto;
    outline: none; }
    .m22-1-product-teaser__card-wrapper .m19-product-picture-with-options-module__slick__item__img:focus {
      outline: none; }
  .m22-1-product-teaser__card-wrapper .m19-product-picture-with-options-module__slick__item:focus {
    outline: none;
    border: 0; }

/**
 * card
 */
.m22-1-product-teaser__card {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px #c8c8c8;
          box-shadow: 0 0 8px #c8c8c8;
  min-height: 410px;
  width: 100%;
  background: white;
  padding: 32px;
  display: block; }

/**
 * card cells
 */
.m22-1-product-teaser__cell-image {
  float: left ;
  width: 30%; }

.m22-1-product-teaser__cell-text,
.m22-1-product-teaser__cell-detail {
  float: left ;
  padding-left: 32px;
  width: 40%; }
  .m22-1-product-teaser__cell-text.hide,
  .m22-1-product-teaser__cell-detail.hide {
    display: none; }

.m22-1-product-teaser__cell-downloads {
  float: left ;
  padding-left: 32px;
  width: 30%; }

/**
 * cell content areas (header, inner, bottom)
 */
.m22-1-product-teaser__header {
  position: relative;
  width: 100%; }
  .m22-1-product-teaser__header .inline-block {
    width: 118px; }

.m22-1-product-teaser__inner {
  min-height: 234px; }
  .m22-1-product-teaser__inner.m22-1-product-teaser__inner--top46 {
    top: 46px;
    position: relative; }
  .m22-1-product-teaser__inner .m19-product-picture-with-options-module__slick__item__wrapper {
    padding-top: 10%; }

.m22-1-product-teaser__inner--center {
  text-align: center; }

.m22-1-product-teaser__cell-downloads .m22-1-product-teaser__bottom {
  position: absolute;
  bottom: 34px;
  right: 34px;
  width: 24%; }
  .m22-1-product-teaser__cell-downloads .m22-1-product-teaser__bottom .m29-call-to-action-module {
    overflow: hidden;
    border: 1px solid #dc281e; }
    .m22-1-product-teaser__cell-downloads .m22-1-product-teaser__bottom .m29-call-to-action-module a {
      padding: 0.65rem 1.2rem;
      border: none;
      overflow: visible; }
  @media screen and (min-width: 1280px) {
    .m22-1-product-teaser__cell-downloads .m22-1-product-teaser__bottom {
      width: 24%; }
      .m22-1-product-teaser__cell-downloads .m22-1-product-teaser__bottom .m29-call-to-action-module a {
        padding: 0.65rem 2.2rem; } }

/**
 * cell content area - header
 */
.m22-1-product-teaser__title {
  position: relative;
  top: -8px; }

.m22-1-product-teaser__header__btn {
  position: relative;
  color: #5a5a5a;
  font-size: 10px;
  margin: 0;
  left: auto !important;
  right: auto !important; }

.m22-1-product-teaser__header__btn--expand {
  left: 315px; }

.m22-1-product-teaser__header__btn__icon {
  position: relative;
  display: inline-block;
  border: 1px solid #c8c8c8;
  padding: 15px; }

.m22-1-product-teaser__header__btn__text {
  padding-left: 5px;
  position: relative;
  display: inline-block;
  top: -12px;
  text-transform: initial;
  font-size: 0.7rem; }

.m22-1-product-teaser__header__btn__icon--expand {
  float: right ;
  padding: 6px; }
  .m22-1-product-teaser__header__btn__icon--expand .icon-expand {
    background-image: url("../assets/images/sprite.png");
    background-position: -178px -171px;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: block; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m22-1-product-teaser__header__btn__icon--expand .icon-expand {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }

.m22-1-product-teaser__header__btn__icon--compare {
  padding: 10px 4px; }
  .m22-1-product-teaser__header__btn__icon--compare .icon-compare {
    background-image: url("../assets/images/sprite.png");
    background-position: -114px -198px;
    background-repeat: no-repeat;
    width: 22px;
    height: 10px;
    display: block; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m22-1-product-teaser__header__btn__icon--compare .icon-compare {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
    .m22-1-product-teaser__header__btn__icon--compare .icon-compare.active:before {
      background-image: url("../assets/images/sprite.png");
      background-position: -136px -198px;
      background-repeat: no-repeat;
      width: 22px;
      height: 10px; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .m22-1-product-teaser__header__btn__icon--compare .icon-compare.active:before {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }

.m22-1-product-teaser__header__btn__icon--favorit {
  padding: 8px 7px; }
  .m22-1-product-teaser__header__btn__icon--favorit .icon-favorit {
    background-image: url("../assets/images/sprite.png");
    background-position: -196px -171px;
    background-repeat: no-repeat;
    width: 16px;
    height: 15px;
    display: block; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m22-1-product-teaser__header__btn__icon--favorit .icon-favorit {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
    .m22-1-product-teaser__header__btn__icon--favorit .icon-favorit.active:before {
      background-image: url("../assets/images/sprite.png");
      background-position: -196px -171px;
      background-repeat: no-repeat;
      width: 16px;
      height: 15px; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .m22-1-product-teaser__header__btn__icon--favorit .icon-favorit.active:before {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }

/**
 * cell content area - inner
 */
.m22-1-product-teaser__text {
  font-size: 0.8rem; }

.m22-1-product-teaser__cell-detail__table {
  width: 100%;
  background: #f0f0f0; }
  .m22-1-product-teaser__cell-detail__table .td {
    vertical-align: top;
    padding: 2px 6px;
    border: 1px solid white;
    font-size: 0.7rem;
    line-height: 1.1rem;
    color: black; }

.m22-1-product-teaser__cell-detail__table--download {
  text-align: left;
  width: 100%; }
  .m22-1-product-teaser__cell-detail__table--download .tr {
    border-bottom: 1px solid #c8c8c8; }
    .m22-1-product-teaser__cell-detail__table--download .tr:first-child {
      border-top: 1px solid #c8c8c8; }
  .m22-1-product-teaser__cell-detail__table--download .td {
    font-size: .65rem;
    padding: 4px 0; }
    .m22-1-product-teaser__cell-detail__table--download .td.index {
      font-weight: 600;
      line-height: 1.8;
      padding: 4px 4px 4px 0; }
    .m22-1-product-teaser__cell-detail__table--download .td.value {
      text-align: right;
      color: #dc281e;
      white-space: nowrap; }
      .m22-1-product-teaser__cell-detail__table--download .td.value a:after {
        margin-left: 6px;
        background-image: url("../assets/images/sprite.png");
        background-position: -197px -100px;
        background-repeat: no-repeat;
        width: 11px;
        height: 12px;
        content: " ";
        display: inline-block;
        position: relative;
        top: 2px; }
        @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
          .m22-1-product-teaser__cell-detail__table--download .td.value a:after {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }

.m22-1-product-teaser__iconlist {
  margin: 1rem 0;
  padding: 0; }
  .m22-1-product-teaser__iconlist li {
    margin-bottom: .25rem;
    list-style: none;
    font-size: .65rem;
    line-height: .9rem;
    color: #585858; }
    .m22-1-product-teaser__iconlist li button, .m22-1-product-teaser__iconlist li a {
      display: table;
      color: #585858;
      outline: none; }
      .m22-1-product-teaser__iconlist li button > div, .m22-1-product-teaser__iconlist li a > div {
        display: table-cell;
        vertical-align: middle; }
      .m22-1-product-teaser__iconlist li button span, .m22-1-product-teaser__iconlist li a span {
        position: relative;
        top: 3px;
        display: inline-block;
        position: relative;
        border: 1px solid #d2d2d2;
        width: 30px;
        height: 30px;
        margin-right: 0.5rem;
        text-indent: -9999px; }
        .m22-1-product-teaser__iconlist li button span:before, .m22-1-product-teaser__iconlist li a span:before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          margin: auto;
          text-indent: 0;
          line-height: 1.4rem;
          cursor: pointer; }
      .m22-1-product-teaser__iconlist li button.m22-1-product-teaser__iconlist__icon--expand span:before, .m22-1-product-teaser__iconlist li a.m22-1-product-teaser__iconlist__icon--expand span:before {
        background-image: url("../assets/images/sprite.png");
        background-position: -178px -171px;
        background-repeat: no-repeat;
        width: 18px;
        height: 18px; }
        @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
          .m22-1-product-teaser__iconlist li button.m22-1-product-teaser__iconlist__icon--expand span:before, .m22-1-product-teaser__iconlist li a.m22-1-product-teaser__iconlist__icon--expand span:before {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }
      .m22-1-product-teaser__iconlist li button.m22-1-product-teaser__iconlist__icon--compare span:before, .m22-1-product-teaser__iconlist li a.m22-1-product-teaser__iconlist__icon--compare span:before {
        background-image: url("../assets/images/sprite.png");
        background-position: -114px -198px;
        background-repeat: no-repeat;
        width: 22px;
        height: 10px; }
        @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
          .m22-1-product-teaser__iconlist li button.m22-1-product-teaser__iconlist__icon--compare span:before, .m22-1-product-teaser__iconlist li a.m22-1-product-teaser__iconlist__icon--compare span:before {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }
      .m22-1-product-teaser__iconlist li button.m22-1-product-teaser__iconlist__icon--compare.active span:before, .m22-1-product-teaser__iconlist li a.m22-1-product-teaser__iconlist__icon--compare.active span:before {
        background-image: url("../assets/images/sprite.png");
        background-position: -114px -198px;
        background-repeat: no-repeat;
        width: 22px;
        height: 10px; }
        @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
          .m22-1-product-teaser__iconlist li button.m22-1-product-teaser__iconlist__icon--compare.active span:before, .m22-1-product-teaser__iconlist li a.m22-1-product-teaser__iconlist__icon--compare.active span:before {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }
      .m22-1-product-teaser__iconlist li button.m22-1-product-teaser__iconlist__icon--favourites span:before, .m22-1-product-teaser__iconlist li a.m22-1-product-teaser__iconlist__icon--favourites span:before {
        background-image: url("../assets/images/sprite.png");
        background-position: -196px -171px;
        background-repeat: no-repeat;
        width: 16px;
        height: 15px; }
        @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
          .m22-1-product-teaser__iconlist li button.m22-1-product-teaser__iconlist__icon--favourites span:before, .m22-1-product-teaser__iconlist li a.m22-1-product-teaser__iconlist__icon--favourites span:before {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }
      .m22-1-product-teaser__iconlist li button.active span:after, .m22-1-product-teaser__iconlist li a.active span:after {
        content: "";
        display: block;
        position: absolute;
        top: -6px;
        right: -6px;
        background-image: url("../assets/images/sprite.png");
        background-position: -250px -133px;
        background-repeat: no-repeat;
        width: 15px;
        height: 15px; }
        @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
          .m22-1-product-teaser__iconlist li button.active span:after, .m22-1-product-teaser__iconlist li a.active span:after {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }

.m22-1-product-teaser__remove-from-list {
  display: block;
  font-size: .65rem;
  line-height: .9rem;
  color: #585858;
  float: right ;
  text-align: right;
  outline: none; }
  .m22-1-product-teaser__remove-from-list:before, .m22-1-product-teaser__remove-from-list:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
  .m22-1-product-teaser__remove-from-list:after {
    content: "";
    margin-left: .3em; }
  .m22-1-product-teaser__remove-from-list:after, .m22-1-product-teaser__remove-from-list:before {
    position: relative;
    top: 2px;
    font-size: .9rem;
    margin-left: .5rem; }

/* M05 Illustration Layer
##################################################################################################################### */
.m24-contact-box-module {
  color: white;
  text-align: center; }
  .m24-contact-box-module .m24-contact-box-module__background {
    background: #61d8ad url("../assets/images/m24_contact_box-module/texture-background.jpg") repeat;
    padding: 1.5rem 0; }
    @media only screen and (min-width: 641px) {
      .m24-contact-box-module .m24-contact-box-module__background {
        padding: 2rem 0; } }
  .m24-contact-box-module h2, .m24-contact-box-module h3 {
    color: white;
    margin-top: 0;
    font-weight: 400;
    margin-bottom: 0.5rem; }
    @media only screen and (min-width: 1025px) {
      .m24-contact-box-module h2, .m24-contact-box-module h3 {
        margin-bottom: 1.5rem; } }
    .m24-contact-box-module h2 .m24-contact-box-module__headline-row, .m24-contact-box-module h3 .m24-contact-box-module__headline-row {
      display: block; }
      @media only screen and (min-width: 1025px) {
        .m24-contact-box-module h2 .m24-contact-box-module__headline-row, .m24-contact-box-module h3 .m24-contact-box-module__headline-row {
          display: inline; } }
  .m24-contact-box-module .m24-contact-box-module__background__phone {
    font-size: 1.5rem;
    line-height: 1.5rem;
    vertical-align: top;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 0.5rem; }
    @media only screen and (min-width: 1025px) {
      .m24-contact-box-module .m24-contact-box-module__background__phone {
        margin-bottom: 0;
        font-size: 2.25rem;
        line-height: 2.25rem;
        float: right ; } }
    @media only screen and (min-width: 1441px) {
      .m24-contact-box-module .m24-contact-box-module__background__phone {
        font-size: 2.75rem;
        line-height: 2.75rem; } }
  .m24-contact-box-module .m24-contact-box-module__background__opening {
    text-align: left;
    font-size: 0.8rem;
    margin-bottom: 0;
    display: inline-block; }
    @media only screen and (min-width: 1025px) {
      .m24-contact-box-module .m24-contact-box-module__background__opening {
        display: block;
        line-height: 1.125rem; } }
    @media only screen and (min-width: 1441px) {
      .m24-contact-box-module .m24-contact-box-module__background__opening {
        font-size: 0.9rem;
        line-height: 1.375rem; } }
  .m24-contact-box-module .m24-contact-box-module__background__phone__icon {
    width: 30px;
    height: 30px;
    background: url("../assets/images/m24_contact_box-module/support-2x.png") no-repeat left top;
    background-size: 100%;
    display: inline-block;
    max-height: 100%;
    position: relative; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m24-contact-box-module .m24-contact-box-module__background__phone__icon {
        background-image: url("../assets/images/m24_contact_box-module/support-2x.png"); } }
    @media only screen and (min-width: 641px) {
      .m24-contact-box-module .m24-contact-box-module__background__phone__icon {
        width: 35px;
        height: 35px; } }
    @media only screen and (min-width: 1025px) {
      .m24-contact-box-module .m24-contact-box-module__background__phone__icon {
        margin-right: 10px;
        top: 2px;
        width: 45px;
        height: 45px; } }
    @media only screen and (min-width: 1441px) {
      .m24-contact-box-module .m24-contact-box-module__background__phone__icon {
        top: 4px;
        width: 55px;
        height: 55px; } }
  .m24-contact-box-module .m24-contact-box-module__background__cta {
    text-align: center;
    margin-bottom: 0;
    margin-top: 1rem; }
    .m24-contact-box-module .m24-contact-box-module__background__cta .button--cta {
      margin-bottom: 0; }

/* M25 Form Fields
##################################################################################################################### */
.m25-form-fields-module {
  margin: 1.5rem 0; }

/* M27 Search Result Module
##################################################################################################################### */
.m27-search-result-module .m27-search-result-module__item {
  display: block;
  padding: 1.5rem 0 1.15rem;
  vertical-align: top;
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
  color: #585858; }
  .m27-search-result-module .m27-search-result-module__item:first-child {
    border-top: 1px solid #e1e1e1; }
  .m27-search-result-module .m27-search-result-module__item.hide {
    display: none; }
  .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__image-preview {
    padding-left: 0;
    margin-bottom: 0.9rem; }
    .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__image-preview img {
      -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
              box-shadow: 0 0 7px rgba(0, 0, 0, 0.3); }
  .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content h3 {
    font-size: 1.3rem;
    font-weight: 600; }
  .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content .m27-search-result-module__actions {
    padding-right: 0;
    color: black;
    -webkit-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out; }
    .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content .m27-search-result-module__actions:before, .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content .m27-search-result-module__actions:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content .m27-search-result-module__actions:before {
      content: "";
      margin-right: .3em; }
    .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content .m27-search-result-module__actions:after, .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content .m27-search-result-module__actions:before {
      color: #dc281e; }
  .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content .m27-search-result-module__content__highlight {
    display: inline-block;
    padding: 0 .15rem;
    line-height: 1.1em;
    font-weight: 600;
    color: black;
    background: #d7d7d7; }
  .m27-search-result-module .m27-search-result-module__item:hover .m27-search-result-module__content h3,
  .m27-search-result-module .m27-search-result-module__item:hover .m27-search-result-module__content h3 .m27-search-result-module__content__highlight,
  .m27-search-result-module .m27-search-result-module__item:hover .m27-search-result-module__content .m27-search-result-module__actions, .m27-search-result-module .m27-search-result-module__item:focus .m27-search-result-module__content h3,
  .m27-search-result-module .m27-search-result-module__item:focus .m27-search-result-module__content h3 .m27-search-result-module__content__highlight,
  .m27-search-result-module .m27-search-result-module__item:focus .m27-search-result-module__content .m27-search-result-module__actions, .m27-search-result-module .m27-search-result-module__item:active .m27-search-result-module__content h3,
  .m27-search-result-module .m27-search-result-module__item:active .m27-search-result-module__content h3 .m27-search-result-module__content__highlight,
  .m27-search-result-module .m27-search-result-module__item:active .m27-search-result-module__content .m27-search-result-module__actions {
    color: #dc281e; }

@media only screen and (min-width: 641px) {
  .m27-search-result-module .m27-search-result-module__item {
    display: table;
    table-layout: fixed; }
    .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__image-preview,
    .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content {
      display: table-cell;
      vertical-align: top; }
    .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__image-preview {
      width: 25%;
      padding-right: 1.25rem; }
      .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__image-preview img {
        width: 100%; }
    .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content {
      width: 75%;
      padding: 0; }
      .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content h3 {
        margin-top: -0.35rem;
        font-size: 1.4rem; }
      .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content .m27-search-result-module__actions {
        display: block;
        font-size: 0.8rem; } }

@media only screen and (min-width: 1025px) {
  .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content {
    position: relative;
    padding-right: 15%; }
    .m27-search-result-module .m27-search-result-module__item .m27-search-result-module__content .m27-search-result-module__actions {
      line-height: 1em; } }

.touch .m27-search-result-module .m27-search-result-module__item:hover .m27-search-result-module__content h3,
.touch .m27-search-result-module .m27-search-result-module__item:hover .m27-search-result-module__content .m27-search-result-module__actions, .touch .m27-search-result-module .m27-search-result-module__item:focus .m27-search-result-module__content h3,
.touch .m27-search-result-module .m27-search-result-module__item:focus .m27-search-result-module__content .m27-search-result-module__actions, .touch .m27-search-result-module .m27-search-result-module__item:active .m27-search-result-module__content h3,
.touch .m27-search-result-module .m27-search-result-module__item:active .m27-search-result-module__content .m27-search-result-module__actions {
  color: inherit; }

/* M28 Pagination Module
##################################################################################################################### */
.m28-pagination-module {
  display: none;
  float: left ;
  width: 100%;
  padding: 1rem 0;
  font-size: 0.8rem; }
  .m28-pagination-module.product-explorer {
    display: block; }
  .m28-pagination-module .m28-pagination-module__pagination {
    margin: 0;
    padding: 0;
    text-align: center; }
    .m28-pagination-module .m28-pagination-module__pagination li, .m28-pagination-module .m28-pagination-module__pagination a {
      display: inline-block;
      vertical-align: middle; }
    .m28-pagination-module .m28-pagination-module__pagination a {
      padding: .25rem .5rem;
      color: black;
      font-weight: 400; }
      .m28-pagination-module .m28-pagination-module__pagination a:hover, .m28-pagination-module .m28-pagination-module__pagination a:focus {
        -webkit-border-radius: 3px;
                border-radius: 3px;
        background: #e6e6e6; }
      @media only screen and (min-width: 641px) {
        .m28-pagination-module .m28-pagination-module__pagination a {
          padding: .25rem 1rem; } }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__page--current a {
      font-weight: 600;
      color: #dc281e; }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__page--unavailable a,
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--unavailable a {
      color: #b4b4b4 !important; }
      .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__page--unavailable a:hover, .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__page--unavailable a:focus,
      .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--unavailable a:hover,
      .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--unavailable a:focus {
        background: none;
        cursor: default; }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow a {
      margin-top: -.1rem;
      color: #dc281e;
      font-size: 1rem; }
      .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow a:before, .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow a:after {
        margin: 0 !important;
        padding: 0; }
      .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow a span {
        display: inline-block;
        width: 0;
        text-indent: -9999px; }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--first a:before, .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--first a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--first a:before {
      content: "";
      margin-right: .3em; }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--last a:before, .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--last a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--last a:after {
      content: "";
      margin-left: .3em; }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--previous a:before, .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--previous a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--previous a:before {
      content: "";
      margin-right: .3em; }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--next a:before, .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--next a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__arrow--next a:after {
      content: "";
      margin-left: .3em; }
    .m28-pagination-module .m28-pagination-module__pagination .m28-pagination-module__pagination__page--hidden {
      display: none; }

/* M29 Call To Action Module
##################################################################################################################### */
.m29-call-to-action-module {
  text-align: center; }
  .m29-call-to-action-module.m29-call-to-action-module--standalone {
    margin: 1.5rem 0; }

/* M30 Anchor Navigation Module
##################################################################################################################### */
.m30-anchor-navigation-module {
  position: relative;
  padding: 0; }
  .m30-anchor-navigation-module .m30-anchor-navigation-module__list {
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    background: white; }
    .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item {
      display: block;
      color: #585858; }
      .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item a {
        display: block;
        padding: .35rem 0;
        color: #585858; }
        .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item a:before, .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item a:after {
          font-family: "fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
        .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item a:before {
          content: "";
          margin-right: .3em; }
        .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item a:before {
          position: relative;
          top: -.1rem;
          font-size: .65rem;
          color: #dc281e; }
        .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item a:hover {
          color: #dc281e; }
      .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item.m30-anchor-navigation-module__list__item--active a {
        color: #dc281e; }
      @media only screen and (min-width: 1025px) {
        .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item {
          display: inline-block; }
          .m30-anchor-navigation-module .m30-anchor-navigation-module__list .m30-anchor-navigation-module__list__item a {
            display: inline-block;
            padding: .25rem 1.25rem; } }
    @media only screen and (min-width: 1025px) {
      .m30-anchor-navigation-module .m30-anchor-navigation-module__list {
        border-top: 1px solid #d7d7d7;
        border-bottom: 1px solid #d7d7d7;
        font-size: 0.8rem;
        text-align: center; } }
  @media only screen and (min-width: 1025px) {
    .m30-anchor-navigation-module .m30-anchor-navigation-module__list--fixed {
      position: fixed;
      z-index: 840;
      top: 0;
      right: 0;
      left: 0;
      margin: 0;
      border-top: 0; } }
  .m30-anchor-navigation-module .m30-anchor-navigation-module__spacer {
    height: 0; }

/* M32 Image
##################################################################################################################### */
.m32-image-module .m32-image-module__container {
  position: relative;
  display: inline-block; }
  .m32-image-module .m32-image-module__container img {
    width: 100%; }

.m32-image-module.m32-image-module--left {
  text-align: left; }

.m32-image-module.m32-image-module--center {
  text-align: center; }

.m32-image-module.m32-image-module--right {
  text-align: right; }

.m32-image-module .m32-image-module__button {
  padding-top: 1rem; }

/* M33 Breadcrumbs
##################################################################################################################### */
.m33-breadcrumbs-module {
  display: none;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  font-weight: 400;
  font-size: .6rem;
  background: white; }
  .m33-breadcrumbs-module .m33-breadcrumbs-module__item {
    display: inline-block;
    color: #8c8c8c; }
    .m33-breadcrumbs-module .m33-breadcrumbs-module__item:before, .m33-breadcrumbs-module .m33-breadcrumbs-module__item:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m33-breadcrumbs-module .m33-breadcrumbs-module__item:after {
      content: "";
      margin-left: .3em; }
    .m33-breadcrumbs-module .m33-breadcrumbs-module__item:after {
      position: relative;
      top: .1rem;
      font-size: .85rem;
      color: #585858; }
    .m33-breadcrumbs-module .m33-breadcrumbs-module__item a,
    .m33-breadcrumbs-module .m33-breadcrumbs-module__item span {
      display: inline-block;
      padding: .15rem .35rem;
      color: #b4b4b4;
      -webkit-transition: all .12s ease-in-out;
              transition: all .12s ease-in-out; }
    .m33-breadcrumbs-module .m33-breadcrumbs-module__item:first-child a {
      padding-left: 0; }
    .m33-breadcrumbs-module .m33-breadcrumbs-module__item:last-child a {
      padding-right: 0; }
    .m33-breadcrumbs-module .m33-breadcrumbs-module__item:last-child:after {
      display: none; }
  .m33-breadcrumbs-module .m33-breadcrumbs-module__item__disabled {
    pointer-events: none;
    cursor: default; }
  .m33-breadcrumbs-module .m33-breadcrumbs-module__item__active a {
    font-weight: 600;
    color: #8c8c8c;
    cursor: pointer; }
    .m33-breadcrumbs-module .m33-breadcrumbs-module__item__active a:hover, .m33-breadcrumbs-module .m33-breadcrumbs-module__item__active a:focus, .m33-breadcrumbs-module .m33-breadcrumbs-module__item__active a:active {
      color: #dc281e; }
  .m33-breadcrumbs-module.m33-breadcrumbs-module--top {
    border-top: 0; }
  .m33-breadcrumbs-module.m33-breadcrumbs-module--bottom {
    border-bottom: 0; }
  @media only screen and (min-width: 1025px) {
    .m33-breadcrumbs-module {
      width: 100%;
      display: block; } }

/* M34 Search Field Module
##################################################################################################################### */
.m34-search-field-module {
  position: relative; }
  .m34-search-field-module button:focus {
    outline: none; }
  .show .m34-search-field-module .m34-search-field-module__toggler {
    display: none; }
  .m34-search-field-module .m34-search-field-module__toggler {
    position: relative;
    display: none;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent; }
    .m34-search-field-module .m34-search-field-module__toggler:before, .m34-search-field-module .m34-search-field-module__toggler:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m34-search-field-module .m34-search-field-module__toggler:before {
      content: "";
      margin-right: .3em; }
    .m34-search-field-module .m34-search-field-module__toggler:before {
      position: relative;
      z-index: 10;
      font-size: 0.75rem;
      margin: 0 auto; }
    .m34-search-field-module .m34-search-field-module__toggler span {
      display: none; }
    .m34-search-field-module .m34-search-field-module__toggler.m34-search-field-module__toggler--active {
      background-color: white;
      color: #dc281e;
      border-left-color: #e1e1e1;
      border-right-color: #e1e1e1; }
  .m34-search-field-module .m34-search-field-module__container {
    position: relative;
    display: block;
    padding: 15px;
    border-top: 1px solid #d7d7d7;
    padding: .5rem 1rem;
    border: 0;
    margin: 0 auto 30px;
    max-width: 661px; }
    .m34-search-field-module .m34-search-field-module__container:before, .m34-search-field-module .m34-search-field-module__container:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m34-search-field-module .m34-search-field-module__container:before {
      content: "";
      margin-right: .3em; }
    .m34-search-field-module .m34-search-field-module__container:before {
      position: absolute;
      top: 1.05rem;
      right: 1rem;
      z-index: 10;
      font-size: 1rem; }
    @media screen and (min-width: 710px) {
      .m34-search-field-module .m34-search-field-module__container {
        padding: .5rem 0; } }
    @media only screen and (min-width: 1025px) {
      .m34-search-field-module .m34-search-field-module__container {
        max-width: 661px;
        margin: 0 auto 30px auto;
        padding: 0;
        margin: 30px auto; } }
    .m34-search-field-module .m34-search-field-module__container:before {
      display: none; }
    .m34-search-field-module .m34-search-field-module__container form {
      margin: 0; }
    .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__input {
      position: relative;
      padding: 4px;
      width: 100%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      margin: 0;
      padding: 0.25rem 2rem 0.25rem 0.5rem;
      -webkit-border-radius: 4px;
              border-radius: 4px;
      border: 1px solid #b9b9b9;
      height: auto;
      font-size: .8rem;
      line-height: 1rem;
      color: black; }
      .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__input::-webkit-search-cancel-button {
        -webkit-appearance: none; }
      @media only screen and (max-width: 1024px) {
        .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__input {
          padding: 0.5rem; }
          .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__input + .m34-search-field-module__container__submit {
            top: 20px; }
            .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__input + .m34-search-field-module__container__submit:before {
              font-size: 1rem; } }
    .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__submit {
      right: 1.5rem;
      background: none;
      margin: 0;
      padding: 0;
      position: absolute;
      border-color: #bebfc0;
      top: 0; }
      .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__submit:before, .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__submit:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__submit:before {
        content: "";
        margin-right: .3em; }
      @media screen and (min-width: 710px) {
        .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__submit {
          right: 0.5rem; } }
      @media only screen and (min-width: 1025px) {
        .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__submit {
          top: 6px; } }
      .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__submit:before {
        position: relative;
        z-index: 10;
        font-size: 0.75rem;
        color: black; }
      .m34-search-field-module .m34-search-field-module__container .m34-search-field-module__container__submit span {
        display: none; }

.m34-search-field-module__overlay {
  z-index: 800;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5); }

/* M35 Search Result Counter Module
##################################################################################################################### */
.m35-search-result-counter-module {
  padding: 1rem 0; }
  .m35-search-result-counter-module .m35-search-result-counter-module__result-hint {
    margin: 0; }
  .m35-search-result-counter-module .m35-search-result-counter-module__text-highlight {
    display: inline-block;
    padding: 0 .2rem;
    line-height: 1.1em;
    background: gainsboro; }
  .m35-search-result-counter-module .m35-search-result-counter-module__count {
    font-weight: 300;
    color: #555555; }

/* M38
##################################################################################################################### */
/* M39 Alert Module
##################################################################################################################### */
.m39-alert-module .m39-alert-module__inner {
  margin: 1rem 0;
  padding: 1rem;
  font-weight: 600;
  border-top: 1px solid #dc281e;
  border-bottom: 1px solid #dc281e;
  text-align: center;
  color: #dc281e; }
  .m39-alert-module .m39-alert-module__inner p, .m39-alert-module .m39-alert-module__inner ul, .m39-alert-module .m39-alert-module__inner ol {
    margin-bottom: 0; }

.m39-alert-module .m39-alert-module_inner__highlight {
  padding: 0 .15rem;
  background: rgba(220, 40, 30, 0.1); }

/* M42 Category Link Module
##################################################################################################################### */
.m42-category-link-module__list {
  padding: 1.5rem 0;
  background: whitesmoke; }

.m42-category-link-module__list__item {
  color: black;
  display: table; }
  .m42-category-link-module__list__item .item-image {
    width: auto;
    height: auto;
    max-width: 45px;
    max-height: 40px;
    display: table-cell;
    vertical-align: middle; }
    @media only screen and (min-width: 1025px) {
      .m42-category-link-module__list__item .item-image {
        max-width: 90px;
        max-height: 80px;
        margin-right: .5em; } }
  .m42-category-link-module__list__item .item-arrow {
    color: #dc281e;
    display: table-cell;
    vertical-align: top;
    position: relative;
    top: 5px; }
    .m42-category-link-module__list__item .item-arrow:before {
      text-align: right; }
  .m42-category-link-module__list__item .item-text {
    margin: 0;
    display: table-cell;
    vertical-align: top;
    position: relative;
    top: 5px; }
  @media only screen and (min-width: 1025px) {
    .m42-category-link-module__list__item .item-text,
    .m42-category-link-module__list__item .item-arrow {
      vertical-align: middle;
      top: 0; } }

.m42-category-link-module__overview {
  padding: 1.5rem 0;
  background: #5a5a5a;
  text-align: center; }
  .m42-category-link-module__overview h4 {
    color: white; }
  .m42-category-link-module__overview .button {
    margin-bottom: 0; }

/* M45 Drilldown
##################################################################################################################### */
.m45-drilldown-module li > a.m45-drilldown-module__link:before, .m45-drilldown-module li > a.m45-drilldown-module__link:after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.m45-drilldown-module li > a.m45-drilldown-module__link:before {
  content: "";
  margin-right: .3em; }

.m45-drilldown-module li > a.m45-drilldown-module__link--drilldown:before, .m45-drilldown-module li > a.m45-drilldown-module__link--drilldown:after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.m45-drilldown-module li > a.m45-drilldown-module__link--drilldown:after {
  content: "";
  margin-left: .3em; }

.m45-drilldown-module li:hover > ul, .m45-drilldown-module li:focus > ul, .m45-drilldown-module li:active > ul {
  display: block; }

/* M50 Product Detail with Table Modul
##################################################################################################################### */
.m50-product-detail-with-table-module {
  padding: 60px 0; }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick {
    position: relative;
    border: 1px solid #d9d9d9;
    width: 100%;
    position: relative; }
    @media only screen and (min-width: 1025px) {
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick {
        width: 85%;
        margin: 0 auto; } }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__container {
    position: relative; }
  @media only screen and (max-width: 1024px) {
    .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__arrows {
      position: absolute;
      width: 100%;
      bottom: 0;
      height: 70px; } }
  .m50-product-detail-with-table-module .slick-list {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__fancybox-expand {
    top: 0;
    right: 0;
    position: absolute;
    border-bottom: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    padding: 5px;
    width: auto;
    height: auto; }
    .m50-product-detail-with-table-module .m50-product-detail-with-table-module__fancybox-expand .m50-product-detail-with-table-module__fancybox-expand-icon {
      background-image: url("../assets/images/sprite.png");
      background-position: -142px -171px;
      background-repeat: no-repeat;
      width: 18px;
      height: 18px;
      display: block; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .m50-product-detail-with-table-module .m50-product-detail-with-table-module__fancybox-expand .m50-product-detail-with-table-module__fancybox-expand-icon {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__dots {
    position: relative;
    top: -1px;
    height: 70px;
    border: 1px solid #d9d9d9; }
    @media only screen and (min-width: 1025px) {
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__dots {
        width: 85%;
        margin: 0 auto; } }
    .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__dots .slick-dots {
      bottom: 18px;
      background-color: #d9d9d9; }
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__dots .slick-dots li button {
        background: white; }
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__dots .slick-dots li.slick-active button {
        background: #b7b7b7;
        opacity: 0.75; }
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__dots .slick-dots button:focus {
        outline: none; }
  @media only screen and (max-width: 1024px) {
    .m50-product-detail-with-table-module .slick-prev,
    .m50-product-detail-with-table-module .slick-next {
      top: 50%;
      margin-top: -19px; } }
  .m50-product-detail-with-table-module .slick-prev {
    left: 0;
    background-image: url("../assets/images/sprite.png");
    background-position: -230px -133px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m50-product-detail-with-table-module .slick-prev {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
    @media only screen and (max-width: 1024px) {
      .m50-product-detail-with-table-module .slick-prev {
        left: 15px; } }
  .m50-product-detail-with-table-module .slick-next {
    right: 0;
    background-image: url("../assets/images/sprite.png");
    background-position: -210px -133px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m50-product-detail-with-table-module .slick-next {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
    @media only screen and (max-width: 1024px) {
      .m50-product-detail-with-table-module .slick-next {
        right: 15px; } }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__item {
    position: relative;
    overflow: hidden;
    outline: none;
    float: left ; }
    .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__item:focus {
      outline: none; }
    .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__item img {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      padding: 1rem; }
    .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__item:after {
      display: block;
      content: "";
      width: 100%;
      height: 0;
      padding-bottom: 100%; }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item {
    width: 90%;
    margin: 30px auto 0 auto; }
    @media only screen and (min-width: 1025px) {
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item {
        width: 85%; } }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__actions {
    margin-bottom: 2rem;
    padding-left: 0.75rem; }
    @media only screen and (min-width: 1025px) {
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__actions {
        padding-left: 2rem; } }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__table-indicator {
    font-size: 0.6rem; }
    .m50-product-detail-with-table-module .m50-product-detail-with-table-module__table-indicator .m50-product-detail-with-table-module__table-indicator__text {
      display: none; }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__table-legend {
    padding: 0 0 8px 8px;
    font-size: .7rem; }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item {
    margin-bottom: 3rem; }
    @media only screen and (min-width: 641px) {
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item {
        margin-bottom: 2rem; } }
    .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description {
      margin: 0;
      padding: .5rem 0;
      border-bottom: 1px solid #d9d9d9; }
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description:first-child {
        border-top: 1px solid #d9d9d9; }
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description:last-child {
        margin-bottom: 1rem; }
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__text {
        font-size: .95rem;
        font-weight: 600;
        line-height: 1.25rem;
        display: block;
        color: black; }
      .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__link {
        white-space: nowrap; }
        .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__link a {
          font-size: 0.8rem; }
          .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__link a:before, .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__link a:after {
            font-family: "fontello";
            font-style: normal;
            font-weight: normal;
            speak: none;
            display: inline-block;
            text-decoration: inherit;
            text-align: center;
            /* opacity: .8; */
            /* For safety - reset parent styles, that can break glyph codes*/
            font-variant: normal;
            text-transform: none;
            /* fix buttons height, for twitter bootstrap */
            line-height: 1em;
            /* you can be more comfortable with increased icons size */
            /* font-size: 120%; */
            /* Font smoothing. That was taken from TWBS */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Uncomment for 3D effect */
            /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
          .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__link a:after {
            content: "";
            margin-left: .3em; }
          .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__link a:after, .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__link a:before {
            font-size: 0.6rem; }
      @media only screen and (min-width: 641px) {
        .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description {
          display: table;
          width: 100%; }
          .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__text,
          .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__link {
            display: table-cell;
            vertical-align: bottom; }
          .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__text {
            padding-right: 1rem; }
          .m50-product-detail-with-table-module .m50-product-detail-with-table-module__download__item .m50-product-detail-with-table-module__download__item__description .m50-product-detail-with-table-module__download__item__link {
            text-align: right; } }
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module,
  .m50-product-detail-with-table-module .m50-product-detail-with-table-module__slick__item__caption {
    position: absolute;
    left: 0; }
  .m50-product-detail-with-table-module .carousel__slick__item__img {
    max-width: 100%;
    height: auto;
    display: inline; }
  @media only screen and (max-width: 1024px) {
    .m50-product-detail-with-table-module .m50-product-detail-with-table-module__accordion-column {
      padding: 0; } }
  .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation .m50-product-detail-with-table-module__navigation__toggler {
    font-weight: 600; }
    .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation .m50-product-detail-with-table-module__navigation__toggler h4 {
      font-size: 0.9rem;
      margin: 0;
      padding: 0;
      display: inline-block; }
    @media only screen and (max-width: 1024px) {
      .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation .m50-product-detail-with-table-module__navigation__toggler {
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #d9d9d9; }
        .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation .m50-product-detail-with-table-module__navigation__toggler:before, .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation .m50-product-detail-with-table-module__navigation__toggler:after {
          font-family: "fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
        .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation .m50-product-detail-with-table-module__navigation__toggler:before {
          content: "";
          margin-right: .3em; }
        .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation .m50-product-detail-with-table-module__navigation__toggler:before {
          color: #dc281e;
          margin-right: 0.5em; } }
    @media only screen and (min-width: 1025px) {
      .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation .m50-product-detail-with-table-module__navigation__toggler {
        cursor: default;
        padding: 0 0 8px 8px; }
        .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation .m50-product-detail-with-table-module__navigation__toggler h4 {
          font-size: 0.8rem;
          line-height: 0.8rem; } }
  @media only screen and (max-width: 1024px) {
    .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation.active > .m50-product-detail-with-table-module__navigation__toggler h4 {
      color: #dc281e; }
    .m50-product-detail-with-table-module .accordion .m50-product-detail-with-table-module__navigation.active > .m50-product-detail-with-table-module__navigation__toggler:before {
      content: "\e807"; } }
  @media only screen and (max-width: 1024px) {
    .m50-product-detail-with-table-module .accordion .content.active {
      padding-bottom: 25px;
      background-color: white;
      background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(90%, white), to(#f4f4f4));
      background-image: linear-gradient(white, white 90%, #f4f4f4 100%); } }
  @media only screen and (max-width: 1024px) {
    .m50-product-detail-with-table-module .accordion .content {
      padding: 0 1rem; } }
  @media only screen and (min-width: 1025px) {
    .m50-product-detail-with-table-module .accordion .content {
      padding-bottom: 30px !important;
      display: block !important;
      max-height: none !important; } }
  .m50-product-detail-with-table-module .table table {
    margin-bottom: 12px; }
  .m50-product-detail-with-table-module .table p {
    color: black;
    font-size: 0.8rem;
    line-height: 1rem;
    margin: 0; }
    @media only screen and (min-width: 1025px) {
      .m50-product-detail-with-table-module .table p {
        padding-left: 8px; } }

/* M51 Product News module
##################################################################################################################### */
.m51-product-news-module {
  padding: 1.5rem 0; }
  .m51-product-news-module .m51-product-news-module__title {
    margin-bottom: 1rem;
    text-align: center; }
  .m51-product-news-module .m51-product-news-module__button-wrap {
    text-align: center; }
  .m51-product-news-module .m51-product-news-module__image {
    text-align: center; }
    .m51-product-news-module .m51-product-news-module__image img {
      margin-bottom: 1rem; }
  @media only screen and (min-width: 1025px) {
    .m51-product-news-module {
      padding: 4.5rem 0; }
      .m51-product-news-module .m51-product-news-module__inner {
        display: table;
        width: 100%;
        table-layout: fixed; }
      .m51-product-news-module .m51-product-news-module__image,
      .m51-product-news-module .m51-product-news-module__text {
        display: table-cell;
        width: 50%; }
      .m51-product-news-module .m51-product-news-module__image {
        vertical-align: top;
        text-align: right; }
      .m51-product-news-module .m51-product-news-module__text {
        vertical-align: middle;
        padding-top: 50px;
        padding-left: 3rem; }
      .m51-product-news-module .m51-product-news-module__button-wrap {
        text-align: left; } }

/* M53-1 Teaser Single Link Module
##################################################################################################################### */
.m53-1_teaser-single-link-module {
  margin: 1.5rem 0; }
  .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item {
    position: relative;
    margin: 0.75rem 0;
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding-top: 60%; }
    .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item .m53-1_teaser-single-link-module__image {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
      .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item .m53-1_teaser-single-link-module__image img {
        width: 100%; }
    .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item .m53-1_teaser-single-link-module__overlay {
      position: absolute;
      bottom: 20px;
      width: 100%; }
      .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item .m53-1_teaser-single-link-module__overlay h2, .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item .m53-1_teaser-single-link-module__overlay p {
        color: black; }
      .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item .m53-1_teaser-single-link-module__overlay h2 {
        margin-bottom: 1.25rem; }
      .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item .m53-1_teaser-single-link-module__overlay .button--cta {
        margin-bottom: 0;
        background-color: rgba(0, 0, 0, 0.1) !important; }
    .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item .m53-1_teaser-single-link-module__lead {
      display: none;
      max-width: 75%;
      margin: 0 auto; }
    .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item.m53-1_teaser-single-link-module__item--negative h2, .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item.m53-1_teaser-single-link-module__item--negative p {
      color: white;
      text-shadow: 0 0 20px black; }
    .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item.m53-1_teaser-single-link-module__item--negative .m53-1_teaser-single-link-module__overlay .button--cta {
      background-color: rgba(0, 0, 0, 0.3) !important; }
    @media only screen and (min-width: 1025px) {
      .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item {
        margin: 1.5rem 0; }
        .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item .m53-1_teaser-single-link-module__lead {
          display: block; } }
    @media only screen and (min-width: 641px) {
      .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item.m53-1_teaser-single-link-module__item--big .m53-1_teaser-single-link-module__lead {
        display: block; } }
    @media only screen and (min-width: 1025px) {
      .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item.m53-1_teaser-single-link-module__item--big {
        padding-top: 44.44444%; }
        .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item.m53-1_teaser-single-link-module__item--big .m53-1_teaser-single-link-module__lead {
          max-width: 45%; }
        .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item.m53-1_teaser-single-link-module__item--big .m53-1_teaser-single-link-module__overlay {
          bottom: 30px; } }
    @media only screen and (min-width: 1025px) {
      .m53-1_teaser-single-link-module .m53-1_teaser-single-link-module__item.m53-1_teaser-single-link-module__item--small .m53-1_teaser-single-link-module__lead {
        display: none; } }

/* M53-2 Teaser Multiple Link Module
##################################################################################################################### */
.m53-2_teaser-multiple-link-module {
  margin: 1.5rem 0; }
  .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item {
    margin: 0.75rem 0; }
    .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__image {
      position: relative;
      height: 0;
      padding-bottom: 60%;
      overflow: hidden; }
      .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__image img,
      .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__image .m53-2_teaser-multiple-link-module__title {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto; }
      .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__image img {
        width: 100%;
        height: 100%; }
      .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__image .m53-2_teaser-multiple-link-module__title {
        text-align: center;
        display: table;
        table-layout: fixed;
        vertical-align: middle;
        width: 100%;
        height: 100%; }
        .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__image .m53-2_teaser-multiple-link-module__title h2 {
          font-weight: 600;
          vertical-align: middle;
          display: table-cell;
          color: white;
          text-shadow: 0 0 20px black; }
    .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body {
      background: whitesmoke; }
      .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul {
        margin-bottom: 0; }
        @media only screen and (min-width: 641px) {
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(6),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(6) ~ li {
            width: 50%;
            float: left ; }
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(6).m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link,
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(6) ~ li.m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link {
              border-right: 0.1rem solid #ffffff; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(9),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(10) {
            border-bottom: 0; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(7),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(7) ~ li {
            width: 50%;
            float: left ; }
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(7).m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link,
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(7) ~ li.m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link {
              border-right: 0.1rem solid #ffffff; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(9),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(10) {
            border-bottom: 0; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(8),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(8) ~ li {
            width: 50%;
            float: left ; }
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(8).m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link,
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(8) ~ li.m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link {
              border-right: 0.1rem solid #ffffff; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(9),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(10) {
            border-bottom: 0; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(9),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(9) ~ li {
            width: 50%;
            float: left ; }
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(9).m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link,
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(9) ~ li.m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link {
              border-right: 0.1rem solid #ffffff; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(9),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(10) {
            border-bottom: 0; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(10),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(10) ~ li {
            width: 50%;
            float: left ; }
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(10).m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link,
            .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:first-child:nth-last-child(10) ~ li.m23-linklist-module__item:nth-child(odd) .m23-linklist-module__link {
              border-right: 0.1rem solid #ffffff; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(9),
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul .m23-linklist-module__item:nth-child(10) {
            border-bottom: 0; }
          .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item .m53-2_teaser-multiple-link-module__body .m23-linklist-module ul::after {
            clear: both;
            content: "";
            display: table; } }
    @media only screen and (min-width: 1025px) {
      .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item.m53-2_teaser-multiple-link-module__item--big::after {
        clear: both;
        content: "";
        display: table; }
      .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item.m53-2_teaser-multiple-link-module__item--big .m53-2_teaser-multiple-link-module__image,
      .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item.m53-2_teaser-multiple-link-module__item--big .m53-2_teaser-multiple-link-module__body {
        height: 16.65rem;
        overflow: hidden;
        float: left ;
        width: 50%; }
      .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item.m53-2_teaser-multiple-link-module__item--big .m53-2_teaser-multiple-link-module__image {
        padding: 0; }
        .m53-2_teaser-multiple-link-module .m53-2_teaser-multiple-link-module__item.m53-2_teaser-multiple-link-module__item--big .m53-2_teaser-multiple-link-module__image img {
          position: relative;
          bottom: auto;
          left: auto;
          right: auto;
          top: auto;
          margin-right: 0.75rem; } }

/* M53-3 Teaser Text Single Link Module
##################################################################################################################### */
.m53-3-teaser-text-single-link-module {
  margin: 1.5rem 0; }
  .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item {
    position: relative;
    margin: 0.75rem 0;
    background: whitesmoke; }
    @media only screen and (min-width: 1025px) {
      .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item {
        margin: 1.5rem 0; } }
    .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__title {
      text-align: center;
      padding: 1em;
      border-bottom: 1px solid white; }
      .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__title h2, .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__title h3 {
        margin-bottom: 0;
        font-size: 1.1rem; }
    .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__image {
      position: relative;
      height: 0;
      padding-bottom: 60%;
      overflow: hidden; }
      .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__image img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 100%;
        height: 100%; }
      .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__image.m53-3-teaser-text-single-link-module__image--transparent img {
        max-height: 100%;
        max-width: 100%;
        padding: 1em 10%; }
    .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__body .m53-3-teaser-text-single-link-module__content {
      font-size: 0.8rem;
      line-height: 1.5em;
      padding: 2em 1em 0; }
      @media only screen and (min-width: 1025px) {
        .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__body .m53-3-teaser-text-single-link-module__content {
          padding: 1.5rem 1.5rem 0; } }
    .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__body .m53-3-teaser-text-single-link-module__actions {
      text-align: center;
      padding: 0 1em 2em; }
      @media only screen and (min-width: 1025px) {
        .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__body .m53-3-teaser-text-single-link-module__actions {
          padding: 1.5rem; } }
      .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item .m53-3-teaser-text-single-link-module__body .m53-3-teaser-text-single-link-module__actions .button {
        margin-bottom: 0; }
    @media only screen and (min-width: 641px) {
      .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__image.m53-3-teaser-text-single-link-module__image--small {
        display: none;
        visibility: hidden; } }
    .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__image.m53-3-teaser-text-single-link-module__image--medium-up {
      display: none;
      visibility: hidden; }
      @media only screen and (min-width: 641px) {
        .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__image.m53-3-teaser-text-single-link-module__image--medium-up {
          display: table-cell;
          visibility: visible; } }
    @media only screen and (min-width: 641px) {
      .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big {
        display: table;
        table-layout: fixed; }
        .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__title {
          text-align: left;
          padding: 0 1em;
          border-bottom: 0; } }
    @media only screen and (min-width: 641px) and (min-width: 641px) {
      .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__title {
        padding: 0 1.5rem; } }
    @media only screen and (min-width: 641px) {
          .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__title h2, .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__title h3 {
            margin-bottom: 1rem;
            font-size: 1.25rem; }
        .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__image,
        .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__body {
          display: table-cell;
          width: 50%;
          vertical-align: middle; }
        .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__body {
          padding: 2em 0; }
          .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__body .m53-3-teaser-text-single-link-module__content {
            padding-top: 0; }
          .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__body .m53-3-teaser-text-single-link-module__actions {
            padding-bottom: 0; }
        .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__image {
          height: auto;
          padding: 0; }
          .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__image img {
            position: relative;
            bottom: auto;
            left: auto;
            right: auto;
            top: auto;
            height: auto;
            margin-right: 0.75rem; }
        .m53-3-teaser-text-single-link-module .m53-3-teaser-text-single-link-module__item.m53-3-teaser-text-single-link-module__item--big .m53-3-teaser-text-single-link-module__actions {
          text-align: left; } }

/* M53-4 Teaser Fullbleed Text Single Link Module
##################################################################################################################### */
.m53-4-teaser-fullbleed-text-single-link-module .m53-4-teaser-fullbleed-text-single-link-module__wrapper {
  padding: 1.5rem 0 0.75rem;
  background-color: #f4f4f4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#ededed));
  background-image: linear-gradient(#f4f4f4 0%, #ededed 100%);
  text-align: center;
  overflow: hidden; }
  @media only screen and (max-width: 640px) {
    .m53-4-teaser-fullbleed-text-single-link-module .m53-4-teaser-fullbleed-text-single-link-module__wrapper .m32-image-module {
      margin: 0 -20px 0.5rem; } }
  @media only screen and (min-width: 641px) {
    .m53-4-teaser-fullbleed-text-single-link-module .m53-4-teaser-fullbleed-text-single-link-module__wrapper .m32-image-module {
      margin: 0 2.5rem; } }
  .m53-4-teaser-fullbleed-text-single-link-module .m53-4-teaser-fullbleed-text-single-link-module__wrapper .m53-4-teaser-fullbleed-text-single-link-module__body__headline {
    margin-bottom: 1.5rem; }
    @media only screen and (min-width: 1025px) {
      .m53-4-teaser-fullbleed-text-single-link-module .m53-4-teaser-fullbleed-text-single-link-module__wrapper .m53-4-teaser-fullbleed-text-single-link-module__body__headline {
        margin-bottom: 2.25rem; } }
  .m53-4-teaser-fullbleed-text-single-link-module .m53-4-teaser-fullbleed-text-single-link-module__wrapper .m53-4-teaser-fullbleed-text-single-link-module__body__copy {
    max-width: 650px;
    margin: 0 auto 2rem; }
    @media only screen and (min-width: 1025px) {
      .m53-4-teaser-fullbleed-text-single-link-module .m53-4-teaser-fullbleed-text-single-link-module__wrapper .m53-4-teaser-fullbleed-text-single-link-module__body__copy {
        margin-bottom: 1.5rem; } }
  @media only screen and (min-width: 1025px) {
    .m53-4-teaser-fullbleed-text-single-link-module .m53-4-teaser-fullbleed-text-single-link-module__wrapper {
      padding: 3rem 0 0.75rem; } }

/* M02 Stage Module with CTA
##################################################################################################################### */
.m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper {
  position: relative; }
  .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__image {
    position: relative;
    height: 384px;
    overflow: hidden; }
    .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__image img {
      display: block;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      width: auto;
      max-width: none;
      margin: 0; }
    @media only screen and (min-width: 641px) {
      .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__image {
        height: 455px; } }
    @media only screen and (min-width: 1025px) {
      .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__image {
        height: 525px; } }
    @media only screen and (min-width: 1441px) {
      .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__image {
        height: 575px; }
        .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__image img {
          min-width: 100%; } }
  .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__content {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    color: black; }
    @media only screen and (min-width: 1025px) {
      .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__content {
        bottom: 30px; } }
    .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__content .columns {
      text-align: center; }
    .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__content h2 {
      margin-bottom: 1.25rem; }
      @media only screen and (min-width: 641px) {
        .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__content h2 {
          font-size: 2rem;
          margin-bottom: 1rem; } }
    .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__content p {
      display: none; }
      @media only screen and (min-width: 641px) {
        .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__content p {
          display: block;
          margin-bottom: 1.25rem; } }
    .m53-5-teaser-fullbleed-single-link-module .m53-5-teaser-fullbleed-single-link-module__wrapper .m53-5-teaser-fullbleed-single-link-module__content .button {
      margin-bottom: 0; }

.m53-5-teaser-fullbleed-single-link-module.m53-5-teaser-fullbleed-single-link-module--negative .m53-5-teaser-fullbleed-single-link-module__content h2, .m53-5-teaser-fullbleed-single-link-module.m53-5-teaser-fullbleed-single-link-module--negative .m53-5-teaser-fullbleed-single-link-module__content p {
  color: white;
  text-shadow: 0 0 20px black; }

.m53-5-teaser-fullbleed-single-link-module.m53-5-teaser-fullbleed-single-link-module--negative .m53-5-teaser-fullbleed-single-link-module__content .button--cta {
  background-color: rgba(0, 0, 0, 0.3) !important; }

.m53-5-teaser-fullbleed-single-link-module .button--cta {
  background-color: rgba(0, 0, 0, 0.1) !important; }

/* M100 Line Module
##################################################################################################################### */
.m100-line-module {
  margin: 1.5rem 0; }
  .m100-line-module hr {
    margin: 0;
    border: 0;
    height: 1px;
    background: #b4b4b4; }
  .m100-line-module .m100-line-module__triangle {
    position: relative;
    border: inset 15px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: #b4b4b4 transparent transparent transparent;
    border-top-style: solid;
    margin: -1px auto 0; }
    .m100-line-module .m100-line-module__triangle:after {
      position: absolute;
      top: 0;
      left: 0;
      margin-top: -16px;
      margin-left: -15px;
      border: inset 15px;
      content: "";
      display: block;
      height: 0;
      width: 0;
      border-color: #ffffff transparent transparent transparent;
      border-top-style: solid; }

/* M102 Download Module
##################################################################################################################### */
.m102-download-module .m102-1-download-item-module .m102-1-download-item-module__list {
  border-top: 0; }

.m102-download-module .m102-download-module__item {
  padding: 0 0 1.5rem;
  vertical-align: top;
  width: 100%; }
  .m102-download-module .m102-download-module__item .m102-download-module__image-preview {
    padding-left: 0;
    margin-bottom: 0.5rem; }
    .m102-download-module .m102-download-module__item .m102-download-module__image-preview img {
      max-width: 130px;
      max-height: 130px;
      border: 1px solid #b7b7b7; }
  .m102-download-module .m102-download-module__item .m102-download-module__content h3 {
    font-size: 1.3rem;
    font-weight: 600; }
  .m102-download-module .m102-download-module__item .m102-download-module__content .m102-download-module__content__description {
    max-width: 800px; }
  .m102-download-module .m102-download-module__item .m102-download-module__content p {
    margin-bottom: 0; }

@media only screen and (min-width: 641px) {
  .m102-download-module .m102-download-module__item {
    padding-top: 1.5rem;
    display: table;
    table-layout: fixed;
    border-bottom: 1px solid #b7b7b7; }
    .m102-download-module .m102-download-module__item .m102-download-module__image-preview,
    .m102-download-module .m102-download-module__item .m102-download-module__content {
      display: table-cell;
      vertical-align: top; }
    .m102-download-module .m102-download-module__item .m102-download-module__image-preview {
      width: 230px; }
      .m102-download-module .m102-download-module__item .m102-download-module__image-preview img {
        max-width: 200px;
        max-height: 200px; }
    .m102-download-module .m102-download-module__item .m102-download-module__content h3 {
      font-size: 1.3rem;
      line-height: 1.3rem; } }

.m14-accordion-module .m102-download-module__item, .m106-filter-module .m102-download-module__item {
  border-bottom: 0; }

.m14-accordion-module .m102-1-download-item-module .m102-1-download-item-module__item:last-child, .m106-filter-module .m102-1-download-item-module .m102-1-download-item-module__item:last-child {
  border-bottom: 0; }

/* M102 Download Module
##################################################################################################################### */
.m102-1-download-item-module .m102-1-download-item-module__list {
  border-top: 1px solid #e1e1e1; }

.m102-1-download-item-module .m102-1-download-item-module__item {
  border-bottom: 1px solid #e1e1e1;
  display: table;
  width: 100%;
  padding: 0.65rem 0 0.25rem; }
  .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__description,
  .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__link {
    display: table-cell; }
  .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__description {
    color: black;
    font-weight: 400;
    font-size: 0.8rem; }
    @media only screen and (min-width: 641px) {
      .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__description {
        font-size: 1rem; } }
    .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__description a {
      color: black; }
  .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__link {
    vertical-align: bottom;
    text-align: right;
    font-size: 0.8rem;
    white-space: nowrap; }
    .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__link a:before, .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__link a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__link a:after {
      content: "";
      margin-left: .3em; }
    .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__link a:after, .m102-1-download-item-module .m102-1-download-item-module__item .m102-1-download-item-module__item__link a:before {
      font-size: 0.6rem; }

/* M103 Download Module
##################################################################################################################### */
@media only screen and (min-width: 641px) {
  .m103-event-teaser-module .m103-event-teaser-module__list {
    width: 100%;
    table-layout: fixed; } }

.m103-event-teaser-module .m103-event-teaser-module__item {
  display: block;
  padding: 1.5rem 0 1.15rem;
  vertical-align: top;
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
  color: #585858; }
  .m103-event-teaser-module .m103-event-teaser-module__item:first-child {
    border-top: 1px solid #e1e1e1; }
  .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__image-preview {
    padding-left: 0;
    margin-bottom: 0.9rem; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__image-preview img {
      height: 150px;
      width: auto;
      display: block; }
  .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content {
    max-width: 800px; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content h3 {
      font-size: 1.3rem;
      font-weight: 600; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__content__date {
      font-size: 0.8rem;
      display: block;
      line-height: 1em;
      margin-bottom: .5em; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__actions {
      padding-right: 0;
      color: black; }
      .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__actions:before, .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__actions:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__actions:before {
        content: "";
        margin-right: .3em; }
      .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__actions:after, .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__actions:before {
        color: #dc281e; }
  .m103-event-teaser-module .m103-event-teaser-module__item:hover .m103-event-teaser-module__content h3,
  .m103-event-teaser-module .m103-event-teaser-module__item:hover .m103-event-teaser-module__content .m103-event-teaser-module__actions {
    color: #dc281e; }

@media only screen and (min-width: 641px) {
  .m103-event-teaser-module .m103-event-teaser-module__item {
    display: table;
    table-layout: fixed; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__image-preview,
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content {
      display: table-cell;
      vertical-align: top; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__image-preview {
      width: 230px; }
      .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__image-preview img {
        height: 200px; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content h3 {
      font-size: 1.4rem; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__content__date {
      top: -1px;
      position: relative; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__actions {
      display: block;
      font-size: 0.8rem; } }

@media only screen and (min-width: 1025px) {
  .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content {
    padding-bottom: 30px;
    position: relative; }
    .m103-event-teaser-module .m103-event-teaser-module__item .m103-event-teaser-module__content .m103-event-teaser-module__actions {
      position: absolute;
      bottom: 0;
      line-height: 1em; } }

/* M104 Carousel
##################################################################################################################### */
.m104-carousel-module {
  padding: 60px 0; }
  .m104-carousel-module .slick-list,
  .m104-carousel-module .owl-list {
    width: 85%;
    margin: 0 auto; }
  .m104-carousel-module .m104-carousel-module__content {
    text-align: center; }
  .m104-carousel-module ._m104-carousel-module__slick__item,
  .m104-carousel-module ._m104-carousel-module__owl__item, .m104-carousel-module .m104-carousel-module__slick__item, .m104-carousel-module .m104-carousel-module__owl__item {
    position: relative;
    outline: none;
    float: left ; }
    .m104-carousel-module ._m104-carousel-module__slick__item:focus,
    .m104-carousel-module ._m104-carousel-module__owl__item:focus, .m104-carousel-module .m104-carousel-module__slick__item:focus, .m104-carousel-module .m104-carousel-module__owl__item:focus {
      outline: none; }
  .m104-carousel-module .m104-carousel-module__slick__item,
  .m104-carousel-module .m104-carousel-module__owl__item {
    width: 100%;
    margin-top: 20px;
    height: 210px; }
    @media only screen and (min-width: 641px) {
      .m104-carousel-module .m104-carousel-module__slick__item,
      .m104-carousel-module .m104-carousel-module__owl__item {
        height: 260px; } }
    @media only screen and (min-width: 1025px) {
      .m104-carousel-module .m104-carousel-module__slick__item,
      .m104-carousel-module .m104-carousel-module__owl__item {
        height: 290px; } }
    @media only screen and (min-width: 1441px) {
      .m104-carousel-module .m104-carousel-module__slick__item,
      .m104-carousel-module .m104-carousel-module__owl__item {
        height: 300px; } }
  .m104-carousel-module .m104-carousel-module__slick__item__wrapper,
  .m104-carousel-module .m104-carousel-module__slick__item__caption,
  .m104-carousel-module .m104-carousel-module__owl__item__wrapper,
  .m104-carousel-module .m104-carousel-module__owl__item__caption {
    position: absolute;
    left: 0; }
  .m104-carousel-module .m104-carousel-module__slick__item__wrapper,
  .m104-carousel-module .m104-carousel-module__owl__item__wrapper {
    width: 100%;
    left: 0;
    bottom: 70px; }
  .m104-carousel-module .m104-carousel-module__slick__item__img,
  .m104-carousel-module .m104-carousel-module__owl__item__img {
    max-width: 80%;
    max-height: 140px;
    height: auto;
    margin: 0 auto; }
    @media only screen and (min-width: 641px) {
      .m104-carousel-module .m104-carousel-module__slick__item__img,
      .m104-carousel-module .m104-carousel-module__owl__item__img {
        max-height: 190px; } }
    @media only screen and (min-width: 1025px) {
      .m104-carousel-module .m104-carousel-module__slick__item__img,
      .m104-carousel-module .m104-carousel-module__owl__item__img {
        max-height: 220px; } }
    @media only screen and (min-width: 1441px) {
      .m104-carousel-module .m104-carousel-module__slick__item__img,
      .m104-carousel-module .m104-carousel-module__owl__item__img {
        max-height: 290px; } }
  .m104-carousel-module .m104-carousel-module__slick__item__caption,
  .m104-carousel-module .m104-carousel-module__owl__item__caption {
    bottom: 0;
    height: 50px;
    width: 90%;
    left: 5%;
    text-align: center;
    font-size: 0.7rem;
    line-height: 0.7rem;
    margin: 0; }
    @media only screen and (min-width: 641px) {
      .m104-carousel-module .m104-carousel-module__slick__item__caption,
      .m104-carousel-module .m104-carousel-module__owl__item__caption {
        font-size: 0.75rem;
        line-height: 0.75rem; } }
    @media only screen and (min-width: 1025px) {
      .m104-carousel-module .m104-carousel-module__slick__item__caption,
      .m104-carousel-module .m104-carousel-module__owl__item__caption {
        font-size: 0.85rem;
        line-height: 0.85rem; } }
    @media only screen and (min-width: 1441px) {
      .m104-carousel-module .m104-carousel-module__slick__item__caption,
      .m104-carousel-module .m104-carousel-module__owl__item__caption {
        font-size: 0.9rem;
        line-height: 0.9rem; } }
  .m104-carousel-module .slick-prev,
  .m104-carousel-module .owl-prev {
    background-image: url("../assets/images/sprite.png");
    background-position: -230px -133px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px;
    left: 0; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m104-carousel-module .slick-prev,
      .m104-carousel-module .owl-prev {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
  .m104-carousel-module .slick-next,
  .m104-carousel-module .owl-next {
    background-image: url("../assets/images/sprite.png");
    background-position: -210px -133px;
    background-repeat: no-repeat;
    width: 20px;
    height: 38px;
    right: 0; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m104-carousel-module .slick-next,
      .m104-carousel-module .owl-next {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
  .m104-carousel-module .owl-carousel {
    padding: 0 1.5rem; }
    @media only screen and (min-width: 641px) {
      .m104-carousel-module .owl-carousel {
        padding: 0 3rem; } }

/* M105 Map Locator
##################################################################################################################### */
/* M105 Main Layout
##################################################################################################################### */
.m105-map-locator-module {
  position: relative; }

.m105-map-locator-module__box {
  position: absolute;
  z-index: 500;
  top: 0;
  right: 0;
  left: 0;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.4); }
  @media only screen and (min-width: 1025px) {
    .m105-map-locator-module__box {
      top: .75rem;
      left: 0.75rem;
      width: 50%;
      max-width: 550px; } }

.m105-map-locator-module__map-container {
  height: 100%;
  position: relative; }

/* M105 Search Form
##################################################################################################################### */
.m105-map-locator-module__search-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.4); }
  @media only screen and (min-width: 1025px) {
    .m105-map-locator-module__search-container {
      position: relative;
      -webkit-box-shadow: none;
              box-shadow: none; } }

.m105-map-locator-module__search-form {
  margin: 0;
  padding: 0; }

/* M105 Country Switch
##################################################################################################################### */
.m105-map-locator-module__country-switch {
  border-bottom: 1px solid gainsboro; }
  .m105-map-locator-module__country-switch .row-table {
    width: 100%;
    table-layout: fixed;
    line-height: 1rem; }
  .m105-map-locator-module__country-switch .table-cell {
    padding: .4rem .75rem;
    vertical-align: middle; }
    @media only screen and (min-width: 1025px) {
      .m105-map-locator-module__country-switch .table-cell {
        padding: .5rem .75rem; } }
  .m105-map-locator-module__country-switch .country-cell {
    text-align: left; }
  .m105-map-locator-module__country-switch .switch-cell {
    text-align: right; }
  .m105-map-locator-module__country-switch .m105-map-locator-module__country-switch__current-country {
    font-size: .7rem; }
    @media only screen and (min-width: 1025px) {
      .m105-map-locator-module__country-switch .m105-map-locator-module__country-switch__current-country {
        font-size: 0.8rem; } }
  .m105-map-locator-module__country-switch .m105-map-locator-module__country-switch__switch-country {
    font-size: .7rem;
    color: black; }
    .m105-map-locator-module__country-switch .m105-map-locator-module__country-switch__switch-country:before, .m105-map-locator-module__country-switch .m105-map-locator-module__country-switch__switch-country:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-map-locator-module__country-switch .m105-map-locator-module__country-switch__switch-country:before {
      content: "";
      margin-right: .3em; }
    .m105-map-locator-module__country-switch .m105-map-locator-module__country-switch__switch-country:before, .m105-map-locator-module__country-switch .m105-map-locator-module__country-switch__switch-country:after {
      color: #dc281e; }

/* M105 Search Filter
##################################################################################################################### */
.m105-map-locator-module__search__filter {
  padding: .25rem 1.5rem;
  border-bottom: 1px solid gainsboro; }
  @media only screen and (min-width: 1025px) {
    .m105-map-locator-module__search__filter {
      padding: 0; } }
  .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger {
    font-size: .75rem;
    font-weight: 600;
    text-align: center;
    color: black;
    cursor: pointer; }
    .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger:before, .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger:before {
      content: "";
      margin-right: .3em; }
    .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger:before {
      color: #dc281e; }
    .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger.m105-map-locator-module__search__filter__trigger--active {
      color: #dc281e; }
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger.m105-map-locator-module__search__filter__trigger--active:before, .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger.m105-map-locator-module__search__filter__trigger--active:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger.m105-map-locator-module__search__filter__trigger--active:before {
        content: "";
        margin-right: .3em; }
    @media only screen and (min-width: 1025px) {
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__trigger {
        display: none; } }
  .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    font-size: 0; }
    .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list.m105-map-locator-module__search__filter__list--open {
      height: auto; }
    .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item {
      list-style: none;
      text-align: center; }
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item label {
        display: block;
        margin: 0 0 0.5rem 0;
        padding: .1rem;
        color: #585858;
        font-size: .6rem;
        line-height: 1.2rem;
        border: 1px solid #878787;
        cursor: pointer; }
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item:first-child label {
        margin-top: .5rem; }
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item input[type="checkbox"] {
        position: absolute;
        top: -100px;
        left: -100px; }
        .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item input[type="checkbox"]:checked + label {
          color: white;
          border-color: #585858;
          background: #585858; }
          .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item input[type="checkbox"]:checked + label .icon {
            display: none; }
          .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item input[type="checkbox"]:checked + label .icon-active {
            display: inline-block; }
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item i {
        position: relative;
        top: -.05rem;
        margin-right: 0.2rem;
        vertical-align: middle;
        font-size: 1.2em; }
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item .icon,
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item .icon-active {
        display: inline-block;
        vertical-align: middle;
        width: 17px;
        height: 17px;
        margin-right: 0.2rem;
        background-size: 100% 100%; }
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item .icon-active {
        display: none; }
      @media only screen and (min-width: 1025px) {
        .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item {
          display: inline-block;
          width: 33.33%;
          padding: 0 0.75rem 0.75rem 0; }
          .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item label,
          .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item:first-child label {
            margin: 0; }
          .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list .m105-map-locator-module__search__filter__list__item:nth-child(3n) {
            padding-right: 0; } }
    @media only screen and (min-width: 1025px) {
      .m105-map-locator-module__search__filter .m105-map-locator-module__search__filter__list {
        height: auto;
        padding: 0.75rem 0.75rem 0 0.75rem; } }

/* M105 Search Bar
##################################################################################################################### */
.m105-map-locator-module__search__bar {
  position: relative;
  padding: .5rem .75rem; }
  .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__wrapper {
    position: relative; }
  .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__input {
    margin: 0;
    padding: 0.3rem 4rem 0.35rem 0.4rem;
    height: 35px;
    border: 1px solid #b4b4b4;
    -webkit-border-radius: 7px;
            border-radius: 7px;
    font-size: .7rem;
    outline: none;
    background: transparent;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
    .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__input:hover, .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__input:focus, .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__input:active {
      outline: none;
      background: transparent; }
  .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__get-location {
    position: absolute;
    top: .3rem;
    right: 2rem;
    font-size: 1.2rem;
    line-height: 1rem; }
    .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__get-location:before, .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__get-location:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__get-location:before {
      content: "";
      margin-right: .3em; }
    .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__get-location:focus {
      outline: 0; }
    .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__get-location:before {
      margin: 0;
      padding: 0; }
  .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__submit {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 33px;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1rem;
    background-color: #dc281e; }
    .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__submit:before, .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__submit:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__submit:before {
      content: "";
      margin-right: .3em; }
    .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__submit:before {
      margin: 0;
      padding: 0; }
    .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__submit:hover, .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__submit:focus, .m105-map-locator-module__search__bar .m105-map-locator-module__search__bar__submit:active {
      background: #e33a31; }

/* M105 Search Hint
##################################################################################################################### */
.m105-map-locator-module__search-hint {
  position: relative;
  z-index: 100;
  display: none;
  padding: 1rem 0.75rem;
  font-size: 0.7rem;
  line-height: 1.2rem;
  text-align: center;
  color: white;
  background: #646464; }
  .m105-map-locator-module__search-hint:after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    height: 400%;
    width: 100%;
    background: #646464; }
  .m105-map-locator-module__search-hint .m105-map-locator-module__search-hint__show-all {
    margin: 0; }

/* M105 Result Loader
##################################################################################################################### */
.m105-map-locator-module__result-loader-container,
.loader-container {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 2rem 0;
  background-color: rgba(255, 255, 255, 0.9); }

.m105-map-locator-module__result-loader-container__loader,
.loader-container__loader {
  position: relative;
  margin: 0 0 0 50%;
  display: block;
  width: 10px;
  height: 10px;
  background: #dc281e;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: loader-fade 0.25s 0.25s infinite alternate;
  animation: loader-fade 0.25s 0.25s infinite alternate; }
  .m105-map-locator-module__result-loader-container__loader:before,
  .loader-container__loader:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #dc281e;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    -webkit-animation: loader-fade .5s infinite alternate;
    animation: loader-fade .5s infinite alternate; }
  .m105-map-locator-module__result-loader-container__loader:after,
  .loader-container__loader:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #dc281e;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    -webkit-animation: loader-fade .5s .5s infinite alternate;
    animation: loader-fade .5s .5s infinite alternate; }

@-webkit-keyframes loader-fade {
  from {
    background-color: #dc281e; }
  to {
    background-color: rgba(220, 40, 30, 0.2); } }

@keyframes loader-fade {
  from {
    background-color: #dc281e; }
  to {
    background-color: rgba(220, 40, 30, 0.2); } }

/* M105 Result Container
##################################################################################################################### */
.m105-map-locator-module__result-container {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  margin: 0 .75rem;
  background-color: white;
  -webkit-transition: all .15s ease-in-out;
          transition: all .15s ease-in-out; }
  .m105-map-locator-module__result-container.m105-map-locator-module__result-container--open {
    min-height: 250px;
    min-height: 40vh; }
    .m105-map-locator-module__result-container.m105-map-locator-module__result-container--open .m105-map-locator-module__result-trigger__mobile--open {
      display: block; }
    .m105-map-locator-module__result-container.m105-map-locator-module__result-container--open .m105-map-locator-module__result-trigger__mobile--closed {
      display: none; }
    @media only screen and (min-width: 1025px) {
      .m105-map-locator-module__result-container.m105-map-locator-module__result-container--open {
        height: 400px;
        height: 40vh;
        max-height: 500px; } }
  @media only screen and (min-width: 1025px) {
    .m105-map-locator-module__result-container {
      position: relative;
      width: 100%;
      margin: 0;
      background-color: rgba(255, 255, 255, 0.9); } }

.m105-map-locator-module__result-container__inner {
  position: relative;
  overflow: hidden;
  height: 100%; }

.m105-map-locator-module__result-container__inner__wrap {
  position: relative;
  height: 100%;
  padding: 0; }

.m105-map-locator-module__result-container__inner__wrap__result-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all .15s ease-in-out;
          transition: all .15s ease-in-out; }

/* M105 Result Container
##################################################################################################################### */
.m105-map-locator-module__result-container {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  margin: 0 .75rem;
  background-color: white;
  -webkit-transition: all .15s ease-in-out;
          transition: all .15s ease-in-out; }
  .m105-map-locator-module__result-container.m105-map-locator-module__result-container--open {
    min-height: 250px;
    min-height: 40vh; }
    .m105-map-locator-module__result-container.m105-map-locator-module__result-container--open .m105-map-locator-module__result-trigger__mobile--open {
      display: block; }
    .m105-map-locator-module__result-container.m105-map-locator-module__result-container--open .m105-map-locator-module__result-trigger__mobile--closed {
      display: none; }
    @media only screen and (min-width: 1025px) {
      .m105-map-locator-module__result-container.m105-map-locator-module__result-container--open {
        height: 400px;
        height: 40vh;
        max-height: 500px; } }
  @media only screen and (min-width: 1025px) {
    .m105-map-locator-module__result-container {
      position: relative;
      width: 100%;
      margin: 0;
      background-color: rgba(255, 255, 255, 0.9); } }

.m105-map-locator-module__result-container__inner {
  position: relative;
  overflow: hidden;
  height: 100%; }

.m105-map-locator-module__result-container__inner__wrap {
  position: relative;
  height: 100%;
  padding: 0; }

.m105-map-locator-module__result-container__inner__wrap__result-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all .15s ease-in-out;
          transition: all .15s ease-in-out; }

/* M105 Result Trigger
##################################################################################################################### */
.m105-map-locator-module__result-trigger__mobile {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 100%;
  margin: 0;
  color: #dc281e;
  font-size: .7rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  background: white;
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: 0 -3px 5px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 -3px 5px -3px rgba(0, 0, 0, 0.3); }
  .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open,
  .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed {
    padding: .35rem .7rem; }
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open:before, .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open:after,
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed:before,
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open:before,
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed:before {
      content: "";
      margin-right: .3em; }
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open:before, .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open:after,
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed:before,
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open:after,
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed:after {
      content: "";
      margin-left: .3em; }
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open:before,
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed:before {
      margin-right: 0.5rem; }
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open:after,
    .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed:after {
      margin-left: 0.5rem; }
  .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--open {
    display: none; }
  .m105-map-locator-module__result-trigger__mobile .m105-map-locator-module__result-trigger__mobile--closed {
    display: block; }
  @media only screen and (min-width: 1025px) {
    .m105-map-locator-module__result-trigger__mobile {
      display: none; } }

.m105-map-locator-module__result-trigger__desktop {
  display: none;
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 30px;
  height: 20px;
  margin-bottom: 100%;
  border: 0;
  margin: 0 0 0 -15px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-align: center;
  outline: none;
  -webkit-box-shadow: 0 3px 5px -3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 5px -3px rgba(0, 0, 0, 0.4); }
  .m105-map-locator-module__result-trigger__desktop:before, .m105-map-locator-module__result-trigger__desktop:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
  .m105-map-locator-module__result-trigger__desktop:before {
    content: "";
    margin-right: .3em; }
  .m105-map-locator-module__result-trigger__desktop:before {
    position: relative;
    top: -.25rem;
    margin: 0 !important;
    padding: 0;
    color: #dc281e; }
  .m105-map-locator-module__result-trigger__desktop.m105-map-locator-module__result-trigger__desktop--active:before, .m105-map-locator-module__result-trigger__desktop.m105-map-locator-module__result-trigger__desktop--active:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
  .m105-map-locator-module__result-trigger__desktop.m105-map-locator-module__result-trigger__desktop--active:before {
    content: "";
    margin-right: .3em; }
  @media only screen and (min-width: 1025px) {
    .m105-map-locator-module__result-trigger__desktop {
      display: block; } }

.m105-map-locator-module__preferred-dealer {
  display: none;
  height: 82px;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 10;
  padding-top: 0.75rem;
  border-top: 1px solid gainsboro;
  background-color: #fff; }
  .m105-map-locator-module__preferred-dealer ~ .m105-map-locator-module__result-container__inner .m105-map-locator-module__result-list > li:last-child {
    margin-bottom: 82px; }

.m105-map-locator-module__result-container--open .m105-map-locator-module__preferred-dealer {
  display: block; }

/* M105 Result Generic
##################################################################################################################### */
.m105-map-locator-module__button-back {
  display: block;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid gainsboro;
  font-size: 0.7rem;
  line-height: 1.2rem;
  color: #585858; }
  .m105-map-locator-module__button-back:before, .m105-map-locator-module__button-back:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
  .m105-map-locator-module__button-back:before {
    content: "";
    margin-right: .3em; }
  .m105-map-locator-module__button-back:before, .m105-map-locator-module__button-back:after {
    margin: 0 0.4rem 0 0;
    color: #dc281e; }
  .m105-map-locator-module__button-back:hover {
    color: #dc281e; }

.m105-map-locator-module__result-title {
  margin: 0;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid gainsboro;
  font-size: 0.7rem;
  line-height: 1.2rem; }

/* M105 Result List
##################################################################################################################### */
.m105-map-locator-module__result-list {
  margin: 0;
  padding: 0;
  font-size: 0.7rem;
  line-height: 1.2rem; }
  .m105-map-locator-module__result-list li {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0; }
    .m105-map-locator-module__result-list li p {
      margin-bottom: 0; }
    .m105-map-locator-module__result-list li a {
      position: relative;
      display: block;
      padding: 0.5rem 0.75rem;
      color: #585858; }
      .m105-map-locator-module__result-list li a:before, .m105-map-locator-module__result-list li a:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .m105-map-locator-module__result-list li a:after {
        content: "";
        margin-left: .3em; }
      .m105-map-locator-module__result-list li a:after {
        position: absolute;
        top: 50%;
        right: 0.75rem;
        margin-top: -7px; }
      .m105-map-locator-module__result-list li a:hover, .m105-map-locator-module__result-list li a:focus, .m105-map-locator-module__result-list li a:active {
        background: whitesmoke; }
    .m105-map-locator-module__result-list li i {
      font-size: 0.9rem; }
      .m105-map-locator-module__result-list li i:before, .m105-map-locator-module__result-list li i:after {
        margin: 0 0.25rem 0 0; }
    .m105-map-locator-module__result-list li:hover > a, .m105-map-locator-module__result-list li:focus > a, .m105-map-locator-module__result-list li:active > a {
      color: #dc281e; }
  .m105-map-locator-module__result-list .m105-map-locator-module__result-list__geo-distance {
    display: inline-block;
    margin: 0 .15rem;
    padding: 0 .2rem;
    line-height: 1.5em;
    -webkit-border-radius: .15rem;
            border-radius: .15rem;
    background: gainsboro; }
  .m105-map-locator-module__result-list.m105-map-locator-module__result-list--lined li {
    border-bottom: 1px solid gainsboro; }
    .m105-map-locator-module__result-list.m105-map-locator-module__result-list--lined li:last-child {
      border-bottom: 0; }
    .m105-map-locator-module__result-list.m105-map-locator-module__result-list--lined li:hover > a, .m105-map-locator-module__result-list.m105-map-locator-module__result-list--lined li:focus > a, .m105-map-locator-module__result-list.m105-map-locator-module__result-list--lined li:active > a {
      color: #585858; }
    .m105-map-locator-module__result-list.m105-map-locator-module__result-list--lined li img {
      position: relative;
      top: -2px;
      margin-right: 2px; }
    .m105-map-locator-module__result-list.m105-map-locator-module__result-list--lined li .category-name,
    .m105-map-locator-module__result-list.m105-map-locator-module__result-list--lined li .contact-type {
      margin-right: 8px; }
  .m105-map-locator-module__result-list__preferred-dealer-buttons {
    border-top: 1px solid gainsboro;
    padding-top: 0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem; }

/* M105 Result Detail
##################################################################################################################### */
.m105-map-locator-module__detail {
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  line-height: 1.2rem; }
  .m105-map-locator-module__detail i {
    font-size: 0.9rem; }
    .m105-map-locator-module__detail i:before, .m105-map-locator-module__detail i:after {
      margin: 0 0.25rem 0 0; }
  .m105-map-locator-module__detail img {
    position: relative;
    top: -2px;
    margin-right: 2px; }
  .m105-map-locator-module__detail .category-name,
  .m105-map-locator-module__detail .contact-type {
    margin-right: 8px; }
  @media only screen and (min-width: 641px) {
    .m105-map-locator-module__detail .m105-map-locator-module__detail__more {
      display: table;
      width: 100%;
      table-layout: fixed; } }
  @media only screen and (min-width: 641px) {
    .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__box {
      display: table-cell;
      vertical-align: middle; }
      .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__box:last-child {
        text-align: right; } }
  .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__map-link {
    display: block;
    margin-bottom: .5rem;
    color: #585858; }
    .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__map-link:before, .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__map-link:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__map-link:before {
      content: "";
      margin-right: .3em; }
    .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__map-link:before, .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__map-link:after {
      color: #dc281e; }
    @media only screen and (min-width: 641px) {
      .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__map-link {
        margin-bottom: 0; } }
  .m105-map-locator-module__detail .m105-map-locator-module__detail__more .m105-map-locator-module__detail__more__page-link {
    margin: 0;
    font-size: 0.7rem; }
  .m105-map-locator-module__detail .icon-salesperson-other, .m105-map-locator-module__detail .icon-showroom-other, .m105-map-locator-module__detail .icon-service-other {
    color: #0268f0; }
  .m105-map-locator-module__detail .icon-salesperson-premium, .m105-map-locator-module__detail .icon-showroom-premium, .m105-map-locator-module__detail .icon-service-premium {
    color: #dc281e; }

/* M105.2 Map Sales Detail
##################################################################################################################### */
.m105-2-map-sales-detail-module {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem; }
  @media only screen and (min-width: 641px) {
    .m105-2-map-sales-detail-module {
      margin: 1rem 0; } }
  @media only screen and (min-width: 1025px) {
    .m105-2-map-sales-detail-module {
      margin: 2rem 0; } }
  .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__inner {
    position: relative; }
  .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content {
    position: relative;
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: .75rem 0;
    font-size: .7rem;
    line-height: 1.2rem;
    width: 80%;
    max-width: 550px; }
    .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content i {
      font-size: .9rem; }
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content i:before, .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content i:after {
        margin: 0 0.25rem 0 0; }
    .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content .m105-map-locator-module__detail__more__map-link {
      display: block;
      margin-bottom: .5rem;
      color: #585858; }
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content .m105-map-locator-module__detail__more__map-link:before, .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content .m105-map-locator-module__detail__more__map-link:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content .m105-map-locator-module__detail__more__map-link:before {
        content: "";
        margin-right: .3em; }
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content .m105-map-locator-module__detail__more__map-link:before, .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content .m105-map-locator-module__detail__more__map-link:after {
        color: #dc281e; }
      @media only screen and (min-width: 641px) {
        .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content .m105-map-locator-module__detail__more__map-link {
          margin-bottom: 0; } }
    @media only screen and (min-width: 641px) {
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__content {
        position: absolute;
        max-height: 80%;
        top: -1rem;
        left: 1rem;
        margin: 2rem 0;
        padding: .75rem;
        background: rgba(255, 255, 255, 0.95);
        -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
                box-shadow: 0 0 8px rgba(0, 0, 0, 0.4); } }
  .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger {
    display: block;
    margin-left: -.75rem;
    margin-right: -.75rem;
    padding: .5rem 1rem;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    text-align: center;
    font-size: .7rem;
    line-height: 1.2rem;
    font-weight: 600;
    color: #585858;
    -webkit-transition: all .12s ease-in-out;
            transition: all .12s ease-in-out; }
    .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger:before, .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger:before {
      content: "";
      margin-right: .3em; }
    .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger .m105-2-map-sales-detail-module__map-trigger__text-open {
      display: none; }
    .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger.m105-2-map-sales-detail-module__map-trigger--active {
      color: #dc281e; }
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger.m105-2-map-sales-detail-module__map-trigger--active:before {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger.m105-2-map-sales-detail-module__map-trigger--active .m105-2-map-sales-detail-module__map-trigger__text-open {
        display: inline-block; }
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger.m105-2-map-sales-detail-module__map-trigger--active .m105-2-map-sales-detail-module__map-trigger__text-closed {
        display: none; }
    .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger:before, .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger:after {
      margin: 0 .25rem;
      color: #dc281e; }
    @media only screen and (min-width: 641px) {
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-trigger {
        display: none; } }
  .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-container {
    max-height: 0;
    margin-left: -.75rem;
    margin-right: -.75rem; }
    .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-container.m105-2-map-sales-detail-module__map-container--open {
      max-height: none; }
    .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-container .m105-2-map-sales-detail-module__map-container__map {
      width: 100%;
      height: 300px;
      height: 40vh; }
    @media only screen and (min-width: 641px) {
      .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-container {
        max-height: none;
        margin-left: 0;
        margin-right: 0; }
        .m105-2-map-sales-detail-module .m105-2-map-sales-detail-module__map-container .m105-2-map-sales-detail-module__map-container__map {
          height: 600px;
          height: 50vh; } }
  .m105-2-map-sales-detail-module .icon-salesperson-other, .m105-2-map-sales-detail-module .icon-showroom-other, .m105-2-map-sales-detail-module .icon-service-other {
    color: #0268f0; }
  .m105-2-map-sales-detail-module .icon-salesperson-premium, .m105-2-map-sales-detail-module .icon-showroom-premium, .m105-2-map-sales-detail-module .icon-service-premium {
    color: #dc281e; }

/* M105.3 Country Selector
##################################################################################################################### */
/* M105.3 Main
##################################################################################################################### */
.m105-3-country-selector-module .m105-3-country-selector-module__container {
  position: relative;
  overflow: hidden;
  height: 100%; }
  @media only screen and (min-width: 1025px) {
    .m105-3-country-selector-module .m105-3-country-selector-module__container {
      overflow: visible;
      background-color: #e6e6e6;
      background-image: url("../assets/images/m105-3-country-selector-module/world-map.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; } }

.m105-3-country-selector-module .m105-3-country-selector-module__box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.95); }
  @media only screen and (min-width: 1025px) {
    .m105-3-country-selector-module .m105-3-country-selector-module__box {
      width: 75vw;
      max-width: 1000px;
      height: 55vh;
      max-height: 500px;
      -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
              box-shadow: 0 0 12px rgba(0, 0, 0, 0.3); } }

.m105-3-country-selector-module .m105-3-country-selector-module__box__head {
  margin: 0;
  border-bottom: 1px solid #d7d7d7;
  padding: 0.5rem 0.75rem;
  text-align: center; }
  @media only screen and (min-width: 641px) {
    .m105-3-country-selector-module .m105-3-country-selector-module__box__head {
      text-align: left;
      padding: 0.5rem 0.75rem;
      font-size: 1.5rem; } }

.m105-3-country-selector-module .m105-3-country-selector-module__box__inner {
  position: relative; }
  @media only screen and (min-width: 1025px) {
    .m105-3-country-selector-module .m105-3-country-selector-module__box__inner {
      display: table;
      table-layout: fixed;
      width: 100%;
      height: 100%; } }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDown {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

/* M105.3 Country
##################################################################################################################### */
.m105-3-country-selector-module__box__inner__country {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  @media only screen and (min-width: 1025px) {
    .m105-3-country-selector-module__box__inner__country {
      position: relative;
      display: table-cell;
      height: 100%; } }

/* M105.3 Country List
##################################################################################################################### */
.dealer-country-list-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .dealer-country-list-container .dealer-country-list-container__search-label {
    color: red;
    font-weight: bold;
    padding: 0.25rem 2rem 0.25rem 0.5rem; }
  .dealer-country-list-container .dealer-country-list-container__search-container {
    position: relative;
    display: block;
    padding: 15px;
    border-top: 1px solid #d7d7d7;
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    height: 85px;
    border-top: 0; }
    .dealer-country-list-container .dealer-country-list-container__search-container:before, .dealer-country-list-container .dealer-country-list-container__search-container:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .dealer-country-list-container .dealer-country-list-container__search-container:before {
      content: "";
      margin-right: .3em; }
    .dealer-country-list-container .dealer-country-list-container__search-container:before {
      position: absolute;
      top: 1.05rem;
      right: 1rem;
      z-index: 10;
      font-size: 1rem; }
    .dealer-country-list-container .dealer-country-list-container__search-container:before {
      top: 1.05rem; }
    @media only screen and (min-width: 1025px) {
      .dealer-country-list-container .dealer-country-list-container__search-container {
        padding-right: 0; }
        .dealer-country-list-container .dealer-country-list-container__search-container:before {
          right: 0.3rem; } }
    .dealer-country-list-container .dealer-country-list-container__search-container .dealer-country-list-container__search-container__input {
      position: relative;
      padding: 4px;
      width: 100%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      margin: 0;
      padding: 0.25rem 2rem 0.25rem 0.5rem;
      -webkit-border-radius: 4px;
              border-radius: 4px;
      border: 1px solid #b9b9b9;
      height: auto;
      font-size: .8rem;
      line-height: 1rem;
      color: black;
      padding: 0.25rem 2rem 0.25rem 0.5rem; }
      .dealer-country-list-container .dealer-country-list-container__search-container .dealer-country-list-container__search-container__input::-webkit-search-cancel-button {
        -webkit-appearance: none; }
      @media only screen and (min-width: 1025px) {
        .dealer-country-list-container .dealer-country-list-container__search-container .dealer-country-list-container__search-container__input {
          background: none; } }
  .dealer-country-list-container .dealer-country-list-container__selector-list {
    position: absolute;
    top: 85px;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: opacity 0.3s;
            transition: opacity 0.3s;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    margin: 0;
    padding: 0.5rem;
    padding-bottom: 50px;
    line-height: 1.75rem;
    outline: none; }
    @media only screen and (min-width: 1025px) {
      .dealer-country-list-container .dealer-country-list-container__selector-list {
        padding-bottom: 10px; } }
    .dealer-country-list-container .dealer-country-list-container__selector-list li {
      display: block;
      padding: 0;
      margin: 0;
      list-style-type: none;
      font-size: 0.8rem; }
      .dealer-country-list-container .dealer-country-list-container__selector-list li.hide {
        display: none; }
      .dealer-country-list-container .dealer-country-list-container__selector-list li .highlight {
        padding: 0;
        font-weight: 700; }
      .dealer-country-list-container .dealer-country-list-container__selector-list li a,
      .dealer-country-list-container .dealer-country-list-container__selector-list li span {
        white-space: nowrap;
        color: black;
        display: block; }
        .dealer-country-list-container .dealer-country-list-container__selector-list li a i,
        .dealer-country-list-container .dealer-country-list-container__selector-list li span i {
          color: #dc281e; }
          .dealer-country-list-container .dealer-country-list-container__selector-list li a i:before,
          .dealer-country-list-container .dealer-country-list-container__selector-list li span i:before {
            margin: 0;
            padding: 0; }
        .dealer-country-list-container .dealer-country-list-container__selector-list li a:hover, .dealer-country-list-container .dealer-country-list-container__selector-list li a:focus, .dealer-country-list-container .dealer-country-list-container__selector-list li a:active,
        .dealer-country-list-container .dealer-country-list-container__selector-list li span:hover,
        .dealer-country-list-container .dealer-country-list-container__selector-list li span:focus,
        .dealer-country-list-container .dealer-country-list-container__selector-list li span:active {
          color: #dc281e; }
        .dealer-country-list-container .dealer-country-list-container__selector-list li a .highlight,
        .dealer-country-list-container .dealer-country-list-container__selector-list li span .highlight {
          display: inline; }
      .dealer-country-list-container .dealer-country-list-container__selector-list li span {
        padding: 0 0.4rem; }
        .dealer-country-list-container .dealer-country-list-container__selector-list li span:hover {
          color: inherit; }
  .dealer-country-list-container .dealer-country-list-container__print-option {
    text-align: center;
    position: absolute;
    bottom: 0;
    padding: 0.25rem 2rem 0.25rem 0.5rem; }
    .dealer-country-list-container .dealer-country-list-container__print-option .button--cta__outer {
      margin-top: 0.8rem; }

/* M105.3 Info
##################################################################################################################### */
.m105-3-country-selector-module__box__inner__info {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  background: white; }
  @media only screen and (min-width: 1025px) {
    .m105-3-country-selector-module__box__inner__info {
      position: relative;
      display: table-cell;
      height: 100%;
      top: 0;
      background: none; } }
  .m105-3-country-selector-module__box__inner__info[data-module-box-info-status='open'] {
    height: 50%; }
    .m105-3-country-selector-module__box__inner__info[data-module-box-info-status='open'] .m105-3-country-selector-module__info-trigger:before, .m105-3-country-selector-module__box__inner__info[data-module-box-info-status='open'] .m105-3-country-selector-module__info-trigger:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-3-country-selector-module__box__inner__info[data-module-box-info-status='open'] .m105-3-country-selector-module__info-trigger:before {
      content: "";
      margin-right: .3em; }
    .m105-3-country-selector-module__box__inner__info[data-module-box-info-status='open'] .m105-3-country-selector-module__info-trigger:before, .m105-3-country-selector-module__box__inner__info[data-module-box-info-status='open'] .m105-3-country-selector-module__info-trigger:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-3-country-selector-module__box__inner__info[data-module-box-info-status='open'] .m105-3-country-selector-module__info-trigger:after {
      content: "";
      margin-left: .3em; }
    .m105-3-country-selector-module__box__inner__info[data-module-box-info-status='open'] .m105-3-country-selector-module__box__inner__info__content {
      height: 100%; }
      @media only screen and (min-width: 1025px) {
        .m105-3-country-selector-module__box__inner__info[data-module-box-info-status='open'] .m105-3-country-selector-module__box__inner__info__content {
          height: 100%; } }
  .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger {
    position: absolute;
    top: -46px;
    right: 0;
    left: 0;
    z-index: 9000;
    width: 100%;
    margin: 0;
    border-top: 1px solid #d7d7d7;
    color: #dc281e;
    background: white;
    outline: none;
    white-space: nowrap; }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:before, .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:before {
      content: "";
      margin-right: .3em; }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:before, .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:after {
      content: "";
      margin-left: .3em; }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:before, .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:after {
      position: absolute;
      top: .8rem;
      -webkit-transform: scale(1.2);
          -ms-transform: scale(1.2);
              transform: scale(1.2); }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:before {
      left: 0.8rem; }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger:after {
      right: 0.8rem; }
    @media only screen and (min-width: 1025px) {
      .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__info-trigger {
        display: none; } }
  .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__box__inner__info__content {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: 0;
    padding: 0.75rem;
    font-size: .65rem;
    line-height: 1rem;
    -webkit-box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.15);
            box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.15); }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__box__inner__info__content h5 {
      line-height: 1.3rem; }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__box__inner__info__content .v-space {
      margin-bottom: .5rem; }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__box__inner__info__content .primary {
      color: #dc281e; }
    .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__box__inner__info__content .default a {
      color: black; }
    @media only screen and (min-width: 1025px) {
      .m105-3-country-selector-module__box__inner__info .m105-3-country-selector-module__box__inner__info__content {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: 100%;
        padding: 1rem 1rem 1rem 1.5rem;
        -webkit-box-shadow: none;
                box-shadow: none; } }

/* M106 Filter
##################################################################################################################### */
.white-bg-on-mobile .row {
  background: white;
  border-bottom: 1px solid #e6e6e6;
  -webkit-box-shadow: inset 0 -30px 20px -20px whitesmoke;
          box-shadow: inset 0 -30px 20px -20px whitesmoke; }
  @media only screen and (min-width: 1025px) {
    .white-bg-on-mobile .row {
      padding-bottom: .6rem;
      background: whitesmoke;
      border: 0; } }

.m106-filter-module {
  margin-bottom: 1rem;
  text-align: center; }
  @media only screen and (min-width: 1025px) {
    .m106-filter-module {
      overflow: hidden; } }
  .m106-filter-module.m106-filter-module--on-grey {
    padding: 30px 0 15px;
    background-color: whitesmoke; }
  .m106-filter-module .m106-filter-module__list {
    margin: 0;
    padding: 0; }
    .m106-filter-module .m106-filter-module__list::after {
      clear: both;
      content: "";
      display: table; }
    .m106-filter-module .m106-filter-module__list .m106-filter-module__list__item {
      display: block;
      margin: 0;
      padding: 0 2px;
      list-style-type: none; }
      @media only screen and (min-width: 641px) {
        .m106-filter-module .m106-filter-module__list .m106-filter-module__list__item {
          display: inline-block; } }
      @media only screen and (min-width: 1025px) {
        .m106-filter-module .m106-filter-module__list .m106-filter-module__list__item {
          padding: 0 0.375rem; } }
  .m106-filter-module .m106-filter-module__button {
    display: block;
    border: 1px solid #555555;
    line-height: 48px;
    height: 48px;
    font-size: 0.8rem;
    color: #555555;
    font-weight: 600;
    margin-bottom: 9px;
    text-align: center;
    padding: 0 15px;
    white-space: nowrap; }
    @media only screen and (min-width: 641px) {
      .m106-filter-module .m106-filter-module__button {
        display: inline-block; } }
    @media only screen and (min-width: 1025px) {
      .m106-filter-module .m106-filter-module__button {
        margin-bottom: 20px; } }
    .m106-filter-module .m106-filter-module__button.m106-filter-module__button--active {
      background-color: #555555;
      color: white; }
    @media only screen and (min-width: 1025px) {
      .m106-filter-module .m106-filter-module__button:hover, .m106-filter-module .m106-filter-module__button:active, .m106-filter-module .m106-filter-module__button:focus {
        background-color: #555555;
        color: white; } }

/* M106.1 Product Explorer Filter Module
##################################################################################################################### */
.m106-1-product-explorer-filter-module {
  position: relative;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  @media only screen and (min-width: 1025px) {
    .m106-1-product-explorer-filter-module {
      margin-bottom: 2rem; } }

.m106-1-product-explorer-filter-module__wrapper {
  display: none; }
  .m106-1-product-explorer-filter-module__wrapper.m106-1-product-explorer-filter-module__wrapper--active {
    display: block; }

.m106-1-product-explorer-filter-module__main,
.m106-1-product-explorer-filter-module__additional {
  position: relative;
  padding: 1px 0; }

.m106-1-product-explorer-filter-module__main {
  color: white;
  background: #585858; }

.m106-1-product-explorer-filter-module__additional {
  padding-bottom: 0;
  color: #585858;
  background: white; }

/* PE Head bar
------------------------------------------------------------------------------------------------------------------ */
.pe-head-bar {
  color: white;
  background: #585858; }
  @media only screen and (min-width: 1025px) {
    .pe-head-bar {
      display: none; } }
  .pe-head-bar.pe-head-bar--active {
    border-bottom: 1px solid #787878; }
    .pe-head-bar.pe-head-bar--active .pe-head-bar__filter--inactive {
      display: none; }
    .pe-head-bar.pe-head-bar--active .pe-head-bar__filter--active {
      display: block; }
  .pe-head-bar .pe-head-bar__filter--inactive,
  .pe-head-bar .pe-head-bar__filter--active {
    position: relative;
    display: none;
    padding: 0.5rem 0.75rem;
    color: white;
    font-weight: 600; }
    @media only screen and (min-width: 1025px) {
      .pe-head-bar .pe-head-bar__filter--inactive,
      .pe-head-bar .pe-head-bar__filter--active {
        padding: 0.5rem 1.25rem; } }
    .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger,
    .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger {
      position: absolute;
      top: .4rem;
      right: 0.75rem;
      display: block;
      width: 30px;
      height: 30px;
      border: 1px solid white;
      -webkit-border-radius: 3px;
              border-radius: 3px;
      color: white;
      text-align: center;
      font-size: 1rem;
      line-height: 1.3rem; }
      .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger:before, .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger:after,
      .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:before,
      .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger:before,
      .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:before {
        content: "";
        margin-right: .3em; }
      .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger.icon-plus,
      .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger.icon-plus {
        font-size: .8rem;
        line-height: 1.4rem; }
        .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger.icon-plus:before, .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger.icon-plus:after,
        .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger.icon-plus:before,
        .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger.icon-plus:after {
          font-family: "fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
        .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger.icon-plus:before,
        .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger.icon-plus:before {
          content: "";
          margin-right: .3em; }
        .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger.icon-plus:before,
        .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger.icon-plus:before {
          margin-right: 0;
          -webkit-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
                  transform: rotate(-45deg); }
      @media only screen and (min-width: 1025px) {
        .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger,
        .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger {
          right: 1.25rem; } }
      .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger:before, .pe-head-bar .pe-head-bar__filter--inactive .pe-head-bar__filter-trigger:after,
      .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:before,
      .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:after {
        margin: 0;
        padding: 0; }
  .pe-head-bar .pe-head-bar__filter--inactive {
    display: block; }
  .pe-head-bar .pe-head-bar__filter--active {
    display: none; }
    .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger {
      font-size: .8rem;
      line-height: 1.4rem; }
      .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:before, .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:before {
        content: "";
        margin-right: .3em; }
      .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:before, .pe-head-bar .pe-head-bar__filter--active .pe-head-bar__filter-trigger:after {
        margin: 0;
        padding: 0; }

/* PE Search
------------------------------------------------------------------------------------------------------------------ */
.pe-search {
  position: relative;
  margin: 0.75rem 0.75rem; }
  @media only screen and (min-width: 1441px) {
    .pe-search {
      margin: 0.75rem 1.25rem; } }
  .pe-search .pe-search__input {
    margin: 0;
    padding: .4rem .5rem;
    height: auto;
    border: 1px solid white;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    font-size: .7rem;
    line-height: 1rem;
    background: white; }
    .pe-search .pe-search__input::-webkit-input-placeholder {
      color: #828282; }
    .pe-search .pe-search__input:-moz-placeholder {
      color: #828282; }
    .pe-search .pe-search__input::-moz-placeholder {
      color: #828282; }
    .pe-search .pe-search__input:-ms-input-placeholder {
      color: #828282; }
    .pe-search .pe-search__input:focus {
      border: 1px solid white; }
  .pe-search .pe-search__button {
    position: absolute;
    color: #585858;
    top: .15rem;
    right: 0.5rem;
    font-size: 1rem;
    cursor: pointer; }
    .pe-search .pe-search__button:before, .pe-search .pe-search__button:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .pe-search .pe-search__button:before {
      content: "";
      margin-right: .3em; }
    .pe-search .pe-search__button:before, .pe-search .pe-search__button:after {
      margin: 0;
      padding: 0; }

/* PE Dropdown
------------------------------------------------------------------------------------------------------------------ */
.pe-dropdown {
  position: relative;
  margin: 0 0.75rem 0.75rem; }
  .pe-dropdown + .pe-dropdown {
    margin-bottom: .25rem; }
  @media only screen and (min-width: 1441px) {
    .pe-dropdown {
      margin: 0 1.25rem 0.75rem; } }
  .pe-dropdown .pe-dropdown__toggler > a {
    display: block;
    position: relative;
    padding: .5rem;
    border: 1px solid #878787;
    white-space: nowrap;
    color: white;
    font-weight: 600; }
    .pe-dropdown .pe-dropdown__toggler > a:before, .pe-dropdown .pe-dropdown__toggler > a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .pe-dropdown .pe-dropdown__toggler > a:before {
      content: "";
      margin-right: .3em; }
    .pe-dropdown .pe-dropdown__toggler > a:before, .pe-dropdown .pe-dropdown__toggler > a:after {
      margin: 0 0.5rem 0 0;
      padding: 0;
      -webkit-transform: scale(0.8);
          -ms-transform: scale(0.8);
              transform: scale(0.8); }
    .pe-dropdown .pe-dropdown__toggler > a:hover, .pe-dropdown .pe-dropdown__toggler > a:focus, .pe-dropdown .pe-dropdown__toggler > a:active {
      background: rgba(255, 255, 255, 0.03); }
  .pe-dropdown .pe-dropdown__list-container {
    display: none;
    position: absolute;
    z-index: 100;
    top: 100%;
    right: 0;
    left: 0;
    overflow: hidden;
    padding: .5rem .65rem;
    background: white; }
    .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: .7rem;
      line-height: 1.3rem; }
      .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list .pe-dropdown__list-container__list__item > a {
        display: block;
        padding: 0;
        color: #585858; }
        .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list .pe-dropdown__list-container__list__item > a:before, .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list .pe-dropdown__list-container__list__item > a:after {
          font-family: "fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
        .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list .pe-dropdown__list-container__list__item > a:before {
          content: "";
          margin-right: .3em; }
        .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list .pe-dropdown__list-container__list__item > a:before, .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list .pe-dropdown__list-container__list__item > a:after {
          margin: 0 0.3rem 0 0;
          padding: 0;
          color: #dc281e;
          -webkit-transform: scale(0.9);
              -ms-transform: scale(0.9);
                  transform: scale(0.9); }
        .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list .pe-dropdown__list-container__list__item > a:hover, .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list .pe-dropdown__list-container__list__item > a:focus, .pe-dropdown .pe-dropdown__list-container .pe-dropdown__list-container__list .pe-dropdown__list-container__list__item > a:active {
          color: #dc281e; }
  .pe-dropdown.pe-dropdown--active {
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); }
    .pe-dropdown.pe-dropdown--active .pe-dropdown__toggler > a {
      border: 1px solid transparent;
      color: #dc281e;
      background: white; }
      .pe-dropdown.pe-dropdown--active .pe-dropdown__toggler > a:before, .pe-dropdown.pe-dropdown--active .pe-dropdown__toggler > a:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .pe-dropdown.pe-dropdown--active .pe-dropdown__toggler > a:before {
        content: "";
        margin-right: .3em; }
      .pe-dropdown.pe-dropdown--active .pe-dropdown__toggler > a:before, .pe-dropdown.pe-dropdown--active .pe-dropdown__toggler > a:after {
        margin: 0 0.5rem 0 0; }
    .pe-dropdown.pe-dropdown--active .pe-dropdown__list-container {
      display: block; }
      .pe-dropdown.pe-dropdown--active .pe-dropdown__list-container:before {
        position: absolute;
        top: 0;
        right: .65rem;
        left: .65rem;
        content: "";
        height: 1px;
        background: gainsboro; }

/* PE Slideout
------------------------------------------------------------------------------------------------------------------ */
.pe-slideout {
  clear: both; }
  .pe-slideout:last-child {
    margin-bottom: .75rem; }
  .pe-slideout .pe-slideout__toggler {
    position: relative;
    padding: 0 0.75rem; }
    @media only screen and (min-width: 1441px) {
      .pe-slideout .pe-slideout__toggler {
        padding: 0 1.25rem; } }
    .pe-slideout .pe-slideout__toggler > a {
      display: block;
      position: relative;
      padding: .5rem 0;
      border-bottom: 1px solid #e6e6e6;
      white-space: nowrap;
      color: black;
      font-weight: 600; }
      .pe-slideout .pe-slideout__toggler > a:before, .pe-slideout .pe-slideout__toggler > a:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .pe-slideout .pe-slideout__toggler > a:before {
        content: "";
        margin-right: .3em; }
      .pe-slideout .pe-slideout__toggler > a:before, .pe-slideout .pe-slideout__toggler > a:after {
        color: #dc281e;
        margin: 0 0.5rem 0 0;
        padding: 0;
        -webkit-transform: scale(0.8);
            -ms-transform: scale(0.8);
                transform: scale(0.8); }
    .pe-slideout .pe-slideout__toggler .pe-slideout__toggler__info {
      position: absolute;
      top: .5rem;
      right: 1.2rem;
      font-size: 1.3rem;
      cursor: pointer; }
      .pe-slideout .pe-slideout__toggler .pe-slideout__toggler__info:before, .pe-slideout .pe-slideout__toggler .pe-slideout__toggler__info:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .pe-slideout .pe-slideout__toggler .pe-slideout__toggler__info:before {
        content: "";
        margin-right: .3em; }
      .pe-slideout .pe-slideout__toggler .pe-slideout__toggler__info:before, .pe-slideout .pe-slideout__toggler .pe-slideout__toggler__info:after {
        margin: 0;
        padding: 0; }
      @media only screen and (min-width: 1025px) {
        .pe-slideout .pe-slideout__toggler .pe-slideout__toggler__info {
          font-size: 1.1rem; } }
  .pe-slideout .pe-slideout__list-container {
    overflow: hidden;
    position: relative;
    max-height: 0;
    padding: 0 0.75rem;
    -webkit-box-shadow: inset 0 -12px 12px -7px rgba(0, 0, 0, 0.05);
            box-shadow: inset 0 -12px 12px -7px rgba(0, 0, 0, 0.05); }
    @media only screen and (min-width: 1441px) {
      .pe-slideout .pe-slideout__list-container {
        padding: 0 1.25rem; } }
    .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list {
      margin: 0;
      padding: .5rem 0;
      font-size: .7rem;
      line-height: 1.3rem; }
      .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item {
        position: relative;
        list-style: none;
        -webkit-tap-highlight-color: transparent; }
        .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:hover:before, .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:focus:before, .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:active:before {
          display: none;
          content: "";
          position: absolute;
          z-index: 0;
          top: 0;
          left: -0.75rem;
          right: -0.75rem;
          bottom: 0;
          background: whitesmoke; }
          @media only screen and (min-width: 641px) {
            .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:hover:before, .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:focus:before, .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:active:before {
              display: block; } }
          @media only screen and (min-width: 1441px) {
            .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:hover:before, .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:focus:before, .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:active:before {
              left: -1.25rem;
              right: -1.25rem; } }
        @media only screen and (min-width: 1025px) {
          .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:hover .pe-overlay-hint, .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:focus .pe-overlay-hint, .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item:active .pe-overlay-hint {
            display: block; } }
        .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item .checkbox-inline {
          position: relative;
          z-index: 20;
          margin-bottom: 0 !important; }
          .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item .checkbox-inline label {
            width: 95%;
            font-size: .7rem;
            line-height: 1.2rem; }
          .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item .checkbox-inline input[disabled=true] + label span {
            background: none; }
        .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item .list-image-preview {
          display: block;
          position: relative;
          z-index: 20;
          padding: .5rem 0;
          width: 80px;
          height: 100px; }
          @media only screen and (min-width: 1025px) {
            .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item .list-image-preview {
              display: none; } }
          .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item .list-image-preview .list-image-preview__img {
            position: relative;
            width: 80px;
            height: 80px;
            z-index: 10;
            background-size: 100%; }
          .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item .list-image-preview + .checkbox-inline {
            position: absolute;
            top: .12rem;
            left: 100px;
            margin: 0;
            padding: 0; }
            @media only screen and (min-width: 1025px) {
              .pe-slideout .pe-slideout__list-container .pe-slideout__list-container__list .pe-slideout__list-container__list__item .list-image-preview + .checkbox-inline {
                position: relative;
                top: 0;
                left: 0; } }
    .pe-slideout .pe-slideout__list-container .pe-rangeslider:last-child {
      margin-bottom: 2rem; }
  .pe-slideout.pe-slideout--active .pe-slideout__toggler > a {
    color: #dc281e; }
    .pe-slideout.pe-slideout--active .pe-slideout__toggler > a:before, .pe-slideout.pe-slideout--active .pe-slideout__toggler > a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .pe-slideout.pe-slideout--active .pe-slideout__toggler > a:before {
      content: "";
      margin-right: .3em; }
    .pe-slideout.pe-slideout--active .pe-slideout__toggler > a:before, .pe-slideout.pe-slideout--active .pe-slideout__toggler > a:after {
      margin: 0 0.5rem 0 0; }
  .pe-slideout.pe-slideout--active .pe-slideout__list-container {
    overflow: visible;
    max-height: 5000px;
    border-bottom: 1px solid #e6e6e6; }
  .pe-slideout.pe-slideout--dark .pe-slideout__toggler > a {
    color: white;
    border-bottom: 1px solid #878787; }
    .pe-slideout.pe-slideout--dark .pe-slideout__toggler > a:before, .pe-slideout.pe-slideout--dark .pe-slideout__toggler > a:after {
      color: white; }
  .pe-slideout.pe-slideout--dark .pe-slideout__list-container {
    -webkit-box-shadow: inset 0 -12px 12px -7px rgba(0, 0, 0, 0.08);
            box-shadow: inset 0 -12px 12px -7px rgba(0, 0, 0, 0.08); }
    .pe-slideout.pe-slideout--dark .pe-slideout__list-container .pe-slideout__list-container__list__item:hover:before, .pe-slideout.pe-slideout--dark .pe-slideout__list-container .pe-slideout__list-container__list__item:focus:before, .pe-slideout.pe-slideout--dark .pe-slideout__list-container .pe-slideout__list-container__list__item:active:before {
      background: #646464; }
  .pe-slideout.pe-slideout--dark.pe-slideout--active .pe-dropdown__toggler > a {
    color: white; }
  .pe-slideout.pe-slideout--dark.pe-slideout--active .pe-slideout__list-container {
    border-bottom: 1px solid #878787; }

/* PE range slider
------------------------------------------------------------------------------------------------------------------ */
.pe-rangeslider {
  position: relative;
  clear: both;
  width: 100%;
  height: 55px;
  margin: 0 0 .25rem;
  padding: 1.25rem 1rem 0 1rem; }
  @media only screen and (min-width: 1025px) {
    .pe-rangeslider {
      padding: 1.25rem 0 0; } }
  .pe-rangeslider:first-child {
    margin-top: .75rem; }
  .pe-rangeslider:last-child {
    margin-bottom: .5rem; }
  .pe-rangeslider .pe-rangeslider__info {
    float: left ;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: .7rem;
    line-height: 1rem; }
    .pe-rangeslider .pe-rangeslider__info > div {
      float: left ;
      width: 33.33%;
      border: 1px solid transparent; }
    .pe-rangeslider .pe-rangeslider__info .pe-rangeslider__title {
      text-align: center; }
    .pe-rangeslider .pe-rangeslider__info .pe-rangeslider__min-value {
      text-align: left; }
    .pe-rangeslider .pe-rangeslider__info .pe-rangeslider__max-value {
      text-align: right; }

/* PE overlay hint
------------------------------------------------------------------------------------------------------------------ */
.pe-overlay-hint {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 2.5rem 1rem 1rem;
  background: rgba(0, 0, 0, 0.75);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; }
  @media only screen and (min-width: 1025px) {
    .pe-overlay-hint {
      position: absolute;
      overflow: inherit;
      top: -.3rem;
      right: auto;
      bottom: auto;
      left: 100%;
      padding: .5rem;
      border: 1px solid gainsboro;
      background: white;
      -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
              box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); } }
  .pe-overlay-hint.pe-overlay-hint--active {
    display: block; }
  .pe-overlay-hint .pe-overlay-hint__inner {
    padding: .5rem;
    background: white; }
    @media only screen and (min-width: 1025px) {
      .pe-overlay-hint .pe-overlay-hint__inner {
        display: table;
        padding: 0; } }
  .pe-overlay-hint .pe-overlay-hint__close {
    position: absolute;
    top: .5rem;
    right: 0.7rem;
    color: white;
    font-size: 1.2rem;
    cursor: pointer; }
    .pe-overlay-hint .pe-overlay-hint__close:before, .pe-overlay-hint .pe-overlay-hint__close:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .pe-overlay-hint .pe-overlay-hint__close:before {
      content: "";
      margin-right: .3em; }
  .pe-overlay-hint:before, .pe-overlay-hint:after {
    position: absolute;
    z-index: 110;
    left: -20px;
    border: inset 10px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: transparent white transparent transparent;
    border-right-style: solid; }
  .pe-overlay-hint:before {
    top: 20px; }
  .pe-overlay-hint:after {
    z-index: 90;
    top: 19px;
    left: -22px;
    border: inset 11px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: transparent gainsboro transparent transparent;
    border-right-style: solid; }
  @media only screen and (min-width: 1025px) {
    .pe-overlay-hint .pe-overlay-hint__inner__img-container {
      display: table-cell;
      vertical-align: top;
      min-width: 150px; } }
  .pe-overlay-hint .pe-overlay-hint__inner__img-container .pe-overlay-hint__inner__img-container__img {
    height: 200px;
    height: 30vh;
    margin-bottom: .75rem;
    background-size: 100%;
    background-position: center; }
    @media only screen and (min-width: 1025px) {
      .pe-overlay-hint .pe-overlay-hint__inner__img-container .pe-overlay-hint__inner__img-container__img {
        width: 150px;
        height: 150px;
        margin-bottom: 0; } }
  .pe-overlay-hint .pe-overlay-hint__inner__content {
    display: table-cell;
    min-width: 300px;
    vertical-align: top; }
    .pe-overlay-hint .pe-overlay-hint__inner__content .pe-overlay-hint__inner__content__box {
      padding: 0; }
      @media only screen and (min-width: 1025px) {
        .pe-overlay-hint .pe-overlay-hint__inner__content .pe-overlay-hint__inner__content__box {
          padding: 0 .75rem; } }
      .pe-overlay-hint .pe-overlay-hint__inner__content .pe-overlay-hint__inner__content__box .pe-overlay-hint__inner__content__box__title {
        font-size: .8rem;
        line-height: 1.1rem; }
      .pe-overlay-hint .pe-overlay-hint__inner__content .pe-overlay-hint__inner__content__box .pe-overlay-hint__inner__content__box__text {
        margin-bottom: .25rem;
        font-size: .7rem;
        line-height: 1.1rem; }
      .pe-overlay-hint .pe-overlay-hint__inner__content .pe-overlay-hint__inner__content__box .pe-overlay-hint__inner__content__box__link {
        font-size: .7rem; }
        .pe-overlay-hint .pe-overlay-hint__inner__content .pe-overlay-hint__inner__content__box .pe-overlay-hint__inner__content__box__link:before, .pe-overlay-hint .pe-overlay-hint__inner__content .pe-overlay-hint__inner__content__box .pe-overlay-hint__inner__content__box__link:after {
          font-family: "fontello";
          font-style: normal;
          font-weight: normal;
          speak: none;
          display: inline-block;
          text-decoration: inherit;
          text-align: center;
          /* opacity: .8; */
          /* For safety - reset parent styles, that can break glyph codes*/
          font-variant: normal;
          text-transform: none;
          /* fix buttons height, for twitter bootstrap */
          line-height: 1em;
          /* you can be more comfortable with increased icons size */
          /* font-size: 120%; */
          /* Font smoothing. That was taken from TWBS */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          /* Uncomment for 3D effect */
          /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
        .pe-overlay-hint .pe-overlay-hint__inner__content .pe-overlay-hint__inner__content__box .pe-overlay-hint__inner__content__box__link:before {
          content: "";
          margin-right: .3em; }
        .pe-overlay-hint .pe-overlay-hint__inner__content .pe-overlay-hint__inner__content__box .pe-overlay-hint__inner__content__box__link:before {
          -webkit-transform: scale(0.9);
              -ms-transform: scale(0.9);
                  transform: scale(0.9); }
  @media only screen and (min-width: 1025px) {
    .pe-overlay-hint .pe-overlay-hint__content {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 300px;
      padding: 0 1rem; } }

/* PE Single Title
------------------------------------------------------------------------------------------------------------------ */
.pe-single-title {
  display: block;
  margin: 0;
  padding: 0.75rem 0.75rem;
  font-size: .8rem;
  line-height: 1.1rem;
  font-weight: 600;
  color: black; }
  @media only screen and (min-width: 1441px) {
    .pe-single-title {
      padding: 0.75rem 1.25rem 0.5rem; } }
  .pe-single-title.pe-single-title--white {
    color: white; }

/* PE Single Trigger
------------------------------------------------------------------------------------------------------------------ */
.pe-single-trigger {
  display: block;
  margin: 0;
  padding: 0.75rem 0.75rem;
  font-size: .7rem;
  line-height: 1.1rem;
  color: #585858; }
  .pe-single-trigger:before, .pe-single-trigger:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
  .pe-single-trigger:before {
    content: "";
    margin-right: .3em; }
  @media only screen and (min-width: 1441px) {
    .pe-single-trigger {
      padding: 0.75rem 1.25rem; } }
  .pe-single-trigger:before, .pe-single-trigger:after {
    padding-right: 0.2rem; }
  .pe-single-trigger.pe-single-trigger--white {
    color: white; }
  .pe-single-trigger.pe-single-trigger--small-space {
    padding-top: .25rem;
    padding-bottom: .25rem; }
    .pe-single-trigger.pe-single-trigger--small-space:last-child {
      padding-bottom: .75rem; }
  .pe-single-trigger.pe-single-trigger--remove:before, .pe-single-trigger.pe-single-trigger--remove:after {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
  .pe-single-trigger.pe-single-trigger--remove:before {
    content: "";
    margin-right: .3em; }
  .pe-single-trigger.pe-single-trigger--red-icon:before, .pe-single-trigger.pe-single-trigger--red-icon:after {
    color: #dc281e; }
  .pe-single-trigger.pe-single-trigger--no-top-space {
    margin-top: 0; }
  .pe-single-trigger.pe-single-trigger--no-bottom-space {
    margin-bottom: 0; }
  .pe-single-trigger.pe-single-trigger-copy span {
    display: none;
    color: #dc281e;
    font-weight: 600; }
  .pe-single-trigger.pe-single-trigger-copy--active span {
    display: inline-block; }

/* PE Single checkbox
------------------------------------------------------------------------------------------------------------------ */
.pe-single-checkbox {
  margin: 1rem 0;
  padding: 0 0.75rem; }
  @media only screen and (min-width: 1441px) {
    .pe-single-checkbox {
      padding: 0 1.25rem; } }
  .pe-single-checkbox label {
    display: block !important;
    font-size: .7rem !important;
    line-height: 1.2rem; }
  .pe-single-checkbox.pe-single-checkbox--no-top-space {
    margin-top: 0; }
  .pe-single-checkbox.pe-single-checkbox--no-bottom-space {
    margin-bottom: 0; }

/* PE Apply button
------------------------------------------------------------------------------------------------------------------ */
.pe-apply-button {
  padding: 1rem 0;
  text-align: center;
  line-height: 0;
  background: #dc281e; }
  .pe-apply-button.pe-apply-button--white-bg {
    background: white; }
  .pe-apply-button.pe-apply-button--align-left {
    text-align: left;
    padding-top: 0;
    padding-left: 0.75rem; }
    @media only screen and (min-width: 1441px) {
      .pe-apply-button.pe-apply-button--align-left {
        padding-left: 1.25rem; } }
  .pe-apply-button.pe-apply-button--fixed {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0; }
  .pe-apply-button .button {
    margin: 0; }

/* PE Divider
------------------------------------------------------------------------------------------------------------------ */
.pe-divider {
  border-bottom: 1px solid #787878; }
  .pe-divider.pe-divider--light {
    border-bottom: 1px solid #e6e6e6; }

/* M108 Dropdown Module
##################################################################################################################### */
.m108-dropdown-module .overlaydropdown__list__toggler {
  font-size: 0.8rem;
  color: #585858;
  white-space: nowrap; }
  @media only screen and (min-width: 641px) {
    .m108-dropdown-module .overlaydropdown__list__toggler {
      top: 2px; } }
  @media only screen and (min-width: 1025px) {
    .m108-dropdown-module .overlaydropdown__list__toggler {
      top: 0; } }
  .m108-dropdown-module .overlaydropdown__list__toggler i {
    color: #dc281e; }
    .m108-dropdown-module .overlaydropdown__list__toggler i:before, .m108-dropdown-module .overlaydropdown__list__toggler i:after {
      margin-right: 0; }

.m108-dropdown-module .overlaydropdown__list-container {
  top: -6px;
  margin: 0;
  padding: 40px 0 0 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); }
  @media only screen and (min-width: 641px) {
    .m108-dropdown-module .overlaydropdown__list-container {
      top: -4px; } }
  .m108-dropdown-module .overlaydropdown__list-container .overlaydropdown__list {
    overflow: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0.25rem 1rem 0.5rem 0; }
    .m108-dropdown-module .overlaydropdown__list-container .overlaydropdown__list li a {
      padding: .2rem .65rem;
      font-size: 0.8rem;
      color: #585858;
      line-height: 1.3rem;
      outline: none; }
      .m108-dropdown-module .overlaydropdown__list-container .overlaydropdown__list li a:hover {
        color: #dc281e; }
      .m108-dropdown-module .overlaydropdown__list-container .overlaydropdown__list li a i:before,
      .m108-dropdown-module .overlaydropdown__list-container .overlaydropdown__list li a i:after {
        width: auto;
        margin: 0 0.3rem 0 0;
        padding: 0; }

/* M109 Category Teaser Module
##################################################################################################################### */
.m109-category-teaser-module.m109-category-teaser-module--block-grid [class*="block-grid-"] > li {
  padding: 0 .75rem; }

.m109-category-teaser-module .m109-category-teaser-module__item {
  position: relative;
  margin: .75rem 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding-top: 60%; }
  .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__image img {
      width: 100%; }
  .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__overlay {
    position: absolute;
    bottom: 20px;
    width: 100%; }
    .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__overlay h2, .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__overlay p {
      color: black; }
    .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__overlay h2 {
      margin-bottom: 1.25rem; }
    .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__overlay .button--cta {
      margin-bottom: 0;
      background-color: rgba(0, 0, 0, 0.1) !important; }
      .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__overlay .button--cta.button-multiple {
        margin-right: 0rem; }
        @media only screen and (min-width: 1441px) {
          .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__overlay .button--cta.button-multiple.button-multiple--first {
            margin-right: 0rem; } }
  .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__lead {
    display: none;
    max-width: 75%;
    margin: 0 auto; }
  .m109-category-teaser-module .m109-category-teaser-module__item.m109-category-teaser-module__item--negative h2, .m109-category-teaser-module .m109-category-teaser-module__item.m109-category-teaser-module__item--negative p {
    color: white;
    text-shadow: 0 0 20px black; }
  .m109-category-teaser-module .m109-category-teaser-module__item.m109-category-teaser-module__item--negative .m109-category-teaser-module__overlay .button--cta {
    background-color: rgba(0, 0, 0, 0.3) !important; }
  @media only screen and (min-width: 1025px) {
    .m109-category-teaser-module .m109-category-teaser-module__item.m109-category-teaser-module__item--title-centred h2 {
      margin-bottom: 5rem; } }
  @media only screen and (min-width: 1025px) {
    .m109-category-teaser-module .m109-category-teaser-module__item .m109-category-teaser-module__lead {
      display: block; } }
  @media only screen and (min-width: 1025px) {
    .m109-category-teaser-module .m109-category-teaser-module__item.m109-category-teaser-module__item--big {
      padding-top: 44.44444%; }
      .m109-category-teaser-module .m109-category-teaser-module__item.m109-category-teaser-module__item--big .m109-category-teaser-module__lead {
        max-width: 45%; }
      .m109-category-teaser-module .m109-category-teaser-module__item.m109-category-teaser-module__item--big .m109-category-teaser-module__overlay {
        bottom: 30px; } }
  @media only screen and (min-width: 1025px) {
    .m109-category-teaser-module .m109-category-teaser-module__item.m109-category-teaser-module__item--small .m109-category-teaser-module__lead {
      display: none; } }

/* M110 Design Line Teaser Module
##################################################################################################################### */
.m110-designline-teaser-module {
  padding: 2.5rem 0; }
  .m110-designline-teaser-module .m110-designline-teaser-module__title {
    text-align: center; }
    @media only screen and (min-width: 641px) {
      .m110-designline-teaser-module .m110-designline-teaser-module__title {
        margin-bottom: 1rem; } }

/* M111 Cookie Layer Module
##################################################################################################################### */
.m111-cookie-layer-module {
  position: relative;
  overflow: hidden;
  margin-top: 45px;
  font-size: 0.8rem;
  font-weight: 300; }
  @media only screen and (min-width: 1025px) {
    .m111-cookie-layer-module {
      margin-top: 0; } }
  @media only screen and (min-width: 1025px) {
    .m111-cookie-layer-module .m111-cookie-layer-module__title,
    .m111-cookie-layer-module .m111-cookie-layer-module__text-bigger,
    .m111-cookie-layer-module .m111-cookie-layer-module__text {
      padding: 0 10%; } }
  .m111-cookie-layer-module .m111-cookie-layer-module__title {
    margin-bottom: 1rem; }
  .m111-cookie-layer-module .m111-cookie-layer-module__text a {
    font-weight: 600; }
    .m111-cookie-layer-module .m111-cookie-layer-module__text a:before, .m111-cookie-layer-module .m111-cookie-layer-module__text a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m111-cookie-layer-module .m111-cookie-layer-module__text a:before {
      content: "";
      margin-right: .3em; }
    .m111-cookie-layer-module .m111-cookie-layer-module__text a:before {
      margin-left: 0.25rem; }
  @media only screen and (min-width: 1025px) {
    .m111-cookie-layer-module .m111-cookie-layer-module__text-bigger {
      font-size: 1rem;
      line-height: 1.5rem; } }
  .m111-cookie-layer-module .m111-cookie-layer-module__head {
    position: relative;
    padding: 0.25rem 0 1.6rem 0;
    color: white;
    text-align: center;
    background: #5a5a5a; }
    .m111-cookie-layer-module .m111-cookie-layer-module__head h1, .m111-cookie-layer-module .m111-cookie-layer-module__head h2, .m111-cookie-layer-module .m111-cookie-layer-module__head h3, .m111-cookie-layer-module .m111-cookie-layer-module__head h4, .m111-cookie-layer-module .m111-cookie-layer-module__head h5, .m111-cookie-layer-module .m111-cookie-layer-module__head h6, .m111-cookie-layer-module .m111-cookie-layer-module__head a {
      color: white; }
    .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__btn-close {
      position: absolute;
      top: .5rem;
      right: 0.5rem;
      font-size: 1.3rem;
      cursor: pointer; }
      @media only screen and (min-width: 1025px) {
        .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__btn-close {
          top: 1.25rem;
          right: 1rem; } }
    .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__cookie-title {
      margin-bottom: .8rem; }
      .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__cookie-title .m111-cookie-layer-module__cookie-title_img {
        display: block;
        margin: 0 auto;
        background-image: url("../assets/images/sprite.png");
        background-position: -208px 0px;
        background-repeat: no-repeat;
        width: 57px;
        height: 82px;
        -webkit-transform: scale(0.75);
            -ms-transform: scale(0.75);
                transform: scale(0.75); }
        @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
          .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__cookie-title .m111-cookie-layer-module__cookie-title_img {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }
      @media only screen and (min-width: 641px) {
        .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__cookie-title {
          display: inline-block;
          margin-bottom: 0; }
          .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__cookie-title .m111-cookie-layer-module__cookie-title_text,
          .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__cookie-title .m111-cookie-layer-module__cookie-title_img {
            display: inline-block;
            vertical-align: middle; }
          .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__cookie-title .m111-cookie-layer-module__cookie-title_img {
            position: relative;
            top: -.25rem;
            text-align: right; } }
    .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__head__btn-continue {
      margin-bottom: .5rem;
      background: #414141 !important; }
      @media only screen and (min-width: 641px) {
        .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__head__btn-continue {
          margin-bottom: 0;
          vertical-align: middle; } }
    .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__head__btn-settings {
      display: block;
      padding-left: 0.25rem;
      cursor: pointer; }
      .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__head__btn-settings:before, .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__head__btn-settings:after {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        /* opacity: .8; */
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* fix buttons height, for twitter bootstrap */
        line-height: 1em;
        /* you can be more comfortable with increased icons size */
        /* font-size: 120%; */
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Uncomment for 3D effect */
        /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
      .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__head__btn-settings:before {
        content: "";
        margin-right: .3em; }
      .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__head__btn-settings:before {
        margin-right: 0.4rem;
        margin-left: 0;
        -webkit-transition: all .1s ease-in-out;
                transition: all .1s ease-in-out; }
      .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__head__btn-settings.m111-cookie-layer-module__head__btn-settings--active:before {
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg); }
      @media only screen and (min-width: 641px) {
        .m111-cookie-layer-module .m111-cookie-layer-module__head .m111-cookie-layer-module__head__btn-settings {
          display: inline-block;
          margin-left: 1rem; } }
    @media only screen and (min-width: 1025px) {
      .m111-cookie-layer-module .m111-cookie-layer-module__head {
        padding: 1.5rem 0 2.5rem 0; } }
    .m111-cookie-layer-module .m111-cookie-layer-module__head .button--cta__outer {
      overflow: inherit; }
  .m111-cookie-layer-module .m111-cookie-layer-module__settings {
    position: relative;
    overflow: hidden;
    display: none; }
    .m111-cookie-layer-module .m111-cookie-layer-module__settings .m111-cookie-layer-module__settings__inner {
      position: relative;
      padding: 1rem 0;
      text-align: left; }
      @media only screen and (min-width: 641px) {
        .m111-cookie-layer-module .m111-cookie-layer-module__settings .m111-cookie-layer-module__settings__inner {
          padding: 2rem 0; } }
    .m111-cookie-layer-module .m111-cookie-layer-module__settings .m111-cookie-layer-module__title,
    .m111-cookie-layer-module .m111-cookie-layer-module__settings .m111-cookie-layer-module__text-bigger {
      text-align: center; }
    .m111-cookie-layer-module .m111-cookie-layer-module__settings .m111-cookie-layer-module__title {
      text-transform: uppercase; }
    .m111-cookie-layer-module .m111-cookie-layer-module__settings .checkbox-inline {
      margin-bottom: .25rem; }
      .m111-cookie-layer-module .m111-cookie-layer-module__settings .checkbox-inline label {
        font-weight: 600; }
      @media only screen and (min-width: 641px) {
        .m111-cookie-layer-module .m111-cookie-layer-module__settings .checkbox-inline {
          margin-top: .5rem; } }
    .m111-cookie-layer-module .m111-cookie-layer-module__settings .m111-cookie-layer-module__list {
      margin: 0 0 1.5rem;
      padding: 0; }
    .m111-cookie-layer-module .m111-cookie-layer-module__settings .m111-cookie-layer-module__submit_container {
      text-align: center; }
      .m111-cookie-layer-module .m111-cookie-layer-module__settings .m111-cookie-layer-module__submit_container .m111-cookie-layer-module__btn-submit {
        margin-bottom: 0; }

/* M16 Product Overview Module
##################################################################################################################### */
.m112-product-specification-module {
  padding: 1.5rem 0 0; }
  .m112-product-specification-module .m112-product-specification__list {
    overflow: hidden;
    max-height: 180px;
    -webkit-transition: max-height .5s ease-in-out;
            transition: max-height .5s ease-in-out; }
    @media only screen and (min-width: 641px) {
      .m112-product-specification-module .m112-product-specification__list {
        max-height: 151px; } }
    .m112-product-specification-module .m112-product-specification__list.m112-product-specification__list--active {
      max-height: 1000px; }
  .m112-product-specification-module .m112-product-specifications__item {
    margin: 0 0 5px;
    padding: 10px 0;
    border-bottom: 1px solid gainsboro;
    display: inline-block;
    width: 100%; }
    @media only screen and (min-width: 641px) {
      .m112-product-specification-module .m112-product-specifications__item {
        margin: 0 0 10px;
        padding: 10px 0 20px;
        width: 47%;
        margin-left: 2%;
        min-height: 72px;
        vertical-align: middle; } }
    @media only screen and (min-width: 1025px) {
      .m112-product-specification-module .m112-product-specifications__item {
        width: 30%;
        margin-left: 3%; } }
  .m112-product-specification-module .m112-product-specifications__icon {
    width: 32px;
    display: inline-block;
    vertical-align: top; }
  .m112-product-specification-module .m112-product-specifications__text {
    padding-left: 10px;
    display: inline-block;
    width: 80%;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    vertical-align: top; }
  .m112-product-specification-module .m112-product-specification-module__actions {
    padding: 2.25rem 0;
    text-align: center; }
    .m112-product-specification-module .m112-product-specification-module__actions .button {
      margin: 0; }
    .m112-product-specification-module .m112-product-specification-module__actions .button--hidden {
      display: none; }
  .m112-product-specification-module.m112-product-specification--vertical {
    padding-top: 0; }
    .m112-product-specification-module.m112-product-specification--vertical .m112-product-specification__list {
      max-height: none !important; }
    .m112-product-specification-module.m112-product-specification--vertical .m112-product-specifications__item {
      width: 100%;
      padding: 10px 0;
      min-height: 0;
      margin: 0; }

/* M113 Product Variations Module
##################################################################################################################### */
.m113-product-variations-module {
  padding: 1rem 0;
  font-size: 0.8rem; }
  .m113-product-variations-module .m113-product-variations-module__title {
    margin-bottom: .25rem;
    font-size: .9rem;
    text-align: center; }
    @media only screen and (min-width: 1025px) {
      .m113-product-variations-module .m113-product-variations-module__title {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0;
        margin-right: 1rem;
        text-align: left; } }
  .m113-product-variations-module .m113-product-variations-module__pagination {
    margin: 0 1rem;
    padding: 0 0 0.5rem 0;
    border-bottom: 1px solid #e1e1e1;
    text-align: center; }
    @media only screen and (min-width: 1025px) {
      .m113-product-variations-module .m113-product-variations-module__pagination {
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: middle;
        border-bottom: 0; } }
    .m113-product-variations-module .m113-product-variations-module__pagination li, .m113-product-variations-module .m113-product-variations-module__pagination a {
      display: inline-block;
      vertical-align: middle; }
    .m113-product-variations-module .m113-product-variations-module__pagination a {
      padding: .25rem .5rem;
      color: black;
      font-weight: 400; }
      .m113-product-variations-module .m113-product-variations-module__pagination a:hover, .m113-product-variations-module .m113-product-variations-module__pagination a:focus {
        -webkit-border-radius: 3px;
                border-radius: 3px;
        background: #e6e6e6; }
    .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__page--current a {
      font-weight: 600;
      color: #dc281e; }
    .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__page--unavailable a,
    .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow--unavailable a {
      color: #b4b4b4 !important; }
      .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__page--unavailable a:hover, .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__page--unavailable a:focus,
      .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow--unavailable a:hover,
      .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow--unavailable a:focus {
        background: none;
        cursor: default; }
    .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow a {
      margin-top: -.1rem;
      color: #dc281e;
      font-size: 1rem; }
      .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow a:before, .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow a:after {
        margin: 0 !important;
        padding: 0; }
      .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow a span {
        display: inline-block;
        width: 0;
        text-indent: -9999px; }
    .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow--previous a:before, .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow--previous a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow--previous a:before {
      content: "";
      margin-right: .3em; }
    .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow--next a:before, .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow--next a:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m113-product-variations-module .m113-product-variations-module__pagination .m113-product-variations-module__pagination__arrow--next a:after {
      content: "";
      margin-left: .3em; }

/* M114 Single Link Module
##################################################################################################################### */
.m114-single-link-module {
  margin: .5rem 0; }
  @media only screen and (min-width: 641px) {
    .m114-single-link-module {
      margin: 1rem 0; } }
  .m114-single-link-module .m114-single-link-module__link {
    font-size: 0.8rem;
    color: #585858; }
    .m114-single-link-module .m114-single-link-module__link:before, .m114-single-link-module .m114-single-link-module__link:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m114-single-link-module .m114-single-link-module__link:before {
      content: "";
      margin-right: .3em; }
    .m114-single-link-module .m114-single-link-module__link:before, .m114-single-link-module .m114-single-link-module__link:after {
      position: relative;
      top: -.05rem;
      margin-right: .25rem;
      font-size: 0.6rem;
      color: #dc281e;
      line-height: 1rem; }
    .m114-single-link-module .m114-single-link-module__link:hover, .m114-single-link-module .m114-single-link-module__link:focus, .m114-single-link-module .m114-single-link-module__link:active {
      color: #dc281e; }
  .m114-single-link-module.m114-single-link-module--left {
    text-align: left; }
  .m114-single-link-module.m114-single-link-module--center {
    text-align: center; }
  .m114-single-link-module.m114-single-link-module--right {
    text-align: right; }
  .m114-single-link-module .m114-single-link-module__second-column {
    display: none;
    text-align: right; }
    @media only screen and (min-width: 1025px) {
      .m114-single-link-module .m114-single-link-module__second-column {
        display: block; } }
    .m114-single-link-module .m114-single-link-module__second-column .m117-add-to-comparison-button-module,
    .m114-single-link-module .m114-single-link-module__second-column .m115-add-to-favorites-button-module {
      margin-left: 1rem; }

/* M115 Add to favorites Button
##################################################################################################################### */
.m115-add-to-favorites-button-module {
  margin: 0 0 .5rem;
  line-height: 1.5rem;
  font-size: 0.8rem; }
  .m115-add-to-favorites-button-module::after {
    clear: both;
    content: "";
    display: table; }
  .m115-add-to-favorites-button-module a,
  .m115-add-to-favorites-button-module button {
    color: black; }
    .m115-add-to-favorites-button-module a.active .m115-add-to-favorites-button-module__icon-tick,
    .m115-add-to-favorites-button-module button.active .m115-add-to-favorites-button-module__icon-tick {
      position: absolute;
      z-index: 100;
      top: -20px;
      left: 30px;
      right: 0; }
      .m115-add-to-favorites-button-module a.active .m115-add-to-favorites-button-module__icon-tick:after,
      .m115-add-to-favorites-button-module button.active .m115-add-to-favorites-button-module__icon-tick:after {
        content: "";
        display: block;
        position: absolute;
        top: -6px;
        right: -6px;
        background-image: url("../assets/images/sprite.png");
        background-position: -250px -133px;
        background-repeat: no-repeat;
        width: 15px;
        height: 15px; }
        @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
          .m115-add-to-favorites-button-module a.active .m115-add-to-favorites-button-module__icon-tick:after,
          .m115-add-to-favorites-button-module button.active .m115-add-to-favorites-button-module__icon-tick:after {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }
  .m115-add-to-favorites-button-module .m115-add-to-favorites-button-module__icon {
    position: relative;
    display: inline-block;
    margin-right: 40px; }
    .m115-add-to-favorites-button-module .m115-add-to-favorites-button-module__icon:after, .m115-add-to-favorites-button-module .m115-add-to-favorites-button-module__icon:before {
      content: "";
      position: absolute;
      top: -10px;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto; }
    .m115-add-to-favorites-button-module .m115-add-to-favorites-button-module__icon:after {
      width: 30px;
      height: 30px;
      border: 1px solid #d7d7d7; }
    .m115-add-to-favorites-button-module .m115-add-to-favorites-button-module__icon:before {
      text-indent: 0;
      line-height: 1.4rem;
      cursor: pointer;
      left: 7px;
      background-image: url("../assets/images/sprite.png");
      background-position: -196px -171px;
      background-repeat: no-repeat;
      width: 16px;
      height: 15px; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .m115-add-to-favorites-button-module .m115-add-to-favorites-button-module__icon:before {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }
  .m115-add-to-favorites-button-module .m115-add-to-favorites-button-module__label {
    display: inline-block;
    white-space: nowrap; }
  .m115-add-to-favorites-button-module.m115-add-to-favorites-button-module--inverse .m115-add-to-favorites-button-module__icon:after {
    background: #555555;
    border: none; }
  .m115-add-to-favorites-button-module.m115-add-to-favorites-button-module--inverse .m115-add-to-favorites-button-module__icon:before {
    background-image: url("../assets/images/sprite.png");
    background-position: -212px -171px;
    background-repeat: no-repeat;
    width: 16px;
    height: 15px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m115-add-to-favorites-button-module.m115-add-to-favorites-button-module--inverse .m115-add-to-favorites-button-module__icon:before {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
  .m115-add-to-favorites-button-module.m115-add-to-favorites-button-module--no-label .m115-add-to-favorites-button-module__label {
    display: none; }
  .m115-add-to-favorites-button-module.m115-add-to-favorites-button-module--tiny-text {
    font-size: 0.6rem; }
    .m115-add-to-favorites-button-module.m115-add-to-favorites-button-module--tiny-text .m115-add-to-favorites-button-module__icon {
      margin-right: 40px; }
  .m115-add-to-favorites-button-module.m115-add-to-favorites-button-module--inline {
    display: inline-block; }

.header__meta .header__meta-navigation__item a.header__meta-navigation__badge {
  padding: 10px 15px 10px 5px; }

.header__meta-navigation__badge {
  position: relative; }
  .header__meta-navigation__badge:hover .counter {
    background-color: #9e1e14; }
  .header__meta-navigation__badge .counter-container {
    position: absolute;
    top: -2px;
    left: 20px;
    z-index: 1; }
  .header__meta-navigation__badge .counter {
    width: 28px;
    height: 16px;
    background-color: red;
    color: white;
    padding: 1px 5px;
    font-size: 8pt; }
  .header__meta-navigation__badge .badge {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    border: 1px solid #c8c8c8; }

.favorit-badge .badge {
  background-image: url("../assets/images/sprite.png");
  background-position: -102px -171px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
    .favorit-badge .badge {
      background-size: 265px 236px;
      background-image: url("../assets/images/sprite-2x.png"); } }

.compare-badge .badge {
  background-image: url("../assets/images/sprite.png");
  background-position: -122px -171px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: relative; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
    .compare-badge .badge {
      background-size: 265px 236px;
      background-image: url("../assets/images/sprite-2x.png"); } }

/* m117 Add to comparison Button
##################################################################################################################### */
.m117-add-to-comparison-button-module {
  margin: 0 0 .5rem;
  line-height: 1.5rem;
  font-size: 0.8rem; }
  .m117-add-to-comparison-button-module::after {
    clear: both;
    content: "";
    display: table; }
  .m117-add-to-comparison-button-module a,
  .m117-add-to-comparison-button-module button {
    color: black; }
    .m117-add-to-comparison-button-module a.active .m117-add-to-comparison-button-module__icon-tick,
    .m117-add-to-comparison-button-module button.active .m117-add-to-comparison-button-module__icon-tick {
      position: absolute;
      z-index: 100;
      top: -20px;
      left: 30px;
      right: 0; }
      .m117-add-to-comparison-button-module a.active .m117-add-to-comparison-button-module__icon-tick:after,
      .m117-add-to-comparison-button-module button.active .m117-add-to-comparison-button-module__icon-tick:after {
        content: "";
        display: block;
        position: absolute;
        top: -6px;
        right: -6px;
        background-image: url("../assets/images/sprite.png");
        background-position: -250px -133px;
        background-repeat: no-repeat;
        width: 15px;
        height: 15px; }
        @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
          .m117-add-to-comparison-button-module a.active .m117-add-to-comparison-button-module__icon-tick:after,
          .m117-add-to-comparison-button-module button.active .m117-add-to-comparison-button-module__icon-tick:after {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }
  .m117-add-to-comparison-button-module .m117-add-to-comparison-button-module__icon {
    position: relative;
    display: inline-block;
    margin-right: 40px; }
    .m117-add-to-comparison-button-module .m117-add-to-comparison-button-module__icon:after, .m117-add-to-comparison-button-module .m117-add-to-comparison-button-module__icon:before {
      content: "";
      position: absolute;
      top: -10px;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto; }
    .m117-add-to-comparison-button-module .m117-add-to-comparison-button-module__icon:after {
      width: 30px;
      height: 30px;
      border: 1px solid #d7d7d7; }
    .m117-add-to-comparison-button-module .m117-add-to-comparison-button-module__icon:before {
      text-indent: 0;
      line-height: 1.4rem;
      cursor: pointer;
      left: 4px;
      background-image: url("../assets/images/sprite.png");
      background-position: -114px -198px;
      background-repeat: no-repeat;
      width: 22px;
      height: 10px; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .m117-add-to-comparison-button-module .m117-add-to-comparison-button-module__icon:before {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }
  .m117-add-to-comparison-button-module .m117-add-to-comparison-button-module__label {
    display: inline-block;
    white-space: nowrap; }
  .m117-add-to-comparison-button-module.m117-add-to-comparison-button-module--inverse .m117-add-to-comparison-button-module__icon:after {
    background: #555555;
    border: none; }
  .m117-add-to-comparison-button-module.m117-add-to-comparison-button-module--inverse .m117-add-to-comparison-button-module__icon:before {
    background-image: url("../assets/images/sprite.png");
    background-position: -92px -198px;
    background-repeat: no-repeat;
    width: 22px;
    height: 10px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
      .m117-add-to-comparison-button-module.m117-add-to-comparison-button-module--inverse .m117-add-to-comparison-button-module__icon:before {
        background-size: 265px 236px;
        background-image: url("../assets/images/sprite-2x.png"); } }
  .m117-add-to-comparison-button-module.m117-add-to-comparison-button-module--no-label .m117-add-to-comparison-button-module__label {
    display: none; }
  .m117-add-to-comparison-button-module.m117-add-to-comparison-button-module--tiny-text {
    font-size: 0.6rem; }
    .m117-add-to-comparison-button-module.m117-add-to-comparison-button-module--tiny-text .m117-add-to-comparison-button-module__icon {
      margin-right: 40px; }
  .m117-add-to-comparison-button-module.m117-add-to-comparison-button-module--inline {
    display: inline-block; }

/* M119 Favorites List Options Module
##################################################################################################################### */
.m119-product-favorites-filter-module {
  position: relative;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  @media only screen and (min-width: 1025px) {
    .m119-product-favorites-filter-module {
      margin-bottom: 2rem; } }

.m119-product-favorites-filter-module__wrapper {
  display: none; }
  .m119-product-favorites-filter-module__wrapper.m119-product-favorites-filter-module__wrapper--active {
    display: block; }

.m119-product-favorites-filter-module__main,
.m119-product-favorites-filter-module__additional {
  position: relative;
  padding: 1px 0; }

.m119-product-favorites-filter-module__main {
  color: white;
  background: #585858; }

.m119-product-favorites-filter-module__additional {
  padding-bottom: 0;
  color: #585858;
  background: white; }

/* M120 Product Comparison List Options Module
##################################################################################################################### */
.m120-product-comparison-list-options-module {
  position: relative;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  @media only screen and (min-width: 1025px) {
    .m120-product-comparison-list-options-module {
      margin-bottom: 2rem;
      margin-right: 2rem; } }

.m120-product-comparison-list-options-module__wrapper {
  display: none; }
  .m120-product-comparison-list-options-module__wrapper.m120-product-comparison-list-options-module__wrapper--active {
    display: block; }

.m120-product-comparison-list-options-module__main,
.m120-product-comparison-list-options-module__additional {
  position: relative;
  padding: 1px 0; }

.m120-product-comparison-list-options-module__main {
  color: white;
  background: #585858;
  padding: .5rem 0 .75rem; }

.m120-product-comparison-list-options-module__additional {
  padding-bottom: 0;
  color: #585858;
  background: white; }

/* M121 Comparison List Table Module
##################################################################################################################### */
.m121-comparison-list-table-module {
  display: none; }

@media only screen and (min-width: 1025px) {
  .m121-comparison-list-table-module {
    margin: 2rem 0;
    display: block; }
    .m121-comparison-list-table-module .m121-comparison-list-table__slick {
      position: relative;
      width: 100%;
      background: #ffffff;
      height: 254px; }
      .m121-comparison-list-table-module .m121-comparison-list-table__slick.slick-initialized {
        visibility: visible; }
      .m121-comparison-list-table-module .m121-comparison-list-table__slick .m121-comparison-list-table__slick__fancybox-expand {
        top: 0;
        right: 0 !important;
        position: absolute;
        border-bottom: 1px solid #d9d9d9;
        border-left: 1px solid #d9d9d9;
        padding: 5px;
        width: auto;
        height: auto; }
        .m121-comparison-list-table-module .m121-comparison-list-table__slick .m121-comparison-list-table__slick__fancybox-expand .m121-comparison-list-table__slick__fancybox-expand-icon {
          background-image: url("../assets/images/sprite.png");
          background-position: -142px -171px;
          background-repeat: no-repeat;
          width: 18px;
          height: 18px;
          display: block; } }
        @media only screen and (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min-width: 1025px) and (min--moz-device-pixel-ratio: 1.2), only screen and (min-width: 1025px) and (min-device-pixel-ratio: 1.2), only screen and (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-width: 1025px) and (min-resolution: 110dpi), only screen and (min-width: 1025px) and (min-resolution: 1.2dppx) {
          .m121-comparison-list-table-module .m121-comparison-list-table__slick .m121-comparison-list-table__slick__fancybox-expand .m121-comparison-list-table__slick__fancybox-expand-icon {
            background-size: 265px 236px;
            background-image: url("../assets/images/sprite-2x.png"); } }

@media only screen and (min-width: 1025px) {
      .m121-comparison-list-table-module .m121-comparison-list-table__slick .m121-comparison-list-table__slick__item {
        position: relative;
        overflow: hidden;
        outline: none;
        float: left ;
        height: 254px;
        width: 100%; }
        .m121-comparison-list-table-module .m121-comparison-list-table__slick .m121-comparison-list-table__slick__item:focus {
          outline: none; }
        .m121-comparison-list-table-module .m121-comparison-list-table__slick .m121-comparison-list-table__slick__item img {
          position: absolute;
          display: block;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          margin: auto;
          padding: 1rem; }
        .m121-comparison-list-table-module .m121-comparison-list-table__slick .m121-comparison-list-table__slick__item:after {
          display: block;
          content: "";
          width: 100%;
          height: 0;
          padding-bottom: 100%; }
    .m121-comparison-list-table-module .m121-comparison-list-table__product-head {
      padding: 1.5rem 1.5rem 1.05rem; }
      .m121-comparison-list-table-module .m121-comparison-list-table__product-head .m121-comparison-list-table__product-head__flag {
        padding: 4px 16px;
        font-size: 0.8rem;
        line-height: 23px;
        color: white;
        font-weight: bold;
        position: absolute;
        z-index: 1; } }
      @media only screen and (min-width: 1025px) and (min-width: 360px) {
        .m121-comparison-list-table-module .m121-comparison-list-table__product-head .m121-comparison-list-table__product-head__flag {
          padding: 3px 6px;
          font-size: 0.6rem;
          line-height: 13px; } }
      @media only screen and (min-width: 1025px) and (min-width: 641px) {
        .m121-comparison-list-table-module .m121-comparison-list-table__product-head .m121-comparison-list-table__product-head__flag {
          padding: 4px 16px;
          font-size: 0.8rem;
          line-height: 23px; } }

@media only screen and (min-width: 1025px) {
        .m121-comparison-list-table-module .m121-comparison-list-table__product-head .m121-comparison-list-table__product-head__flag[data-status="new"] {
          background: #dc281e; }
        .m121-comparison-list-table-module .m121-comparison-list-table__product-head .m121-comparison-list-table__product-head__flag[data-status="retired"] {
          background: #5a5a5a; }
      .m121-comparison-list-table-module .m121-comparison-list-table__product-head .m121-comparison-list-table__product-head__close {
        position: absolute;
        right: 0;
        top: 0;
        border: 1px solid #d7d7d7;
        width: 1.5rem;
        height: 1.5rem;
        line-height: 28px;
        cursor: pointer;
        text-align: center;
        color: black; }
      .m121-comparison-list-table-module .m121-comparison-list-table__product-head .m121-comparison-list-table__product-head__image {
        background: #ffffff; }
      .m121-comparison-list-table-module .m121-comparison-list-table__product-head .m121-comparison-list-table__product-head__text {
        margin-bottom: 1.5rem; }
    .m121-comparison-list-table-module h2 {
      font-size: 1.35rem;
      margin-bottom: 1.5rem;
      white-space: normal; }
    .m121-comparison-list-table-module .m121-comparison-list-table__actions {
      text-align: center;
      margin-top: 1rem; }
    .m121-comparison-list-table-module .m121-comparison-list-table-module__indicator {
      font-size: 0.6rem; }
      .m121-comparison-list-table-module .m121-comparison-list-table-module__indicator .m121-comparison-list-table-module__indicator__text {
        display: none; }
    .m121-comparison-list-table-module .m121-comparison-list-table__table-title {
      padding-left: 1rem;
      font-size: 0.8rem;
      border-bottom: 2px solid black;
      margin-bottom: 6px;
      margin-top: -18px;
      margin-right: 2px; }
    .m121-comparison-list-table-module .m121-comparison-list-table__table__drawing {
      margin: 25px 22px; }
      .m121-comparison-list-table-module .m121-comparison-list-table__table__drawing .m121-comparison-list-table__table__drawing__inner {
        background: #ffffff;
        position: relative;
        padding-bottom: 100%; }
        .m121-comparison-list-table-module .m121-comparison-list-table__table__drawing .m121-comparison-list-table__table__drawing__inner img {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          margin: auto;
          max-height: 95%;
          max-width: 95%; }
    .m121-comparison-list-table-module .m121-comparison-list-table__downloads {
      font-size: 0.6rem;
      margin: 0 -8px; }
      .m121-comparison-list-table-module .m121-comparison-list-table__downloads .m121-comparison-list-table__downloads__item {
        display: table;
        width: 100%; }
        .m121-comparison-list-table-module .m121-comparison-list-table__downloads .m121-comparison-list-table__downloads__item .m121-comparison-list-table__downloads__item__link,
        .m121-comparison-list-table-module .m121-comparison-list-table__downloads .m121-comparison-list-table__downloads__item .m121-comparison-list-table__downloads__item__text {
          display: table-cell;
          vertical-align: bottom;
          padding: 3px 8px;
          border-top: 2px solid #ffffff; }
        .m121-comparison-list-table-module .m121-comparison-list-table__downloads .m121-comparison-list-table__downloads__item .m121-comparison-list-table__downloads__item__text {
          padding-right: 1rem;
          font-weight: 600; }
        .m121-comparison-list-table-module .m121-comparison-list-table__downloads .m121-comparison-list-table__downloads__item .m121-comparison-list-table__downloads__item__link {
          text-align: right;
          white-space: nowrap; }
    .m121-comparison-list-table-module .m121-comparison-list-table__table {
      table-layout: fixed;
      border-collapse: collapse; }
      .m121-comparison-list-table-module .m121-comparison-list-table__table th, .m121-comparison-list-table-module .m121-comparison-list-table__table td {
        width: 24%;
        position: relative;
        font-size: 0.8rem;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff; }
        .m121-comparison-list-table-module .m121-comparison-list-table__table th:first-child, .m121-comparison-list-table-module .m121-comparison-list-table__table td:first-child {
          width: 370px;
          border-right-width: 4px;
          padding-left: 1rem; }
      .m121-comparison-list-table-module .m121-comparison-list-table__table .m121-comparison-list-table__table__td--clean {
        background: none; }
      .m121-comparison-list-table-module .m121-comparison-list-table__table .m121-comparison-list-table__table__tr--subheader {
        text-align: left; }
        .m121-comparison-list-table-module .m121-comparison-list-table__table .m121-comparison-list-table__table__tr--subheader th, .m121-comparison-list-table-module .m121-comparison-list-table__table .m121-comparison-list-table__table__tr--subheader td {
          background: none;
          border-bottom-color: #575757; }
      .m121-comparison-list-table-module .m121-comparison-list-table__table .m121-comparison-list-table__table__tr--remarks td, .m121-comparison-list-table-module .m121-comparison-list-table__table .m121-comparison-list-table__table__tr--remarks th {
        padding: 15px 8px 60px;
        font-size: 0.8rem; }
        .m121-comparison-list-table-module .m121-comparison-list-table__table .m121-comparison-list-table__table__tr--remarks td:first-child, .m121-comparison-list-table-module .m121-comparison-list-table__table .m121-comparison-list-table__table__tr--remarks th:first-child {
          background: none; }
      .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head {
        border-collapse: collapse; }
        .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head th, .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head td {
          padding: 0; }
          .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head th:first-child, .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head td:first-child {
            border-right-width: 2px; }
        .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td,
        .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td {
          border: none;
          vertical-align: top; }
          .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td:nth-child(2),
          .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td:nth-child(2) {
            width: 72%; }
          .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td th, .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td td,
          .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td th,
          .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td td {
            width: 33.333333333%; }
  .product-items--1 .m121-comparison-list-table-module {
    width: 687px; }
    .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table th, .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table td {
      width: 46.1426492%; }
      .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table th:first-child, .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table td:first-child {
        width: 370px; }
    .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td:nth-child(2),
    .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td:nth-child(2) {
      width: 46.1426492%; }
    .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td th, .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td td,
    .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td th,
    .product-items--1 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td td {
      width: 100%; }
  .product-items--2 .m121-comparison-list-table-module {
    width: 1004px; }
    .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table th, .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table td {
      width: 31.5737052%; }
      .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table th:first-child, .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table td:first-child {
        width: 370px; }
    .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td:nth-child(2),
    .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td:nth-child(2) {
      width: 63.1474104%; }
    .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td th, .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tr > td td,
    .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td th,
    .product-items--2 .m121-comparison-list-table-module .m121-comparison-list-table__table.m121-comparison-list-table__table--head > tbody > tr > td td {
      width: 50%; } }

/* M123 Print Options Layer
##################################################################################################################### */
.m123-print-options-layer-module {
  display: none; }
  .m123-print-options-layer-module__wrapper .m123-print-options-layer-module__preferred-title {
    font-weight: bold; }
  .m123-print-options-layer-module__wrapper .m123-print-options-layer-module__print {
    display: none; }
  .m123-print-options-layer-module__wrapper .m123-print-options-layer-module__error {
    display: none; }
  .m123-print-options-layer-module__wrapper .fancybox-skin {
    background-color: #fff;
    -webkit-border-radius: 0;
            border-radius: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); }
  .m123-print-options-layer-module__wrapper .fancybox-close {
    background: none;
    top: 0px;
    right: 18px; }
    .m123-print-options-layer-module__wrapper .fancybox-close:after {
      color: #b7b7b7;
      content: "X"; }
  .m123-print-options-layer-module__wrapper .pdf-container__loader {
    position: relative;
    display: block;
    margin: 0;
    background: none; }

/* M124 Spacer Module
##################################################################################################################### */
.m124-spacer-module.m124-spacer-module--small {
  height: 20px; }
  @media only screen and (min-width: 641px) {
    .m124-spacer-module.m124-spacer-module--small {
      height: 30px; } }
  @media only screen and (min-width: 1025px) {
    .m124-spacer-module.m124-spacer-module--small {
      height: 45px; } }

.m124-spacer-module.m124-spacer-module--medium {
  height: 40px; }
  @media only screen and (min-width: 641px) {
    .m124-spacer-module.m124-spacer-module--medium {
      height: 60px; } }
  @media only screen and (min-width: 1025px) {
    .m124-spacer-module.m124-spacer-module--medium {
      height: 90px; } }

.m124-spacer-module.m124-spacer-module--large {
  height: 60px; }
  @media only screen and (min-width: 641px) {
    .m124-spacer-module.m124-spacer-module--large {
      height: 90px; } }
  @media only screen and (min-width: 1025px) {
    .m124-spacer-module.m124-spacer-module--large {
      height: 135px; } }

.m124-spacer-module.m124-spacer-module--xlarge {
  height: 73.33333px; }
  @media only screen and (min-width: 641px) {
    .m124-spacer-module.m124-spacer-module--xlarge {
      height: 110px; } }
  @media only screen and (min-width: 1025px) {
    .m124-spacer-module.m124-spacer-module--xlarge {
      height: 165px; } }

.m125-push-notification-window {
  position: fixed;
  z-index: -100;
  top: 0;
  right: 0;
  left: 0;
  color: white;
  background-color: #555555;
  padding: 0;
  opacity: 0;
  -webkit-transition: all .15s ease-in-out;
          transition: all .15s ease-in-out; }
  @media only screen and (min-width: 641px) {
    .m125-push-notification-window {
      top: .75rem;
      right: 0.75rem;
      left: auto;
      width: 350px; } }
  .m125-push-notification-window.visible {
    z-index: 999999;
    opacity: 1; }
  .m125-push-notification-window h1, .m125-push-notification-window h2, .m125-push-notification-window h3, .m125-push-notification-window h4, .m125-push-notification-window h5, .m125-push-notification-window h6, .m125-push-notification-window p, .m125-push-notification-window a {
    margin: 0;
    color: white;
    font-size: .7rem;
    line-height: 1.1rem; }
  .m125-push-notification-window a {
    text-decoration: underline; }
  .m125-push-notification-window a[href^="tel"] {
    text-decoration: none; }
  .m125-push-notification-window .row-table {
    width: 100%; }
  .m125-push-notification-window .table-cell {
    padding: 1rem;
    vertical-align: top; }
    .m125-push-notification-window .table-cell:nth-child(2) {
      padding-top: .75rem;
      padding-left: 0;
      padding-right: 0; }
    .m125-push-notification-window .table-cell:nth-child(3) {
      text-align: right; }
  .m125-push-notification-window .push-notification-image {
    height: 40px;
    min-height: 40px;
    width: 40px;
    min-width: 40px; }
  .m125-push-notification-window .push-notification-header {
    text-decoration: none; }
  .m125-push-notification-window .close-btn {
    position: relative;
    top: -6px;
    color: black;
    background: none;
    vertical-align: top;
    margin: 0;
    padding: 0; }
    .m125-push-notification-window .close-btn:before, .m125-push-notification-window .close-btn:after {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
      display: inline-block;
      text-decoration: inherit;
      text-align: center;
      /* opacity: .8; */
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
      /* you can be more comfortable with increased icons size */
      /* font-size: 120%; */
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
    .m125-push-notification-window .close-btn:before {
      content: "";
      margin-right: .3em; }
    .m125-push-notification-window .close-btn:before, .m125-push-notification-window .close-btn:after {
      margin: 0;
      padding: 0;
      color: white; }

/* M126 Story: Teaser Grid
##################################################################################################################### */
.m126-grid-teaser {
  overflow: hidden; }
  .m126-grid-teaser .grid-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

/* M126 Story: Grid Teaser Slider
##################################################################################################################### */
.m126-grid-teaser-slider {
  height: 100%; }
  .m126-grid-teaser-slider__slider {
    height: 100%; }
    .m126-grid-teaser-slider__slider__single-slide {
      height: 25vw; }
      .m126-grid-teaser-slider__slider__single-slide > .gridsliderteaseritem {
        height: 100%; }
  .m126-grid-teaser-slider .slick-arrow {
    width: 1.5vw;
    height: 2.7vw; }
  .m126-grid-teaser-slider .slick-prev, .m126-grid-teaser-slider .slick-next {
    margin: -1.3vw 0 0 0; }
  .m126-grid-teaser-slider .slick-prev {
    left: 20px !important; }
  .m126-grid-teaser-slider .slick-next {
    left: auto !important;
    right: 20px !important; }
  .m126-grid-teaser-slider .slick-arrow {
    background-image: url("../assets/images/web-icons/arrow_grid_left.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 100%; }
  .m126-grid-teaser-slider .slick-next {
    background-image: url("../assets/images/web-icons/arrow_grid_right.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 100%; }
  .m126-grid-teaser-slider .slider-red-icons .slick-arrow {
    background-image: url("../assets/images/web-icons/arrow_grid_left_red.png"); }
  .m126-grid-teaser-slider .slider-red-icons .slick-next {
    background-image: url("../assets/images/web-icons/arrow_grid_right_red.png"); }
  @media only screen and (max-width: 1024px) {
    .m126-grid-teaser-slider__slider__single-slide {
      height: 50vw; }
    .m126-grid-teaser-slider .slick-prev, .m126-grid-teaser-slider .slick-next {
      margin: -2.7vw 0 0 0; }
    .m126-grid-teaser-slider .slick-arrow {
      width: 3vw;
      height: 5.4vw; } }
  @media only screen and (max-width: 640px) {
    .m126-grid-teaser-slider__slider__single-slide {
      height: 100vw; }
    .m126-grid-teaser-slider .slick-prev, .m126-grid-teaser-slider .slick-next {
      margin: -3.9vw 0 0 0; }
    .m126-grid-teaser-slider .slick-arrow {
      width: 4.5vw;
      height: 7.9vw; } }

/* M126 Story: Grid Teaser Item
##################################################################################################################### */
.m126-grid-teaser-item {
  height: 100%; }
  .m126-grid-teaser-item__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: justify;
        align-content: space-between;
    height: 100%;
    text-align: center;
    padding: 0 2vw; }
    .m126-grid-teaser-item__inner__top, .m126-grid-teaser-item__inner__center, .m126-grid-teaser-item__inner__bottom {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 100%;
              flex: 1 100%; }
    .m126-grid-teaser-item__inner__top__inner {
      padding: 1.5vw 0 0 0; }
    .m126-grid-teaser-item__inner__center {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .m126-grid-teaser-item__inner__bottom {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .m126-grid-teaser-item__inner * {
      z-index: 1; }
    .m126-grid-teaser-item__inner .white {
      color: white; }
    .m126-grid-teaser-item__inner__icon {
      width: 9vw;
      display: inline-block !important; }
    .m126-grid-teaser-item__inner.background-red {
      background-color: #dc281e; }
      .m126-grid-teaser-item__inner.background-red::after, .m126-grid-teaser-item__inner.background-red:after {
        background-color: rgba(220, 40, 30, 0.5); }
    .m126-grid-teaser-item__inner.background-light-blue {
      background-repeat: repeat;
      background-image: url("../assets/images/m126-grid-teaser/bg-teaser-grid-blue.jpg"); }
      .m126-grid-teaser-item__inner.background-light-blue::after, .m126-grid-teaser-item__inner.background-light-blue:after {
        background-color: rgba(135, 201, 240, 0.5); }
    .m126-grid-teaser-item__inner.background-dark-blue {
      background-color: #87C9EE; }
      .m126-grid-teaser-item__inner.background-dark-blue::after, .m126-grid-teaser-item__inner.background-dark-blue:after {
        background-color: rgba(135, 201, 238, 0.5); }
    .m126-grid-teaser-item__inner.background-white {
      background-color: white; }
      .m126-grid-teaser-item__inner.background-white::after, .m126-grid-teaser-item__inner.background-white:after {
        background-color: rgba(255, 255, 255, 0.5); }
    .m126-grid-teaser-item__inner.background-light-gray {
      background-repeat: repeat;
      background-image: url("../assets/images/m126-grid-teaser/bg-teaser-grid-light-gray.jpg"); }
      .m126-grid-teaser-item__inner.background-light-gray::after, .m126-grid-teaser-item__inner.background-light-gray:after {
        background-color: rgba(244, 244, 244, 0.5); }
    .m126-grid-teaser-item__inner.background-gray {
      background-repeat: repeat;
      background-image: url("../assets/images/m126-grid-teaser/bg-teaser-grid-gray.jpg"); }
      .m126-grid-teaser-item__inner.background-gray::after, .m126-grid-teaser-item__inner.background-gray:after {
        background-color: rgba(230, 230, 230, 0.5); }
    .m126-grid-teaser-item__inner.background-dark-gray {
      background-repeat: repeat;
      background-image: url("../assets/images/m126-grid-teaser/bg-teaser-grid-dark-gray.jpg"); }
      .m126-grid-teaser-item__inner.background-dark-gray::after, .m126-grid-teaser-item__inner.background-dark-gray:after {
        background-color: rgba(217, 217, 217, 0.5); }
    .m126-grid-teaser-item__inner.background-with-image {
      background-size: cover; }
      .m126-grid-teaser-item__inner.background-with-image::after, .m126-grid-teaser-item__inner.background-with-image:after {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        left: 0;
        right: 0; }
    .m126-grid-teaser-item__inner__text-comic {
      font-family: 'Amatic SC';
      font-size: 4.5vw;
      line-height: 1; }
    .m126-grid-teaser-item__inner h3 {
      font-size: 1.1vw;
      line-height: 1;
      text-transform: uppercase;
      font-weight: 400; }
    .m126-grid-teaser-item__inner h4 {
      font-size: 1.3vw;
      line-height: 1.2;
      font-weight: 400;
      margin: 0; }
      .m126-grid-teaser-item__inner h4.big {
        font-size: 2vw; }
    .m126-grid-teaser-item__inner h5 {
      font-weight: 400; }
    @media only screen and (max-width: 1024px) {
      .m126-grid-teaser-item__inner h3 {
        font-size: 2.5vw; }
      .m126-grid-teaser-item__inner h4 {
        font-size: 3vw; }
        .m126-grid-teaser-item__inner h4.big {
          font-size: 5vw; }
      .m126-grid-teaser-item__inner__text-comic {
        font-size: 10vw; }
      .m126-grid-teaser-item__inner__icon {
        width: 20vw; }
      .m126-grid-teaser-item__inner__top__inner {
        padding: 2vw 0 0 0; } }
    @media only screen and (max-width: 640px) {
      .m126-grid-teaser-item__inner h3 {
        font-size: 4vw; }
      .m126-grid-teaser-item__inner h4 {
        font-size: 6vw; }
        .m126-grid-teaser-item__inner h4.big {
          font-size: 10vw; }
      .m126-grid-teaser-item__inner__text-comic {
        font-size: 24vw; }
      .m126-grid-teaser-item__inner__icon {
        width: 40vw; }
      .m126-grid-teaser-item__inner__top__inner {
        padding: 5vw 0 0 0; } }

/* M126 Story: Grid Teaser Item Social
##################################################################################################################### */
.m126-grid-teaser-item-social {
  background-repeat: repeat;
  background-image: url("../assets/images/m126-grid-teaser/bg-teaser-grid-blue.jpg");
  text-align: center;
  padding: 0 2vw;
  min-height: inherit;
  height: 100%; }
  .m126-grid-teaser-item-social .grid-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .m126-grid-teaser-item-social .grid-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .m126-grid-teaser-item-social .grid-align-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .m126-grid-teaser-item-social .m126-grid-teaser-item-social__icon {
    max-width: 120px;
    margin: 0 auto 25px; }
  .m126-grid-teaser-item-social h3 {
    font-size: 1.1vw;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    margin: 15px 0 30px 0; }
  .m126-grid-teaser-item-social a {
    display: block;
    width: 2.7vw;
    max-width: 64px;
    margin: 1vw; }
  .m126-grid-teaser-item-social__icons ul {
    list-style-type: none;
    list-style-image: none;
    margin-left: 1vw;
    margin-right: 1vw; }
  @media only screen and (max-width: 1024px) {
    .m126-grid-teaser-item-social h3 {
      font-size: 2.5vw; }
    .m126-grid-teaser-item-social a {
      width: 5vw;
      margin: 2vw; }
    .m126-grid-teaser-item-social__icons ul {
      margin-left: 1vw;
      margin-right: 1vw; } }
  @media only screen and (max-width: 640px) {
    .m126-grid-teaser-item-social h3 {
      font-size: 4vw; }
    .m126-grid-teaser-item-social a {
      width: 10vw;
      margin: 3.5vw; }
    .m126-grid-teaser-item-social__icons ul {
      margin-left: 7vw;
      margin-right: 7vw; } }

/* M126 Story: Grid Teaser Item Wide
##################################################################################################################### */
.m126-grid-teaser-item-wide {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  .m126-grid-teaser-item-wide h3 {
    font-size: 1.1vw;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400; }
  .m126-grid-teaser-item-wide h4 {
    font-size: 2vw;
    width: 100%;
    line-height: 1.2;
    font-weight: 400; }
    .m126-grid-teaser-item-wide h4.m126-grid-teaser-item-wide__text-comic {
      font-family: 'Amatic SC';
      font-size: 4.5vw; }
  .m126-grid-teaser-item-wide p {
    font-size: 1.2vw;
    line-height: 1.7vw; }
  .m126-grid-teaser-item-wide__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 100%;
            flex: 1 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .m126-grid-teaser-item-wide__image__padding {
      padding: 3em; }
    .m126-grid-teaser-item-wide__image img {
      width: 100%; }
  .m126-grid-teaser-item-wide__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 100%;
            flex: 1 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: justify;
        align-content: space-between; }
    .m126-grid-teaser-item-wide__text--padding {
      padding: 0 1vw; }
    .m126-grid-teaser-item-wide__text p {
      padding: 0 1em 0 0; }
    .m126-grid-teaser-item-wide__text__top, .m126-grid-teaser-item-wide__text__center, .m126-grid-teaser-item-wide__text__bottom {
      width: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1 100%;
              flex: 1 100%; }
    .m126-grid-teaser-item-wide__text__top__inner {
      padding: 1.5vw 0 0 0; }
    .m126-grid-teaser-item-wide__text__center {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: left;
          -ms-flex-pack: left;
              justify-content: left;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .m126-grid-teaser-item-wide__text__bottom {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
  .m126-grid-teaser-item-wide__no-image {
    display: none; }
  .m126-grid-teaser-item-wide.background-white {
    background-color: white; }
  .m126-grid-teaser-item-wide.background-light-gray {
    background-repeat: repeat;
    background-image: url("../assets/images/m126-grid-teaser/bg-teaser-grid-light-gray.jpg"); }
  .m126-grid-teaser-item-wide.background-gray {
    background-repeat: repeat;
    background-image: url("../assets/images/m126-grid-teaser/bg-teaser-grid-gray.jpg"); }
  .m126-grid-teaser-item-wide.background-dark-gray {
    background-repeat: repeat;
    background-image: url("../assets/images/m126-grid-teaser/bg-teaser-grid-dark-gray.jpg"); }
  @media only screen and (max-width: 1024px) {
    .m126-grid-teaser-item-wide {
      min-height: 50vw; }
      .m126-grid-teaser-item-wide h4 {
        font-size: 6vw; }
        .m126-grid-teaser-item-wide h4.m126-grid-teaser-item-wide__text-comic {
          font-size: 10vw; }
      .m126-grid-teaser-item-wide h3 {
        font-size: 2.5vw; }
      .m126-grid-teaser-item-wide p {
        font-size: 3vw;
        line-height: 3.5vw; }
      .m126-grid-teaser-item-wide__text__top__inner {
        padding: 2vw 0 0 0; } }
  @media only screen and (max-width: 640px) {
    .m126-grid-teaser-item-wide {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .m126-grid-teaser-item-wide h3 {
        font-size: 4vw; }
      .m126-grid-teaser-item-wide h4 {
        font-size: 10vw; }
        .m126-grid-teaser-item-wide h4.m126-grid-teaser-item-wide__text-comic {
          font-size: 24vw; }
      .m126-grid-teaser-item-wide p {
        font-size: 6vw;
        line-height: 6.5vw; }
      .m126-grid-teaser-item-wide__image {
        -webkit-box-flex: 1;
            -ms-flex: 1 auto;
                flex: 1 auto; }
      .m126-grid-teaser-item-wide__text {
        -webkit-box-flex: 1;
            -ms-flex: 1 auto;
                flex: 1 auto;
        text-align: center;
        padding: 0 1em; }
        .m126-grid-teaser-item-wide__text__top, .m126-grid-teaser-item-wide__text__center, .m126-grid-teaser-item-wide__text__bottom {
          -webkit-box-flex: 1;
              -ms-flex: 1 auto;
                  flex: 1 auto; }
        .m126-grid-teaser-item-wide__text p {
          padding: 0; }
        .m126-grid-teaser-item-wide__text__bottom {
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; }
        .m126-grid-teaser-item-wide__text__top__inner {
          padding: 5vw 0 0 0; }
      .m126-grid-teaser-item-wide .button {
        -ms-flex-item-align: end;
            align-self: flex-end; } }

/* M126 Story: Grid Teaser Row
##################################################################################################################### */
.m126-grid-teaser-row {
  width: 100vw;
  height: 25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .m126-grid-teaser-row--four .m126-grid-teaser-row__single-block, .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block {
    width: 25vw;
    height: 25vw; }
  .m126-grid-teaser-row--four .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide__inner,
  .m126-grid-teaser-row--four .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide {
    height: 100%; }
  .m126-grid-teaser-row--two .m126-grid-teaser-row__single-block {
    width: 50vw;
    height: 25vw; }
    .m126-grid-teaser-row--two .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide__inner,
    .m126-grid-teaser-row--two .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide {
      height: 25vw; }
  .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide__inner,
  .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide {
    height: 25vw; }
  .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(2) {
    width: 50vw; }
    .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(2) .m126-grid-slider-teaser-item__slider__single-slide__inner,
    .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(2) .m126-grid-slider-teaser-item__slider__single-slide {
      height: 25vw; }
  @media only screen and (max-width: 1024px) {
    .m126-grid-teaser-row--four {
      height: 100vw; }
      .m126-grid-teaser-row--four .m126-grid-teaser-row__single-block {
        width: 50vw;
        height: 50vw; }
        .m126-grid-teaser-row--four .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide__inner,
        .m126-grid-teaser-row--four .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide {
          height: 50vw; }
    .m126-grid-teaser-row--three {
      height: auto;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(1) {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
      .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(3) {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; }
      .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(1), .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(3) {
        width: 50vw;
        height: 50vw; }
      .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(2) {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        width: 100vw;
        height: auto; }
    .m126-grid-teaser-row--two {
      height: auto;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .m126-grid-teaser-row--two .m126-grid-teaser-row__single-block {
        width: 100vw;
        height: auto; } }
  @media only screen and (max-width: 640px) {
    .m126-grid-teaser-row--four {
      height: 400vw; }
      .m126-grid-teaser-row--four .m126-grid-teaser-row__single-block {
        width: 100vw;
        min-height: 100vw;
        height: 100vw; }
        .m126-grid-teaser-row--four .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide,
        .m126-grid-teaser-row--four .m126-grid-teaser-row__single-block .m126-grid-slider-teaser-item__slider__single-slide__inner {
          height: 100vw; }
    .m126-grid-teaser-row--three {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(1) {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
      .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(3) {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3; }
      .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(1), .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(3) {
        width: 100vw;
        height: 100vw; }
      .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(2) {
        height: auto; }
      .m126-grid-teaser-row--three .m126-grid-teaser-row__single-block:nth-child(2) {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: 100vw; }
    .m126-grid-teaser-row--two .m126-grid-teaser-row__single-block {
      height: auto; } }

/* M127 Puzzle Teaser
##################################################################################################################### */
.m127-puzzle-teaser {
  max-width: 1440px;
  margin: 0 auto; }
  .m127-puzzle-teaser.overlay {
    min-width: 1024px; }
  .m127-puzzle-teaser .m127-puzzle-teaser {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .m127-puzzle-teaser .m127-puzzle-teaser__single-block {
    display: block;
    width: 100%;
    position: relative; }
  .m127-puzzle-teaser .m127-puzzle-teaser__single {
    display: block;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .m127-puzzle-teaser .m127-puzzle-teaser__single__image {
    position: relative;
    width: 100%; }
  .m127-puzzle-teaser .m127-puzzle-teaser__single__image:after {
    content: '';
    display: block;
    padding-bottom: 100%; }
  .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-align {
      height: 100%;
      max-height: 100%;
      background-color: #e6e6e6;
      width: 100%; }
    .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link {
      position: relative;
      height: 100%;
      max-height: 100%;
      width: 100%;
      color: #585858; }
      .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container {
        display: block;
        width: 100%;
        height: 100%;
        -webkit-perspective: 1000px;
                perspective: 1000px; }
        .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container__holder {
          background: #e6e6e6;
          display: block;
          width: 100%;
          height: 100%; }
          .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container__holder__front, .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container__holder__back {
            -webkit-transition: 0.5s;
                    transition: 0.5s;
            -webkit-backface-visibility: hidden;
                    backface-visibility: hidden;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
          .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container__holder__front {
            -webkit-transform: perspective(1000px) rotateY(0deg);
                    transform: perspective(1000px) rotateY(0deg);
            opacity: 1; }
          .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container__holder__back {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-transform: perspective(400px) rotateY(-180deg);
                    transform: perspective(400px) rotateY(-180deg);
            opacity: 0; }
        .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container__front a, .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container__back a {
          display: inline-block; }
        .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container.flipped .m127-puzzle-teaser__single__image-square-link__container__holder {
          -ms-transform: rotateY(180deg); }
          .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container.flipped .m127-puzzle-teaser__single__image-square-link__container__holder__front {
            opacity: 0;
            -webkit-transform: perspective(1000px) rotateY(180deg);
                    transform: perspective(1000px) rotateY(180deg); }
          .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square-link__container.flipped .m127-puzzle-teaser__single__image-square-link__container__holder__back {
            opacity: 1;
            -webkit-transform: perspective(1000px) rotateY(0deg);
                    transform: perspective(1000px) rotateY(0deg);
            -ms-transform: perspective(1000px) rotateY(180deg);
            -ms-backface-visibility: visible; }
    .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square img {
      height: 100%;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square h3 {
      padding: 20px 20px 5px;
      text-align: center; }
    .m127-puzzle-teaser .m127-puzzle-teaser__single__image-square p {
      padding: 5px 20px 20px;
      text-align: center; }
  .m127-puzzle-teaser .m127-puzzle-teaser__single__content {
    text-align: center;
    position: relative;
    width: 100%; }
    .m127-puzzle-teaser .m127-puzzle-teaser__single__content.overlay {
      font-size: .8rem;
      line-height: 1.2rem; }
  .m127-puzzle-teaser .m127-puzzle-teaser__single__content:after {
    content: '';
    display: block;
    padding-bottom: 100%;
    position: relative; }
  .m127-puzzle-teaser .m127-puzzle-teaser__single__content:before {
    display: none; }
  @media only screen and (min-width: 641px) {
    .m127-puzzle-teaser .m127-puzzle-teaser__single {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .m127-puzzle-teaser .m127-puzzle-teaser__single__image, .m127-puzzle-teaser .m127-puzzle-teaser__single__content {
        width: 50%; }
      .m127-puzzle-teaser .m127-puzzle-teaser__single__content:before {
        display: block;
        content: '';
        width: 0;
        height: 0;
        border-top: 30px solid transparent;
        border-right: 30px solid #e6e6e6;
        border-bottom: 30px solid transparent;
        position: absolute;
        bottom: 0;
        top: 0;
        z-index: 2;
        margin: auto;
        left: -30px;
        right: auto; }
      .m127-puzzle-teaser .m127-puzzle-teaser__single--alternate {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; }
        .m127-puzzle-teaser .m127-puzzle-teaser__single--alternate .m127-puzzle-teaser__single__content:before {
          left: auto;
          right: -30px;
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg); } }
  @media only screen and (min-width: 1025px) {
    .m127-puzzle-teaser .m127-puzzle-teaser__single-block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .m127-puzzle-teaser .m127-puzzle-teaser__single-block .m127-puzzle-teaser__single {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; }
        .m127-puzzle-teaser .m127-puzzle-teaser__single-block .m127-puzzle-teaser__single--alternate .m127-puzzle-teaser__single__content:before {
          left: -30px;
          right: auto;
          -webkit-transform: rotate(0deg);
              -ms-transform: rotate(0deg);
                  transform: rotate(0deg); }
    .m127-puzzle-teaser .m127-puzzle-teaser__single {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 50%; }
    .m127-puzzle-teaser .m127-puzzle-teaser__single-block.m127-puzzle-teaser__single-block--alternate .m127-puzzle-teaser__single {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
      .m127-puzzle-teaser .m127-puzzle-teaser__single-block.m127-puzzle-teaser__single-block--alternate .m127-puzzle-teaser__single__content:before {
        left: auto;
        right: -30px;
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
      .m127-puzzle-teaser .m127-puzzle-teaser__single-block.m127-puzzle-teaser__single-block--alternate .m127-puzzle-teaser__single--alternate .m127-puzzle-teaser__single__content:before {
        left: auto;
        right: -30px;
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
    .m127-puzzle-teaser .m127-puzzle-teaser__single__content:before {
      display: block;
      content: '';
      width: 0;
      height: 0;
      border-top: 30px solid transparent;
      border-right: 30px solid #e6e6e6;
      border-bottom: 30px solid transparent;
      position: absolute;
      bottom: 0;
      top: 0;
      z-index: 2;
      margin: auto;
      left: -30px; } }

/* M128 Teaser Carousel Container
##################################################################################################################### */
.m128-teaser-carousel-container {
  background: #e6e6e6;
  padding: 40px 0; }
  .m128-teaser-carousel-container .grid-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .m128-teaser-carousel-container h2 {
    text-align: center;
    margin: 0 0 40px 0; }
  .m128-teaser-carousel-container .slick-arrow {
    width: 29px;
    height: 53px;
    background-image: url("../assets/images/web-icons/arrow_grid_left_red.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 100%; }
  .m128-teaser-carousel-container .slick-prev {
    left: 10px !important; }
  .m128-teaser-carousel-container .slick-next {
    right: 10px !important;
    left: auto !important;
    background-image: url("../assets/images/web-icons/arrow_grid_right_red.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 100%; }
  .m128-teaser-carousel-container .slick-list {
    margin: 0 60px; }
  .m128-teaser-carousel-container .slick-slide {
    outline: none; }

/* M128 Teaser Carousel Item
##################################################################################################################### */
.m128-teaser-carousel-item {
  width: 100%;
  text-align: center;
  padding: 0 15px; }
  .m128-teaser-carousel-item .m128-teaser-carousel-container-slider__single__image {
    display: block;
    margin: 0 auto 40px; }

/* M129 Small Division Teaser Module
##################################################################################################################### */
.m129-small-division-teaser-module__desktop {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  max-width: 1440px;
  margin: 0 auto; }
  .m129-small-division-teaser-module__desktop__item-wrapper {
    padding: 0 1rem 72px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative; }
  .m129-small-division-teaser-module__desktop .nopadding {
    padding: 0 0 0 0; }
  .m129-small-division-teaser-module__desktop__item__content {
    text-align: center; }
    .m129-small-division-teaser-module__desktop__item__content__title {
      margin-top: 0.5rem; }
  .m129-small-division-teaser-module__desktop__item__actions {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; }
  .m129-small-division-teaser-module__desktop .helper-grid-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.m129-small-division-teaser-module__mobile__slider-bottom__slider__item__content {
  text-align: center; }
  .m129-small-division-teaser-module__mobile__slider-bottom__slider__item__content__title {
    margin-top: 0.5rem; }
  .m129-small-division-teaser-module__mobile__slider-bottom__slider__item__content__text {
    padding-left: 0.75rem;
    padding-right: 0.75rem; }

.m129-small-division-teaser-module__mobile__slider-bottom__slider__item__actions {
  text-align: center; }

.m129-overlay {
  height: 100%; }
  .m129-overlay-loader {
    display: none; }
    .m129-overlay-loader__container {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 100%;
      background: white;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .m129-overlay__wrapper .fancybox-skin {
    background-color: #fff;
    -webkit-border-radius: 0;
            border-radius: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); }
  .m129-overlay__wrapper .fancybox-close {
    background-color: #000000;
    top: 18px;
    right: 18px;
    border: 0;
    opacity: .5;
    -webkit-border-radius: 20px;
            border-radius: 20px;
    padding: 5px;
    margin: 0; }
    .m129-overlay__wrapper .fancybox-close span {
      background-image: url("../assets/images/sprite.png");
      background-position: -168px -100px;
      background-repeat: no-repeat;
      width: 29px;
      height: 29px;
      -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
      transform: scale(0.8); }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.2), only screen and (min--moz-device-pixel-ratio: 1.2), only screen and (min-device-pixel-ratio: 1.2), only screen and (-webkit-min-device-pixel-ratio: 1.1458333333333333), only screen and (min-resolution: 110dpi), only screen and (min-resolution: 1.2dppx) {
        .m129-overlay__wrapper .fancybox-close span {
          background-size: 265px 236px;
          background-image: url("../assets/images/sprite-2x.png"); } }
  .m129-overlay__wrapper .fancybox-inner {
    -webkit-overflow-scrolling: touch; }

/* M130 Overlay content
##################################################################################################################### */
.m130-overlay {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%; }
  .m130-overlay__logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 110px;
    height: 30px;
    z-index: 15; }
  .m130-overlay .slick-slider {
    visibility: hidden; }
    .m130-overlay .slick-slider.slick-initialized {
      visibility: visible; }
  .m130-overlay .slick-prev {
    left: 20px !important; }
  .m130-overlay .slick-next {
    left: auto !important;
    right: 20px !important; }

.m130-overlay-image__slider .carousel__slick__item__img {
  width: 100%; }

/* M131 Table Module
##################################################################################################################### */
.m131-table-module h2 {
  text-align: center;
  margin: 2rem 0; }

.m131-table-module__table {
  margin: 1em auto;
  border-collapse: collapse; }
  .m131-table-module__table th, .m131-table-module__table tr:last-child {
    color: black; }
  .m131-table-module__table td, .m131-table-module__table th {
    border: 0;
    text-align: left;
    padding: 0 2rem; }
  .m131-table-module__table th, .m131-table-module__table tr:nth-child(odd) {
    background-color: #f0f0f0; }

.m131-table-module__chart {
  width: auto !important;
  height: auto !important;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  .m131-table-module__chart .highcharts-container {
    margin: 0 auto; }

@media only screen and (max-width: 1024px) {
  .m131-table-module__holder {
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  .m131-table-module__table {
    min-width: 550px; } }

/* M132 Previous Next Product
##################################################################################################################### */
.m132-previous-next-product {
  margin: 20px 0; }
  .m132-previous-next-product .grid-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .m132-previous-next-product .grid-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .m132-previous-next-product .grid-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .m132-previous-next-product__link {
    margin: 0 60px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .m132-previous-next-product__link a {
      font-size: 1rem;
      color: #585858;
      margin: 0 0 15px 0;
      -webkit-transition: all 0.2s;
              transition: all 0.2s;
      display: block; }
      .m132-previous-next-product__link a:after, .m132-previous-next-product__link a:before {
        font-family: "fontello";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        font-variant: normal;
        text-transform: none;
        line-height: 1em;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #dc281e;
        font-size: 40px;
        vertical-align: middle;
        margin: -3px 0 0 0; }
      .m132-previous-next-product__link a:hover {
        color: #dc281e; }
  .m132-previous-next-product--previous a:before {
    content: '\e801';
    margin-right: 0.3em; }
  .m132-previous-next-product--next {
    text-align: right; }
    .m132-previous-next-product--next a:after {
      content: '\e800';
      margin-left: 0.3em; }
  @media only screen and (max-width: 1024px) {
    .m132-previous-next-product__link {
      margin: 0 30px;
      -webkit-box-flex: initial;
          -ms-flex: initial;
              flex: initial;
      width: 100%; }
      .m132-previous-next-product__link--previous {
        text-align: left; }
      .m132-previous-next-product__link--next {
        text-align: right; } }

/* C108-109 Category Select Component
##################################################################################################################### */
.c108-109-category-select-component {
  padding: 2.5rem 0;
  background: whitesmoke;
  background-color: #e6e6e6;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#e6e6e6), color-stop(2em, whitesmoke), to(whitesmoke));
  background-image: linear-gradient(to top,#e6e6e6, whitesmoke 2em, whitesmoke);
  border-bottom: 1px solid whitesmoke; }
  .c108-109-category-select-component .c108-109-category-select-component__title {
    text-align: center; }
    @media only screen and (min-width: 641px) {
      .c108-109-category-select-component .c108-109-category-select-component__title {
        margin-bottom: 1rem; } }
  .c108-109-category-select-component .m108-dropdown-module {
    position: relative;
    margin: 1rem 0 1rem 0; }
    @media only screen and (min-width: 641px) {
      .c108-109-category-select-component .m108-dropdown-module {
        position: absolute;
        top: -17px;
        width: auto;
        left: auto;
        right: 1rem; } }
    @media only screen and (min-width: 1025px) {
      .c108-109-category-select-component .m108-dropdown-module {
        top: -7px; } }

/* Component P10.2 Product Explorer
##################################################################################################################### */
.c_p10-2-product-explorer-wrapper {
  float: left ;
  width: 100%;
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  background: whitesmoke; }
  .c_p10-2-product-explorer-wrapper .m39-alert-module {
    display: none;
    margin: 0 .25rem; }
    @media only screen and (min-width: 1441px) {
      .c_p10-2-product-explorer-wrapper .m39-alert-module {
        width: 100.1%;
        margin-right: 0.75rem; } }
  .c_p10-2-product-explorer-wrapper .product-container__loader {
    position: relative;
    display: block;
    margin: 0;
    background: none; }
  .c_p10-2-product-explorer-wrapper .c_p10-2-product-explorer-wrapper__outer {
    position: relative;
    max-width: 1370px;
    margin: 0 auto; }
    @media only screen and (min-width: 1025px) {
      .c_p10-2-product-explorer-wrapper .c_p10-2-product-explorer-wrapper__outer {
        padding-top: 55px; } }
  .c_p10-2-product-explorer-wrapper .filter-container {
    position: relative; }
    @media only screen and (min-width: 1025px) {
      .c_p10-2-product-explorer-wrapper .filter-container {
        float: left ;
        width: 25%; } }
  .c_p10-2-product-explorer-wrapper .product-container {
    position: relative; }
    .c_p10-2-product-explorer-wrapper .product-container--margin-bottom {
      margin-bottom: 20px; }
    @media only screen and (min-width: 1025px) {
      .c_p10-2-product-explorer-wrapper .product-container {
        float: right ;
        width: 75%; } }

@media only screen and (min-width: 1441px) {
  #product-container__grid {
    margin-left: 13px;
    padding-right: 0;
    padding-left: 0; } }

@media only screen and (min-width: 1025px) {
  #product-container__grid .m22-product-teaser-module__item-wrapper {
    width: 33.33%;
    margin-top: 0;
    margin-bottom: .75rem; } }

@media only screen and (min-width: 1441px) {
  #product-container__grid .m22-product-teaser-module__item-wrapper {
    margin-bottom: 1.5rem; } }

@media only screen and (min-width: 1441px) {
  #product-container__list {
    padding-right: 0;
    padding-left: 1.5rem; } }

[data-show-when-ko-finished] {
  display: none; }

.filter-info {
  font-weight: 600;
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.3em; }
  @media only screen and (min-width: 1025px) {
    .filter-info, .filter-info--additional, .filter-info--groupDescription {
      margin-top: -9px;
      padding-left: 0.3rem;
      margin-right: 0.2rem;
      margin-bottom: 1.2rem; }
    .filter-info--additional {
      font-size: 20px;
      line-height: 26px; } }
  @media only screen and (min-width: 1441px) {
    .filter-info {
      padding-left: 0;
      margin-left: 0.75rem; }
      .filter-info--additional {
        padding-left: 0;
        margin-left: 0.75rem;
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 1.2rem; }
      .filter-info--groupDescription {
        margin-bottom: 1.2rem; } }
  @media only screen and (min-width: 641px) and (max-width: 1024px) {
    .filter-info, .filter-info--additional, .filter-info--groupDescription {
      margin-bottom: 1.2rem; } }
  @media only screen and (max-width: 640px) {
    .filter-info, .filter-info--additional, .filter-info--groupDescription {
      margin-bottom: 1.2rem; } }
  .filter-info--additional {
    font-weight: 300; }

.filter-info__category-result,
.filter-info__category-sum {
  font-style: normal; }

/* Component list grid switch
##################################################################################################################### */
#list-grid-switch {
  display: none; }
  @media screen and (min-width: 1100px) {
    #list-grid-switch {
      display: block;
      margin-right: 0.2rem; } }
  @media only screen and (min-width: 1441px) {
    #list-grid-switch {
      margin-right: -0.75rem; } }
  #list-grid-switch[data-active-view='list'] .list-view-switch,
  #list-grid-switch[data-active-view='grid'] .grid-view-switch {
    border-color: #dc281e; }
    #list-grid-switch[data-active-view='list'] .list-view-switch .list-grid-switch__btn__icon,
    #list-grid-switch[data-active-view='grid'] .grid-view-switch .list-grid-switch__btn__icon {
      color: #dc281e; }
  #list-grid-switch .list-grid-switch__btn {
    outline: none;
    background: none;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    border: 1px solid #828282; }
    #list-grid-switch .list-grid-switch__btn:first-child {
      margin-right: 5px; }
    #list-grid-switch .list-grid-switch__btn:focus {
      border: 1px solid #828282; }
    #list-grid-switch .list-grid-switch__btn .list-grid-switch__btn__icon {
      color: #828282;
      font-size: .8rem; }
      #list-grid-switch .list-grid-switch__btn .list-grid-switch__btn__icon:before, #list-grid-switch .list-grid-switch__btn .list-grid-switch__btn__icon:after {
        margin: 0;
        padding: 0; }

.c11-34-search-wrapper-component {
  background-color: whitesmoke;
  padding: .1rem 1rem; }
  .c11-34-search-wrapper-component .m11-rich-text-module, .c11-34-search-wrapper-component .m13-content-header-module {
    margin: 1rem 0; }

/* Component P15 Product Favorites
##################################################################################################################### */
.c_p10-2-product-favorites-wrapper {
  float: left ;
  width: 100%;
  padding-bottom: 2rem;
  background: whitesmoke; }
  .c_p10-2-product-favorites-wrapper .product-container__error {
    display: none; }
  .c_p10-2-product-favorites-wrapper .m39-alert-module {
    margin: 0 .25rem 2rem .25rem; }
    @media only screen and (min-width: 1441px) {
      .c_p10-2-product-favorites-wrapper .m39-alert-module {
        width: 100.1%;
        margin-right: 0.75rem; } }
  .c_p10-2-product-favorites-wrapper .product-container__loader {
    position: relative;
    display: block;
    margin: 0;
    background: none; }
  .c_p10-2-product-favorites-wrapper .c_p10-2-product-favorites-wrapper__outer {
    position: relative;
    max-width: 1370px;
    margin: 0 auto; }
    @media only screen and (min-width: 1025px) {
      .c_p10-2-product-favorites-wrapper .c_p10-2-product-favorites-wrapper__outer {
        padding-top: 55px; } }
  .c_p10-2-product-favorites-wrapper .filter-container {
    position: relative; }
    @media only screen and (min-width: 1025px) {
      .c_p10-2-product-favorites-wrapper .filter-container {
        float: left ;
        width: 25%; } }
  .c_p10-2-product-favorites-wrapper .product-container {
    position: relative; }
    @media only screen and (min-width: 1025px) {
      .c_p10-2-product-favorites-wrapper .product-container {
        float: right ;
        width: 75%; } }
  .c_p10-2-product-favorites-wrapper.empty-list {
    background: none; }
    .c_p10-2-product-favorites-wrapper.empty-list .c_p10-2-product-favorites-wrapper__outer {
      padding-top: 0; }
    .c_p10-2-product-favorites-wrapper.empty-list .filter-container,
    .c_p10-2-product-favorites-wrapper.empty-list .product-container {
      width: 100%; }
    .c_p10-2-product-favorites-wrapper.empty-list #product-container__grid {
      padding: 0; }
    .c_p10-2-product-favorites-wrapper.empty-list #product-view {
      display: none !important; }

@media only screen and (min-width: 1441px) {
  #product-container__grid {
    margin-left: 13px;
    padding-right: 0;
    padding-left: 0; } }

@media only screen and (min-width: 1025px) {
  #product-container__grid .m22-product-teaser-module__item-wrapper {
    width: 33.33%;
    margin-top: 0;
    margin-bottom: .75rem; } }

@media only screen and (min-width: 1441px) {
  #product-container__grid .m22-product-teaser-module__item-wrapper {
    margin-bottom: 1.5rem; } }

@media only screen and (min-width: 1441px) {
  #product-container__list {
    padding-right: 0;
    padding-left: 1.5rem; } }

[data-show-when-ko-finished] {
  display: none; }

/* Component P16 Product Comaprison
##################################################################################################################### */
@media only screen and (min-width: 1025px) {
  .c_p16-product-comparison-wrapper {
    margin: 1rem 0 0; } }

.c_p16-product-comparison-wrapper .product-container__error {
  display: none; }
  .c_p16-product-comparison-wrapper .product-container__error .m39-alert-module {
    margin-bottom: 2rem; }

.c_p16-product-comparison-wrapper .product-container__loader {
  position: relative;
  display: block;
  margin: 0 0 3rem;
  background: none; }

.c_p16-product-comparison-wrapper .filter-container {
  margin: 0 -.75rem; }
  @media only screen and (min-width: 1025px) {
    .c_p16-product-comparison-wrapper .filter-container {
      position: absolute;
      margin: 0;
      left: 0.75rem;
      top: 2rem;
      width: 370px;
      z-index: 99; } }

.c_p16-product-comparison-wrapper .product-container {
  position: relative; }

.c_p16-product-comparison-wrapper .product-view--mobile {
  margin: 1rem 0 2rem; }
  @media only screen and (min-width: 1025px) {
    .c_p16-product-comparison-wrapper .product-view--mobile {
      display: none; } }
  .c_p16-product-comparison-wrapper .product-view--mobile .product-view--mobile__view {
    display: none; }

[data-show-when-ko-finished] {
  display: none; }

/* STYLEGUIDE
##################################################################################################################### */
.sg-box {
  position: relative;
  margin: 3rem 0;
  padding: 3rem 0 0;
  border-top: 2px solid #646464; }
  .sg-box::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    color: white;
    font-size: .8rem;
    content: attr(data-title);
    padding: .1rem 1rem;
    background: #646464; }

.panel {
  padding: .8rem .8rem 0;
  background: #c8c8c8;
  margin-bottom: .8rem; }

.color-pick {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  margin-right: 0.5rem;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  background: #dc281e; }

.side-nav {
  background: whitesmoke;
  padding: 200px 30px 50px;
  height: 99999px;
  position: fixed;
  top: 0;
  width: 250px;
  list-style: none;
  font-size: 15px; }
  .side-nav li {
    border-bottom: 1px solid #ccc; }
    .side-nav li a {
      color: #000;
      display: block;
      padding: 5px 0;
      font-weight: 600; }

.class {
  border: 1px solid #dfdfdf;
  background: #FAFAFA;
  padding: 5px 20px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  word-break: keep-all;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto;
  word-wrap: normal; }

h5.class-title {
  margin-top: 42px;
  font-size: 13px;
  text-transform: uppercase; }

.help {
  font-size: 14px;
  line-height: 1.2em;
  font-weight: normal; }
  .help em {
    color: #000000; }

.module-title {
  margin: 1rem 0;
  padding: .15rem 1rem;
  color: white;
  background: #c8c8c8; }
  .module-title a {
    margin-left: 0.5rem;
    color: white;
    font-size: .65rem;
    text-decoration: underline; }