// $color_standard: rgb(0, 138, 55);
// $color_mobilegesundheit: rgb(149, 193, 31);
// // $color_kontrolle: #E4002B;
// $color_kontrolle: rgb(0, 138, 55);
// $color_sport: rgb(0, 0, 0);
// $color_wellness: rgb(241, 135, 0);
// $color_therapie: rgb(11, 111, 176);
// $color_zuhause: rgb(130, 188, 227);
// $color_pflege: #AF1685;
// $color_rot: rgb(213, 0, 50);
// $color_black: rgb(0,0,0);
// $color_gray: rgb(85, 90, 100);
// $color_silver: #cccccc;
// $color_white: rgb(255,255,255);
// $color_maroon: rgb(204, 0, 0);
// $color_massagechair: rgb(183,169,154);

$gradient-start_general: rgb(149, 193, 31);
$gradient-end_general: rgb(241, 135, 0);

$gradient-start_mobile-health: rgb(95, 195, 0);
$gradient-end_mobile-health: rgb(151, 215, 0);

$gradient-start_health-control: rgb(0, 151, 57);
$gradient-end_health-control: rgb(151, 215, 0);

$gradient-start_wellness: rgb(255, 164, 0);
$gradient-end_wellness: rgb(255, 203, 46);

$gradient-start_massage-division: rgb(183, 169, 154);
$gradient-end_massage-division: rgb(215, 200, 185);

$gradient-start_therapy: rgb(0, 114, 206);
$gradient-end_therapy: rgb(67, 210, 255);

$gradient-start_personal-care: rgb(175, 22, 133);
$gradient-end_personal-care: rgb(199, 47, 138);

$gradient-start_sport: rgb(45, 41, 38);
$gradient-end_sport: rgb(80, 75, 70);

$gradient-start_sale: rgb(235, 51, 0);
$gradient-end_sale: rgb(210, 0, 70);

// Version 3

// Mobile Gesundheit		    10000
// Gesundheitskontrolle     20000
// Wellness		              30000
// Massage		              40000		
// Ges. Zuhause		          50000
// Körperpflege		          60000
// Sport 		                70000
// Angebote		              80000

$color_mobilegesundheit: rgb(212, 235, 144);
$color_kontrolle: rgb(145, 215, 180);
$color_sport: rgb(191, 191, 191);
$color_wellness: rgb(235, 172, 120);
$color_therapie: rgb(110, 210, 230);
$color_zuhause: rgb(110, 210, 230);
$color_pflege: rgb(210, 100, 160);
$color_massagechair: rgb(212, 202, 195);
$color_aktionen: rgb(220, 65, 80);

$color_mobilegesundheit_darkened: darken($color_mobilegesundheit, 10%);
$color_kontrolle_darkened: darken($color_kontrolle, 20%);
$color_sport_darkened: darken($color_sport, 10%);
$color_wellness_darkened: darken($color_wellness, 10%);
$color_therapie_darkened: darken($color_therapie, 10%);
$color_zuhause_darkened: darken($color_zuhause, 10%);
$color_pflege_darkened: darken($color_pflege, 10%);
$color_massagechair_darkened: darken($color_massagechair, 10%);
$color_aktionen_darkened: darken($color_aktionen, 5%);

$color_standard: rgb(0, 151, 57);
$color_rot: rgb(213, 0, 50);
$color_black: rgb(0,0,0);
$color_gray: rgb(85, 90, 100);
$color_silver: #cccccc;
$color_white: rgb(255,255,255);
$color_maroon: rgb(204, 0, 0);
$color_service: rgb(185,185,185);
$color_text_dark: rgb(33, 37, 41);
$color_text_on_catcol: rgb(40, 40, 40);

$border_radius: 3px;

$browser_tablet: 992;
$browser_mobile_plus: 768;
$browser_mobile: 576;

$font_standard : roboto_light, sans-serif, Arial;
$font_normal : roboto, sans-serif, Arial;
$font_medium : roboto_medium, sans-serif, Arial;

$font_neosans : NeoSansPro, sans-serif, Arial;

body {
  font-size: 1rem;
  line-height: 2rem;
  background-color: $color_white !important;

  * {
    font-family: $font_standard;
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: 0.01rem;

    @media (min-width: 576px) {
      line-height: 2rem;
    }
  }

  .banderole {
    width: 100vw;
    position: relative;
    left: calc(-1 * (100vw - 100%) / 2);
    // padding-top: 2rem;
    // padding-bottom: 2rem;
    // color: $color_white;
    // margin-top: 0;
    // margin-bottom: 0;
  }

  #toBasket {
    @media (max-width: 991.98px) {
      padding-left: 0;
      padding-right: 0;
    }
  }

  @media (max-width: 767.98px) {
    .mainMenuCover {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      height: 100%;
      background: rgba($color_white, 0.90);
      display: none;
    }
  }

  .h2, .h3, .h4, .h5, .h6 {
    font-size: 1rem;
    line-height: 2rem;
  }

  h1, .h1 {
    font-size: 2rem;
    line-height: 3rem;
  }

  h2, h3, h4, h5, h6 {
    font-size: 1.10rem;
    line-height: 1.25rem;
    font-family: roboto_medium, sans-serif, Arial;

    @media (min-width: 576px) {
      font-size: 1.625rem;
      line-height: 2rem;
    }
  }
}

.fa, .fas {
  font-family: 'Font Awesome 5 Free'!important;
  font-weight: 900;
}
.far {
  font-family: 'Font Awesome 5 Free'!important;
  font-weight: 400;
}
.fab {
  font-family: 'Font Awesome 5 Brands'!important;
}
.cl_white {
  color: $color_white!important;
}

@mixin color($color, $opacity) {
  color: rgba($color, $opacity);
}
@mixin background($color, $opacity) {
  background: rgba($color, $opacity)!important;
}

%buttonInit {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  margin: 0;
  border: 0;
  line-height: 35px;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 6px;
}

@mixin button-standard($text_color, $button_color, $button_opacity) {
  background: rgba($button_color, $button_opacity)!important;
  color: $text_color;
  border: 1px solid $button_color;

  @extend %buttonInit;
}
@mixin button-round-right($text_color, $button_color, $button_opacity) {
  background: rgba($button_color, $button_opacity)!important;
  color: $text_color;
  border: 1px solid $button_color;
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;

  @extend %buttonInit;
}

@mixin button-empty() {
  @extend %buttonInit;
}

.cl_standard10 {@include color($color_standard, 1)}
.cl_standard08 {@include color($color_standard, 0.8)}
.cl_standard06 {@include color($color_standard, 0.6)}
.cl_standard04 {@include color($color_standard, 0.4)}
.cl_standard02 {@include color($color_standard, 0.2)}

%cl_standard10 {@include color($color_standard, 1)}
%cl_standard08 {@include color($color_standard, 0.8)}
%cl_standard06 {@include color($color_standard, 0.6)}
%cl_standard04 {@include color($color_standard, 0.4)}
%cl_standard02 {@include color($color_standard, 0.2)}

.bg_standard10 {@include background($color_standard, 1)}
.bg_standard08 {@include background($color_standard, 0.8)}
.bg_standard06 {@include background($color_standard, 0.6)}
.bg_standard04 {@include background($color_standard, 0.4)}
.bg_standard02 {@include background($color_standard, 0.2)}

%bg_standard10 {@include background($color_standard, 1)}
%bg_standard08 {@include background($color_standard, 0.8)}
%bg_standard06 {@include background($color_standard, 0.6)}
%bg_standard04 {@include background($color_standard, 0.4)}
%bg_standard02 {@include background($color_standard, 0.2)}

.cl_mobilegesundheit10 {@include color($color_mobilegesundheit, 1)}
.cl_mobilegesundheit08 {@include color($color_mobilegesundheit, 0.8)}
.cl_mobilegesundheit06 {@include color($color_mobilegesundheit, 0.6)}
.cl_mobilegesundheit04 {@include color($color_mobilegesundheit, 0.4)}
.cl_mobilegesundheit02 {@include color($color_mobilegesundheit, 0.2)}

%cl_mobilegesundheit10 {@include color($color_mobilegesundheit, 1)}
%cl_mobilegesundheit08 {@include color($color_mobilegesundheit, 0.8)}
%cl_mobilegesundheit06 {@include color($color_mobilegesundheit, 0.6)}
%cl_mobilegesundheit04 {@include color($color_mobilegesundheit, 0.4)}
%cl_mobilegesundheit02 {@include color($color_mobilegesundheit, 0.2)}

.bg_mobilegesundheit10 {@include background($color_mobilegesundheit, 1)}
.bg_mobilegesundheit08 {@include background($color_mobilegesundheit, 0.8)}
.bg_mobilegesundheit06 {@include background($color_mobilegesundheit, 0.6)}
.bg_mobilegesundheit04 {@include background($color_mobilegesundheit, 0.4)}
.bg_mobilegesundheit02 {@include background($color_mobilegesundheit, 0.2)}

%bg_mobilegesundheit10 {@include background($color_mobilegesundheit, 1)}
%bg_mobilegesundheit08 {@include background($color_mobilegesundheit, 0.8)}
%bg_mobilegesundheit06 {@include background($color_mobilegesundheit, 0.6)}
%bg_mobilegesundheit04 {@include background($color_mobilegesundheit, 0.4)}
%bg_mobilegesundheit02 {@include background($color_mobilegesundheit, 0.2)}

.cl_kontrolle10 {@include color($color_kontrolle, 1)}
.cl_kontrolle08 {@include color($color_kontrolle, 0.8)}
.cl_kontrolle06 {@include color($color_kontrolle, 0.6)}
.cl_kontrolle04 {@include color($color_kontrolle, 0.4)}
.cl_kontrolle02 {@include color($color_kontrolle, 0.2)}

%cl_kontrolle10 {@include color($color_kontrolle, 1)}
%cl_kontrolle08 {@include color($color_kontrolle, 0.8)}
%cl_kontrolle06 {@include color($color_kontrolle, 0.6)}
%cl_kontrolle04 {@include color($color_kontrolle, 0.4)}
%cl_kontrolle02 {@include color($color_kontrolle, 0.2)}

.bg_kontrolle10 {@include background($color_kontrolle, 1)}
.bg_kontrolle08 {@include background($color_kontrolle, 0.8)}
.bg_kontrolle06 {@include background($color_kontrolle, 0.6)}
.bg_kontrolle04 {@include background($color_kontrolle, 0.4)}
.bg_kontrolle02 {@include background($color_kontrolle, 0.2)}

%bg_kontrolle10 {@include background($color_kontrolle, 1)}
%bg_kontrolle08 {@include background($color_kontrolle, 0.8)}
%bg_kontrolle06 {@include background($color_kontrolle, 0.6)}
%bg_kontrolle04 {@include background($color_kontrolle, 0.4)}
%bg_kontrolle02 {@include background($color_kontrolle, 0.2)}

.cl_sport10 {@include color($color_sport, 1)}
.cl_sport08 {@include color($color_sport, 0.8)}
.cl_sport06 {@include color($color_sport, 0.6)}
.cl_sport04 {@include color($color_sport, 0.4)}
.cl_sport02 {@include color($color_sport, 0.2)}

%cl_sport10 {@include color($color_sport, 1)}
%cl_sport08 {@include color($color_sport, 0.8)}
%cl_sport06 {@include color($color_sport, 0.6)}
%cl_sport04 {@include color($color_sport, 0.4)}
%cl_sport02 {@include color($color_sport, 0.2)}

a.cl_sport {@include color($color_sport, 0.8)}
a.cl_sport:hover {@include color($color_sport, 0.4)}

.bg_sport10 {@include background($color_sport, 1)}
.bg_sport08 {@include background($color_sport, 0.8)}
.bg_sport06 {@include background($color_sport, 0.6)}
.bg_sport04 {@include background($color_sport, 0.4)}
.bg_sport02 {@include background($color_sport, 0.2)}

%bg_sport10 {@include background($color_sport, 1)}
%bg_sport08 {@include background($color_sport, 0.8)}
%bg_sport06 {@include background($color_sport, 0.6)}
%bg_sport04 {@include background($color_sport, 0.4)}
%bg_sport02 {@include background($color_sport, 0.2)}

.cl_wellness10 {@include color($color_wellness, 1)}
.cl_wellness08 {@include color($color_wellness, 0.8)}
.cl_wellness06 {@include color($color_wellness, 0.6)}
.cl_wellness04 {@include color($color_wellness, 0.4)}
.cl_wellness02 {@include color($color_wellness, 0.2)}

%cl_wellness10 {@include color($color_wellness, 1)}
%cl_wellness08 {@include color($color_wellness, 0.8)}
%cl_wellness06 {@include color($color_wellness, 0.6)}
%cl_wellness04 {@include color($color_wellness, 0.4)}
%cl_wellness02 {@include color($color_wellness, 0.2)}

.bg_wellness10 {@include background($color_wellness, 1)}
.bg_wellness08 {@include background($color_wellness, 0.8)}
.bg_wellness06 {@include background($color_wellness, 0.6)}
.bg_wellness04 {@include background($color_wellness, 0.4)}
.bg_wellness02 {@include background($color_wellness, 0.2)}

%bg_wellness10 {@include background($color_wellness, 1)}
%bg_wellness08 {@include background($color_wellness, 0.8)}
%bg_wellness06 {@include background($color_wellness, 0.6)}
%bg_wellness04 {@include background($color_wellness, 0.4)}
%bg_wellness02 {@include background($color_wellness, 0.2)}

.cl_therapie10 {@include color($color_therapie, 1)}
.cl_therapie08 {@include color($color_therapie, 0.8)}
.cl_therapie06 {@include color($color_therapie, 0.6)}
.cl_therapie04 {@include color($color_therapie, 0.4)}
.cl_therapie02 {@include color($color_therapie, 0.2)}

%cl_therapie10 {@include color($color_therapie, 1)}
%cl_therapie08 {@include color($color_therapie, 0.8)}
%cl_therapie06 {@include color($color_therapie, 0.6)}
%cl_therapie04 {@include color($color_therapie, 0.4)}
%cl_therapie02 {@include color($color_therapie, 0.2)}

.bg_therapie10 {@include background($color_therapie, 1)}
.bg_therapie08 {@include background($color_therapie, 0.8)}
.bg_therapie06 {@include background($color_therapie, 0.6)}
.bg_therapie04 {@include background($color_therapie, 0.4)}
.bg_therapie02 {@include background($color_therapie, 0.2)}

%bg_therapie10 {@include background($color_therapie, 1)}
%bg_therapie08 {@include background($color_therapie, 0.8)}
%bg_therapie06 {@include background($color_therapie, 0.6)}
%bg_therapie04 {@include background($color_therapie, 0.4)}
%bg_therapie02 {@include background($color_therapie, 0.2)}

.cl_zuhause10 {@include color($color_zuhause, 1)}
.cl_zuhause08 {@include color($color_zuhause, 0.8)}
.cl_zuhause06 {@include color($color_zuhause, 0.6)}
.cl_zuhause04 {@include color($color_zuhause, 0.4)}
.cl_zuhause02 {@include color($color_zuhause, 0.2)}

%cl_zuhause10 {@include color($color_zuhause, 1)}
%cl_zuhause08 {@include color($color_zuhause, 0.8)}
%cl_zuhause06 {@include color($color_zuhause, 0.6)}
%cl_zuhause04 {@include color($color_zuhause, 0.4)}
%cl_zuhause02 {@include color($color_zuhause, 0.2)}

.bg_zuhause10 {@include background($color_zuhause, 1)}
.bg_zuhause08 {@include background($color_zuhause, 0.8)}
.bg_zuhause06 {@include background($color_zuhause, 0.6)}
.bg_zuhause04 {@include background($color_zuhause, 0.4)}
.bg_zuhause02 {@include background($color_zuhause, 0.2)}

%bg_zuhause10 {@include background($color_zuhause, 1)}
%bg_zuhause08 {@include background($color_zuhause, 0.8)}
%bg_zuhause06 {@include background($color_zuhause, 0.6)}
%bg_zuhause04 {@include background($color_zuhause, 0.4)}
%bg_zuhause02 {@include background($color_zuhause, 0.2)}

.cl_pflege10 {@include color($color_pflege, 1)}
.cl_pflege08 {@include color($color_pflege, 0.8)}
.cl_pflege06 {@include color($color_pflege, 0.6)}
.cl_pflege04 {@include color($color_pflege, 0.4)}
.cl_pflege02 {@include color($color_pflege, 0.2)}

%cl_pflege10 {@include color($color_pflege, 1)}
%cl_pflege08 {@include color($color_pflege, 0.8)}
%cl_pflege06 {@include color($color_pflege, 0.6)}
%cl_pflege04 {@include color($color_pflege, 0.4)}
%cl_pflege02 {@include color($color_pflege, 0.2)}

.bg_pflege10 {@include background($color_pflege, 1)}
.bg_pflege08 {@include background($color_pflege, 0.8)}
.bg_pflege06 {@include background($color_pflege, 0.6)}
.bg_pflege04 {@include background($color_pflege, 0.4)}
.bg_pflege02 {@include background($color_pflege, 0.2)}

%bg_pflege10 {@include background($color_pflege, 1)}
%bg_pflege08 {@include background($color_pflege, 0.8)}
%bg_pflege06 {@include background($color_pflege, 0.6)}
%bg_pflege04 {@include background($color_pflege, 0.4)}
%bg_pflege02 {@include background($color_pflege, 0.2)}

.cl_massagechair10 {@include color($color_massagechair, 1)}
.cl_massagechair08 {@include color($color_massagechair, 0.8)}
.cl_massagechair06 {@include color($color_massagechair, 0.6)}
.cl_massagechair04 {@include color($color_massagechair, 0.4)}
.cl_massagechair02 {@include color($color_massagechair, 0.2)}

%cl_massagechair10 {@include color($color_massagechair, 1)}
%cl_massagechair08 {@include color($color_massagechair, 0.8)}
%cl_massagechair06 {@include color($color_massagechair, 0.6)}
%cl_massagechair04 {@include color($color_massagechair, 0.4)}
%cl_massagechair02 {@include color($color_massagechair, 0.2)}

.bg_massagechair10 {@include background($color_massagechair, 1)}
.bg_massagechair08 {@include background($color_massagechair, 0.8)}
.bg_massagechair06 {@include background($color_massagechair, 0.6)}
.bg_massagechair04 {@include background($color_massagechair, 0.4)}
.bg_massagechair02 {@include background($color_massagechair, 0.2)}

%bg_massagechair10 {@include background($color_massagechair, 1)}
%bg_massagechair08 {@include background($color_massagechair, 0.8)}
%bg_massagechair06 {@include background($color_massagechair, 0.6)}
%bg_massagechair04 {@include background($color_massagechair, 0.4)}
%bg_massagechair02 {@include background($color_massagechair, 0.2)}

.cl_aktionen10 {@include color($color_aktionen, 1)}
.cl_aktionen08 {@include color($color_aktionen, 0.8)}
.cl_aktionen06 {@include color($color_aktionen, 0.6)}
.cl_aktionen04 {@include color($color_aktionen, 0.4)}
.cl_aktionen02 {@include color($color_aktionen, 0.2)}

%cl_aktionen10 {@include color($color_aktionen, 1)}
%cl_aktionen08 {@include color($color_aktionen, 0.8)}
%cl_aktionen06 {@include color($color_aktionen, 0.6)}
%cl_aktionen04 {@include color($color_aktionen, 0.4)}
%cl_aktionen02 {@include color($color_aktionen, 0.2)}

.bg_aktionen10 {@include background($color_aktionen, 1)}
.bg_aktionen08 {@include background($color_aktionen, 0.8)}
.bg_aktionen06 {@include background($color_aktionen, 0.6)}
.bg_aktionen04 {@include background($color_aktionen, 0.4)}
.bg_aktionen02 {@include background($color_aktionen, 0.2)}

%bg_aktionen10 {@include background($color_aktionen, 1)}
%bg_aktionen08 {@include background($color_aktionen, 0.8)}
%bg_aktionen06 {@include background($color_aktionen, 0.6)}
%bg_aktionen04 {@include background($color_aktionen, 0.4)}
%bg_aktionen02 {@include background($color_aktionen, 0.2)}

.cl_rot10 {@include color($color_rot, 1)}
.cl_rot08 {@include color($color_rot, 0.8)}
.cl_rot06 {@include color($color_rot, 0.6)}
.cl_rot04 {@include color($color_rot, 0.4)}
.cl_rot02 {@include color($color_rot, 0.2)}

%cl_rot10 {@include color($color_rot, 1)}
%cl_rot08 {@include color($color_rot, 0.8)}
%cl_rot06 {@include color($color_rot, 0.6)}
%cl_rot04 {@include color($color_rot, 0.4)}
%cl_rot02 {@include color($color_rot, 0.2)}

.bg_rot10 {@include background($color_rot, 1)}
.bg_rot08 {@include background($color_rot, 0.8)}
.bg_rot06 {@include background($color_rot, 0.6)}
.bg_rot04 {@include background($color_rot, 0.4)}
.bg_rot02 {@include background($color_rot, 0.2)}

%bg_rot10 {@include background($color_rot, 1)}
%bg_rot08 {@include background($color_rot, 0.8)}
%bg_rot06 {@include background($color_rot, 0.6)}
%bg_rot04 {@include background($color_rot, 0.4)}
%bg_rot02 {@include background($color_rot, 0.2)}

.mst_show {
  .status {
    display: block!important
  }
}

.hidden-mobile {
  @media (max-width: 767.98px) {
    display: none !important;
  }
}

.hidden-desktop {
  @media (min-width: 768px) {
    display: none !important;
  }
}

.w-33 {
  width: 33.33%;
}

.btn:focus, .btn:active, .btn:click, input:focus, .input:active {
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: $color_black;
  visibility: hidden;
  //transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
  z-index: 1450;

  &.is-visible {
    opacity: 0.7;
    visibility: visible;
  }
}

#jumptotop {
  color: $color_standard;
  bottom: 308px;
  right: 20px;
  font-size: 60px;

  @media (max-width: 648px) {
    bottom: 20px;
  }

  &.versiontwo {
    color: white;
    font-family: "Arial", serif, "Century Gothic";
    font-size: 32px;
    height: 60px;
    width: 60px;
    line-height: 55px;
    text-align: center;
    background: $color_standard;
    box-shadow: 0 5px 27px rgba(0,0,0,.2);
    border-radius: 50%;

    @media (max-width: 768px) {
      width: 44px;
      height: 44px;
      line-height: 40px;
      font-size: 24px;

    }
  
  }

  &:lang(en), &:lang(nl) {
    bottom: 20px;
  }
}

// html[lang="en"], html[lang="nl"], html:not([lang="de"]) {
//   #jumptotop {
//     bottom: 20px;
//   }
// }

#topshopbadge {
  position: fixed;
  right: 20px;
  bottom: 156px;
  width: 93px;
  z-index: 1420;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 9px 4px !important;

  img {
    width: 100%;
    height: auto;
  }

  @media (max-width: 648px) {

    display: none !important;

    //right: unset;
    right: 10px;
    //bottom: 132px;
    bottom: unset;
    top: 115px;
    //left: 10px;
    width: 68px;
    transition: opacity 0.2s linear 0s !important;
    opacity: 1 !important;
    visibility: visible !important;

    &.hide_mobile_scrolled {
      transition-property: visibility, opacity !important;
      transition-duration: 0.2s, 0.2s !important;
      transition-delay: 0s, 0s !important;
      transition-timing-function: linear !important;
      opacity: 0 !important;
      visibility: hidden !important;

      //display: none !important;
    }
  }

}

div[id*='trustbadge-container-'] {
  z-index: 1420 !important;

  @media (max-width: 648px) {

    display: none !important;
  
    ._176mqo5 {
      inset: 220px 10px auto auto !important;
    }
  }
}

span.nbsp-before, span.nbsp-before-after {
  font-size: unset !important;
  line-height: unset !important;
  font-family: unset !important;
  letter-spacing: unset !important;

  &::before {
    content:"\00a0";
  }

}

span.nbsp-before-after::after {
  content:"\00a0";
}

.main-row {
  -webkit-box-shadow: none;
  box-shadow: none;
}

// adjustments for Trusted Shops Consent Manager
.embed-responsive .uc-embedding-container {
  position: absolute;
  top: 0;
  left: 0;
}

#usercentrics-root button[data-testid="uc-privacy-button"] {

  z-index: 1000;
  left: 20px;
  bottom: 20px;

  @media (min-width: 769px) {
    width: 60px;
    height: 60px;
  }

}
.btn-primary:hover {
    background-color: $color_standard;
    border-color: $color_standard;
}

#savePass {
	margin-top: 1em;
	margin-left: -15px;		
}

div.account {
    padding-top: 25px;

	.card-header a, .card-header {
	    color: white;
		font-family: $font_normal;
	}
}

.cl-account_password form.form-horizontal {
	padding-top: 25px;
}

.checkoutCollumns button#userChangeAddress, .account button#userChangeAddress {
    background: none;
    border: none;
    color: white;
}
.search {
  @media (min-width: 576px) {
    position: relative;
  }

  .searchResult {
    @media (max-width: 575.98px) {
      position: relative;
      padding-top: 10px;
      background: rgba($color_white, 0.975);
      left: 0;
      right: 0;
      bottom: 0;
      height: 100%;
    }
    @media (min-width: 576px) {
      position: absolute;
    }

    .container {
      @media (min-width: 576px) {
        padding: 0;
      }
    }

    .item {
      padding: 10px 15px;
      border-bottom: 1px solid lighten($color_gray, 50%);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      background: darken(rgba($color_white, 0.95), 5%);

      @media (min-width: 576px) {
        margin-left:  -5px;
      }

      a {
        &:hover {
          color: $color_standard!important;
        }
      }

    }
  }
}
/*
 * The new "mars" spaceslider banner - V0.01
 * Requirements: TBD
 *
 */

.carousel-inner .carousel-item {
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

$mob_image_aspect_ratio: calc(750/1102); // 0.68 (a screen widht of 374px and a container height of 550px matches this ratio)
$desc_image_aspect_ratio: calc(2400/830); // 2.89 (a screen widht of 1359px and a container height of 470px matches this ratio)

// mobile: 750 x 1146 to adjust for S9 width 360, container 550
// desktop: 2400 x 940 to adjust for desktop width 1200, container 470

#spaceslider-mars {

    max-width: 2000px;

    .carousel-control-prev, .carousel-control-next {
        width: 7%;
    }

    .banner-mars {
        position: relative;
        width: 100%;
        height: calc(100vw / #{$mob_image_aspect_ratio} - ((100vw - 360px) * 0.3));
        min-height: 550px;
        max-height: 880px;
        overflow: hidden;
        padding: 0;

        .image_wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        img {
            object-fit: cover;
            object-position: top center;
            width: 100%;
            height: 100%;
            max-width: 100%;
        }

        .caption.text-mode-left {
            position: absolute;
            bottom: 25%;
            left: 50%;
            transform: translate(-50%, 50%);
            width: 100%;
            padding: 0 7.5%;
            text-align: center;
            line-height: 1.3em;
            max-height: 260px;
            max-width: 450px;
            color: white;

            h1 {
                font-size: 23px;
                font-weight: bold;
                font-family: $font_neosans;
                text-transform: uppercase;
                line-height: 1.3;
                margin-top: 15px;
                margin-bottom: 0;
                padding-bottom: 15px;
                color: white;

                transform: translateX(-400px);
                opacity: 0;
                transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
            }

            p {
                font-size: 18px;
                font-family: $font_normal;
                line-height: 1.3;
                margin-bottom: 0;
                padding-bottom: 20px;
                color: white;

                transform: translateX(-400px);
                opacity: 0;
                transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
            }

            a {
                font-family: $font_neosans;
                font-size: 18px;
                font-weight: bold;
                text-transform: uppercase;
                line-height: 1.3em;
                color: $color_white;
                background-color: rgba( $color_black, .6);
                overflow: hidden;
                //border: 1px solid $color_text_dark;
                cursor: pointer;
                max-height: calc(1.5em + 26px);
                max-width: 450px;
                width: 100%;
                display: inline-block;
                margin: 0;
                padding: 10px 24px;
                border-radius: 30px;

                transform: translateX(-400px);
                opacity: 0;
                transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    
                &:hover { /* switched from button to a */
                    /* 40% black */
                    background-color: rgba( 0, 0, 0, .2);
                }
            }    
        }

        /*
        .caption.text-mode-middle {
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            padding: 16px;
            text-align: center;
            line-height: 1.3em;

            h1 {
                font-size: 24px;
                font-weight: bold;
                font-family: NeoSansPro;
                text-transform: uppercase;
                line-height: 1.5;
                margin: 0;

                transform: translateX(-400px);
                opacity: 0;
                transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
            }

            p {
                font-size: 24px;
                font-family: NeoSansPro;
                text-transform: uppercase;
                line-height: 1.5;

                transform: translateX(400px);
                opacity: 0;
                transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
            }

            a {
                font-family: roboto_light, sans-serif, Arial;
                font-size: 1em;
                line-height: 1.5em;
                color: $color_text_dark;
                overflow: hidden;
                border: 1px solid $color_text_dark;
                cursor: pointer;
                max-height: calc(1.5em + 26px);
                width: auto;
                display: inline-block;
                margin: 0;
                padding: 12px 24px;
                border-radius: 30px;

                transform: translateX(-400px);
                opacity: 0;
                transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    
                &:hover { // switched from button to a
                    // 40% black 
                    background-color: rgba( 0, 0, 0, .2);
                }
            }    
        }
        */

        &.active.space-anim-ready {

            .caption h1, .caption p, .caption a {
                opacity: 1;
                transform: translateX(0);
            }
        }

        // landscape, small height - using mobile image
        @media screen and (orientation: landscape) and (max-width: 767.98px)  {

        }

        // 768px - using desktop image from here on (two column layout, text left, image right)
        @media screen and (min-width: 768px) {
            min-height: unset;
            height: 400px;
            max-height: unset;

            .caption.text-mode-left {
                top: 50%;
                left: 25%;
                bottom: unset;
                transform: translate(-50%, -50%);
                width: 50%;
                padding: 0 12% 0 7%;
                max-width: unset;
                max-height: 100%;
                text-align: left;
    
                h1 {
                    font-size: 26px;
                    line-height: 1.2;
                    margin-top: 0;
                }
    
                p {
                    font-size: 18px;
                    line-height: 1.2;
                    padding-bottom: 40px;
                }

                a {
                    text-align: center;
                    font-size: 18px;
                    line-height: 1.3em;
                    max-width: 450px;
                    padding: 10px 24px;
                }    
            }
        }

        // landscape, small height - big phones - using desktop image
        @media screen and (orientation: landscape) and (min-width: 768px) and (max-height: 439px)  {
            height: 350px;
        }        

        @media screen and (min-width: 992px) {
            height: 470px;

            .caption.text-mode-left {
                top: 50%;
                left: 50%;
                transform: translate(-480px, -50%);
                padding: 0 120px 0 0;
                width: 480px; // half container width
    
                h1 {
                    font-size: 34px;
                    line-height: 1.2;
                    padding-bottom: 20px;
                }
    
                p {
                    font-size: 22px;
                    line-height: 1.3;
                    padding-bottom: 40px;
                }

                a {
                    font-size: 22px;
                    line-height: 1.3em;
                    padding: 12px 24px;
                    max-width: unset;
                }    
            }
        }

        @media screen and (min-width: 1200px) {
            height: 470px;

            .caption.text-mode-left {
                top: 50%;
                left: 50%;
                transform: translate(-570px, -50%);
                padding: 0 160px 0 0;
                width: 570px; // half container width
    
                h1 {
                    font-size: 34px;
                    line-height: 1.3;
                    padding-bottom: 28px;
                }
    
                p {
                    font-size: 24px;
                    line-height: 1.3;
                    padding-bottom: 60px;
                }

                a {
                    font-size: 24px;
                    line-height: 1.3em;
                    padding: 12px 24px;
                }    
            }
        }

        @media screen and (min-width: 1600px) {
            height: 550px;
        }

        @media screen and (min-width: 1920px) {
            height: 620px;
        }
    }

    ol.carousel-indicators {
        max-width: 350px;
        margin: 0 auto 25px auto;
    }

    .carousel-indicators li {
        border-radius: 50%;
        background-color: black;
        margin-left: 8px;
        margin-right: 8px;
        width: 15px;
        height: 15px;
        border: 1px solid #FFFFFF;
        opacity: 0.3;

        &.active {
            opacity: 1;
        }
    }
}

/*
 * Responsive 2 Part Banner - V1.2
 * Requirements: image size 960px x 425px
 *
 * linear interpolation for two points x1/y1, x2,y2:
 * f(x) = (x-x1) * (y2-y1) / (x2-x1) + y1
 */

 .carousel-inner .carousel-item {
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }

 .banner {
    /* initial font size */
    font-size: 2.5vh;
    background-color: transparent;
    overflow: hidden;
    padding: 0;
    /* don't use margin: 0 here to avoid issues with carousel */
}

.banner .tile {
    position: relative;
    overflow: hidden;
}

.banner .frame {
    position: relative;
    overflow: hidden;
    /* square the image */
    height: 100vw;
    max-height: 425px;
    /* misc */
    padding: 0;
    margin: 0;
}

.banner img {
    position: absolute;
    max-height: 425px;
}

.banner .content {
    position: relative;
    overflow: hidden;
    max-height: 425px;
    /* misc */
    padding: 0;
    margin: 0;
}

.banner .caption {
    max-height: 425px;
    max-width: 550px;
    /* padding around textual content */
	padding: 5% 7.5%;
    font-size: 2.5vh;
}

.banner h1 {
    /* font */
    font-family: "NeoSansPro";
    font-weight: normal;
    font-size: 1.8em;
	line-height:  1.2;
    color: #fff;
    /* misc */
    padding: 0;
    margin: 0;
}

.banner p {
    /* font */
    font-family: $font_standard;
    font-size: 1em;
    color: #fff;
    /* padding to H1 above and button below */
	padding: 1vh 0 3vh;
	margin: 0;
    line-height: 1.5;
}


.banner a {
    font-family: roboto_light, sans-serif, Arial;
    font-size: 1em;
    line-height: 1.5em;
    color: #fff;
    overflow: hidden;
    border: 1px solid white;
    cursor: pointer;
    max-height: calc(1.5em + 26px);
    width: auto;
    display: inline-block;
    margin: 0;
	padding: 12px 24px;
    border-radius: 30px;
}


.banner a:hover { /* switched from button to a */
    /* 40% black */
    background-color: rgba(0, 0, 0, .4);
}

.banner video {
    position: absolute;
    max-height: 540px;
    top: 50%;
    transform: translateY(-50%);
}

/* small screens - compressed vertical arrangement */
@media screen and (max-width: 319px) {
    .banner .content {
        /* pull the content box up a little bit */
        margin-top: calc(100% - 320px);
    }
}

/* medium screens - normal vertical arrangement */
@media screen and (max-width: 767px) {
    .banner img {
        height: 100vw;
        left: 50%;
        transform: translateX(-40%);
    }
    .banner a {
        line-height: 1.8em; 
        overflow: hidden;
    }
    .banner video {
        height: 125vw;
        min-height: 425px;
        top: 50%;
        left: 50%;
        transform: translateX(-40%) translateY(-50%);
    }
}

/* landscape, small height - "full screen" horizontal arrangement (use 100% height minus 46px menu bar height) */
@media screen and (orientation: landscape) and (max-height: 424px)  {
    .banner {
        /* font size relative to height */
        font-size: 4.5vh;
    }

    /* use flex grid display */
    .banner .tile {
        display: flex;
        /* use reverse order to put content box left */
        flex-direction: row-reverse;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .banner .frame {
        /* flex tiles */
        flex: 0 0 50%;
        max-height: calc(100vh - 46px); /* !!! 46px menu height */

    }

    .banner img {
        height: calc(100vh - 46px); /* !!! 46px menu height */
        left: 50%;
        transform: translateX(-40%);

    }

    .banner .content {
        /* flex tiles */
        flex: 0 0 50%;
        height: calc(100vh - 46px); /* !!! 46px menu height */
    }

    .banner .caption {
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 4.5vh; /* new 20200319 */
    }

    .banner p {
        margin: 5vh 0 10vh;
    }

    .banner video {
        height: calc(125vh - 46px); /* !!! 46px menu height */
        left: 50%;
        transform: translateX(-40%) translateY(-50%);

    }
}

/* medium screens and bigger with sufficient height - max horizontal arrangement */
@media screen and (min-width: 768px) and (min-height: 425px)  {
    .banner {
        height: calc(100vh - 106.33px);  /* !!! 106.33px menu height */
        max-height: 425px;
    }

    /* use flex grid display */
    .banner .tile {
        display: flex;
        /* use reverse order to put content box left */
        flex-direction: row-reverse;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .banner .frame {
        /* flex tiles */
        flex: 0 0 50%;
    }

    .banner img {
        height: calc(100vh - 106.33px);  /* !!! 106.33px menu height */
        left: calc((100% - 360px) * 200/360 - 200px);
    }

    .banner .content {
        /* flex tiles */
        flex: 0 0 50%;
        height: calc(100vh - 106.33px);  /* !!! 106.33px menu height */
    }

    .banner .caption {
        position: absolute;
        width: calc(100% - 40px);
        right: 0px;
        padding: 0 40px 0 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 17.5pt; /* use a fixed font from here */
    }

    .banner video {
        height: calc(100vh - 106.33px);  /* !!! 106.33px menu height */
        left: calc((100% - 360px) * 200/360 - 200px);
    }

  /*  .banner p {
        padding: 30px 0;
    }*/
}

/* large screens */
@media screen and (min-width: 1440px) {
    .banner img {
        /* stop linear interpolation and show full image */
        left: 0px !important;
    }

    .banner video {
        /* stop linear interpolation and show full image */
        left: 0px !important;
    }
}

/* very large screens */
@media screen and (min-width: 1920px) {
    .banner img {
        /* scale image to width */
        width: 100%;
        height: auto;
        max-height: unset;
        /* center vertically */
        top: 50%;
        transform: translateY(-50%);
    }

    .banner video {
        /* scale image to width */
        width: 100%;
        height: auto;
        max-height: unset;
        /* center vertically */
        top: 50%;
        transform: translateY(-50%);
    }
}
#breadcrumb {
  margin-top: 0.75rem!important;
  margin-bottom: 0.75rem!important;
  position: relative;
  min-height: 35px;

  .cover {
    width: 100%;
  }
  .breadcrumbFrame {
    display: block;
    width: 100%;
    padding: 15px 10px;

    @media (min-width: 576px) {
      padding: 6px;
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0;
    }

    .breadcrumb {
      @media (max-width: 576px) {
        * {
          padding: 0;
          margin: 0;
        }
        li {
          display: none;
        }
        li:last-child {
          display: block;
          width: 100%;
        }
      }
    }
  }

  * {
    font-size: 16px!important;
    line-height: 22px!important;
  }
  a {
    margin-left: 10px;

    i {
      margin-right: 5px;
    }
  }
}

#mainnav {

  padding: 0;
  margin: 0 auto;
  position: fixed;
  width: 100%;
  display: none;
  left: 0;
  z-index: 2;
  background-color:#f2f2f2;
  max-height: calc(100vh - 140px) !important;
  overflow-y: auto;

  @media (max-width: 991.98px) {
    position: unset;
	background-color:#ffffff;
	max-height: unset !important;
	overflow-y: unset;  
  }

  @media (min-width: 992px) {
	  //display: block;
	  //visibility: hidden;
	opacity: 0;
	-webkit-transform:translateY(-4px);
	transform:translateY(-4px);
	-webkit-transition:opacity .2s ease,-webkit-transform .2s ease;
	transition:opacity .2s ease,-webkit-transform .2s ease;
	transition:opacity .2s ease,transform .2s ease;
	transition:opacity .2s ease,transform .2s ease,-webkit-transform .2s ease;
  }

}

.dropdown.menu-show {

	#mainnav {
		@media (min-width: 992px) {
			opacity: 1;
			-webkit-transform:translateY(0);
			transform:translateY(0);
		}
	}
}

#mainnavigation {
  .nav-item:first-child {
    display: none;
  }
  .col-xs-3 {
    width: 100%;

    @media (min-width: 800px) {
      width: 25%;
    }
  }
  .dropdown-menu {
    box-sizing: border-box;
    padding: 0;
  }
  .dropdown-item {
    box-sizing: border-box;
    padding: 0;
  }
}

.pbox.topcatlist {
  .card{
    padding-bottom: 0 !important;
    min-height: 344px;
  } 
  p {
    line-height: 1.4rem;
  }
  h3 {
    line-height: 2rem !important;
  }
  .listDetails {
    border-bottom: none;
  }
}

// Version 2 

// .mecat-900      .menuItemHeader { background-image: linear-gradient(45deg, rgb(151, 215, 0) 0%, rgb(151, 215, 0) 100%) !important; }
// .mecat-10000    .menuItemHeader { background-image: linear-gradient(45deg, rgb(0, 150, 57) 0%, rgb(0, 150, 57) 100%) !important; }
// .mecat-20000    .menuItemHeader { background-image: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%) !important; }
// .mecat-30000    .menuItemHeader { background-image: linear-gradient(45deg, rgb(241, 135, 0) 0%, rgb(241, 135, 0) 100%) !important; }
// .mecat-40000    .menuItemHeader { background-image: linear-gradient(45deg, rgb(0, 114, 206) 0%, rgb(0, 114, 206) 100%) !important; }
// .mecat-60000    .menuItemHeader { background-image: linear-gradient(45deg, rgb(175, 22, 133) 0%, rgb(175, 22, 133) 100%) !important; }
// .mecat-80000    .menuItemHeader { background-image: linear-gradient(45deg, rgb(183, 169, 154) 0%, rgb(183, 169, 154) 100%) !important; }
// .mecat-50000    .menuItemHeader { background-image: linear-gradient(45deg, rgb(235, 51, 0) 0%, rgb(236, 51, 0) 100%) !important; }

// .mecat-900    .subMenu li.active,
// .mecat-900    .subMenu li:hover   { background: rgba(151, 215, 0, .2); }
// .mecat-10000  .subMenu li.active,
// .mecat-10000  .subMenu li:hover   { background: rgba(0, 150, 57, .2); }
// .mecat-20000  .subMenu li.active,
// .mecat-20000  .subMenu li:hover   { background: rgba(45, 41, 38, .2); }
// .mecat-30000  .subMenu li.active,
// .mecat-30000  .subMenu li:hover   { background: rgba(255, 203, 46, .2); }
// .mecat-40000  .subMenu li.active,
// .mecat-40000  .subMenu li:hover   { background: rgba(0, 114, 206, .2); }

// .mecat-60000  .subMenu li.active,
// .mecat-60000  .subMenu li:hover   { background: rgba(175, 22, 133, .2); }

// .mecat-80000  .subMenu li.active,
// .mecat-80000  .subMenu li:hover   { background: rgba(183, 169, 154, .2); }

// .mecat-50000  .subMenu li.active,
// .mecat-50000  .subMenu li:hover   { background: rgba(165, 30, 50, .2); }


// Version 3

.mecat-10000	.menuItemHeader { background-image: linear-gradient(45deg, $color_mobilegesundheit 0%, $color_mobilegesundheit 100%) !important; }
.mecat-20000    .menuItemHeader { background-image: linear-gradient(45deg, $color_kontrolle 0%, $color_kontrolle 100%) !important; }
.mecat-30000    .menuItemHeader { background-image: linear-gradient(45deg, $color_wellness 0%, $color_wellness 100%) !important; }
.mecat-40000    .menuItemHeader { background-image: linear-gradient(45deg, $color_massagechair 0%, $color_massagechair 100%) !important; }
.mecat-50000    .menuItemHeader { background-image: linear-gradient(45deg, $color_therapie 0%, $color_therapie 100%) !important; }
.mecat-60000    .menuItemHeader { background-image: linear-gradient(45deg, $color_pflege 0%, $color_pflege 100%) !important; }
.mecat-70000    .menuItemHeader { background-image: linear-gradient(45deg, $color_sport  0%, $color_sport 100%) !important; }
.mecat-80000    .menuItemHeader { background-image: linear-gradient(45deg, $color_aktionen 0%, $color_aktionen 100%) !important; }

.mecat-10000	.subMenu li.active,
.mecat-10000	.subMenu li:hover   { background: rgba($color_mobilegesundheit, .05); a { color: darken($color_mobilegesundheit, 20%)} }
.mecat-20000	.subMenu li.active,
.mecat-20000	.subMenu li:hover   { background: rgba($color_kontrolle, .05); a { color: darken($color_kontrolle, 20%)} }
.mecat-30000  .subMenu li.active,
.mecat-30000  .subMenu li:hover   { background: rgba($color_wellness, .05); a { color: darken($color_wellness, 20%)} }
.mecat-40000  .subMenu li.active,
.mecat-40000  .subMenu li:hover   { background: rgba($color_massagechair, .05); a { color: darken($color_massagechair, 20%)} }
.mecat-50000  .subMenu li.active,
.mecat-50000  .subMenu li:hover   { background: rgba($color_therapie, .05); a { color: darken($color_therapie, 20%)} }
.mecat-60000  .subMenu li.active,
.mecat-60000  .subMenu li:hover   { background: rgba($color_pflege, .05); a { color: darken($color_pflege, 20%)} }
.mecat-70000  .subMenu li.active,
.mecat-70000  .subMenu li:hover   { background: rgba($color_sport, .05); a { color: darken($color_sport, 20%)} }
.mecat-80000  .subMenu li.active,
.mecat-80000  .subMenu li:hover   { background: rgba($color_aktionen, .05); a { color: darken($color_aktionen, 20%)} }

li.fillcategory:hover {
	background: transparent !important;
}

.subMenu {
	    background-color: rgba(255, 255, 255, 1);
}

#mainnav .container-lg {
	padding: 0;

	@media screen and (min-width: 992px) {
		padding-bottom: 5px;
		padding-top: 10px;
	}
}

.productsMenu ul, .productsMenu li {
	list-style-position: inside;
	list-style-type: none;
}

.productsMenu ul, ul.productsMenu {
	padding: 0;
}

.headerIcon path {
	fill: $color_text_on_catcol !important;
}

@media screen and (min-width: 992px) {
	
	div#mainnavigationproduct {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	#header .header-box .lower * {
	    line-height: 22px !important;
	}
		
	.menuContainer {
	    /* IE safe */
	    padding: 0;
	    margin: 0 auto; /* align center */
	    /* max width of parent container */
	    max-width: 1100px;
	}
	.menuContainer *::selection {
	    /* IE safe */
	    background: transparent;
	}
	
	.productsMenu {
	    /* IE safe */
	    /* flex configuration */
	    display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    justify-content: space-between; /* leave gap only in between elements */
	}
	
	.cssgrid .productsMenu {
	    /* grid configuration */
	    display: grid;
	    grid-template-columns: 1fr 1fr 1fr 1fr; /* 4 column grid */
	    row-gap: 5px;
	    column-gap: 4px;
	}
	
	.backdropfilter .productsMenu {
	    /* if backdrop-filter is supported */
	    backdrop-filter: blur(4px);
	}
	
	.menuContainer ul {
	    /* IE safe */
	    padding: 0;
	    margin: 0;
	    /* hide list icon */
	    list-style-type: none;
	}
	
	.menuContainer li {
	    /* IE safe */
	    padding: 0;
	    margin: 0;
	}
	
	.menuContainer a {
	    /* IE safe */
	    padding: 0;
	    margin: 0;
	    /* no link text decoration */
	    text-decoration: none;
	}
	
	.menuItem {
	    /* IE safe */
	    /* flex configuration */
	    flex: 0 0 24.75%; /* not 25% - leave some space in between menu items */
		box-shadow: 0 2px 0 rgba(0,0,0,.05),0 0 8px rgba(0,0,0,.1);
	    /* add border radius here as well for round box-shadow */
	    /* XXX border-radius: 12px 12px 5px 5px; */
	    /* overwrite .menuContainer li */
	    margin: 0 0 5px 0 !important;
	}
	
	.cssgrid .menuItem {
	    /* ensure normal row gap - overwrite .menuItem */
	    margin: 0 !important;
	}
	
	.menuItemHeader {
	    /* IE safe */
	    display: block;
	    position: relative;
	    /* calculate height: 2 times content gap + icon size) */
	    height: calc(2 * 0.9em + 2.0em);
	
	    /*
	    background-color: #fff;
	    background-size: auto 8px;
	    background-repeat: no-repeat;
	    background-position: bottom;
	    */
	}
	 
	.menuItemHeader .headerIcon {
	    /* IE safe */
	    position: absolute;
	    top: 0.9em; /* content gap */
	    right: 0.9em; /* content gap */
	    width: 2.0em; /* icon size */
	    height: auto; /* icon size */
	}
	
	.menuItemHeader span{
	    /* IE safe */
	    position: absolute;
	    left: 0.9em; /* content gap */
	    top: 50%;
	    transform: translateY(-50%);
	    overflow: hidden;
	    /* limit height to max lines */
	    max-height: 2.4em;
	    /* limit width to include content gap, as well as icon size and offsets */
	    width: calc(100% - 0.9em - (2 * 0.9em + 2.0em));
		font-size: 16px !important;
		font-family:  NeoSansPro, sans-serif, Arial !important;
		text-transform: uppercase;
		font-weight: medium;
	    color: $color_text_on_catcol !important;
	}
	
	.subMenu {
	    /* IE safe */
	    height: calc(100% - (2 * 0.9em + 2.0em));
	    background-color: rgba(255, 255, 255, 1);
	    /* XXX border-radius: 0 0 5px 5px; */
	}
	
	.subMenu li {
	    /* IE safe */
	    padding: 0 calc(0.9em / 2); /* half the content gap as padding, the other half is in .subMenu a */
	}
	
	#mainMenu .dropdown .dropdown-menu * {
	    font-size: 14px;
	    line-height: normal;
	}

	.subMenu a:not(.dropdown-menu-service-link) {
		
		    display: block;
		    font-size: 14px;
		    font-weight: medium;
		    color: #555;
		    outline: none;
		    border-bottom: 1px solid #ddd;
			line-height: normal !important;
			padding-top: 0.75em;
			padding-bottom: calc(0.75em - 1px);
			padding-left: calc(0.9em / 2);
			padding-right: calc(0.9em / 2);
	}	
	
	.subMenu li:last-child a {
	    /* IE safe */
	    border-bottom-width: 0; /* clear border of last child */
	}
	
	.productsMenu a {
		font-family: roboto, sans-serif, Arial;
		font-weight: 400;
	}
	
	#mainnav {
		margin-top: 0;
	}

	.collapse.dont-collapse-sm {
		display: block;
		visibility: visible;
	  }
	  
	#header .header-box .lower ul.productsMenu.w-100 * {
		font-size: 14px;
		line-height: normal !important;
	}
	
	
	/*Service & Support*/
	#mainMenu .dropdown .dropdown-menu.dropdown-menu-service .menuItemHeader {
		background-color:  $color_service !important;
	}

	#mainMenu .dropdown .dropdown-menu.dropdown-menu-service li:active,
	#mainMenu .dropdown .dropdown-menu.dropdown-menu-service li:hover  { background: rgba(128, 128, 128, .2) !important; /* a { color: $color_service} */ }


	.dropdown-menu {
	    min-width: 17rem;
	}
	
	#mainMenu .dropdown .dropdown-menu {
	    margin: 3px 0 0;
	    border: none;
	    border-radius: 0;
		background: rgba(255, 255, 255, 1) !important;
		
		padding: 0;
	}

	ul.dropdown-menu.dropdown-menu-service {
		height: auto;
	    box-shadow: 0 2px 0 rgba(0,0,0,.05),0 0 8px rgba(0,0,0,.1);
	}

}

@media (max-width: 991.98px) {

	/* Menu scrollable	 */
	#header {
		/*position: absolute !important;*/
	}

	#header .header-box .lower .menu-col {
	    //margin-top: -5px !important;
	}	
	
	a.menuItemHeader {
	    color: $color_text_on_catcol !important;
		padding-top: 1em;
		padding-bottom: 1em;
		line-height: 1 !important;
	}

	a.menuItemHeader span {
		font-family: $font_neosans; // roboto_medium, sans-serif, Arial !important;
		//font-weight: bold;
		text-transform: uppercase;
		font-size: 16px !important;
		padding-left: 1rem;
		line-height: 1 !important;
	}

	a.menuItemHeader > i.fa-angle-down {
		line-height: 1 !important;
        -webkit-transition:-webkit-transform .3s ease;
        transition:-webkit-transform .3s ease;
        transition:transform .3s ease;
        transition:transform .3s ease,-webkit-transform .3s ease;
	}

	a.menuItemHeader:not(.collapsed) > i.fa-angle-down {
		-webkit-transform:rotate(-180deg);
		transform:rotate(-180deg);  
	}

	.subMenu a {
		padding-left: 1rem;
	    line-height: 1 !important; // 2rem !important;
	    color: #555;
	}
	
	.subMenu li {
		//padding: 1rem;
		line-height: 1 !important;
	}

	.subMenu li a {
		display: block;
		padding: 1rem;
		padding-left: 3rem;
	    text-transform: uppercase;
		font-family: $font_neosans; // roboto_medium, sans-serif, Arial !important;
	}
}
// Version 3

// Mobile Gesundheit		    10000
// Gesundheitskontrolle     20000
// Wellness		              30000
// Massage		              40000
// Ges. Zuhause		          50000
// Körperpflege		          60000
// Sport 		                70000
// Angebote		              80000


.spaceslide_123 {
  /* color gradient green */
  background-image: linear-gradient(45deg, $gradient-start_general 0%, $gradient-end_general 100%);
}


.spaceslide_10000 {
  /* color gradient green */
  background-image: linear-gradient(45deg, $gradient-start_mobile-health 0%, $gradient-end_mobile-health 100%);
}
.spaceslide_20000 {
  /* color gradient green */
  background-image: linear-gradient(45deg, $gradient-start_health-control 0%, $gradient-end_health-control 100%);
}
.spaceslide_70000 {
  /* color gradient green */
  background-image: linear-gradient(45deg, $gradient-start_sport 0%, $gradient-end_sport 100%);
}
.spaceslide_30000 {
  /* color gradient green */
  background-image: linear-gradient(45deg, $gradient-start_wellness 0%, $gradient-end_wellness 100%);
}
.spaceslide_50000 {
  /* color gradient green */
  background-image: linear-gradient(45deg, $gradient-start_therapy 0%, $gradient-end_therapy 100%);
}
.spaceslide_80000 {
  /* color gradient green */
  background-image: linear-gradient(45deg, $gradient-start_sale 0%, $gradient-end_sale 100%);
}
.spaceslide_60000 {
  /* color gradient green */
  background-image: linear-gradient(45deg, $gradient-start_personal-care 0%, $gradient-end_personal-care 100%);
}
.spaceslide_40000 {

  background-image: linear-gradient(45deg, $gradient-start_massage-division 0%, $gradient-end_massage-division 100%);
}

.menu_title_initial {
  text-transform: uppercase;
  font-family: roboto_medium;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  @media (max-width: 576px) {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  @include background($color_gray, 0.6);
}

//PRESETS
.category_preset {

  .breadcrumb,
  #breadcrumb {
    background: none;
    margin: 0!important;
    padding: 0!important;

    * {
      font-size: 14px;
      line-height: 18px;
      font-family: roboto_medium, sans-serif, Arial;
      text-transform:uppercase;
      text-decoration: none;
      color: $color_text_on_catcol;
      letter-spacing: 1px;
    }
    .text-muted {
      color: darken($color_white, 5%)!important;
    }
    i {
      font-size: 0.85rem!important;
    }
  }
  .page-header {
    padding-bottom: 0;
    margin: 0;
    border: none;
    h1 {
      margin: 0;
    }
  }
  .listRefine {
    display: none;
  }
  .refineParams {
    display: none;
  }
  .boxwrapper {
    margin: 0;
  }
  .categoryDescription {
  }
  .img-thumbnail {
    display: none;
  }
}

.breadcrumbFrame {
  @include background($color_white, 0.2);

  .container {
    padding: 0;

    @media (min-width: 576px) {
      padding-left: 15px;
      padding-right: 15px;
    }
  }
}
.titleFrame{
  color: $color_gray;
  padding: 10px;
  background-color: rgba($color_gray, .02);

  @media (min-width: 576px) {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .container {
    padding: 0;

    @media (min-width: 576px) {
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  .page-header {
    h1, .h1 {
      @media (max-width: 576px) {
        font-size: 1.25rem;
        line-height: 2rem;
        font-family: roboto_standard, sans-serif, Arial;
      }
      i {
        line-height: 2rem;
        color: $color_white;
        cursor: pointer;
      }
    }
  }
  i {
    float: right;
    color: $color_kontrolle;
  }
  #catDescLocator {
    font-family: roboto_light, sans-serif, Arial!important;
    margin: 0;

    a {
      color: $color_white;
      font-family: roboto_medium, sans-serif, Arial;
      text-decoration: none;
      border-bottom: 1px dotted $color_white;
      margin-left: 5px;
    }
  }

  #catDescLocator.categoryDescription a {
    color: $color_standard;
    border-bottom: none;
  }
}
.listRefine {
  background-color: $color_white;
  padding-top: 15px;
  padding-bottom: 15px;
}

.cat-title {
  text-transform: uppercase;
  font-family: roboto_medium;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  @media (max-width: 576px) {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  @include background($color_gray, 0.6);

}

.cat-button {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  line-height: 35px;
  padding: 0;
  /*padding-left: 20px;*/
  /*padding-right: 20px;*/
  outline: 0;
  display: inline-block;
  margin: 0;
  margin-top: 5px;
  margin-bottom: 6px;

  * {
    font-family: roboto_light, sans-serif, Arial;
    font-size: 16px;
    color: $color_white;
    text-transform: uppercase;
    background-color: transparent!important;
    border: none!important;
    outline: none;
  }
}

.subcatList {
  border-top: 1px solid transparent;
  border-bottom: 1px solid rgba($color_white, 0.25);
  padding-bottom: 15px;

  @media (min-width: 576px) {
    border-top: 1px solid rgba($color_white, 0.25);
    padding-bottom: 1px;
  }

  .row {
    margin-right: 0;
    margin-left: 0;

    .cat-button * {
      color: $color_text_on_catcol;
    }

    .moreSubCat {
      height: 300px;
      padding: 0;
      border: 1px solid $color_silver;
      border-radius: $border_radius;
      display: block;
      flex: 0 0 94%;
      max-width: 94%;

      @media (min-width: 576px) {
        flex: 0 0 48%;
        max-width: 48%;
      }

      @media (min-width: 768px) {
        flex: 0 0 32%;
        max-width: 32%;
      }

      &:hover {
        color: $color_standard;
      }

      @media (max-width: 575.98px) {
        margin-left: 2%;
        margin-right: 2%;
      }

      &:nth-child(2n+0) {
        @media (max-width: 767.98px) {
          margin-left: 2%;
        }
      }

      &:nth-child(2n+1) {
        @media (max-width: 767.98px) {
          margin-right: 2%;
        }
      }

      &:nth-child(3n+2) {
        @media (min-width: 768px) {
          margin-left: 2%;
          margin-right: 2%;
        }
      }
      img {
        width: auto;
        height: 100%;

        border-radius: $border_radius * 1.5;
        position: absolute;
        right: 0;
      }
      span {
        text-align: center;
        display: block;
        line-height: 45px;
        position: absolute;
        font-family: $font_medium;
        bottom: 2.5%;
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      i {
        font-size: 1.25rem;
        margin-left: 5px;
      }
    }

    a.col {
      width: 50%;
      display: block;
      text-decoration: none!important;
      border: 1px solid rgba($color_black, 0.10);
      border-left-color: rgba($color_white, 0.5);
      border-top-color: rgba($color_white, 0.5);
      border-radius: 3px;
      color: rgba($color_white, 0.75);
      cursor: pointer;
      margin: 0;

      span {
        width: 100%;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 2.2rem;
        @media (min-width: 576px) { line-height: unset; }
      }

      @media (min-width: 576px) {
        width: 100%;
        margin-top: 1px;
        margin-bottom: 1px;
      }

      &:hover {
        border: 1px solid rgba($color_white, 1);

        span {
          color: rgba($color_white, 1);
        }
      }
    }
  }
}

category_99999,
.category_ {

  #breadcrumb,
  .breadcrumb {
    margin: 0!important;
    background-color: transparent;
    padding-left: 0;
    * {
      color: $color_white!important;
    }
  }
  .breadcrumbFrame,
  .cat-menu {
    @extend %bg_standard08;
  }
  /*.titleFrame {
    @extend %bg_standard10;
  }*/
  .cat-title {
    @extend %bg_standard10;
  }
  .producticon {
    @extend %bg_standard10;
  }
  .card-header {
    @extend %bg_standard10;
    color: $color_white;
    border: none;
  }
  .cat-button {
    @extend %bg_standard10;
    color: $color_white;
    text-decoration: none;
  }
  .textLink {
    text-decoration: none;
    @extend %cl_standard10;
  }
}

.category_10000 {
  .breadcrumbFrame,
  .cat-menu {
    @extend %bg_mobilegesundheit08;
  }
  /*.titleFrame {
    @extend %bg_mobilegesundheit10;
  }*/
  .cat-title {
    @extend %bg_mobilegesundheit10;
  }
  .cat-button {
    @extend %bg_mobilegesundheit10;
  }
  .producticon {
    @extend %bg_mobilegesundheit10;
  }
  .cat-bglight {
    @extend %bg_mobilegesundheit06;
  }
}

.category_20000 {
  .cat-menu {
    @extend %bg_kontrolle08;
  }
  .breadcrumbFrame {
    @extend %bg_kontrolle10;
  }
  
  
  /*.titleFrame {
    @extend %bg_kontrolle10;
  }*/
  .cat-title {
    @extend %bg_kontrolle10;
  }
  .cat-button {
    @extend %bg_kontrolle10;
  }
  .producticon {
    @extend %bg_kontrolle10;
  }
  .cat-bglight {
    @extend %bg_kontrolle06;
  }
}
.category_70000 {
  .breadcrumbFrame,
  .cat-menu {
    @extend %bg_sport08;
  }
/*  .titleFrame {
    @extend %bg_sport10;
  }*/
  .cat-title {
    @extend %bg_sport10;
  }
  .cat-button {
    @extend %bg_sport10;
  }
  .producticon {
    @extend %bg_sport10;
  }
  .cat-bglight {
    @extend %bg_sport06;
  }

}
.category_30000 {
  .breadcrumbFrame,
  .cat-menu {
    @extend %bg_wellness08;
  }
 /* .titleFrame {
    @extend %bg_wellness10;
  } */
  .cat-title {
    @extend %bg_wellness10;
  }
  .cat-button {
    @extend %bg_wellness10;
  }
  .cat-bglight {
    @extend %bg_wellness06;
  }
  .producticon {
    @extend %bg_wellness10;
  }
}
.category_50000 {
  .breadcrumbFrame,
  .cat-menu {
    @extend %bg_therapie08;
  }
/*  .titleFrame {
    @extend %bg_therapie10;
  }*/
  .cat-title {
    @extend %bg_therapie10;
  }
  .cat-button {
    @extend %bg_therapie10;
  }
  .producticon {
    @extend %bg_therapie10;
  }
  .cat-bglight {
    @extend %bg_therapie06;
  }

}
.category_50000 {
  .breadcrumbFrame,
  .cat-menu {
    @extend %bg_zuhause08;
  }
 /* .titleFrame {
    @extend %bg_zuhause10;
  }*/
  .cat-title {
    @extend %bg_zuhause10;
  }
  .cat-button {
    @extend %bg_zuhause10;
  }
  .producticon {
    @extend %bg_zuhause10;
  }
  .cat-bglight {
    @extend %bg_zuhause06;
  }

}
.category_60000 {
  .breadcrumbFrame,
  .cat-menu {
    @extend %bg_pflege08;
  }
/*  .titleFrame {
    @extend %bg_pflege10;
  }*/
  .cat-title {
    @extend %bg_pflege10;
  }
  .cat-button {
    @extend %bg_pflege10;
  }
  .producticon {
    @extend %bg_pflege10;
  }
  .cat-bglight {
    @extend %bg_pflege06;
  }
}
.category_40000 {
  .breadcrumbFrame,
  .cat-menu {
    @extend %bg_massagechair08;
  }
/*  .titleFrame {
    @extend %bg_pflege10;
  }*/
  .cat-title {
    @extend %bg_massagechair10;
  }
  .cat-button {
    @extend %bg_massagechair10;
  }
  .producticon {
    @extend %bg_massagechair10;
  }
  .cat-bglight {
    @extend %bg_massagechair06;
  }
}

.category_80000 {
  .breadcrumbFrame,
  .cat-menu {
    @extend %bg_aktionen08;
  }
/*  .titleFrame {
    @extend %bg_pflege10;
  }*/
  .cat-title {
    @extend %bg_aktionen10;
  }
  .cat-button {
    @extend %bg_aktionen10;
  }
  .producticon {
    @extend %bg_aktionen10;
  }
  .cat-bglight {
    @extend %bg_aktionen06;
  }
}
.err_404 {
  .teaser {

    position: relative;
    overflow: hidden;

    .headImage {
      width: auto;
      height: 380px;

      @media (min-width: 768px) {
        height: 400px;
        width: auto;
      }
      @media (min-width: 992px) {
        height: auto;
        width: 100%;
      }
    }
    .details {
      position: absolute;
      bottom: 5%;
      width: 100%;

      @media (min-width: 768px) {
        width: 675px;
        left: 50%;
        transform: translate(-50%, -5%);
      }

      * {
        color: $color_white;
      }

      b {
        font-family: roboto_medium, sans-serif, Arial;
      }
      .row-eq-height {
        .col-md-4:first-child {
          position: relative;
          h1 {
            margin: 0;
            padding: 0;
            font-size: 100px!important;
            line-height: 80px!important;
            opacity: 1.00;
            width: auto;
            float: right;
            right: 0;
          }
          .cat-button {
            margin-top: 15px;
            float: right;
            @include background($color_white, 0.2);

            a {
              outline: none!important;
              box-shadow: none !important;
              -webkit-box-shadow: none !important;
              &:focus, &:active {
                outline: none!important;
                box-shadow: none !important;
                -webkit-box-shadow: none !important;
              }
            }
          }
        }

        @media (max-width: 576px) {
          .col-md-4, .col-md-8 {
            width: 90%;
            max-width: 100%;
            position: unset !important;
            display: block;

            h2 {
              padding-top: 20px;
            }
            p {
              text-align: left!important;
              width: 90%;
              margin: 0 auto;
            }
            * {
              position: unset!important;
              float: unset!important;
              text-align: center;
            }
          }
        }
      }
    }
  }
  .col-text {
    position: relative;
    .col {
      height:175px;
      margin-bottom: 1rem;

      @media (min-width: 576px) {
        height: 200px;
      }
      @media (min-width: 768px) {
        height: 175px;
      }

      p:last-child {
        position: absolute;
        bottom: 1px;
        left: 1px;
        right: 1px;

        .cat-button {
          color: $color_white !important;
          width: 100%;

          @media (min-width: 576px) {
            width: unset;
          }
        }
      }
    }
  }
}
/*@font-face {*/
/*  font-family: 'roboto_light';*/
/*  src: url('../webfonts/roboto-light-webfont.woff2') format('woff2'),*/
/*  url('../webfonts/roboto-light-webfont.woff') format('woff');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/

/*}*/

/*@font-face {*/
/*  font-family: 'roboto';*/
/*  src: url('../webfonts/roboto-regular-webfont.woff2') format('woff2'),*/
/*  url('../webfonts/roboto-regular-webfont.woff') format('woff');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/

/*}*/

/*@font-face {*/
/*  font-family: 'roboto_medium';*/
/*  src: url('../webfonts/roboto-medium-webfont.woff2') format('woff2'),*/
/*  url('../webfonts/roboto-medium-webfont.woff') format('woff');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: 'NeoSansPro';*/
/*  src: url('/out/medisana/src/webfonts/NeoSansPro-Regular.woff') format('woff'),*/
/*      url('/out/medisana/src/webfonts/NeoSansPro-Regular.woff2') format('woff2'),*/
/*      url('/out/medisana/src/webfonts/NeoSansPro-Regular.otf') format('opentype');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: 'NeoSansPro';*/
/*  src: url('/out/medisana/src/webfonts/NeoSansPro-Bold.woff') format('woff'),*/
/*      url('/out/medisana/src/webfonts/NeoSansPro-Bold.woff2') format('woff2'),*/
/*      url('/out/medisana/src/webfonts/NeoSansPro-Bold.otf') format('opentype');*/
/*  font-weight: bold;*/
/*  font-style: bold;*/
/*}*/
#footer {

  padding: 0;
  padding-top: 15px;
  padding-bottom: 15px;

  * {
    position: unset
  }

  .footer-box-content {
    background-color: $color_white;

    @media (min-width: 768px) {
      background-color: unset;
    }
  }

  ul {
    margin-bottom: 0;

    @media (min-width: 768px) {
      margin-bottom: unset;
    }
  }

  li {
    padding: .5rem 1rem;
    text-align: left;
    border-top: 1px solid darken($color_white, 5%);

    @media (min-width: 768px) {
      padding: .15rem 0;
      text-align: unset;
      border-top: 1px solid transparent;
    }

  }
  .footer-box-title {
    i {
      float: right;
      line-height: 2rem;

      @media (min-width: 768px) {
        display: none;
        line-height: unset;
      }
    }
    &:hover {
      color: $color_gray!important;
    }
  }

  .collapse:not(.show) {
    @media (min-width: 768px) {
      display: block;
    }
  }

  .row-eq-height > div {
    @media (max-width: 991px) {
      width: 50%;
    }
  }

  .footer-box {
    border-radius: 0;
  }

  .card {
    background: transparent;
    margin: 0!important;
    background: darken($color_white, 5%);
    border: none;
    border-bottom: 1px solid $color_white;
    position: unset;

    @media (min-width: 768px) {
      background: transparent;
      border: none;
    }
  }

  .footer-box-title {

    font-family: 'roboto_medium', sans-serif, Arial;
    border-radius: 2px;
    padding: .35rem 1rem;
    cursor: pointer;
    text-align: left;
    margin-bottom: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    @media (min-width: 768px) {
      padding: .5rem 0;
    }
    @media (min-width: 992px) {
      background: transparent;
      font-size: 16px;
    }
    @media (min-width: 1200px) {
      font-size: 18px;
    }

    &:hover {
      color: $color_standard;
    }

  }
  a {
    color: lighten($color_gray, 5%);
    text-decoration: none!important;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.legal-box {
  font-size: 0.80rem;
  line-height: 1.00rem;
  color: $color_gray;
  text-transform: uppercase;
}

#detailsMain {
  &.container {
    @media (max-width: 991.98px) {
      max-width: 100%;
    }
  }
}
#mstoverlay {
    position: fixed;
    width: 100vh;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1500;
    left: 0;
    display: none;
}

.somelinks, .somelinks a {
    font-size: 16px;
    line-height: 1;

    i {
        font-size: 25px;
        padding-right: .5rem;
    }
}

#header {

    position: fixed;
    top: 0;
    z-index: 1500;
    width: 100%;
    border: none;
    padding-bottom: 0!important;
    -webkit-box-shadow:0 2px 0 rgba(0,0,0,.05),0 0 8px rgba(0,0,0,.1);
    box-shadow:0 2px 0 rgba(0,0,0,.05),0 0 8px rgba(0,0,0,.1);

    button.stdbtn-mobile {
        @media (max-width: 991.98px) {
            width: 36px!important;
            height: 36px;
            padding: 3px;

            i.fas {
                vertical-align: middle;
            }
        }
    }

    button, a {
        @media (max-width: 991.98px) {
            z-index: 1505;
        }
    }

    .showLogin {
        @media (max-width: 576px) {
            z-index: 1505;
        }
    }

    .clearfix {
        height: 0;
    }

    .navbar {
        border: none !important;
    }

    .logo-link {
        float: left;
        width: auto;
    }

    .logo-img {
        margin: 0 !important;
        width: 180px !important;

        @media (min-width: 992px) {
            width: 250px !important;
        }
    }

    .upper .row {
        position: relative;

        .logo-col {
            @media (max-width: 991.98px) {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: auto;
                z-index: 1501;
            }
        }
    }

    .menu-dropdowns {
        margin: 0!important;
        display: inline-flex;
        float: right;

        i {
            color: $color_standard;
        }

        .btn {
            padding: .225rem .5rem !important;
        }

        .fa-user {
            font-size: 1.75em;
            @media (max-width: 576px) {
                font-size: 1.5em;
            }
        }

        .fa-shopping-cart {
            font-size: 2.45em;
            @media (max-width: 576px) {
                font-size: 2.2em;
            }
        }

        .languages-menu {
            .dropdown-toggle {
                font-size: 20px;
                text-transform: uppercase;
            }

            @media (max-width: 991.98px) {
                display: none;
            }
        }
    }

    .nav-link #mainnav:hover {
        display: block !important;
    }

    .header-box {

        padding: 0;

        .flexdiv {
            display: flex;
            align-items: center;
        }

        #topheader {

            $topheader_content_height: 25px;
            width: 100%;
            //height: 35px;
            background-color: #f3f3f3;

            .icon-wrapper {
                padding-top: 5px;
                padding-bottom: 5px;
            }

            .topheader-content {
                //width: 100%;

                img.social-icon, img.topheader-menu-icon {
                    vertical-align: top;
                    height: auto;
                    max-width: 100%;
                }

                .topheader-text {
                    line-height: $topheader_content_height;
                    font-size: 12px;
                    margin-left: 3px;
                }
                
                .topheader-left {
                    justify-content: flex-start;

                    @media (min-width: 992px) {
                        padding-left: 0 !important;
                    }

                    .social-link, .social-link a {
                        line-height: 1;
                        font-size: 12px;
                    }

                    img.social-icon {
                        border: 1px solid #6b6b6b;
                        border-radius: 40px;
                        padding: 3px;
                        opacity: .8;
                        margin: 0 3px;
                    }

                    .social-link:hover img.social-icon {
                        opacity: 1;
                    }
                }

                .topheader-right {
                    justify-content: flex-end;

                    .btn.dropdown-toggle {
                        line-height: 1;
                        padding: 0 !important;
                        margin-left: 25px;
                        border: none;
                        color: $color_gray !important;

                        @media (max-width: 991.98px) {
                            margin-left: 15px;
                        }            

                        &:focus {
                            outline: none;
                            box-shadow: none;
                            color: $color_standard !important;
                        }

                        &:hover .topheader-menu-icon {
                            opacity: 1;
                        }
    
                    }

                    .service-menu > a, .sale-menu > a {
                        line-height: 1;
                        font-size: 12px;
                    }

                    .topheader-menu-icon {
                        width: $topheader_content_height;
                        height: $topheader_content_height;
                        opacity: .7;
                        fill: #222;

                        &.acc-icon, &.sale-icon {
                            border: 1px solid #6b6b6b;
                            border-radius: 40px;
                            padding: 4px;
                        }

                        &.sale-icon {
                            padding: 4px 0 !important;
                        }
                    }

                    #dropdownMenuButton.btn-flag {
                        height: $topheader_content_height;
                        padding: 0 6px !important;
                        font-size: 16px !important;
                        color: #6b6b6b !important;
                        border: 2px solid #6b6b6b !important;
                        margin: 0 0 0 25px !important;

                        & > i {
                            color: #6b6b6b !important;
                        }
                    }

                    .minibasket-menu ul.dropdown-menu {
                        z-index: 1600;
                    }

                    .minibasketcircle {

                    }
                }
            }
        }

        .upper {
            padding-top: 10px;
            padding-bottom: 5px;

            @media (max-width: 991.98px) {
                padding-top: 5px;
            }
        }

        .lower {

            height: 105px;

            .row {
                height: 100%;
                align-items: center;
            }

            @media (min-width: 992px) {
                padding-top: 5px;
            }

            @media (max-width: 991.98px) {
                //position: absolute;
                width: 100%;
                //top: 50%;
                //left: 50%;
                //transform: translate(-50%, -50%);

                height: 70px;

                .row {
                    margin: 0;                    
                }

                #mainMenu {
                    z-index: 1506;

                    li {
                        border-bottom: 1px solid #ddd;
                    }

                    a.nav-link {
                        background: $color_white;
                    }

                }
            }

            .icon {
                border: none;
                background-color: transparent;
                outline: none;
            }

            .logo-col {
                padding: 0;

                @media (max-width: 991.98px) {
                    //position: absolute;
                    //top: 50%;
                    //left: 50%;
                    //transform: translate(-50%, -50%);
                    //width: auto;
                    //z-index: 1501;
                    display: flex;
                    justify-content: center;
                }
            }

            .menu-col {
                padding: 0;
                margin: 0;
                height: 100%;

                @media (max-width: 991.98px) {
                    height: unset;
                }
            }

            * {
                font-size: 16px;
                line-height: 22px;
            }

            .fa-2x {
                color: $color_standard;
                font-size: 1.5em;
                padding-top: 2px;
            }

            .languages-menu {
                margin-left: 10px;

                .btn {
                    text-transform: uppercase;
                }
            }
        }

        .menu-search-button {
            background-color: transparent;
            border-color: transparent;
            border-radius: $border_radius;

            @media (min-width: 992px) {
                border-left: 1px solid #f3f3f3;
            }

            .fa-search {
                color: $color_standard;
                font-size: 1.5em;

                @media (max-width: 991.98px) {
                    font-size: 1.3em;
                }
            }
        }

        .searchbar {
            position: absolute;
            top: 100%;
            width: 100%;
            opacity: 0;
            visibility: hidden;            
            background-color: white;
            transform: translateY(-25px);
            transition: max-height .5s cubic-bezier(0,1,0,1), visibility .2s ease-in-out, opacity .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
            z-index: -1;
            box-shadow: 0 2px 0 rgba(0,0,0,.05),0 0 8px rgba(0,0,0,.1);

            &.searchbar-open {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .searchbar-container {
                padding: 32px 64px;

                @media (max-width: 991.98px) {
                    padding: 32px 15px;
                }
            }

            .search {

                #searchParam {
                    background: $color_white;
                    border-radius: $border_radius;
                    //width: 0px;
                    //display: none;
                }
    
                .search-close {
    
                    .btn-primary {
    
                        background-color: transparent;
                        border-color: transparent;
                        border-radius: $border_radius;
                        width: 64px;
                        text-align: center;
    
                        .fa-search {
                            color: $color_standard;
                            margin-top: -1px;
                            font-size: 1.5em;
                            vertical-align: middle;
    
                            @media (max-width: 991.98px) {
                                font-size: 1.3em;
                            }
                        }
    
                        .fa-times {
                            color: $color_rot;
                            margin-top: -1px;
                            font-size: 1.5em;
                            vertical-align: middle;
                        }
                    }
                }
            }
        }
    }
}

.languages-menu {
  .btn-flag {
    font-family: roboto_medium, sans-serif, Arial;
    font-size: 18px!important;
    line-height: 18px;
    border: 2px solid $color_standard!important;
    background: white;
    height: 30px;
    margin-top: 5px;
    margin-left: 10px!important;
    color: $color_standard!important;
  }
  ul {
    padding: 0;
    width: 175px;
    li.active {
      background: $color_white!important;
      i {
        color: $color_standard!important;
      }
    }
    li {
      padding: 0;

      &:hover {
        background: $color_standard!important;

        @media (max-width: 991.98px) {
          background: transparent;
        }

        a {
          color: $color_white!important;
        }
        i {
          color: $color_white!important;
        }
      }

      a {
        color: $color_standard!important;

        img {
          margin-right: 5px;
        }
        i {
          line-height: 32px;
          float: right;
          color: $color_white!important;
        }
      }
    }
  }
  @media (max-width: 991.98px) {

    position: unset!important;

    .dropdown-menu-right {
      width: 100%;
      margin: 0 auto;

      .dropdown-item {
        display: inline-flex;
        width: auto;

        .dropdown-link {
          padding: 5px;
          margin: 5px;
          border-radius: 50%;

          img {
            margin: 0;
          }

        }
      }
    }
  }
}
#catLongDescLocator {
  padding: 1rem 0 2rem 0;
  background: $color_white;

  .col {

    .MsoTitle {
      border-top: 1px solid lighten($color_silver, 15%);
      padding: 8px 13px;
      margin: 0;
      cursor: pointer;
      position: relative;

      i {
        float: right;
        color: lighten($color_gray, 5%) !important;

        @media (min-width: 576px) {
          line-height: 30px;
          right: 2.75%;
        }

        @media (max-width: 575.98px) {
          position: absolute;
          top: 30%;
          right: 4.75%;
        }
      }
      &:last-of-type {
        border-bottom: 1px solid lighten($color_silver, 15%);
      }
    }

    .MsoNormal {
      color: lighten($color_gray, 5%);
      margin: 1rem!important;
      margin-bottom: 0!important;
      padding-bottom: 1.5rem;
    }
    * {
      span {
        font-family: $font_normal;
        color: $color_standard;
        width: 95%;
        white-space: unset;
        overflow: unset;
        text-overflow: clip;

        @media (max-width: 575.98px) {
          display: inline-block;
          width: 87%;
        }
      }
    }

    .collapsed {
      span {
        font-family: $font_standard;
        font-weight: 400;
        color: lighten($color_gray, 5%);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }
  }
}
.categorieslongdesc {
  padding: 2rem;
}
#productMenu {
  float: left!important;
  &:hover {
    #mainnav {
      width: 100%;
      @media (min-width: 577px) {
        //display: block!important;
      }
      @media (max-width: 576px) {
        z-index: 1507;
      }
    }
  }
  .show {
    display: block!important;
    z-index: 1507;
  }
  #mainnavigation {

    width: 100%;
    margin: 0 auto;
    @include background(darken($color_white, 10%), 0.8);

    // BLOCKING COLLAPS CARD BOOTSTRAP CSS
    .card {
      margin: 0;
      border-radius: 0;
      border: none;
      background-color: transparent;
      height: 100% !important;

      .collapse:not(.show) {
        @media (min-width: 800px) {
          display: block!important;
        }
      }

    }

    // WIDE MENU SETTINGS

    * {
      color: $color_white!important;
      list-style-type: none;
      text-decoration: none!important;
      font-size: 16px;
      line-height: 31px;
      letter-spacing: 1px;

      @media (min-width: 800px) {
        font-size: 14px;
        line-height: 20px;
      }

    }
    .col-xs-3 {
      @media (max-width: 576px) {
        border-top: 1px solid $color_white;
      }
    }
    .dropdown-link{
      width: 100%!important;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
      padding: .25rem 1rem;
      font-family: roboto_light, sans-serif, Arial;

      &:first-child {
        margin-top: .6rem;
      }

      &:last-child {
        margin-bottom: .6rem;
      }

      @media (max-width: 576px) {
        padding: .35rem 1rem;
      }

      &:hover {
        background-color: transparent!important;
      }
    }
    .fa-angle-down {
      display: none;
    }
    .fa-arrow-circle-right {
      cursor: pointer;
      font-size: 20px;
    }
    .overview {
      display: inline-flex;
    }
    .d-sm-none {
      padding-bottom: 10px;
      padding-top: 5px;

      @media (max-width: 576px) {
        display: none;
      }
    }
  }
}
#mainMenu {

  & > .nav-item {
    float: left;
    list-style: none;
    height: 50px;

    @media (min-width: 992px) {
      height: 100%;
    }

    @media (max-width: 991.98px) {
      height: auto;
    }

    .nav-link {
      color: $color_text_dark;
      
      i {
        @media (min-width: 992px) {
          margin-left: 5px;
        }
        @media (max-width: 991.98px) {
          float: right;
        }
      }
    }

    .dropdown-menu-service {

      @media (min-width: 992px) {
          //display: block;
          //visibility: hidden;
        opacity: 0;
        -webkit-transform:translateY(-4px);
        transform:translateY(-4px);
        -webkit-transition:opacity .2s ease,-webkit-transform .2s ease;
        transition:opacity .2s ease,-webkit-transform .2s ease;
        transition:opacity .2s ease,transform .2s ease;
        transition:opacity .2s ease,transform .2s ease,-webkit-transform .2s ease;
      }

      .dropdown-link {
        line-height: normal !important;

        @media (max-width: 991.98px) {
          line-height: 1 !important;
          font-size: 16px;
          font-family: $font_neosans;
          text-transform: uppercase;
          padding: 1rem;
          padding-left: 2rem;
        }
      }
    }

    & > .nav-link {
      height: 48px;
      padding-top: 1rem;
      padding-bottom: 1rem;
      line-height: 1;
      font-family: $font_neosans; // $font_medium
      font-size: 1rem;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 0.5px;

      i {
        line-height: 1;
        -webkit-transition:-webkit-transform .3s ease;
        transition:-webkit-transform .3s ease;
        transition:transform .3s ease;
        transition:transform .3s ease,-webkit-transform .3s ease;
      }

      @media (min-width: 992px) {
        display: flex;
        align-items: center;
        padding: 1rem 1rem;
        height: 100%;
        line-height: 22px;
        font-family: NeoSansPro;
        font-size: 1rem;
        font-weight: bold;
        //text-transform: unset;

        i {
          line-height: 22px;
        }
      }
    }
  }

  .dropdown.menu-show {

    .dropdown-menu-service {
      @media (min-width: 992px) {
        opacity: 1;
        -webkit-transform:translateY(0);
        transform:translateY(0);
      }
    }
    
  }

  .moreLinks {
    display: none!important;
  }

  .dropdown {

    &.menu-show > a > i.fa-angle-down {
      -webkit-transform:rotate(-180deg);
      transform:rotate(-180deg);
    }

    .dropdown-menu {
      margin: 0;
      border: none;
      border-radius: 0;
      background: darken($color_white, 5%);

      @media (max-width: 991.98px) {
        position: unset;
        padding: 0;
        width: 100%;
        left: 0;
        right: 0;
      }

      .dropdown-item {
        border-bottom: none !important;

        @media (max-width: 991.98px) {
          border-top: 1px solid #ddd;
          padding: 0 !important;
        }
      }

      * {
        font-family: $font-medium;
        color: $color_gray;
        text-decoration: none !important;
        font-size: 16px;
        line-height: 30px;
        //letter-spacing: 1px;
        background-color: transparent !important;

        @media (min-width: 576px) {
          font-family: $font-normal;
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
    
    &:hover {
      .dropdown-menu {
        @media (min-width: 577px) {
        }
      }
    }
  }
}
.naviframe {

  height: 100%;
  position: relative;

  .morepics {
    padding-left: 15px;
    padding-right: 15px;

    .details-picture-more-list {
      width: 60px;

      .details-picture-more-list-item {
        padding: 0;
        margin: 5px;
        display: none;
      }

      .show {
        display: block !important;
      }
    }

    ul {
      margin-bottom: 0 !important;
      width: 50px;

      li {

        .selected {
          @media (max-width: 575.98px) {
            background: $color_standard;
          }
        }

        &:first-child {
          margin-top: 0!important;
        }

        &:last-child {
          margin-top: 0!important;
        }

        @media (max-width: 575.98px) {
          width: 15px !important;
          height: 15px !important;
          margin: 5px;
        }

        width: 50px !important;
        height: 50px !important;
        margin: 1px;

        .details-picture-more-link {
          @media (max-width: 575.98px) {
            width: 15px;
            border-radius: 50%;
            background: $color_silver;
          }

          // border: 1px solid $color_silver;
          border-radius: 3px;
          height: 100%;
          overflow: hidden;
          padding: 0px !important;
          position: relative;
          cursor: pointer;

          img {
            @media (max-width: 575.98px) {
              opacity: 0 !important;
            }
            width: auto;
            opacity: 1;
            height: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
          }


          &:hover {
            border-color: $color_standard;

            img {
              opacity: 1;
            }
          }

        }

        .selected {
          border-color: $color_standard;
        }
      }
    }

    i {
      color: $color_gray !important;

      &:hover {
        color: $color_standard !important;
      }
    }

    i {
      cursor: pointer;
    }

    .control {
      width: 50px;

      i {
        margin: 0 auto;
        font-size: 20px;
        opacity: 0;
      }
    }
  }

  .video {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 70px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: unset;

    a {
      border: none;
      display: block;
      line-height: 1.3px;
    }

    span {
      font-size: 0.75rem;
      line-height: 1rem;
    }
    i {
      font-size: 50px;
    }
  }
}
.tmview {
  .slides {
    .details-picture-more-list-item {
      display: inline-flex!important;
      border: 1px solid lighten($color_gray, 30%);
      background: $color_silver;
      border-radius: $border_radius;
      margin: 0.75rem;
      margin-left: 0;
      border-radius: 50%;

      a {
        height: 5px;
        width: 5px;
        display: inline-block;
        margin: 1px;
        border-radius: 50%;
        border: none!important;

        img {
          height: 100%;
        }
      }

      &:hover {
        border: 1px solid $color_standard;
        background: lighten($color_standard, 5%);
      }
    }
  }
}

/*
 * MOSAIC CSS for Bootstrap Tile View
 */

/* All devices */



.rss-outer
{
    /* vertical padding */
    padding: 2.5px 0;
    /* zero spacing left/right */
    margin: 0 -15px;
}

.rss-height-1, .rss-height-2
{
    /* fix single line height */
    height: 155px;

}

.rss-height-1 {
    .rss-text-content {
        padding: 15px;
        width: 100%;
        max-width: 100%!important;
        height: 100%;
        background-color: unset!important;
        background-image: linear-gradient(to right, rgba(255,255,255, 1.00), rgba(255,255,255, 0))!important;

        * {
            text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
            width: 100%
        }

        .rss-text-excerpt {
            width: 60%
        }
    }
}

.rss-inner
{
    height: 100%;
    background-position: right center;
    background-repeat: no-repeat;
    border: 1px solid #AAAAAA;
    border-width: 1px 0px 1px 0px;
    background-size: cover!important;
    background-size: auto 300.00px;/* tile vertically covers 50% of image */

}

.rss-inner-helper
{
    height: 100%;

    background-image: linear-gradient(to left, transparent 400.00px, #F8F8F8 533.33px);
}

.rss-text-content
{
    position: absolute;
    width: 45%;
    top: 50%;
    transform: translateY(-50%);
    padding: 4% 1%;
    background: rgba(255, 255, 255, 0.8);
    font-family: $font_normal;
}

.rss-text-title
{
    font-weight: 500;
    color: $color_standard;
    font-family: $font-medium;
    text-transform: uppercase;
    /* ellipsis settings */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-decoration: none;
}

.rss-text-title:hover
{
    text-decoration: underline;
}

.rss-text-excerpt
{
color: $color_black;
    /* ellipsis settings */
}

/* Extra small devices (portrait phones, 576px and less) */
@media (max-width: 575.98px)
{
    #rss .row
    {
        /* fix min */
        min-width: 320px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px)
{
    .rss-outer
    {
        /* vertical padding */
        padding: 2.5px 0;
        /*  add left/right margin */
        margin: 0px;
    }

    .rss-height-1
    {
        height: 155px; /* 148px net */

        .rss-text-content {
            padding: 15px;
            width: 100%;
            max-width: 100%!important;
            height: 100%;
            background-color: unset!important;
            background-image: linear-gradient(to right, rgba(255,255,255, 1.00), rgba(255,255,255, 0))!important;

            * {
                text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
                width: 100%
            }
        }
    }

    .rss-inner
    {
        border-width: 1px;
        background-size: auto 300.00px;/* tile vertically covers 50% of image */
        a {
            text-decoration: none!important;
        }
    }

    .rss-inner-helper
    {
        background-image: unset;
    }

    .rss-height-2
    {
        height: 305px; /* 260.5px net */
    }

    .rss-width-2.rss-height-2 .rss-inner
    {
        background-size: auto 300.00px;/* tile vertically covers 100% of image */
    }

    .rss-width-2.rss-height-2 .rss-inner-helper
    {
        background-image: unset;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px)
{
    .rss-outer
    {
        padding: 7.5px 0;
        margin: 0px;
    }

    .rss-height-1
    {
        height: 165px; /* 138px net */
        .rss-text-content {
            padding: 15px;
            width: 100%;
            max-width: 100%!important;
            height: 100%;
            background-color: unset!important;
            background-image: linear-gradient(to right, rgba(255,255,255, 1.00), rgba(255,255,255, 0))!important;

            * {
                text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
                width: 100%
            }
        }
    }

    .rss-inner
    {
        background-size: auto 214.29px;/* tile vertically covers 70% of image */
    }

    .rss-inner-helper
    {
        background-image: unset;
    }
    
    .rss-width-2.rss-height-1 .rss-inner
    {
        background-size: auto 300.00px;/* tile vertically covers 50% of image */
    }

    .rss-width-2.rss-height-1 .rss-inner-helper
    {
        background-image: linear-gradient(to left, transparent 400.00px, #F8F8F8 533.33px);
    }

    .rss-height-2
    {
        height: 315px; /* 278px net */
    }

    .rss-width-2.rss-height-2 .rss-inner
    {
        background-size: auto 428.57px;/* tile vertically covers 70% of image */
    }

    .rss-width-2.rss-height-2 .rss-inner-helper
    {
        background-image: unset;
    }

    .rss-text-content
    {
        width: unset;
        min-width: 40%;
        max-width: 65%;
    }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px)
{
    .rss-outer
    {
        padding: 10px 0;
        margin: 0;
    }

    .rss-height-1
    {
        height: 200px; /* 178.876px net */

        .rss-text-content {
            padding: 15px;
            width: 100%;
            max-width: 100%!important;
            height: 100%;
            background-color: unset!important;
            background-image: linear-gradient(to right, rgba(255,255,255, 1.00), rgba(255,255,255, 0))!important;

            * {
                text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
                width: 100%
            }
        }

    }

    .rss-inner
    {
        background-size: auto 180.00px;/* tile vertically covers 100% of image */
    }

    .rss-inner-helper
    {
        background-image: unset;
    }
    
    .rss-width-2.rss-height-1 .rss-inner
    {
        background-size: auto 257.14px;/* tile vertically covers 70% of image */
    }

    .rss-width-2.rss-height-1 .rss-inner-helper
    {
        background-image: linear-gradient(to left, transparent 342.86px, #F8F8F8 457.14px);
    }

    .rss-height-2
    {
        height: 400px; /* 378.867px net */
    }

    .rss-width-2.rss-height-2 .rss-inner
    {
        background-size: auto 380.00px;/* tile vertically covers 100% of image */
    }
    .rss-width-2.rss-height-2 .rss-inner-helper
    {
        background-image: unset;
    }

    .rss-text-content
    {
        width: 55%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px)
{
    .rss-outer
    {
        padding: 10px 0;
        margin: 0px;
    }

    .rss-height-1
    {
        height: 210px; /* 178.876px net */

        .rss-text-content {
            padding: 15px;
            width: 100%;
            max-width: 100%!important;
            height: 100%;
            background-color: unset!important;
            background-image: linear-gradient(to right, rgba(255,255,255, 1.00), rgba(255,255,255, 0))!important;

            * {
                text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
                width: 100%
            }
        }
    }

    .rss-inner
    {
        background-size: auto 190.00px;/* tile vertically covers 100% of image */
    }

    .rss-inner-helper
    {
        background-image: unset;
    }
    
    .rss-width-2.rss-height-1 .rss-inner
    {
        background-size: auto 271.43px;/* tile vertically covers 70% of image */
    }

    .rss-width-2.rss-height-1 .rss-inner-helper
    {
        background-image: linear-gradient(to left, transparent 361.90px, #F8F8F8 482.54px);
    }

    .rss-height-2
    {
        height: 420px; /* 378.867px net */
    }

    .rss-width-2.rss-height-2 .rss-inner
    {
        background-size: auto 400.00px;/* tile vertically covers 100% of image */
    }

    .rss-width-2.rss-height-2 .rss-inner-helper
    {
        background-image: unset;
    }
}
$i: unquote("!important");

a:hover {
  text-decoration: none !important;
}

a {
  transition: 0.4s;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus, .btn-primary.focus, .btn-primary:focus {
	
    box-shadow: none;
}

.modal {
  z-index: 1550;
}

#accordionVertrieb .card {
    margin-bottom: 0px;
}
div#nav-tabContent {
    padding: 16px;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

.minibasketcircle {
    display: inline-block;
    height: 20px;
    width: 20px;
    vertical-align: middle;
    //margin-left: -7px;
    animation-name: stretch;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-delay: 0;
    animation-direction: alternate;
    animation-iteration-count: 1;
    animation-fill-mode: none;
    animation-play-state: running;
    border-radius: 50%;
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
    padding-left: 0;
    border: none;
    //border-width: 1px;
    //border-style: solid;
    //border-color: $color_white;
    background-color: $color_maroon;
    color: $color_white;

    @media (max-width: 575.98px) {
      //margin-left: -10px;
      line-height: 20px;
      font-size: 12px;
      font-family: $font_medium;
    }

}

.rightbutton {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }

.checkoutOptions .btn-primary, .minibasket-menu-box .btn-primary, .minibasket-menu-box .btn-outline-dark, #userNextStepBottom, .buybutton, #orderConfirmAgbBottom button {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    margin: 0;
    border: 0;
    line-height: 35px;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 6px;
    @include background($color_standard, 1);
	text-transform: uppercase;
}

.btn-link, .btn-link:hover, .btn-link:focus {
  color: $color_white;
  font-family: $font_normal;
  text-decoration: none;
}
.btn-link:focus {
  font-style: italic;
}

.btn-primary, .btn-secondary {
  background: $color_standard;
  text-transform: uppercase;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding-left: 20px;
  padding-right: 20px;
  outline: 0;
  display: inline-block;
  margin: 0;
  border: 1px solid $color_standard;
}

#toBasket.btn-primary {
  margin-bottom: 6px;
  margin-top: 0;
}

.btn-secondary {
  @include background($color_standard, 0.4);
  border: 1px solid rgba($color_standard, 0.4) !important;
}

.minibasket-menu-box .btn-outline-dark {
  @include background($color_standard, 0.4);
  }

a {
    @include color($color_standard, 1)
  }

label.req, b, strong {
  font-family: $font_medium; 
}

.card-body label:before {
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  padding-right: 6px;
  padding-left: 6px;
  vertical-align: middle;
  font-weight:900;

}

label.pidcwdpaypal:before {
  font-family: 'Font Awesome 5 Brands';
  content: "\f1ed";
}

label.pidcwdcreditcard:before {
  content: "\f09d";
}

label.pidcwdsofortbanking:before {
  content: "\f571";
}

.alert-info  {
  @include background($color_standard, 0.2);
  border-color: $color_standard;

}

.productdetailssticker {
  @media (min-width: 575.98px) {
    position: sticky;
    position: -webkit-sticky;
    top: 100px;
  }

  @media (min-width: 992px) {
    top: 150px;
  }
}

.button-manuals {
  @include button-empty();
  color: $color_white; 
}

hr {
	border: 0;
	height: 0;
	border-bottom: 2px solid rgba($color_gray, 0.05);	
}

body * {
	line-height: 1.7em;
}

.cmsContent {
	padding-top: 1em;
	padding-bottom: 1em;
	color: $color_gray;
}

.softwaredownload dt {
	font-size: 1.5rem;
}

.softwaredownload dd {
	padding-left: 3rem;
}

.softwaredownload .fab {
	font-size: 2rem;
}

/* @group Details
 */
 
.details-title, .price-label .price {
	font-size: 1.625rem;
	line-height: 2rem;
}

h1.details-title {
  font-family: 'NeoSansPro';
  font-weight: bold;
  padding-top: .5em;

  @media (max-width: 767.98px) {
      font-size: 1rem;
      line-height: .8rem;
    }

}

h2.details-title {
  font-family: 'NeoSansPro';
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
}

.price {
  font-family: roboto_medium, sans-serif, Arial;
  font-weight: 500;
}

.price-wrapper {
  margin-top: 1em;
  margin-bottom: 3.5em;
}

.price-label {
	margin-bottom: 0;
}
.price-wrapper a.small {
	display: block;
    line-height: 1em;
}

#detailsMain.container {
  margin-bottom: 32px;
	color: $color_gray;
}

#detailsMain.container a {
	color: $color_gray;
}

#detailsMain.container a:hover, .stockFlag, .deliverytime {
	color: $color_standard !important;
}

#detailsMain.container a:hover, .stockFlag.notOnStock {
	color: $color_wellness !important;
}

div[class*="category_"] .tobasketFunction .cat-button {
	@extend %bg_standard10;
	width: 100%;
}

div[class*="category_"] .tobasketFunction .cat-button * {
	font-size: 1.2em;
}

#toBasket i.fa-shopping-cart {
	padding-right: .4em;
}

.input-group-append.center-block {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.details .tobasket-function {
    margin-bottom: 0em;
}

.spacecms>div {
	margin-top:  1em;
}

.productdetailssticker_bottom_icons {
    padding-top: 2em;
	padding-bottom: 2em;
}


.productdetailssticker_bottom_icons p {
	line-height: 0.75em;
}

.productdetailssticker_bottom_icon {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    border-color: rgba(85, 90, 100, 0.6);
    border-style: solid;
    color: rgba(85, 90, 100, 0.6);
    display: inline-block;
    border-width: 2px;
    font-size: 42px;
    font-family: roboto_medium;
    line-height: 50px;
	transition: 0.4s;
}

a:hover .productdetailssticker_bottom_icon {
	color: rgba($color_standard, 0.8);
	border-color: rgba($color_standard, 0.8);
}

.productdetailssticker_bottom_icon i.fas.fa-shipping-fast {
    font-size: 28px;
}

.productdetailssticker hr {
	margin-bottom: 0;
	margin-top: 2px;
}

#productdetails .fa-angle-down, #productdetails .fa-angle-up {
	float: right;
}

#productdetails p.col-12.col-md-8 {
	padding-left: 0;
    @media (max-width: 575.98px) {
      position: unset;
    }
}


.productdetailssticker i.fas, #productdetails i.fas {
    font-size: 1.4em;
	vertical-align: middle;
}

a.productdetailsheader[aria-expanded="true"] .fa-angle-down {
  	display:  none;
}

a.productdetailsheader[aria-expanded="false"] .fa-angle-up {
  	display:  none;
}

#longdesc hr {
	margin-bottom: 0;
}

/*Position of anchor targets bathing fixed header*/
.anchortarget::before, #boxwrapper_accessories::before {
  display: block; 
  content: " "; 
  margin-top: -160px; 
  height: 160px; 
  visibility: hidden; 
  pointer-events: none;
}

/* @end */

.pswp__button.pswp__button--arrow--right::before {
  background-color: transparent !important;
}

.pswp__button--arrow--left::before {
  background-color: transparent !important;
}

.appvd .carousel-control-prev-icon, #carousel-cross .carousel-control-prev-icon, #carousel-accessories .carousel-control-prev-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
	}
	
.appvd .carousel-control-next-icon, #carousel-cross .carousel-control-next-icon, #carousel-accessories .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.vitadockcompatible {
	@include background($color_mobilegesundheit, 1);
	
	padding-top: 1rem;
	form {
		@include background($color_white, 1);
	}
	.page-header h2 {
		color: $color_text_on_catcol;
		font-family: $font_standard;
  }
}

/* @group Attribute Icons */

.attnoicon { 
  clear: both;
  font-weight: 600;
}

.tooltip-inner {
  max-width: 450px;
  text-align: left;
  @include background($color_standard, 0.8);
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
  border-right-color: rgba($color_standard, 0.8);
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 5px 5px 0;
  border-top-color: rgba($color_standard, 0.8);
}

.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.bs-tooltip-bottom .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 0 5px 5px;
  border-bottom-color: rgba($color_standard, 0.8);
}

.tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.bs-tooltip-left .arrow::before {
  right: 0;
  margin-top: -3px;
  content: "";
  border-width: 5px 0 5px 5px;
  border-bottom-color: rgba($color_standard, 0.8);
}

span[data-content="-"] {
  display: none;
}

.dl-horizontal dt {
  float: left;
  margin-right: 1.5em;
}

dl.attributes, .mobilefloat {
	border-bottom: 2px solid rgba($color_gray, 0.05);
	padding-bottom: 1em;
}

.producticon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  padding: 3px;
}

.producticongreyfilled {
	@include background($color_gray, 0.6);
	width: 75px;
	height: 75px;
	border-radius: 100px;
	padding: 3px;
}

.icon-highlights h2 {
	margin-top: 1em;
	margin-bottom: 1em;
}
/* @end */

@media (min-width: 768px) {
  .modal-xl {
    width: 90%;
    max-width:1200px;
  }
}

.cl-mspace_servicetools_retouren_view, .cl-mspace_servicetools_retouren_view_2, .cl-account_password, .account, .cl-user {
  .control-label {
    display: none;
    @media (min-width: 576px) {
      display: unset!important;
    }
  }
  .code {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid lighten($color_gray, 55%);

    @include background($color_gray, 0.05);

    .form-group {
      margin-bottom: 0;

      .control-label {
        font-family: roboto_medium, sans-serif, Arial;
        color: lighten($color_gray, 5%);
        line-height: 40px;
        margin-bottom: 0;
      }
    }
    .number {
      font-family: "courier new", monospace;
      font-weight: 700;
    }
  }
  #shippingAddressForm, #addressForm, #changePasswordForm{
    padding-top: 1rem;
    padding-bottom: 1rem;

    .control-label {
      margin-bottom: 0;
      margin-top: 0.5rem;
    }

    .form-group {

      margin-bottom: 0;
      padding-top: 1rem;
      padding-bottom: 1rem;
      float: left;
      box-sizing: border-box;
      border: 1px solid $color_white;
      border-radius: 4px;

      @media (min-width: 576px) {
        padding-top: 0;
      }

      @include background($color_gray, 0.05);

    }
  }
  .w-33, .w-50, .w-75, .w-100, .cat-button {
    @media (max-width: 577px) {
      width: 100% !important;
    }
  }

}
.newslist {
	margin-bottom: -20px !important;
	
	a, a:hover {
		color: $color_text_dark;
	}

	strong {
		font-family: $font_neosans;
	}
	
	.square:nth-child(3n) {
		@media screen and (min-width: 768px) {
			border-left: none;
			border-bottom: 20px solid white;
		}
		@media screen and (min-width: 992px) {
			border-left: 10px solid white;
			border-bottom: 20px solid white;
		}
		
	}
	
	.square:nth-child(3n - 1) {
		@media screen and (min-width: 768px) {
			border-left: none;
			border-bottom: 20px solid white;
			border-right: none;
		}
		@media screen and (min-width: 992px) {
			border-left: 10px solid white;
			border-bottom: 20px solid white;
			border-right: 10px solid white;
		}
		
	}
	
	.square:nth-child(3n - 2) {
		@media screen and (min-width: 768px) {
			border-bottom: 20px solid white;
			border-right: none;
		}
		@media screen and (min-width: 992px) {
			border-bottom: 20px solid white;
			border-right: 10px solid white;
		}
		
	}
	.square:nth-child(2n) {
		@media screen and (min-width: 768px) and (max-width: 991px) {
			border-left: 10px solid white;
		}
	}
	.square:nth-child(2n - 1) {
		@media screen and (min-width: 768px) and (max-width: 991px) {
			border-right: 10px solid white;
		}
	}

	@media screen and (max-width: 767px) {

		.square:nth-child(n+4) {
			display: none;
		}
	}
}
.newsletter {

  padding-top: 50px;
  padding-bottom: 40px;
  // background-color: lighten($color_silver, 16%) !important;
  background: darken($color_white, 5%)  !important;

  h2, p {
    color: $color_text_dark;
  }

  @media (max-width: 767.98px) {
    padding-top: 50px !important;
    padding-bottom: 30px !important;
  }

  .container {
    @media (max-width: 767.98px) {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }
  }

  .form {

    h3 {
      color: $color_standard !important;
  	  font-family: $font_neosans;
    }

    .input-group-text {
      border: 1px solid $color_mobilegesundheit;
      color: $color_mobilegesundheit;
	    background-color: $color_silver;

      i {
        color: $color_mobilegesundheit;
      }
    }

    .email {
      font-family: $font_standard;
      border: 1px solid $color_silver;
      width:  100%;
      padding: 1px 10px 2px;
      background-color: unset;
    }

    .btn-primary {
      margin-top: 0;
      margin-bottom: 0;
      border-left: none;
      border-top-left-radius: 0;
	    border-bottom-left-radius: 0;
	    border-top-right-radius: 0;
	    border-bottom-right-radius: 0;
      text-transform: none
    }
  }

  .socialmedia {

    padding-top: 20px;

    @media (min-width: 576px) {
      padding-top: 40px;
    }

    @media (min-width: 768px) {
      padding-top: 0;
    }

    text-align: center;

    h3 {
      @extend %cl_therapie10;
    }

    ul, li {
      list-style-type:none;
      padding: 0;
      margin: 0;
      display: inline-flex;

      span {
        display: none;
      }

      i {
        font-size: 2.15rem;
      }
    }

    li {
      margin-right: 10px;

      .fa-facebook-square {
        color: #3b5998;
      }
      .fa-linkedin {
        color: #2867B2;

      }
      .fa-twitter {
        color: #38A1F3;
      }
      .fa-youtube-square {
        color: #ED3833;
      }
      .fa-wordpress {
        color:  #464646;
      }
    }
  }
}

.newsletter.neutralinput {
  border-top: 0px;
  border-bottom: 0px;
  background: transparent !important;
}
/* MENU CATEGORY COLORS */

.navicategory_0 {

  * {
    color: $color_white!important;
    list-style-type: none;
    text-decoration: none!important;

  }

  .menucategory_title {
    margin-bottom: 10px;
  }
}

.rootsubcat {
	margin-bottom: 2rem;
	.card {
		margin-bottom: 0;
		.card-body {
/*			@include background($color_gray, 0.2);		*/
			h2.card-title {
				font-size: 1.5rem;
				color: $color_gray;
				font-family: $font_standard;
				margin-bottom: 0;
			}
		}
	}
}
	

#productList {
  .newItems {
    padding-top: 0;

    @media (min-width: 576px) {
      padding-top: 15px;
    }
  }
}

#boxwrapper_productList {
  .cat-button {
    .text-nowrap {
      float: left;

      @media (min-width: 576px) {
        padding-top: 3px;
      }
    }
  }
}

#boxwrapper_similar {
  .container {
    .page-header {
      * {
        color: lighten($color_black, 25%);
      }
      h2 {
        font-size: 1.25rem;
        text-transform: uppercase;


        @media (min-width: 768px) {
          font-size: 1.25rem;
        }
      }
      small {
        font-size: 1rem;
        width: 80%;
        display:  block;
        margin: 0 auto;
      }
    }
    .cat-button {
      display: inline-flex;
      width: 325px;
    }
  }
}

.pbox {
	padding: 15px;
	
	.card {
		padding-bottom: 2.5rem !important;
		border: 2px solid rgba($color_gray, 0.05);
		.outerimage {
			min-height: 300px;
			display: flex;
			img {
				margin: auto; 
			}
		}

		@media (min-width: 768px) {
			border: 2px solid rgba($color_white, 0);
        }
	}
	
	.listDetails {
		margin-bottom: 0;
		border-bottom: 1px solid rgba($color_gray, 0.05);
		padding-left: 1em;
		
		h3 {
			font-size: 1rem;
			line-height: 1rem;

			span.uvpPreis {
				font-size: 0.8rem;
				line-height: 1;
				color: #6c757d !important;
				padding-left: 4px;
				//font-family: roboto_medium;
				font-weight: normal;
			}
		}
		
		p {
			margin-top: -6px;
			line-height: 1.2;
		}
		
		* {
			color: $color_gray;
			text-decoration: none;
			outline: none;
			text-align: left;
		}
	}

	.priceBlock {
	    position: absolute;
	    right: 15px;
	    bottom: -38px;		
	}
	
	.priceBlock .btn-group.cat-button {
		float: right;
		width: 4em;
		height: 4em;
		border-radius: 4em;
		padding-left: .8em;
		background-color: rgba($color_standard, 1) !important;
		i {
		    font-size: 1.9em;
		    padding-top: .55em;
		    padding-left: 0;
		}
	}	

	.priceBlock .btn-group.cat-button.productinfobutton {
		background-color: rgba($color_gray, .8) !important;
		i {
			padding-left: 0.5rem;
		}
	}
}



// footer-padding

body {
  @media (max-width: 575.98px) {
    padding-bottom: 2.50rem;
    .carousel-indicators {
      z-index: unset;
      li {
        background-color: $color_silver;
        opacity: 1;
      }

      li.active { 
        background-color: $color_standard;
      }
    }
  }
}

.productmain {

  #toBasket.btn-primary {
    padding-bottom: 0;
    padding-top: 7px;
  }

  .details-shortdesc, h2 {
    font-family: $font_standard;
    width: 100%;
    text-align: left;

    @media (max-width: 767.98px) {
      text-align: center;
    }
  }

  #longdesc {
    @media (max-width: 767.98px) {
      width: 90%;
      margin: 0 auto;

      @media (max-width: 575.98px) {
        width: 100%;
      }

      p {
        width: 96%;
        margin: 0 auto;

        @media (max-width: 575.98px) {
          width: 100%;
        }

      }
    }

    p:last-of-type {
      margin-bottom: 0rem !important;
    }
  }

  .details-picture{
    margin-bottom: 0;
    border: 1px solid $color_silver;
    border-radius: $border_radius;
    display: block;

    overflow: hidden;
    position: relative;
      a {
        height: 100%;
      }
    img {
      object-position: center;
      object-fit: contain;
      width: 100%;
      height: 100%;

      @media (max-width: 575.98px) {
        height: 100%;
      }
    }
  }
  
  .productdetailssticker{
    @media (max-width: 767.98px) {
      padding-top: 30px;
      padding-left: 15px;
      padding-right: 15px;

      h2 {
        text-align: left;
      }
    }
    @media (max-width: 575.98px) {

    }
  }
  
  .mobilefloat {

    @media (max-width: 575.98px) {

      border-top: 2px solid $color_silver;
      position: fixed;
      bottom: 0;
      left: 0;
      background: $color_white;
      width: 100%;
      z-index: 1400;
      padding-bottom: 0!important;
      min-height: 125px;
      padding-top: 10px;

      .frame {

        max-width: 350px;
        padding-left: -15px;
        padding-right: -15px;
        margin: 0 auto;

        .name {
          font-family: $font_normal;
          line-height: 1.25rem;
          color: lighten($color_black, 25%);
        }

        .price-wrapper {
          line-height: 1.3rem;
          margin: 0!important;

          .mspaceAppStoreLogo {
            display: none;
          }

          .price-label {
            width: 100%;

            &>span {
              @media (max-width: 575.98px) {
                width: auto;
              }

              width: 120px;
              float: right;

              * {
                float: left;
              }
            }

            .price {
              
              @media (max-width: 575.98px) {
                font-size: 1rem!important;
                line-height: 1.2rem;
                color: lighten($color_black, 25%);
                font-family: $font_standard;          
              }

              padding-right: 5px;
            }

            .priceandcurrency {
              font-family: $font_medium !important;
              font-size: 1.2rem!important;
            }

          }
        }

        .tobasket {

          .tobasketFunction {
            margin-bottom: 0;
            height: 43px;
          }

          .submitButton {
            padding-left: 0;
            padding-right: 0;
            font-size: 1rem;
            line-height: 1.5rem;
            padding-bottom: 7px;
            padding-top: 10px;
          }

          #toBasket {
            i {
              margin-right: 5px;
            }
          }
        }
        .stockFlag {
          margin-top: 0;
          //display: block;
        }
      }
    }
  }
}
#promoslider {
  width: 100%;

  @media (max-width: 767.98px) {
    background: rgba($color_wellness, 0.25);

  }

  .sizer {
    width: 100%;
    overflow: hidden;
    position: relative;

    img {
      height: 250px;
      width: auto;
      float: right;

      @media (min-width: 768px) {
        height: 350px;
      }
      @media (min-width: 992px) {
        width: 100%;
        height: auto;
        float: unset;
      }
    }

    .carousel-caption {
      padding: 0!important;
      text-align: left;
      bottom: 0;
      left: 0;
      right: 0;

      @media (min-width: 768px) {
        right: unset;
        width: 100%;
        bottom: unset;
        top: 50%;
        left: 0;
        transform: translate(0, -50%)
      }
      @media (min-width: 1200px) {
        width: 100%;
        margin: 0 auto;
        left: unset;
        display: block;
      }

      .frame-white {
        padding: 15px;

        @media (max-width: 767.98px) {
          background: rgba($color_white, 0.75);
        }

        @media (min-width: 768px) {
          background-image: linear-gradient(to top, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75));
        }

        *{
          text-shadow: -1px 0 rgba(255, 255, 255, 0.5), 0 1px rgba(255, 255, 255, 0.5), 1px 0 rgba(255, 255, 255, 0.5), 0 -1px rgba(255, 255, 255, 0.5);
        }

        h2 {
          @media (max-width: 991.98px) {
            font-size: 1.25rem;
            line-height: 1.5rem;
            font-family: $font_medium;
          }

          font-size: 2rem;
          line-height: 2.25rem;
          font-family: $font_standard;
          color: $color_wellness!important;
          text-transform: uppercase;
        }

        p {
          color: $color_gray;
          margin-bottom: 0;
        }
      }
    }
  }
}
.cl-register {
  label, .form-group {
    margin: 0;
  }
  label {
    display: none;
    @media (min-width: 576px) {
      display: block;
    }
  }
  select {
    margin-bottom: 0.5rem;
  }
}
.healthblog {

  @media (max-width: 767.98px) {
    padding: 0;
  }

  .row {

    @media (max-width: 767.98px) {
      margin-left: 0;
      margin-right: 0;

      &>.col {
        padding: 0!important;
      }
    }

    .rss-outer {

      @media (max-width: 767.98px) {
        border: none!important;
        padding: 0;
      }

      .rss-inner {
        @media (max-width: 767.98px) {
          border: none!important;
        }

        .rss-inner-helper {

          @media (max-width: 767.98px) {
            border-top: 2px solid $color_white;
          }

          .rss-text-content {
            @media (max-width: 767.98px) {
              background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
              background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
              background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
              filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
              padding: 15px;
              height: 100%;
              width: 100%;
              box-sizing: border-box;
              margin-top: 1px;
            }
          }
        }

      }
    }
  }
}

.cl-mspace_servicetools_accessories_view {
  .mb-3 {
    margin-top: 2rem;

    

    &>*, &>*:first-child, &>*:not(:first-child) {
      width: 100%;
      margin-bottom: 10px;
      border-radius: 3px;

      @media (min-width: 768px) {
        width: auto;
        margin-bottom: unset;
        border-radius: unset;
      }
    }
    &>*:first-child {
      @media (min-width: 768px) {
        border-radius: 3px 0 0 3px;
      }
    }

    .input-group-append {
      border: none!important;
      background: $color_standard !important;
      border-radius: 20px 20px 20px 20px;

      @media (min-width: 768px) {
        border-radius: 0 20px 20px 0;
      }

      *{
        color: $color_white!important;
      }
      a {
        -webkit-appearance: unset;
        margin: 0 auto;

        @media (min-width: 768px) {
          margin: unset;
        }
      }
    }
  }
  .group {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    h2 {
      color: $color_standard;
    }
  }

}
.cl-mspace_servicetools_serviceaddress_view {
  .isoservice {

    padding-top: 25px;
    padding-bottom: 25px;

    .row {
      margin-left: 0;
      margin-right: 0;

    }

    a {
      font-family: roboto_medium, arial;
      border: 1px solid lighten($color_gray, 40%);
      padding: 0.25rem 0.75rem;
      border-radius: 3px;
      float: left;
      margin: 1px;
      color: $color_standard;
      text-decoration: none;
      text-align: center;

      @media (max-width: 992px) {
        min-width: 52px;
        flex-grow: unset;
      }

      &:hover {
        border-color: $color_standard;
      }
    }
  }
  .addressFrame {
    padding-bottom: 1.5rem;

    margin-right: -30px;
    margin-left: -30px;

    @media (min-width: 576px) {
      margin-right: -15px;
      margin-left: -15px;
    }
  }
  .address{

    padding-top: 15px;
    padding-bottom: 15px;

    .item{

      -webkit-filter: grayscale(100%);
      filter: grayscale(100%);
      opacity: 0.75;
      box-sizing: border-box;
      border: 1px solid lighten($color_gray, 45%);
      border-radius: 3px;
      height: 100%;
      width: 100%;
      position: relative;

      &:hover {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
        opacity: 1.00;
      }

      .vHead {
        padding: 1.5rem;
        border-bottom: 1px solid lighten($color_gray, 45%);

        img{

        }
      }
      .vBody {
        height: 275px;
        padding: 1.5rem;
        h4 {
          margin: 0;
          padding-bottom: 1.5rem;
        }
      }
      .vRow {
        position: absolute;
        bottom: 5%;
      }
      .icons {
        position: absolute;
        right: 25px;
        top: 10%;
        cursor: pointer;
        * {
          color: $color_standard;
          display: block;
          margin-top: -7px;
        }
      }
      .location {
        a {
          color: $color_standard;
        }
       * {
         display: inline-flex;
         margin-right: 15px;
         text-decoration: none;
         &:hover {
           text-decoration: none;
         }
       }
      }
    }
  }
}
.cl-mspace_servicetools_documents_view {

    color: $color_gray;
  
    .article-info {
        padding-bottom: 40px;
        color: $color_gray;

        h1 {
            padding-top: 0;
        }

        h2 {
            font-family: $font_standard;
        }

        @media (max-width: 767.98px) {
            h1 {
                line-height: 2rem;
            }

            h2 {
                font-size: 1rem;
            }    
        }
    }

    h3 {
        color: $color_gray;
        //font-size: 1.38rem;
        margin-bottom: 16px;
    }

    .doctype-section, .no-docs-section {
        padding-bottom: 50px;
    }

    #artnum_input {
        padding: .375rem .75rem;

        @media (max-width: 575.98px) {
            max-width: 160px;
        }
    }

    .input-group-append {
        border-radius: 0 22px 22px 0;
        border: none !important;
        background: $color_standard !important;

        button {
            color: white;
        }
    }
}
.cl-mspace_servicetools_manuals_view {
  .mb-3 {
    margin-top: 2rem;

    &>*, &>*:first-child, &>*:not(:first-child) {
      width: 100%;
      margin-bottom: 10px;
      border-radius: 3px;

      @media (min-width: 768px) {
        width: auto;
        margin-bottom: unset;
        border-radius: unset;
      }
    }
    &>*:first-child {
      @media (min-width: 768px) {
        border-radius: 3px 0 0 3px;
      }
    }

    .input-group-append {
      border: none!important;
      background: $color_standard !important;
      border-radius: 20px 20px 20px 20px;

      @media (min-width: 768px) {
        border-radius: 0 20px 20px 0;
      }

      *{
        color: $color_white!important;
      }
      a {
        -webkit-appearance: unset;
        margin: 0 auto;

        @media (min-width: 768px) {
          margin: unset;
        }
      }
    }
  }
}
.cl-start {

    #mstSlider {
        h2 {
            color: $color_wellness;
            text-transform: uppercase;
            font-weight: 400;
        }

        p {
            color: $color_gray;
        }

        .carousel-caption {
            position: absolute;
            right: 15%;
            bottom: 20%;
            left: 15%;
            z-index: 10;
            padding-top: 20px;
            padding-bottom: 20px;
            text-align: left;
        }
    }

    .banderole {
        width: 100vw;
        position: relative;
        left: calc(-1 * (100vw - 100%) / 2);
        padding-top: 2rem;
        padding-bottom: 2rem;
        color: $color_white;
        margin-top: 0;
        margin-bottom: 0;
    }

    .rueckruf a {
        text-decoration: none;
        @include button-standard($color_white, $color_white, 0.25);
    }

    .underdog {

        strong {
            letter-spacing: 0.4px;
            color: $color_text_dark;
        }

        .pbox .listDetails * {
            color: $color_text_dark;
        }
    
    }

    .start-section {
        margin-top: 70px;
        margin-bottom: 70px;

        @media (max-width: 991.98px) {
            //margin-top: 50px;
            //margin-bottom: 50px;
        }
      
        @media (max-width: 767.98px) {
            margin-top: 50px;
            margin-bottom: 50px;
        }

    }

    h2.start-title, h2.start-title b {
        font-family: $font_neosans;
        font-size: 34px;
        font-weight: normal;
        line-height: 1;
        //padding-top: 30px;
        margin-bottom: 50px;
        text-align: center;
        text-transform: uppercase;

        b {
            font-weight: bold;
            margin: 0;
            padding: 0;
        }

        @media (max-width: 991.98px) {
            font-size: 26px;
            line-height: 1.3;
        }
      
        @media (max-width: 767.98px) {
            font-size: 23px;
            line-height: 1.3;
            margin-bottom: 30px;
        }
    }

    .banner-caption {

        padding: 30px 20px;
        text-align: center;

        h1, h2, h3 {
            font-family: $font_neosans;
            font-size: 21px;
            line-height: 1.3;
            font-weight: bold;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        p {
            font-family: $font_normal;
            font-size: 16px;
            line-height: 1.4;
            font-weight: normal;
            margin: 0;
        }

        @media (min-width: 768px) {
            text-align: left;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);

            h1, h2, h3 {
                font-size: 22px;
            }

        }

        @media (min-width: 992px) {
            padding: 40px 40px;
    
            h1, h2, h3 {
                font-size: 28px;
                line-height: 1.2;
            }
    
            p {
                font-size: 22px;
            }
        }

        @media (min-width: 1200px) {
            padding: 50px 50px;
    
            p {
                font-size: 24px;
            }
        }

    }

    .bargain-container {
        margin-bottom: -10px;

        #bargainItems.list-container {
            margin-top: 0 !important;
        }
    
        h2.start-title, h2.start-title b {
            margin-bottom: 35px;

            @media (min-width: 768px) {
                margin-bottom: 15px;
            }
        }
    }

    .seo-container {
        padding-top: 50px;
        padding-bottom: 40px;
        background: darken($color_white, 5%)  !important;

        h1, h2, h3 {
            font-family: 'NeoSansPro';
            line-height: 1.2;
            font-weight: bold;
            margin-bottom: 16px;
        }      
    }

    .awards-container {

        .awards-slider {
            margin: 16px 60px;

            ul.slides {
                height: 170px;
            }

            li {
                height: 100%;
                display: flex !important;
                align-items: center;
                justify-content: center;
            }
    
            img {
                max-height: 170px;
                padding: 15px 20px;

                // this is to give portrait images a bit more height
                @media (max-width: 575.98px) {
                    &.p-h-none-m {
                        padding: 0 20px;
                    }    
                }
            }

            .flex-direction-nav a {

                line-height: 1;
                background-color: transparent;
    
                &.flex-prev {
                    left: -50px;
    
                    &::before {
                        font-size: 40px;
                        color: black;
                    }
                }
    
                &.flex-next {
                    right: -50px;
    
                    &::before {
                        font-size: 40px;
                        color: black;
                    }
                }
            }

            @media (min-width: 576px) {
                margin: 16px 75px;

                ul.slides {
                    height: 140px;
                }    

                img {
                    max-height: 140px;
                    padding: 0;

                    &.p-w-5 {
                        padding: 0 5px;
                    }
    
                    &.p-w-15 {
                        padding: 0 15px;
                    }
                }

                .flex-direction-nav a {
        
                    &.flex-prev {
                        left: -80px;
                    }
        
                    &.flex-next {
                        right: -80px;
                    }
                }
            }

            @media (min-width: 768px) {
                margin: 16px 70px;

                ul.slides {
                    height: 130px;
                }    

                img {
                    max-height: 130px;
                }
            }

            @media (min-width: 992px) {
                margin: 16px 70px;

                ul.slides {
                    height: 130px;
                }    

                img {
                    max-height: 130px;
                }

                .flex-direction-nav a {
        
                    &.flex-prev {
                        left: -80px;
                    }
        
                    &.flex-next {
                        right: -80px;
                    }
                }
            }

            @media (min-width: 1200px) {
                margin: 16px 110px;

                ul.slides {
                    height: 140px;
                }
    
                img {
                    max-height: 140px;
                }

                .flex-direction-nav a {
        
                    &.flex-prev {
                        left: -90px;
                    }
        
                    &.flex-next {
                        right: -90px;
                    }
                }
            }
        }

        .awards-slider-slick {
            margin: 16px 0;
            padding: 16px 60px;
            width: 100%;

            .slick-prev, .slick-next {
                width: 40px;
                height: 40px;
                font-family: 'Font Awesome 5 Free' !important;
                font-weight: 600;
                display: inline-block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                line-height: 1;
            }

            .slick-prev {
                left: -50px;
            }

            .slick-next {
                right: -50px;
            }

            .slick-prev::before, .slick-next::before {
                color: black;
                font-size: 40px;
                font-family: 'Font Awesome 5 Free';
            }

            .slick-prev::before {
                content: "\f104";
            }

            .slick-next::before {
                content: "\f105";
            }

            .slick-list, .slick-track {
                height: 100%;
            }

            ul.slides {
                height: 170px;
            }

            li {
                height: 100%;
                display: flex !important;
                align-items: center;
                justify-content: center;
            }
    
            img {
                max-height: 170px;
                padding: 15px 20px;
                max-width: 100%;

                // this is to give portrait images a bit more height
                @media (max-width: 575.98px) {
                    &.p-h-none-m {
                        padding: 0 20px;
                    }    
                }
            }

            @media (min-width: 576px) {
                padding: 16px 15px;

                ul.slides {
                    height: 140px;
                }

                li {
                    margin: 0 35px;
                }

                img {
                    max-height: 140px;
                    padding: 0;

                    &.p-w-5 {
                        padding: 0 5px;
                    }
    
                    &.p-w-15 {
                        padding: 0 15px;
                    }
                }

                .slick-prev {
                    left: -40px;
                }
    
                .slick-next {
                    right: -40px;
                }    
            }

            @media (min-width: 768px) {
                padding: 16px 20px;

                ul.slides {
                    height: 130px;
                }

                li {
                    margin: 0 50px;
                }

                img {
                    max-height: 130px;
                }

                .slick-prev {
                    left: -30px;
                }
    
                .slick-next {
                    right: -30px;
                }    
            }

            @media (min-width: 992px) {
                padding: 16px 20px;

                ul.slides {
                    height: 130px;
                }

                li {
                    margin: 0 50px;
                }

                img {
                    max-height: 130px;
                }
            }

            @media (min-width: 1200px) {
                padding: 16px 55px;

                ul.slides {
                    height: 140px;
                }

                li {
                    margin: 0 55px;
                }
    
                img {
                    max-height: 140px;
                }

                .slick-prev {
                    left: -40px;
                }
    
                .slick-next {
                    right: -40px;
                }
            }
        }
    }

    .topservice-container {
        padding-top: 70px;
        padding-bottom: 50px;
        background: darken($color_white, 5%)  !important;

        @media (max-width: 767.98px) {
            padding-top: 50px;
            padding-bottom: 30px;
        }

        .topservice-item {
            text-align: center;

            .topservice-icon {
                width: auto;
                height: 120px;
                margin-left: auto;
                margin-right: auto;
                padding: 16px 0;

                path {
                    fill: $color_text_dark !important;
                }
            }

            .topservice-caption {
                margin-top: 10px;
                
                @media (min-width: 992px) {
                    padding-left: 47px;
                    padding-right: 47px;
                }            
            }

            h4 {
                font-family: 'NeoSansPro';
                font-size: 22px;
                line-height: 1.3;
                font-weight: bold;
                margin-bottom: 10px;
                text-transform: uppercase;
            }

            p {
                font-family: $font_normal;
                font-size: 18px;
                line-height: 1.3;
                font-weight: normal;
                margin-bottom: 16px;    
            }

            @media (max-width: 767.98px) {

                .topservice-icon {
                    height: 100px;
                    padding: 13px 0;
                }

                .topservice-caption {
                    margin-top: 0;
                }

                h4 {
                    font-size: 16px;
                    line-height: 1.3;
                    margin-bottom: 10px;
                }
    
                p {
                    font-size: 16px;
                    line-height: 1.3;
                    margin-bottom: 16px;
                }
            }
        }
    }

    .vitadockapp-container {
        overflow: hidden;

        a, a:hover {
            color: $color_text_dark;
        }

        .frame {
            overflow: hidden;
            padding: 0;
            height: auto;

            .phone-overlay {
                position: absolute;
                height: 70%;
                width: auto;                
                left: 50%;
                bottom: 0;
                transform: translate(-50%, 0);
                z-index: 1;
            }
        }

        .content {
            background-color: #f2f2f2;
        }

        @media (min-width: 768px) {
            .row {
                flex-direction: row-reverse;
            }

            .frame {
                overflow: unset;
                height: 330px;
                background-repeat: repeat-x;
                background-size: cover;
                background-image: url("/out/medisana/img/media/Collage_Faces-630x350.jpg");
    
                .phone-overlay {
                    width: auto;
                    height: 231px;
                    left: 0;
                }
            }

            .banner-caption {
                max-width: 550px;
                width: calc(100% - 40px);
                right: 0px;
                padding: 0 150px 0 0;
            }
        }

        @media (min-width: 992px) {

            .frame {
                height: 330px;
                background-repeat: repeat-x;
                background-size: cover;
    
                .phone-overlay {
                    height: 231px;
                }
            }
        
            .banner-caption p {
                padding-right: 40px;
            }
        }

        @media (min-width: 1200px) {

            .frame {
                height: 330px;
                background-repeat: repeat-x;
                background-size: contain;
    
                .phone-overlay {
                    height: 231px;
                    transform: translate(-50%, 0);
                }
            }

            .banner-caption {
                padding-right: 150px;
            }
    
            .banner-caption p {
                padding-right: 40px;
            }
        }
    }

    #uc-insta-dummy[data-usercentrics] + .insta-container {
        display: none !important;
    }

    .insta-container {

        h2.start-title, h2.start-title b {
            margin-bottom: 40px;
        }

        .instaicon-wrapper {
            text-align: center;
            margin-top: 40px;
        }

        @media (max-width: 767.98px) {
    
            h2.start-title, h2.start-title b {
                margin-bottom: -10px;
            }

            .instaicon-wrapper {
                margin-top: -10px;
            }
    
        }
    }

    .video-container {

        @media (min-width: 768px) {
            .row {
                flex-direction: row-reverse;
            }
        }
    }

    .mission-container {

        @media (min-width: 768px) {
            .row {
                flex-direction: row-reverse;
            }
        }
    }

    .category-container {
        margin-bottom: -50px;

        .catcon-item {
            margin-bottom: 40px;

            a {
                display: block;
                color: rgb(33, 37, 41);
                text-align: center;

                &:hover {
                    //transform: scale(1.2);
                }
            }
    
            .catcon-icon {
                width: 80px;
                height: auto;
                margin-left: auto;
                margin-right: auto;
    
                path {
                    fill: rgb(33, 37, 41) !important;
                    transition: 0.4s;
                }
            }
    
            .catcon-text-wrapper {
                margin-top: 20px;
                
                @media (min-width: 992px) {
                    padding-left: 20px;
                    padding-right: 20px;
                }
            }
    
            p {
                font-family: "NeoSansPro";
                // hyphens: auto;
            }

            &.catcon-10000 a:hover {
                color: $color_mobilegesundheit_darkened;
                .catcon-icon path { fill: $color_mobilegesundheit_darkened !important; }
                //div { transform: scale(1.2); }
            }

            &.catcon-20000 a:hover {
                color: $color_kontrolle_darkened;
                .catcon-icon path { fill: $color_kontrolle_darkened !important; }
                //div { transform: scale(1.2); }
            }

            &.catcon-30000 a:hover {
                color: $color_wellness_darkened;
                .catcon-icon path { fill: $color_wellness_darkened !important; }
                //div { transform: scale(1.2); }
            }

            &.catcon-40000 a:hover {
                color: $color_massagechair_darkened;
                .catcon-icon path { fill: $color_massagechair_darkened !important; }
                //div { transform: scale(1.2); }
            }

            &.catcon-50000 a:hover {
                color: $color_therapie_darkened;
                .catcon-icon path { fill: $color_therapie_darkened !important; }
                //div { transform: scale(1.2); }
            }

            &.catcon-60000 a:hover {
                color: $color_pflege_darkened;
                .catcon-icon path { fill: $color_pflege_darkened !important; }
                //div { transform: scale(1.2); }
            }

            &.catcon-70000 a:hover {
                color: $color_sport_darkened;
                .catcon-icon path { fill: $color_sport_darkened !important; }
                //div { transform: scale(1.2); }
            }

            &.catcon-80000 a:hover {
                color: $color_aktionen_darkened;
                .catcon-icon path { fill: $color_aktionen_darkened !important; }
                //div { transform: scale(1.2); }
            }
        }
    }

    .healthblog {
        // padding-top: 40px;
        // padding-bottom: 40px;
    
        a, a:hover {
            color: $color_text_dark;
        }
    
        strong {
            font-family: $font_neosans;
        }
    
        @media (max-width: 767.98px) {
            margin-bottom: -20px;
    
            h2.start-title, h2.start-title b {
                margin-bottom: 10px;
            }
        }
    }    

}

.square {
    position: relative;
    padding: 0;
}

.box_1, .box_3
{
    border-right: 5px solid white;
    border-left: 10px solid white;
}

.box_2, .box_4
{
    border-left: 15px solid white;
}

.box_1, .box_2
{
    border-bottom: 10px solid white;
}

.box_3, .box_4
{
    border-top: 10px solid white;
}

.mbox {
    border-right: 10px solid white;
}

.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.insquarecontent {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
}

.insquarecontent div {
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    height: 4.5em;
    overflow: hidden;
	padding-left: .4rem;
	padding-right: .4rem;
	display: flex; 
	flex-direction: column; 
  	justify-content:center;
}
  
.insquarecontent p {
    text-align: center;
    line-height: 1.2em;
    overflow: hidden;
	height: 3em;
	margin: 0;
}

@media (max-width: 767.98px) {
    .healthblog {
        padding-top: 0;
        padding-bottom: 0;
    }

    .square {
        margin-bottom: 20px;
    }

    .mboxcol.square {
        margin-top: 20px;
    }
    
    .mbox, .box {
        border: 0px none !important;
    }

    .col-md-6.boxcol {
        padding: 0;
    }
    
    .boxcol .square:nth-child(3), .boxcol .square:nth-child(4) {
        display: none;
    }
}

