/*++++++++++++++++++++ GENERAL ++++++++++++++++++++*/

/*---------- VARIABLEN ----------*/
:root {
  /*colors*/
  /* needs rgba(var(--color),opacity) --> rgba(var(--wh-gray-100),1) */
  --black: 0,0,0; /* #000 */
  --white: 255,255,255; /* #fff */
  --wh-gray-0: 233,236,239; /* #e9ecef */
  --wh-gray-25: 173,180,199; /* #adb4c7 */
  --wh-gray-50: 135,142,161; /* #878ea1 */
  --wh-gray-75: 83,90,104; /* #535a68 */
  --wh-gray-100: 49,57,68; /* #313944 */
  --wh-gray-125: 24,38,47; /* #18262f */
  --wh-brand-blue: 39,78,193; /* #274ec1 */
  --wh-brand-blue-dark: 32,65,160; /* #2041a0 */
  --wh-brand-orange: 249,89,58; /* #f9593a */
  --wh-brand-orange-dark: 179,63,41; /* #B33F29 */
  --wh-bkgr-tint-lightest: 203,208,213;/* #CBD0D5 */
  --wh-bkgr-tint-lighter: 243,248,252; /* #f3f8fc */
  --wh-bkgr-tint-light: 234,240,244; /* #eaf0f4 */
  --wh-success: 126,211,33; /* #7ED321 */
  --ceres-gray-light: 247,247,249; /*#f7f7f9*/ 

  /* fonts */
  --font-family-sans-serif: 'work sans',Arial,Sans-Serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  /* type-scale: Minor-Third- 1.2 Base: 14px */
  --font-size-2xs:      0.694rem; /* 9.72px */
  --font-size-xs:       0.833rem; /* 11.67px */
  --font-size-root:     14px;     /* 1rem */
  --font-size-sm:       1.2rem;   /* 16.80px */
  --font-size-md:       1.44rem;  /* 20.16px */
  --font-size-lg:       1.728rem; /* 24.19px */
  --font-size-xl:       2.074rem; /* 29.03px */
  --font-size-2xl:      2.488rem; /* 34.84px */
  --font-size-3xl:      2.986rem;  /* 41.80px*/
  --font-size-display:  3.583rem;  /* 50.16px*/
  --font-size-display-2:  4.3rem;  /* 60.20px*/

  /* motion */
  --smooth-quick-cubic: 0.25, 0.1, 0.25, 1;
  --smooth-normal-cubic: .155,1.105,.295,1.12;

  /* values */
  --vp-max-width: 1400px;

  /* border-radius */
  --border-radius-sm: 3px; 

}

/* layout */
.border-radius-none{
  border-radius: 0;
}
.no-pad > .widget-inner{
  padding: 0 !important;
}
.container-fluid-no-pad {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}

.container-max{
  max-width: var(--vp-max-width);
}

.container-1200{
  max-width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.mt-6{
  margin-top: 4rem;
}
.mb-6{
  margin-bottom: 4rem;
}
.mt--2{
  margin-top: -2rem;
}
.mb--2{
  margin-bottom: -2rem;
}
.margin-page-bottom-5{
  margin-bottom: -5rem;
}
.top-0{
  top: 0;
}
.right-0{
  right: 0;
}
.left-0{
  left: 0;
}
.bottom-0{
  bottom: 0;
}
.top-100{
  top: 100;
}
.right-100{
  right: 100;
}
.left-100{
  left: 100;
}
.bottom-100{
  bottom: 100;
}

/* general colors */

.text-muted {
  color: rgba(var(--wh-gray-25),1) !important;
}

.gray-gradient {
  background: linear-gradient(40deg, rgba(var(--wh-gray-100),.75) 70% , rgba(var(--wh-gray-100),0) 90% );
}

.white-gradient {
  background: linear-gradient(rgba(var(--white),0) , rgba(var(--white), .75) 0%);
}

.availability {
  padding: 0;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-root);
  letter-spacing: 0.1px;
}
.availability-1{
  color: #3fad58;
  background-color: transparent;
}
.availability-2{
  color: #3fad58;
  background-color: transparent;
}
.availability-3{
  color: #e6a815;
  background-color: transparent;
}
.availability-4{
  color: #e6a815;
  background-color: transparent;
}
.availability-5{
  color: #dc3545;
  background-color: transparent;
}
.availability-6{
  color: #dc3545;
  background-color: transparent;
}
.availability-7{
  color: #dc3545;
  background-color: transparent;
}
.availability-8{
  color: #dc3545;
  background-color: transparent;
}
.availability-9{
  color: #212529;
  background-color: transparent;
}
.availability-10{
  color: #212529;
  background-color: transparent;
}
.spacer-xl{
  margin-bottom: 80px;
}
.spacer-14{
  height: 14px;
}

.widget-text .widget-inner{
  padding: 0;
}

.text-brand-secondary{
  color: rgba(var(--wh-brand-orange));
}

/* typography */

.h1, .h2{
  line-height: 1.2;
}

@media (min-width: 200px){
  .h2{
    font-size: var(--font-size-md);
  }
}
@media (min-width: 768px){
  .h2{
    font-size: var(--font-size-lg);
  }
}

.h3 {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  color: rgba(var(--wh-gray-125));
}
.span-big {
  font-size: var(--font-size-root);
}

/* html, body, and general layout elements */
html, .page-content, body >#vue-app, body >#vue-error {
    background-color: rgba(var(--white),1);
}

html {
  font: var(--font-weight-regular) var(--font-size-root)/1.2 var(--font-family-sans-serif);
}
body {
  font-family: 'work sans',sans-serif;
}
.text-white{
  color: white;
}
.bkgr-white{
  background-color: white;
  color: rgba(var(--wh-gray-125));
}

.bkgr-dark{
  background-color: rgba(var(--wh-gray-125));
  color: white;
}
.bkgr-gray-0{
  background-color: rgba(var(--wh-gray-0));
  color: rgba(var(--wh-gray-100));
}
.bkgr-gray-50{
background-color: rgba(var(--wh-gray-50));
color: rgba(var(--white));
position: relative;
overflow: hidden;
}
.bkgr-gray-100{
  background-color: rgba(var(--wh-gray-100));
  color: white;
}
.bkgr-gray-125{
  background-color: rgba(var(--wh-gray-125));
}
.bkgr-lighter{
  background-color: rgba(var(--wh-bkgr-tint-lighter));
  color: rgba(var(--wh-gray-100));
  position: relative;
}
.bkgr-orange{
  background-color: rgba(var(--wh-brand-orange));
  color: white;
  position: relative;
  overflow: hidden;
}
.bkgr-blue{
  background-color: rgba(var(--wh-brand-blue));
  color: white;
  position: relative;
  overflow: hidden;
}

.bkgr-success{
  background-color: var(--success);
  color: white;
}

.soft-shadow{
  box-shadow: 0 0 16px -4px rgba(var(--wh-gray-125),.2);
}

#itemAddedToBasket{
  display: flex;
  justify-content: center;
  padding: 6px 0;
}

/* z-index */
.wh-btn{
  z-index: 1;
}

.wrapper-right{
  z-index: 9999;
}

#___ratingbadge_0{
  z-index: 1000 !important;
}

.popover{
  z-index: 999999999;
}

@media (min-width: 768px){
.wh-bkgr-shape:before {
  content: '';
  position: absolute;
  background: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/WerkzeugHERO/Ci/elements/wh-shape-lightblue.svg) no-repeat;
  top: 0%;
  left: 10%;
  background-size: 500px 500px;
  background-position: right center;
  z-index: 0;
  width: 100%;
  height: 100%;
  transform: rotate(15deg);
}

.bkgr-wh-shape:before {
  content: '';
  position: absolute;
  background: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/WerkzeugHERO/Bilder/general/wh-shape-50gray.svg) no-repeat;
  top: -35%;
  left: -2%;
  background-size: 400px 400px;
  background-position: -3% 100%;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  transform: rotate(10deg);
}
.bkgr-wh-shape:after{
  content: '';
  position: absolute;
  background: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/WerkzeugHERO/Bilder/general/wh-shape-50gray.svg) no-repeat;
  top: 70%;
  right: -10%;
  background-size: 400px 400px;
  background-position: 100% 10%;
  z-index: 0;
  width: 50%;
  height: 50%;
  opacity: .25;
  transform: rotate(-10deg);
}
}

/* trustami sticky badge */
.widget_container_overlay > span{
color: #313944 !important;
}
.widget_container_overlay > iframe{
box-shadow: 0 0 16px -8px rgba(var(--wh-gray-75),0.6),0 4px 16px -8px rgba(var(--wh-gray-75),0.13);
}
/*--------------------------------------------------------------------------------*/



/*++++++++++++++++++++ WIDGETS ++++++++++++++++++++*/

/*--- WIDGET KATEGORIE-NAVIGATION ---*/

.main-navbar-collapsable ul.mainmenu>li>a{
padding: 1rem;
}
/*--------------------------------------------------------------------------------*/

/*--- WIDGET STEP-BY-STEP-NAVIGATION ---*/

/* step-by-step small*/

.widget.widget-step-by-step-navigation.step-by-step--small .nav-item .prop-xs-1-1{
  padding-bottom: 50% !important;
}
.widget.widget-step-by-step-navigation.step-by-step--small .nav-text{
  display: none !important;
}
.step-by-step--small > .widget-inner .row{
  justify-content: center;
}
/* step-by-step--small responsive dartstellung*/
.step-by-step--responsive > .widget-inner .col-3{
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (min-width: 576px){
  .step-by-step--responsive > .widget-inner .col-3{
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
  }
}
@media (min-width: 768px){
  .step-by-step--responsive > .widget-inner .col-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 992px){
  .step-by-step--responsive > .widget-inner .col-3{
    -ms-flex: 0 0 16.5%;
    flex: 0 0 16.5%;
    max-width: 16.5%;
  }
}
@media (min-width: 1200px){
  .step-by-step--responsive > .widget-inner .col-3{
    -ms-flex: 0 0 14%;
    flex: 0 0 14%;
    max-width: 14%;
  }
}

/* step-by-step--regulär responsive dartstellung*/
.step-by-step--responsive__big > .widget-inner .col-3{
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 576px){
  .step-by-step--responsive__big > .widget-inner .col-3{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px){
  .step-by-step--responsive__big > .widget-inner .col-3{
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
  }
}
@media (min-width: 992px){
  .step-by-step--responsive__big > .widget-inner .col-3{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
/*Erscheinungsbild information*/
/*--------------------------------------------------------------------------------*/

/*---------- WIDGET BILDERKARUSELL ----------*/

.owl-carousel .owl-dots{
  display: none !important;
}
/* Bilderkarusell Primary */
.widget-image-carousel.widget-primary .widget-inner .widget-caption{
  bottom: 0;
  left: initial;
  right: 0;
  width: initial;
  text-align: initial;
  -webkit-transform: initial;
  transform: initial;
}
.widget-image-carousel .widget-caption h2, .widget-image-carousel .widget-caption .h2{
  font-size: var(--font-size-root);
}
.widget-image-carousel.widget-primary .widget-caption h2, .widget-image-carousel.widget-primary .widget-caption .h2{
  color: white;
  background-color: rgba(var(--wh-brand-blue),1);
  font-size: var(--font-size-root);
  padding: 0.6rem 0.7rem;
  margin: 1rem;
}
.widget-image-carousel .widget-inner .carousel-inner{
  border-radius: var(--border-radius-sm);
}
.widget-image-carousel .widget-inner .carousel-inner .carousel-item .widget-caption > h2 > i{
  display: none;
}
.widget-image-carousel.widget-primary:hover .widget-caption h2, .widget-image-carousel.widget-primary:hover .widget-caption .h2{
  background-color: rgba(var(--wh-brand-blue-dark),1);
  box-shadow: 0 16px 16px -12px rgba(var(--wh-brand-blue-dark));
}
.widget-image-carousel.widget-primary .widget-inner .carousel-indicators{
  display: none;
}

.widget-image-carousel .widget-inner .carousel-control .fa{
  display: none;
  left: initial;
  top: initial;
  -webkit-transform: initial;
  transform: initial;
  font-size: 1.25rem;
  bottom: 0; 
  right: 0;
  background-color: rgba(var(--wh-gray-0));
  padding: 18px 22px;
  color: rgba(var(--wh-gray-125)) !important;
}
.widget-image-carousel.widget-primary .carousel-control-prev{
  left: initial;
  right: 56px;
  width: 56px;
}
.widget-image-carousel.widget-primary .carousel-control-next{
  width: 56px;
}
.widget-image-carousel.widget-primary .carousel-control-prev .fa-chevron-left{
  border-right: 2px solid white;
}
.widget-image-carousel.widget-primary .widget-inner .carousel-item img {
  border-radius: var(--border-radius-sm);
}
.widget-image-carousel.widget-primary .carousel-control-next .fa-chevron-right{
  border-bottom-right-radius: var(--border-radius-sm);
}
@media (min-width: 768px){
  .widget-image-carousel.widget-primary .widget-inner .widget-caption {
    bottom: 10%;
    left: 3%;
    right: initial;
  }
  .widget-image-carousel.widget-primary .widget-caption h2, .widget-image-carousel .widget-caption .h2{
    padding: 1.4rem 1.6rem;
    margin: 2rem 3rem 2rem 0;
  }
  .widget-image-carousel .widget-inner .carousel-control .fa{
    display: block;
    }
}
@media (min-width: 992px){
  .widget-image-carousel.widget-primary .widget-caption h2, .widget-image-carousel.widget-primary .widget-caption .h2{
    font-size: var(--font-size-md);
  }
}
/*--------------------------------------------------------------------------------*/

/*---------- WIDGET Artikelliste ---------- */
@media(min-width: 1500px){
  .owl-carousel .owl-single-item-control{
    /*margin: auto -16px;*/
    font-size: 2rem;
    background-color: rgba(var(--wh-gray-0),.6);
    padding: 14px 8px 14px 8px;
    border: 1px solid rgba(var(--wh-gray-0));
  }
}


.widget-item-list .widget-caption h2, .widget-item-list .widget-caption .h2{
  text-transform: unset;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  z-index: 1;
}
.owl-theme .owl-dots .owl-dot span{
  width: 16px;
  height: 2px;
  margin: 5px 7px;
  background: rgba(var(--wh-gray-25),.6);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
  background: rgba(var(--wh-brand-blue),1);
}
/*Artikelliste: Primär*/
.widget-item-list.widget-primary .widget-caption {
  color: rgba(var(--wh-gray-100),1);
  background-color: transparent;
  padding: 2rem;
  margin-bottom: 2rem !important;
}
.widget-item-list.widget-primary .widget-caption a{
  color: rgba(var(--wh-gray-100),1);
}
/*Artikelliste: Sekundär*/
.widget-item-list.widget-secondary .widget-caption {
  color: rgba(var(--wh-gray-100),1) !important;
  background-color: transparent !important;
  padding: 2rem;
  margin-bottom: 2rem !important;
  z-index: 1;
}
.widget-secondary .bg-appearance a{
  color: rgba(var(--wh-gray-100),1) !important;
  z-index: 1;
}
.widget-secondary .add-to-basket-lg-container:hover{
  border-color: transparent !important;
}

/*Artikelliste: info*/
@media (min-width: 200px){
  .widget-info .owl-carousel .owl-single-item-control{
    font-size: 2rem;
  }
  .widget-info .cmp-product-thumb .thumb-inner{
    margin: 0;
  }
  .widget-info .cmp-product-thumb .thumb-meta {
    display: none;
  }
  .widget-info .thumb-content .vat.small.text-muted{
    display: none;
  }
  .widget-info .wh-btn{
    display: none;
  }
  .widget-info .cmp-product-thumb .add-to-basket-lg-container{
    display: none;
  }

  .widget-info .cmp-product-thumb .thumb-title.small{
    max-height: 4.2em;
  }
}
@media (min-width: 576px){
  .widget-info .cmp-product-thumb .thumb-content{
    padding: 16px 0x;
    line-height: 1.2rem;
  }
}
/*--------------------------------------------------------------------------------*/

/*---------- WIDGET Trennlinie ----------*/
hr{
  border-top: 1px solid rgba(var(--wh-bkgr-tint-lightest));
}
/*--------------------------------------------------------------------------------*/

/*---------- WIDGET Titelleiste ----------*/
/*Titelleise: info*/
.widget-info .bg-appearance{
  background-color: transparent !important;
  color: rgba(var(--wh-gray-125)) !important;
}

.widget-title-bar.widget-info .h3, .widget-title-bar.widget-info h3 {
  margin: 0.25rem 0 0.5rem 0;
  font-size: var(--font-size-md);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.4px;
}

/* z.b. homepage Aufmacher*/
.headline-3xl h1{
  font-size: var(--font-size-3xl);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
/*--------------------------------------------------------------------------------*/

/*---------- WIDGET Link ----------*/
.btn-lg, .btn-group-lg>.btn{
  border-radius: 0;
}
.btn-bottom-right{
  position: absolute;
  bottom: 0;
  right: 0;
}
.widget.widget-link.widget-info a {
  background-color: transparent;
  color: rgba(var(--wh-brand-blue));
  text-decoration: underline;
  border: none;
}
/*--------------------------------------------------------------------------------*/

/*---------- WIDGET Hintergrundbild ----------*/
.widget-background.widget-background--pos-center-right .parallax-img-container-inner{
  background-position: center right;
}
.widget-background .parallax-img-container-inner{
  z-index: 0;
}
/* hintergrundbild für custom teaser-kategorie auf startseite */
.wh-teaser-category .parallax-img-container-inner{
  border-radius: 5px 3px 3px 5px;
}
/*--------------------------------------------------------------------------------*/

/*---------- WIDGET Liste ----------*/

/*--------------------------------------------------------------------------------*/

/*---------- WIDGET Toolbar (filter) ----------*/
.list-controls .list-controls-inner {
  background-color: rgba(var(--wh-bkgr-tint-light),1);
}
.list-controls .selected-filters .selected-filter{
  font-size: var(--font-size-xs);
  padding: 6px 10px;
  background-color: #274ec1;
  color: #fff !important;
  float: left;
  border-radius: 40px;
  cursor: pointer;
}

/*---------- WIDGET Herstellerfilter ----------*/

.widget-filter-base{
  padding: 0 2rem 2rem 0;
}
.filter-scrollable{
  overflow: auto;
  max-height: 224px;
}
.filter-collapse .card .form-check .form-check-label, .filter-collapse .cmp-address-list .items>div:first-child .form-check .form-check-label, .cmp-address-list .filter-collapse .items>div:first-child .form-check .form-check-label, .widget-filter-base .card .form-check .form-check-label, .widget-filter-base .cmp-address-list .items>div:first-child .form-check .form-check-label, .cmp-address-list .widget-filter-base .items>div:first-child .form-check .form-check-label{
  padding: 0.2rem 0;
} 
.widget-filter-base .form-check-wrapper{
  padding: 0.1rem 0;
}
/*--------------------------------------------------------------------------------*/

/*---------- WIDGET Navigationsbaum (Kategorie) ----------*/
.sidebar-categories .category-title, .widget-navigation-tree .category-title {
  background: rgba(var(--white),1);
  margin: 0;
  padding: 12px 2rem 1.2rem 0;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-md);
  letter-spacing: -0.5px;
  border-bottom: 1px solid rgba(var(--wh-gray-50),1);
  text-transform: uppercase;
}

.sidebar-categories, .widget-navigation-tree {
  font-family: inherit;
}

.sidebar-categories ul li.active>a, .widget-navigation-tree ul li.active>a {
  background-color: rgba(var(--wh-bkgr-tint-light),1);
  border-bottom: 2px solid transparent;
  color: rgba(var(--black),1);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1px;
}

li.nav-item.is-open {
  border-left: 1px solid rgba(var(--wh-gray-25),.5);
}

.sidebar-categories .nav-item .nav-link, .widget-navigation-tree .nav-item .nav-link{
  border-bottom: 1px solid rgba(var(--wh-gray-25),.5);
  -webkit-transition: background-color 200ms ease-in-out, border-bottom 200ms ease-in-out;
  -moz-transition: background-color 200ms ease-in-out, border-bottom 200ms ease-in-out;
  -ms-transition: background-color 200ms ease-in-out, border-bottom 200ms ease-in-out;
  -o-transition: background-color 200ms ease-in-out, border-bottom 200ms ease-in-out;
  transition: background-color 200ms ease-in-out, border-bottom 200ms ease-in-out;
  border-left: initial;
}
.sidebar-categories ul li a[href]:hover, .widget-navigation-tree ul li a[href]:hover{
  color: #282d2f;
  background-color: rgba(var(--wh-bkgr-tint-light),1);
}

.sidebar-categories ul li.is-open ul li a, .widget-navigation-tree ul li.is-open ul li a{
  padding-left: 2.25rem !important;
}
/*--------------------------------------------------------------------------------*/

/*---------- WIDGET Bilderbox ----------*/
/*general*/
.image-overlay--primary:before{
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: rgba(var(--wh-brand-blue),.15);
}
.widget.widget-image-box.image-overlay--primary > img{
  border-radius: 0;
}
.widget.widget-image-box > a.widget-inner{
  padding: 0;
}
.widget-image-box a[href].widget-inner:hover .widget-caption{
  background-color: transparent !important;
}
.widget.widget-image-box {
  border-radius: var(--border-radius-sm);
}

/*--- Bild und Text (volle Fläche) - fullwidth ---*/
.widget.widget-image-box.widget-image-box-fullwidth > .widget-inner .widget-caption{
  background-color: transparent;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem 4rem 2rem 1.2rem;
}
.widget-image-box.widget-image-box-fullwidth{
  transition: transform 0.2s cubic-bezier(var(--smooth-quick-cubic)), box-shadow 0.2s cubic-bezier(var(--smooth-quick-cubic));
}
.widget-image-box.widget-image-box-fullwidth:hover {
  box-shadow: 2px 8px 24px -8px rgba(var(--wh-gray-100),1);
  transform: translate(0, -2%);
}
.widget-image-box.widget-image-box-fullwidth .widget-image-box-caption p {
  font-weight: var(--font-weight-bold);
  text-shadow: 2px 2px 8px rgba(var(--wh-gray-100),1);
  text-align: left;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  line-height: 1.1;
}
@media (min-width: 992px){
  .widget-image-box.widget-image-box-fullwidth .widget-image-box-caption p {
    font-size: var(--font-size-md);
  }
}
.widget.widget-image-box.widget-image-box-fullwidth > .widget-inner .widget-caption:after{
  content: '\203A';
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 0 18px 3px 18px;
  font-size: 27px;
  font-weight: bold;
  border-radius: 1px;
}

/*fullwidth primary*/
.widget.widget-image-box.widget-image-box-fullwidth.widget-primary > a.widget-inner{
  transition: background-color 0.2s cubic-bezier(var(--smooth-quick-cubic));
}

.widget.widget-image-box.widget-image-box-fullwidth.widget-primary > a.widget-inner:hover{
background-color: rgba(var(--wh-brand-blue-dark),0.85);
}
.widget.widget-image-box.widget-image-box-fullwidth.widget-primary > .widget-inner .widget-caption:after{
  background-color: rgba(var(--wh-gray-0));
  color: rgba(var(--wh-gray-125));
}

/*fullwidth success -- akt. ego-power lp */
@media (min-width: 200px) {
  .widget.widget-image-box.widget-image-box-fullwidth.widget-success > .widget-inner .widget-caption {
    padding: 0;
    background-color: rgba(var(--wh-gray-100), 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .widget.widget-image-box.widget-image-box-fullwidth.widget-success > .widget-inner {
    padding: 0;
  }
  .widget.widget-image-box.widget-image-box-fullwidth.widget-success > .widget-inner .widget-caption h2 > i {
    position: absolute;
    left: 50%;
    top: 70%;
    background-color: rgba(var(--wh-brand-orange));
    border-radius: 40px;
    padding: 8px 12px;
    font-size: var(--font-size-root);
    display: flex;
    transform: translateX(-50%);
  }
  .widget.widget-image-box.widget-image-box-fullwidth.widget-success > .widget-inner .widget-caption h2 > i:before {
    order: 1;
    padding-left: 8px;
  }
  .widget.widget-image-box.widget-image-box-fullwidth.widget-success > .widget-inner .widget-caption h2 > i:after {
    content: 'Jetzt mehr erfahren';
    order: 0;
    font-family: var(--font-family-sans-serif);
    text-transform: initial;
  }
  .widget.widget-image-box.widget-image-box-fullwidth.widget-success a[href].widget-inner:hover .widget-caption {
    background-color: rgba(var(--wh-gray-100), 0.7);
  }
}
@media (min-width: 992px) {
  .widget.widget-image-box.widget-image-box-fullwidth.widget-success > .widget-inner .widget-caption h2 > i {
    padding: 16px 24px;
  }
  .widget.widget-image-box.widget-image-box-fullwidth.widget-success > .widget-inner .widget-caption h2 > i:before {
    padding-left: 80px;
  }
}

/*--- Bild und Text (volle Fußzeile) - block-caption ---*/
.widget.widget-image-box.widget-image-box-block-caption{
  min-height: 216px !important;
}

.widget.widget-image-box.widget-image-box-block-caption > .widget-inner > .widget-caption {
  background-color: rgba(var(--wh-gray-0),.8);
  padding: 0 1rem;
  color: rgba(var(--wh-gray-125));
}
.widget-image-box.widget-image-box-block-caption a[href].widget-inner:hover .widget-caption{
  background-color: rgba(var(--wh-gray-0),.95) !important;
  color: initial !important;
}
.widget.widget-image-box.widget-image-box-block-caption > .widget-inner > .widget-caption p {
  font-size: var(--font-size-root);
  font-weight: var(--font-weight-regular);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.25;
}
.widget.widget-image-box.widget-image-box-block-caption.widget-primary > .widget-inner > .widget-caption p:before{
  content: '';
  position: absolute;
  background-color: rgba(var(--wh-gray-25));
  width: 3px;
  height: 100%;
  bottom: 0;
  left: 0;
}
.widget.widget-image-box.widget-image-box-block-caption > .widget-inner > .widget-caption p:after {
  content: "\203A";
  padding: 0 1.2rem;
  position: relative;
  margin: 0 -14px 0 14px;
  font-size: 27px;
  color: rgba(var(--wh-gray-125));
}
/*block-caption primary*/
.widget.widget-image-box.widget-image-box-block-caption.widget-primary > .widget-inner:hover > .widget-caption p:before{
  background-color: rgba(var(--wh-brand-blue));
}
/*--- Bild und Text (klein) - inline-caption ---*/

.widget.widget-image-box.widget-image-box-inline-caption{
  min-height: 216px !important;
}
.widget.widget-image-box.widget-image-box-inline-caption > .widget-inner .widget-caption{
  background-color: transparent;
  padding: 2rem 1.2rem;
  max-width: 70%;
}
.widget.widget-image-box.widget-image-box-inline-caption>.widget-inner{
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: rgba(var(--wh-gray-100),0.2);
}
.widget-image-box-inline-caption .widget-image-box-caption h3{
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  padding: 0 0 0.3rem 0;
  text-shadow: 2px 2px 8px rgba(var(--wh-gray-100),1);
}
.widget-image-box-inline-caption .widget-image-box-caption p{
  font-size: var(--font-size-root);
  line-height: 1.5;
  text-shadow: 2px 2px 8px rgba(var(--wh-gray-100),1);
}
.widget-image-box-inline-caption .widget-image-box-caption p strong{
  font-size: var(--font-size-root);
  font-weight: var(--font-weight-regular);
  padding: 1rem;
  background-color: rgba(var(--wh-brand-blue));
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 1px;
}
@media (min-width:992px){
  .widget-image-box-inline-caption .widget-image-box-caption h3{
    font-size: var(--font-size-md);
  }
  .widget-image-box-inline-caption .widget-image-box-caption p{
    font-size: var(--font-size-sm);
  }
}

/*inline-caption primary*/
.widget-image-box-inline-caption.widget-primary .widget-image-box-caption p strong{
  background-color: rgba(var(--wh-brand-blue));
  transition: background-color 0.2s cubic-bezier(var(--smooth-quick-cubic));
}
.widget-image-box-inline-caption.widget-primary.with-hover > a.widget-inner:hover p strong{
  background-color: rgba(var(--wh-brand-blue-dark));
}
/*inline-caption secondary*/
.widget-image-box-inline-caption.widget-secondary .widget-image-box-caption p strong{
  background-color: rgba(var(--wh-brand-orange));
  transition: background-color 0.2s cubic-bezier(var(--smooth-quick-cubic));
}
.widget-image-box-inline-caption.widget-secondary.with-hover > a.widget-inner:hover p strong{
  background-color: rgba(var(--wh-brand-orange-dark));
}

/*--- Bild ohne Text - no-caption ---*/

/*--------------------------------------------------------------------------------*/


/*++++++++++++++++++++ VIEWS ++++++++++++++++++++*/

/*---------- Kategorieansicht ----------*/

/*Produktcard (Kategorie, Artikelliste)*/
del.crossprice:after {
  content: '**';
}
.cmp-product-thumb .prices{
  flex-direction: column;
  min-height: 52px;
  justify-content: flex-end;
}
.cmp-product-thumb .category-unit-price {
  color: rgba(var(--wh-gray-25));
  order: 3;
  display: none;
}
.cmp-product-thumb .crossprice {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-regular);
  color: rgba(var(--wh-gray-25));
}
@media(min-width:200px) and (max-width: 575px){
  .cmp-product-thumb{
    border-bottom: 1px solid rgba(var(--wh-gray-0),.59);
    padding: 0;
  }
}
@media(min-width:200px){
  .cmp-product-thumb .thumb-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 0;
  }
  .cmp-product-thumb .thumb-content{
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .cmp-product-thumb .thumb-title.small{
    order: 5;
    position: relative;
    font-weight: var(--font-weight-regular);
    color: rgba(var(--wh-gray-100),1);
    line-height: 1.5em;
    font-size: var(--font-size-root);
    max-height: 3em;
    min-height: 3em;
    overflow: hidden;
  }
  .thumb-content .vat.small.text-muted{
    order: -1;
  }
  .thumb-content .vat.small.text-muted a {
      color: rgba(var(--wh-gray-75)) !important;
  }
  .cmp-product-thumb .thumb-meta{
    order: 4;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .category-list-view-port .btn.btn-outline-primary.mobile-width-button{
    margin: 8px 0;
    padding: 12px 16px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    color: var(--success);
    border-color: var(--success);
  }
  .widget-secondary .btn-outline-appearance:focus, .widget-secondary .btn-outline-appearance.focus{
    -webkit-box-shadow: 0 10px 10px -8px rgba(40,167,69,0.5);
    box-shadow: 0 10px 10px -8px rgba(40,167,69,0.5);
  }
  .cmp-product-thumb .price{
    color: rgba(var(--wh-brand-blue-dark),1);
    line-height: 1.2;
    font-size: var(--font-size-md);
    min-height: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1200px){
  .cmp-product-thumb .price{
    font-size: var(--font-size-root);
  }
}

.vat .small .text-muted{
  order: -1;
}
@media (max-width: 575.98px){
  .cmp-product-thumb .mobile-icon-right {
    display: block;
  }
}
@media (max-width: 991.98px){
  .cmp-product-thumb .mobile-text-only {
    display: inline;
    margin-left: 0;
  }
}
.widget-item-grid .product-list>li.col-12, .widget-item-grid .product-list>li.col-xs-12{
  padding: 0 4px !important;
}
@media (min-width:576px){
  .cmp-product-thumb {
    border-radius: var(--border-radius-sm);
    margin: 8px 0;
    padding: 0;
    border: 1px solid rgba(var(--wh-gray-0),.8);
    transition: box-shadow 0.2s ease-out;
  }
  .cmp-product-thumb:hover {
    box-shadow: 0 3px 6px rgba(var(--black),0.06), 0 3px 6px rgba(var(--black),0.13);
    border-radius: 3px;
    z-index: 2;
    background-color: rgba(var(--white),1);
  }
  .product-list.grid li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cmp-product-thumb .thumb-image {
    width: 100%;
    padding: 8px;
  }
  .cmp-product-thumb .thumb-content {
    padding: 14px 14px 20px 14px;
    background-color: rgba(var(--wh-gray-0),.8);
  }
  .cmp-product-thumb .add-to-basket-lg-container{
    border-width: 18px;
    background-color: rgba(var(--wh-gray-0),0.9);
    color: rgba(var(--wh-gray-100));
    border-color: transparent;
    border-radius: 48px;
    margin: 13px 14px 0 0;
    -webkit-transition: background-color 200ms ease-in-out, box-shadown 200ms ease-in-out;
    -moz-transition: background-color 200ms ease-in-out, box-shadown 200ms ease-in-out;
    -ms-transition: background-color 200ms ease-in-out, box-shadown 200ms ease-in-out;
    -o-transition: background-color 200ms ease-in-out, box-shadown 200ms ease-in-out;
    transition: background-color 200ms ease-in-out, box-shadown 200ms ease-in-out;
  }
  .cmp-product-thumb .add-to-basket-lg-container:hover {
    background-color: rgba(var(--wh-success),1) !important;
    box-shadow: -2px 2px 16px 0px rgba(var(--wh-success),0.8);
    color: #fff !important;
    border-color: transparent;
  }
  .product-list.grid li:hover .add-to-basket-lg-container {
    border-color: transparent;
    color: rgba(var(--white),1);
    background-color: rgba(var(--wh-brand-blue),1);
  }
  .cmp-product-thumb .add-to-basket-lg-container>i{
    right: 1px;
    top: 0;
    position: relative;
    font-size: var(--font-size-sm);
    margin: 0 2px;
  }
}
.cmp-product-thumb .thumb-content .btn {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Kategorie Headline, text */
.category-main-title{
  font-size: var(--font-size-lg);
  padding: 16px 0 8px 0;
  letter-spacing: -1px; 
  font-weight: 600;
  margin-bottom: 0;
}
@media (min-width: 768px){
  .category-main-title{
    padding: 12px 32px 16px 0;
    font-size: var(--font-size-xl);
    text-transform: uppercase;
  }
}

/* wh zusatzinfo card */
.wh-sidebar-card{
  position: relative;
  margin-top: 3rem;
}
.wh-sidebar-content {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  color: rgba(var(--wh-gray-100),1);
  background-color: rgba(var(--wh-bkgr-tint-light),0.83);
  padding: 24px 16px;
  font-size: var(--font-size-sm);
  border-radius: 12px;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/WerkzeugHERO/Bilder/general/wh-logo-blue-backdrop-black20-cmp.png);
  background-repeat: no-repeat;
  background-position: -170px 60px;
  background-size: 650px;
  background-blend-mode: soft-light;
  box-shadow: 0px 16px 40px -16px #bcc2ca;
}
.wh-sidebar-card-img-wrapper {
  border-radius: 600px;
  background-color: white;
}
.wh-sidebar-card-img{
  width: 170px;
  height: auto;
  border-radius: 600px;
  padding: 10px;
}

/*Produkt basket-button (werkzeughero button) */
@media (min-width:200px){
  .wh-btn--i{
    padding-left: 8px;
    font-size: var(--font-size-root);
  }
  .wh-btn--blue__hover:hover{
    color: rgba(var(--white),1);
    background-color: rgba(var(--wh-brand-blue),1);
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
  }
  .wh-btn--blue-outline{
    color: rgba(var(--wh-brand-blue),1);
    border: 1px solid rgba(var(--wh-brand-blue),1);
  }
  .wh-btn--orange__hover:hover{
    color: rgba(var(--white),1);
    background-color: rgba(var(--wh-brand-orange),1);
    border: 1px solid transparent;
    border-radius: 40px;
  }
  .wh-btn--white-outline{
    color: rgba(var(--white),1);
    border: 1px solid rgba(var(--white),1);
  }
  .wh-btn--orange{
    color: rgba(var(--white),1);
    background-color: rgba(var(--wh-brand-orange),1);
  }
  .round{
    border-radius: 40px;
  }
}
.wh-btn{
  order: 0;
  font-size: var(--font-size-root);
  margin-top: 8px;
  padding: 10px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  -webkit-transition: border-radius 200ms ease-in-out, background-color 200ms ease-in-out;
  -moz-transition: border-radius 200ms ease-in-out, background-color 200ms ease-in-out;
  -ms-transition: border-radius 200ms ease-in-out, background-color 200ms ease-in-out;
  -o-transition: border-radius 200ms ease-in-out, background-color 200ms ease-in-out;
  transition: border-radius 200ms ease-in-out, background-color 200ms ease-in-out;
}
@media (min-width: 992px){
  .wh-btn{
    margin: 8px 0;
  }
}

/* wh-special-badge Ribbon */
.special-badge {
  position: relative;
  z-index: 1;
}
.ribbon {
  width: 128px;
  height: 128px;
  overflow: hidden;
  position: absolute;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 200px;
  padding: 8px 0;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-align: center;
  background: radial-gradient(ellipse farthest-corner at right bottom,#FEDB37 0%,#FDB931 8%,#e4ad38 30%,#d8a83b 40%,transparent 80%),
              radial-gradient(ellipse farthest-corner at left top,#FFFFFF 0%,#FFFFAC 8%,#efc554 25%,#c79c37 62.5%,#90712d 100%);  
}
/* top left*/
.ribbon-top-left {
  top: -8px;
  left: -8px;
}
.ribbon-top-left span {
  right: -24px;
  top: 32px;
  transform: rotate(-45deg);
}
.product-list.grid li:hover .special-badge{
  z-index: 2;
}
/*--------------------------------------------------------------------------------*/

/*-------------- VIEW Add to basket overlay ------------------*/
.container-basket--extend-overlay-buttons{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin: 0 16px 16px 16px;
}
/*--------------------------------------------------------------------------------*/

/*-------------- VIEW Warenkorb / Checkout ------------------*/
.cmp-totals dd:nth-child(6):after {
  content: '*';
  position: absolute;
  left: 100%;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-xs);
  color: rgba(var(--wh-gray-75),1);
}
.cmp-totals dd:nth-child(8):after {
  content: '*';
  position: absolute;
  left: 100%;
  font-weight: 400;
  font-size: var(--font-size-xs);
  color: rgba(var(--wh-gray-75),1);
}
/*--------------------------------------------------------------------------------*/

/*-------------- VIEW Login ------------------*/
.page-login .login-pwd-reset .btn-primary {
   border: 1px solid rgba(var(--wh-brand-blue));
   color: rgba(var(--wh-brand-blue));
   background-color: white;
}

.page-login div.row > div:nth-child(1) > a.btn-primary {
  border: 1px solid rgba(var(--wh-brand-blue));
  color: rgba(var(--wh-brand-blue));
  background-color: white;
}
/*--------------------------------------------------------------------------------*/

/*----------VIEW Artikelansicht (Single-Item-View) ----------*/
del.text-muted.small:after{
  content: '**';
}
.articlenumber {
  font-size: var(--font-size-root);
}
.wh-price-diff{
  position: absolute;
  top: 0;
  right: 3%;
  z-index: 2;
  transform: rotate(-15deg);
  background-color: white;
}
.wh-price-category-diff {
  position: relative;
}
.wh-price-diff--content{
  position: relative;
  padding: 32px 16px;
  color: white;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
  border-radius: 48px;
  background-color: rgba(var(--wh-brand-orange),1);
}
.wh-price-category-diff--content {
  position: relative;
  padding: 12px 8px;
  color: white;
  font-size: var(--font-size-root);
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
  background-color: rgba(var(--wh-brand-orange),1);
}
@media (min-width: 992px) and (max-width: 1200px){
  .wh-price-category-diff--content {
    padding: 8px 4px;
  }
}
.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgb(250,250,252);
}

span.availability:after {
  content: '***';
  color: rgba(var(--wh-bkgr-tint-lightest));
  font-weight: var(--font-weight-regular);
}

.single {
  padding-top: 2rem;
}

.single .single-rightside > div > h1.h2.title{
  font-size: var(--font-size-md);
  color: rgba(var(--wh-gray-100));
}
.single .single-rightside > div > div.mb-5{
  margin-bottom: 0 !important;
}
.single .title-outer h1, .page-singleitem .title-outer h1{
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025rem;
  color: rgba(var(--wh-gray-125));
}
.single-basket-btn .add-to-basket-container .btn.disabled, .btn:disabled {
  background-color: rgba(var(--wh-gray-25));
  border-color: transparent;
}
@media (min-width: 768px){
  .single-basket-btn .add-to-basket-container{
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px){
  .single .title-outer h1, .page-singleitem .title-outer h1{
    font-size: 1.75rem;
    width: 66%;
  }
}
/*Single-Item carousel img-height */
@media (min-width: 1200px){
  .single-carousel .owl-item img {
    height: 300px !important;
  }
}
@media (min-width: 992px){
  .single-carousel .owl-item img {
    height: 300px !important;
  }
}
@media (min-width: 576px){
  .single-carousel .owl-item img {
    height: 300px !important;
  }
}
.single-carousel .owl-item img {
  height: 300px !important;
}
/*hersteller*/
.single .producer, .page-singleitem .producer img{
  max-width: 140px;
}
.single .price, .page-singleitem .price{
  color: rgba(var(--wh-gray-125));
  float: initial;
}
/*
.single .single-item-wrapper .widget-inner:nth-child(2) {
background-color: rgba(var(--wh-bkgr-tint-lighter));
border-top: 1px solid rgba(var(--wh-bkgr-tint-lighter));
display: flex; 
justify-content: center;
padding: 24px 16px 16px 16px;
}
.single .single-item-inner .widget-inner:nth-child(2){
  background-color: rgba(var(--white));
  padding: 0 16px;
}
*/
.single-sticky-basket{
  background-color: rgba(var(--wh-bkgr-tint-lighter));
  border: 1px solid rgba(var(--wh-bkgr-tint-lightest),.5);
  padding: 24px 24px 16px 16px;
}

/*Artikelansicht mobil*/
@media screen and (max-device-width: 740px) {
  .single .p-t-1, .page-content {
    padding-top: 0 !important;
  }
  .single #thumb-carousel {
    display: none;
  }
  .single .m-t-3 {
    margin-top: 0rem !important;
  }
  .single .m-y-1 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .single .add-to-basket-container {
    position: fixed;
    bottom: 0;
    width: 60%;
    z-index: 200;
    right: 0;
    background: rgba(var(--white),1);
    height: 55px;
  }
  .single hr {
    display: none;
  }
  .single .m-b-3 {
    display: none;
  }
  .single .row.m-b-1 {
    display: none;
  }
  .single .producertag.h6.producer.text-muted {
    display: none;
  }
  .single #vue-app {
    margin-top: 156.547px;
  }
  .single .price.h1 {
    position: fixed;
    bottom: -7px;
    z-index: 100;
    background-color: rgba(var(--wh-bkgr-tint-lighter));
    width: 40%;
    left: 0;
    text-align: center;
    height: 55px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--font-size-root);
    padding: 0 16px;
  }
  .add-to-basket-container .quantity-input-container {
    margin-right: 0;
  }
  .single .qty-box {
    height: 55px;
  }
  .single .add-to-basket-container .btn-primary {
    font-size: var(--font-size-root);
  }
  .single .add-to-basket-container .btn-primary i {
    display: none;
  }
  #page-header .breadcrumbs{
    display: none;
  }
}

@media (min-width: 741px) {
  .single .add-to-basket-container .btn-primary {
    font-size: var(--font-size-sm);
    text-align: left;
  }
}
del.text-muted.small.text-appearance {
  color: rgba(var(--wh-brand-orange)) !important;
  font-size: var(--font-size-root);
}
.base-price.text-muted {
  color: rgba(var(--wh-gray-100)) !important;
}
.qty-box .qty-input{
  background-color: white;
}
.qty-btn-container .qty-btn{
  background-color: rgba(var(--wh-gray-0),.5);
}
@media (min-width: 768px){
  .add-to-basket-container .quantity-input-container {
    margin-right: 0;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
  }
}
/*--------------------------------------------------------------------------------*/

/*---------- VIEW Homepage ----------*/
/*logoteppich*/
.wh-logo-wall {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.wh-logo-element {
padding: 16px;
opacity: 0.8;
filter: alpha(opacity=80);
transition: opacity 0.2s cubic-bezier(var(--smooth-quick-cubic)), transform 0.2s cubic-bezier(var(--smooth-quick-cubic));
}
.wh-logo-element:hover {
opacity: 1;
filter: alpha(opacity=100);
transform: Scale(1.2);
}
/*--------------------------------------------------------------------------------*/

/*---------- VIEW Footer ---------- */
.footer .widget {
margin-bottom: 0px;
}
.wh-small-footer{
text-align: center;
display: block;
margin-top: 8px;
margin-bottom: 32px;
padding: 0 15vw;
color: #9ea5ad;
}
.copyright {
color: white;
display: flex;
flex-direction: column;
align-items: center;
}
.footer .widget-text.footer-text p{
  margin-bottom: 0;
  color: rgba(var(--wh-gray-50));
}
.footer .footer-link a {
color: rgba(var(--wh-gray-50));
line-height: 1.9;
-webkit-transition: color 0.2s cubic-bezier(var(--smooth-quick-cubic));
-moz-transition: color 0.2s cubic-bezier(var(--smooth-quick-cubic));
-ms-transition: color 0.2s cubic-bezier(var(--smooth-quick-cubic));
-o-transition: color 0.2s cubic-bezier(var(--smooth-quick-cubic));
transition:  color 0.2s cubic-bezier(var(--smooth-quick-cubic));
padding: 0 1rem 0 0;
}
.footer .footer-link a:hover {
color: rgba(var(--wh-gray-0));
}
.footer-col--elements.services-payment {
display: flex;
flex-wrap: wrap;
}
.footer-col--elements.services-trust {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.footer-col--elements.services-payment img {
width: auto;
height: 48px;
}
.copyright{
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
color: rgba(var(--wh-gray-75));
}
.static-link-list{
display: flex;
position: relative;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
flex-wrap: wrap;
padding-bottom: 24px;
}
.footer .footer-features{
display: block;
}
.footer-features--elements{
color: white;
}
.gray-overlay:before{
position: absolute;
content:" ";
top:0;
left:0;
width:100%;
height:100%;
display: block;
z-index:0;
background-color: rgba(var(--wh-gray-100),1);
}
.footer .footer-features i{
color: rgba(var(--wh-brand-orange)) !important;
}
.footer .footer-content{
max-width: inherit;
}
.footer-col--title{
font-size: var(--font-size-root);
color: rgba(var(--wh-gray-0));
display: block;
position: relative;
margin-bottom: 2rem;
text-transform: uppercase;
}
.footer-col--title:before, .copyright:before{
display: block;
content: '';
width: 100%;
height: 1px;
position: absolute;
background: rgba(var(--wh-gray-75));
}
.footer-col--title:before{
bottom: -8px;
left: 0;
}
.copyright:before{
top: -16px;
left: initial;
}
.back-to-top{
  background-color: rgba(var(--wh-gray-0));
  opacity: 1;
  box-shadow: 0 0 16px -4px rgba(var(--wh-gray-125),.2);
  border: transparent !important;
  border-radius: 40px !important;
  bottom: 1.5rem;
}
.back-to-top .btn:hover{
  background-color: rgba(var(--wh-gray-25));
}
.back-to-top i {
  color: rgba(var(--wh-brand-blue));
  font-size: 1.3em;
  margin-top: 6px;
}
.wh-small-footer{
display: block;
margin-top: 8px;
padding: 0;
text-align: left;
color: rgba(var(--wh-gray-75));
}
.footer-service-contact{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
}
.footer-service-contact--facebook-icon{
font-size: var(--font-size-2xl);
color: rgba(var(--wh-gray-0));
}
.footer-service-hotline{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.footer-service-hotline--phone-icon{
font-size: var(--font-size-2xl);
color: rgba(var(--wh-gray-0));
padding-right: 16px;
}
.footer-service-hotline--element{
display: flex;
flex-direction: column;
color: rgba(var(--wh-gray-0));
}
.footer-service-hotline--element span:nth-child(2){
font-size: var(--font-size-xs);
}
.footer-service-hotline--element span:first-child{
padding-right: 8px;
}
/*--------------------------------------------------------------------------------*/

/*---------- VIEW Header ----------*/

#page-header-parent>.widget:not(.widget-grid){
  max-width: var(--vp-max-width);
}

#page-header-parent>.widget{
  max-width: var(--vp-max-width);
}

.bkgr-gray-fullwidth:before {
  content: '';
  height: 100%;
  background-color: rgba(var(--wh-gray-75));
  width: 110%;
  position: absolute;
  right: 90%;
  top: 0;
}
.bkgr-gray-fullwidth:after {
  content: '';
  height: 100%;
  background-color: rgba(var(--wh-gray-75));
  width: 110%;
  position: absolute;
  left: 90%;
  top: 0;
}

.page-header-up{
  top: 0;
  transform:translate3d(0, -25%, 0);
  -o-transform:translate3d(0, -25%, 0);
  -ms-transform:translate3d(0,-25%, 0);
  -moz-transform:translate3d(0, -25%, 0);
  -webkit-transform: translate3d(0, -25%, 0);
}

.owl-stage{
display: flex;
align-items: center;
}

.feature-carousel{
color: rgba(var(--wh-gray-0));
display: flex;
background-color: rgba(var(--wh-gray-75));
z-index: 100;
justify-content: center;
}

.wh-page-header-features{
display:flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 0 24px;
}

.wh-page-header-features-element{
flex-direction: column;
display: flex;
margin: 10px 16px 0 16px;
}

.wh-page-header-features > i{
font-size: 1.25rem;
display: none;
}
.wh-page-header-features-subline{
font-size: var(--font-size-2xs);
line-height: 0.5;
display: none;
}

@media (min-width: 576px){
.wh-page-header-features > i{
  display: block;
}
.wh-page-header-features-subline{
  display: block;
}
}

.owl-nav{
cursor: pointer;
opacity: 0;
-webkit-transition: opacity 300ms;
transition: opacity 300ms;
top: 40%;
bottom: 40%;
max-width: 45px;
}

.carousel-control{
background-image: none !important;
opacity: 1;
display: block;
text-align: left;
}

.owl-carousel .owl-features-control{
color: rgba(var(--wh-gray-50));
text-shadow: none;
font-size: 14px;
}
.owl-carousel .carousel-control .owl-features-control{
margin: auto;
position: absolute;
top: 50%;
-webkit-transform: translateY(-36%);
transform: translateY(-36%);
}

@media (min-width: 576px){
.owl-features-nav .owl-features-control{
  top: 40%;
  bottom: 100%;
}
}
@media (min-width: 1200px){
.owl-carousel .carousel-control .owl-features-control{
  display: none;
}
}

.owl-carousel .carousel-control.right .owl-features-control{
right: 3%;
}
.owl-carousel .carousel-control.left .owl-features-control{
left: 3%;
}



.top-bar{
background-color: rgba(var(--ceres-gray-light));
z-index: unset !important;
}
.top-bar .controls-list .control-user #login-change>.dropdown.show>.dropdown-toggle{
background-color: rgba(var(--wh-gray-50));
}
.top-bar .controls-list .control-user #login-change>.dropdown .dropdown-menu a{
background-color: rgba(var(--wh-gray-25));
border-top: 1px solid rgba(var(--wh-gray-25),.4);
}

.controls-list .list-inline-item{
  font-size: var(--font-size-root);
}

.wh-page-header-container{
display: none;
}

.top-bar .controls-list .control-user{
display: none;
}

.top-bar .search-permanent {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}

.top-bar .search-permanent .always-visible-search{
flex: 1 1 0px;
margin: 0;
}

.search-box-shadow-frame{
-webkit-box-shadow: none;
box-shadow: none;
}

.top-bar .search-permanent .always-visible-search .d-flex .search-input{
font-size: var(--font-size-root);
padding: .786rem 1rem !important;
}
.top-bar .search-permanent .always-visible-search .search-box-shadow-frame .search-input:focus::-webkit-input-placeholder { color:transparent; }
.top-bar .search-permanent .always-visible-search .search-box-shadow-frame .search-input:focus:-moz-placeholder { color:transparent; } 
.top-bar .search-permanent .always-visible-search .search-box-shadow-frame .search-input:focus::-moz-placeholder { color:transparent; } 
.top-bar .search-permanent .always-visible-search .search-box-shadow-frame .search-input:focus:-ms-input-placeholder { color:transparent; } 

.top-bar .search-permanent .always-visible-search .search-box-shadow-frame .search-submit{
padding: .7rem 1.111rem;
background-color: rgba(var(--wh-gray-25),.4);
}

.top-bar .controls-list .control-basket .toggle-basket-preview{
  padding: 0.858rem 1.23rem;
  color: rgba(var(--wh-gray-0),1);
  background-color: rgba(var(--wh-brand-blue-dark),1);
}
  
@media (min-width: 768px){
  .top-bar .controls-list .control-basket .toggle-basket-preview{
  padding: 0.858rem 1.23rem;
  }
}
#page-header header .controls-list>li .fa:not(.qty-sign) {
font-size: var(--font-size-sm);
line-height: 0;
}

.top-bar .controls-list>li a:not(.btn){
color: rgba(var(--wh-gray-100));
}
.controls-list .nav-link[aria-expanded="true"]{
  background: rgba(var(--wh-brand-blue));
  color: rgba(var(--wh-gray-0)) !important;
}
.control-user .dropdown .dropdown-menu a{
  background: rgba(var(--wh-gray-0));
}
.controls-list .nav-link:hover{
  color: rgba(var(--wh-gray-0)) !important;
}

#page-header .navbar{
background-color: rgba(var(--ceres-gray-light));
border-bottom: 1px solid rgba(var(--wh-gray-25),.4);
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
box-shadow: 0 8px 24px -8px rgba(var(--wh-gray-75),.25);
}

.brand-wrapper{
padding: 0;
}

.navbar-brand{
padding: .5rem 0 .5rem .5rem;
}

.navbar-brand img{
height: 40px;
max-height: 40px;
}

.main-navbar-collapsable ul.mainmenu>li.ddown>a:after{
display: none;
}
@media (min-width: 576px){
  .wh-page-header-features-element{
  margin: 10px 16px 12px 16px;
  }
}

@media (min-width: 768px){
  .top-bar .controls-list .control-user{
    display: block;
  }
  .top-bar .search-permanent .controls .anicon, .top-bar .search-permanent .controls a:not(.btn){
    padding: 1rem 1.5rem;
  }

  .top-bar .search-permanent .always-visible-search{
    margin: 0 5rem 0 0;
  }
  #page-header .breadcrumbs {
    background-color: rgba(var(--white),1);
  }
  .breadcrumb{
    background-color: rgba(var(--white),1);
  }
  .top-bar .search-permanent .controls .anicon, .top-bar .search-permanent .controls a:not(.btn) i {
    padding-right: 8px;
  }
}
@media (min-width: 992px){
  .main-navbar-collapsable ul.mainmenu{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #page-header .navbar{
    box-shadow: 0 8px 24px -16px rgba(var(--wh-gray-50),1);
  }
  .main-navbar-collapsable{
    font-size: var(--font-size-xs);
    transition: opacity .1s ease;
  }
  .main-navbar-collapsable ul.mainmenu > li.ddown > a{
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xs);
    color: rgba(var(--wh-gray-125));
    text-transform: initial;
    -webkit-transition: color 0.2s cubic-bezier(var(--smooth-quick-cubic));
    -moz-transition: color 0.2s cubic-bezier(var(--smooth-quick-cubic));
    -ms-transition: color 0.2s cubic-bezier(var(--smooth-quick-cubic));
    -o-transition: color 0.2s cubic-bezier(var(--smooth-quick-cubic));
    transition: color 0.2s cubic-bezier(var(--smooth-quick-cubic));
    text-transform: uppercase;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    transition: border-color .2s ease;
  }
  
  .main-navbar-collapsable ul.mainmenu > li.ddown:hover > a {
    color: rgba(var(--wh-brand-blue-dark));
    border-color: rgba(var(--wh-gray-25),.5);
  }
  .main-navbar-collapsable ul.mainmenu>li:last-child{
    font-weight: var(--font-weight-bold);
    color: rgba(var(--wh-brand-orange));
  }
  .main-navbar-collapsable ul.mainmenu>li:hover:last-child{
    color: white !important;
    background-color: rgba(var(--wh-brand-orange)) !important;
  }
  .no-touch .main-navbar-collapsable ul.mainmenu>li:hover, .touch .main-navbar-collapsable ul.mainmenu>li.hover{
    background-color: transparent;
    color: rgba(var(--wh-brand-blue-dark));
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li::after {
    content: '';
    position: relative;
    display: block;
    bottom: -1px;
    z-index: 100;
    left: 50%;
    transform: translate(-50%,0);
    background-color: rgba(var(--ceres-gray-light),1);
    height: 2px;
    width: 5%;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out,width 0.15s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out,width 0.15s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out,width 0.15s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out,width 0.15s ease-in-out;
    transition: opacity 0.2s ease-in-out,width 0.15s ease-in-out;
  }
  .no-touch nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li:hover::after, .touch nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li.hover::after {
    width: 100%;
    opacity: 1;
    transition-delay: .2s;
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu>li>ul.collapse{
    column-rule: transparent !important;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    width: 100vw;
    max-width: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 1.5rem 3rem 2rem 3rem;
    box-shadow: 0 48px 64px -48px rgba(var(--wh-gray-100),.25);
    -webkit-box-shadow: 0 48px 64px -48px rgba(var(--wh-gray-100),.25);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: rgba(var(--ceres-gray-light));
    border-right: 1px solid rgba(var(--wh-gray-25),.4);
    border-left: 1px solid rgba(var(--wh-gray-25),.4);
    border-bottom: 1px solid rgba(var(--wh-gray-25),.4);
    margin-top: 3px;
  }

  .main-navbar-collapsable .mainmenu>li:hover, .main-navbar-collapsable .mainmenu>li.hover{
    background-color: transparent;
  }

  .no-touch .main-navbar-collapsable ul.mainmenu>li:hover>ul, .touch .main-navbar-collapsable ul.mainmenu>li.hover>ul{
    visibility: visible;
    opacity: 1;
    -webkit-transition:  visibility 0s ease .2s, opacity 0.1s ease .2s;
    transition: visibility 0s ease .2s, opacity 0.1s ease .2s;
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li > ul.collapse > li ul.collapse-inner{
    padding: 0;
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu>li>ul.collapse>li ul.collapse-inner>li{
    padding: 0;
    line-height: 140%;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .main-navbar-collapsable ul.mainmenu li a{
    display: block;
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li > ul.collapse > li ul.collapse-inner .level2 > a{
    padding: 0.35rem 0.35rem 0.35rem 1rem;
    color: rgba(var(--wh-gray-75));
    font-weight: var(--font-weight-regular);
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li > ul.collapse > li ul.collapse-inner .level2 > a:hover{
    color: rgba(var(--wh-brand-blue));
    background-color: rgba(var(--wh-gray-0));
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li > ul.collapse > li ul.collapse-inner .level1 > a{
    padding: .75rem 0 1.15rem 0.5rem;
    color: black !important;
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-root);
    min-height: 48px;
    margin: 0 1rem 0 0;
    border-left: 1px solid rgba(var(--wh-gray-25),.5);
    border-bottom: 1px solid rgba(var(--wh-gray-25),.5);
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li > ul.collapse > li ul.collapse-inner .level1 > a:hover{
    color: rgba(var(--wh-brand-blue));
    background-color: rgba(var(--wh-gray-0));
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li > ul.collapse > li ul.collapse-inner .bt-more > a{
    color: rgba(var(--wh-gray-75));
  }
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu > li > ul.collapse > li ul.collapse-inner .bt-more > a:hover{
    color: rgba(var(--wh-brand-blue));
    background-color: rgba(var(--wh-gray-0));
  }
  .brand-wrapper{
    position: absolute;
    bottom: 100%;
  }
  .top-bar .search-permanent .always-visible-search{
    margin: 0 2rem 0 23rem;
  }
  .search-input{
    border: 1px solid rgba(var(--wh-gray-25),.4);
  }
  .top-bar .search-permanent .controls .anicon, .top-bar .search-permanent .controls a:not(.btn){
    padding: 1.715rem 1.638rem;
  }

  .navbar-brand img{
    height: 48px;
    max-height: 48px;
  }
}

@media (min-width: 1200px){
  nav.navbar.megamenu .main-navbar-collapsable ul.mainmenu>li>ul.collapse{
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
    padding: 1.5rem 7rem 3rem 7rem;
  }
  .wh-page-header-container{
    display: block;
  }
  .main-navbar-collapsable{
    font-size: var(--font-size-root);
  }

  .main-navbar-collapsable ul.mainmenu>li.ddown>a{
    font-size: var(--font-size-root);
  }
}
/*--------------------------------------------------------------------------------*/


/*----------LIST ----------*/

.home.container-max .widget.widget-grid.row > .widget-inner.col-12.col-md-3.widget-prop-1-1 > div > .widget.widget-text.widget-none > .widget-inner{
margin-top: -10px;
z-index: 0;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
background-image: linear-gradient(to top, rgba(var(--wh-gray-0),0.47), rgba(var(--white),0));
}


/* wh-list 2020 */
.wh-list {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  display: block;
}
/*wh-list primary*/
.widget.widget-list.wh-list.wh-list--primary:before {
  content: '';
  background-color: rgba(var(--wh-bkgr-tint-lighter));
  position: absolute;
  width: 290px;
  height: 100%;
  top: 0;
  left: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.wh-list--primary{
  min-height: 200px;
  height: 100%;
  padding: 1.5rem 2rem 1.5rem 1.75rem;
  background-color: rgba(var(--wh-bkgr-tint-lighter),.87);
}
@media(min-width: 576px){
  .wh-list--primary{
    background-color: rgba(var(--wh-bkgr-tint-lighter));
    min-width: 270px;
    max-width: 270px;
    flex-direction: column;
    padding: 1.5rem 1rem 1.5rem 1.75rem;
    display: inline-block;
  }
}
/*wh-list secondary*/
.wh-list--secondary{
  padding: .5rem;
}
.widget-list.wh-list.wh-list--secondary li{
  display: inline-block;
  width: 50%;
  line-height: 24px;
}
@media(min-width: 992px){
  .widget-list.wh-list.wh-list--secondary li{
    width: 25%;
  }
}
.widget-list.wh-list.wh-list--secondary ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.widget-list.wh-list.wh-list--secondary p.h4 {
  border-top: 1px solid rgba(var(--wh-gray-100));
  padding-top: 5px;
}
@media(min-width: 576px){
  .wh-list--primary{
    background-color: rgba(var(--wh-bkgr-tint-lighter));
    min-width: 270px;
    max-width: 270px;
    flex-direction: column;
    padding: 1.5rem 1rem 1.5rem 1.75rem;
    display: inline-block;
  }
}

.wh-teaser-category{
  box-shadow: 4px 8px 16px -4px rgba(var(--wh-gray-25),.5);
}
.widget-list.wh-list p.h4 {
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.3rem;
}
.widget-list.wh-list li{
  border-bottom: 2px solid transparent;
  font-size: var(--font-size-root);
  color: rgba(var(--wh-gray-100),1);
}
.widget-list.wh-list li a{
  border-bottom: 2px solid transparent;
  -webkit-transition: border-bottom 200ms ease-in-out;
  -moz-transition: border-bottom 200ms ease-in-out;
  -ms-transition: border-bottom 200ms ease-in-out;
  -o-transition: border-bottom 200ms ease-in-out;
  transition: border-bottom 200ms ease-in-out;
}
.widget-list.wh-list li a:hover{
  border-bottom: 2px solid rgba(var(--wh-brand-blue),1);
  color: rgba(var(--black),1);
}

/*---------- CUSTOM CSS PLUGIN ----------*/

/*---------- GENERAL ----------*/

.widget-primary .add-to-basket-lg-container:hover{

  border-color: transparent !important;
  }
  
  *.cmpboxrecall {
    bottom: 64px !important;
    }
    
    .btn-primary{
        border: 1px solid rgba(var(--wh-brand-blue),1);
      }
      
      #page-body{
        background-image: linear-gradient(to right,rgba(255,255,255,0.7) 0%,rgba(255,255,255,1) 12%,rgba(255,255,255,1) 88%,rgba(255,255,255,0.7) 100%);
        outline: 120px solid white;
        min-height: 400px;
      }
      
      @media (min-width: 1400px){
        #vue-app{
          background: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/WerkzeugHERO/Bilder/general/pattern/wh-tile-pattern-01.png);
        }
      }
      
      h6 {
        line-height: 1.5;
      }
      
      .owl-thumbs .owl-thumb{
        height: 4em;
      }
      
      .full-width {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
      }
      
      
      /* SINGLEITEM THUMB CAROUSEL 
      
      .owl-thumbs{
        position: absolute;
        top: 0.15%;
        left: -12.5%;
      }
      
      .owl-thumbs .owl-stage-outer.owl-height {
        display: flex;
        flex-direction: column;
      }
      
      .owl-thumbs .owl-stage {
        display: flex;
        flex-direction: column;
      }
      
      
      
      
      .owl-thumbs .owl-stage-outer.owl-height{
        height: unset !important;
      }
      
      .owl-thumbs .owl-thumb.active, .owl-thumbs .owl-thumb:hover{
        border: 1px solid rgba(var(--wh-gray-50),.25);
      }
      */
      .cmp-product-thumb .thumb-image{
        width: 170px;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
        float: initial;
      }
      
      .h5-big {
        font-weight: var(--font-weight-bold);
        font-size: var(--font-size-sm);
        line-height: 1.2;
      }
      
      .widget-inner.widget-inner-stacked.col-12.col-md-4.widget-prop-md-auto .widget-inner.row{
        margin: 0;
      }
      .widget-inner.widget-inner-stacked.col-12.col-md-4.widget-prop-md-auto .widget-inner.row .col-12{
        padding: 0;
      }
      
    .widget.widget-text.widget-none.artikelzustanditempage.m-0 {
        background: #f3f8fc;
    }
    /*
    .widget.widget-text.widget-none.artikelherstelleritempage.m-0 {
        background: #f3f8fc;
    }
    */
      /*---------- TEMPORÄR ----------*/
      
      .widget-inner.widget-inner-stacked.col-12.col-md-4.widget-prop-md-auto .widget-inner.row:nth-child(2){
        display: none;
      }
      @media(min-width: 768px){
        .widget-inner.widget-inner-stacked.col-12.col-md-4.widget-prop-md-auto .widget-inner.row:nth-child(2){
          display: flex;
        }
      }
      
      .small.add-to-wish-list{
        display: none;
      }
      
      /*---------- Footer ----------*/

      a.wh-link-underline:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: rgba(var(--wh-gray-50));
        bottom: 0;
        left: 0;
        transition: background-color 0.45s cubic-bezier(var(--smooth-quick-cubic));
      }
      
      a.wh-link-underline:hover:after {
        background-color: rgba(var(--wh-brand-orange));
      }
      
      /*---------- 404 ----------*/
      .jumbo-column {
        padding: 0;
        margin: -16px;
      }
      
      .error404 {
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .45)), to(rgba(0, 0, 0, .45))), url("https://media.giphy.com/media/gqMsBHbdVTwgE/giphy.gif") no-repeat 0 0;
        background: -webkit-linear-gradient(rgba(var(--wh-gray-100), .45), rgba(var(--wh-brand-blue), .45)), url("https://media.giphy.com/media/gqMsBHbdVTwgE/giphy.gif") no-repeat 0 0;
        background: -o-linear-gradient(rgba(var(--wh-gray-100), .45), rgba(var(--wh-brand-blue), .45)), url("https://media.giphy.com/media/gqMsBHbdVTwgE/giphy.gif") no-repeat 0 0;
        background: linear-gradient(rgba(var(--wh-gray-100), .7), rgba(var(--wh-brand-blue), .45)), url("https://media.giphy.com/media/gqMsBHbdVTwgE/giphy.gif") no-repeat 0 0;
        -webkit-background-size: cover;
        background-size: cover;
        color: #fff;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        font-size: 20px;
        font-weight: 600;
        height: 500px;
        text-align: center;
        width: 110%;
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-position: center center;
      }
      
      .page-not-found .not-found-text {
        display: flex;
        justify-content: center;
        order: -1;
        text-shadow: none;
      }
      
      .lead-small {
        font-size: var(--font-size-sm);
      }
      
      .page-not-found .page-not-found-liste hr, .page-not-found .page-not-found-liste p.h3 {
        display: none;
      }
      
      .footer-features--element:nth-child(2)::after{
        display: none !important;
      }

      .page-confirmation .page-content.myaccount{
        margin-bottom: 3rem;
      }
      
      /*---------- firmenkunde landingpage ----------*/

      
      
      /* ./ LP HEADER w/ CTA */
      .navi-wrapper {
        flex-direction: column;
      }
      
      .navi {
        width: 100%;
        padding: 16px 16px 17px 16px;
        font-size: var(--font-size-root);
        font-weight: var(--font-weight-regular);
        border-top: 1px solid rgba(var(--wh-gray-25), .5);
        text-transform: uppercase;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgba(var(--wh-gray-100));
        border-bottom: 3px solid transparent;
        transition: border-bottom 0.45s cubic-bezier(var(--smooth-quick-cubic));
      }
      
      .navi > i {
        position: absolute;
        right: 10px;
        font-size: var(--font-size-root);
        color: rgba(var(--wh-gray-75));
      }
      
      .quote-bkgr:after {
        content: '"';
        color: rgba(var(--wh-brand-blue), .9);
        font-size: 350px;
        top: 30%;
        left: 0%;
        overflow: hidden;
        z-index: 0;
        position: absolute;
        font-weight: var(--font-weight-bold);
        transform: translate(0, -50%);
      }
      
      @media (min-width: 768px) {
        .navi-wrapper {
          flex-direction: row;
        }
      
        .navi {
          width: 25%;
          padding-top: 23px;
          padding-bottom: 24px;
          border-top: 1px solid transparent;
          border-right: 1px solid rgba(var(--wh-gray-25), .5);
          justify-content: center;
        }
      
        .navi > i {
          display: none;
        }
      
        a.navi:hover {
          border-bottom: 3px solid rgba(var(--wh-brand-blue));
        }
      }
      
      .navi:last-child {
        border-right: 1px solid transparent;
      }
      
      .feature-element {
          background-color: white;
          border-radius: 15px;
          padding: .6875rem .9375rem;
          width: 100%;
          margin-bottom: 1.5rem;
          box-shadow: none;
      
          transition: background .3s ease-in-out;
          transition: box-shadow .3s ease;
      }
      
      .feature-element:hover {
          box-shadow: 0 4px 24px 0 rgba(5,27,44,.2);
      }
      
      .feature-element--visual {
        font-size: var(--font-size-2xl);
        background-color: rgba(var(--wh-gray-0));
        border-radius: 80px;
        color: rgba(var(--wh-brand-blue));
        width: 72px;
        height: 72px;
        justify-content: center;
        align-items: center;
        display: flex;
        margin: auto;
        padding: .5rem;
        margin-bottom: 1rem;
      }
      
      .feature-element--headline {
        text-transform: uppercase;
        font-weight: var(--font-weight-bold);
        color: rgba(var(--wh-gray-100));
        font-size: var(--font-size-md);
        padding: .75rem .5rem;
        text-align: center
      }
      
      .feature-element--text {
        font-size: var(--font-size-root);
        line-height: 1.7;
        color: rgba(var(--wh-gray-100));
        text-align: left;
        padding: .5rem .5rem 1.25rem .5rem;
      }
      
      .hero-element--headline {
        line-height: 1.5;
        font-size: var(--font-size-md);
        font-weight: var(--font-weight-regular);
        z-index: 1;
      }
      
      .hero-element--headline__display {
        font-size: var(--font-size-2xl);
        font-weight: var(--font-weight-bold);
      }
      
      @media (min-width: 576px) {
        .hero-element--headline__display {
          text-transform: uppercase;
        }
      }
      
      .hero-element--copy {
        z-index: 1;
      }
      
      @media (min-width: 1200px) {
        .hero-element--headline__display {
          font-size: var(--font-size-display);
          padding: 1em 0 0 0;
        }
      }
      
      .hero-element--copy {
        line-height: 1.5;
        font-size: var(--font-size-root);
      }
      
      @media (min-width: 992px) {
        .hero-element--headline {
          font-size: var(--font-size-xl);
        }
      
        .hero-element--copy {
          line-height: 1.7;
        }
      
      }
      
      .hero-firmen-element--img:after {
        content: '';
        background-color: rgba(var(--wh-brand-blue), 1);
        height: 100%;
        width: 90%;
        position: absolute;
        top: 0;
        right: 0;
        background-blend-mode: multiply;
        background-size: cover;
        background-image: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/WerkzeugHERO/Bilder/lp/firmenkunde/wh-firmenkunde-man-bw.png);
          background-position: right;
      }
      
      .hero-ego-power-element--img:after {
        content: '';
        height: 100%;
        width: 90%;
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
        background-image: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/WerkzeugHERO/Bilder/lp/ego-power/ego-power-battery.png);
          background-position: center;
      }
      
      /*  landingpage card  */
      .category-29904 .widget.widget-code.widget-none {
        padding: 0;
        margin: 0;
      }
      
      @media (min-width: 768px) {
        .container-overlap {
          margin-top: -20rem;
        }
      }
      
      .wh-card {
        background-color: #fff;
        -moz-border-radius: var(--border-radius-sm);
        -webkit-border-radius: var(--border-radius-sm);
        border-radius: var(--border-radius-sm);
        -moz-box-shadow: 0 6px 10px rgba(var(--wh-gray-75), 0.4), 0 0 6px rgba(var(--wh-gray-75), 0.3);
        -webkit-box-shadow: 0 6px 10px rgba(var(--wh-gray-75), 0.4), 0 0 6px rgba(var(--wh-gray-75), 0.3);
        box-shadow: 0 6px 10px rgba(var(--wh-gray-75), 0.4), 0 0 6px rgba(var(--wh-gray-75), 0.3);
        color: rgba(0, 0, 0, .87);
        margin: 8px;
        overflow: hidden;
        position: relative;
        transition: .3s transform cubic-bezier(var(--smooth-normal-cubic)), .3s box-shadow, .3s -webkit-transform cubic-bezier(var(--smooth-normal-cubic));
      }
      
      .wh-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(var(--wh-gray-75), 0.4), 0 4px 8px rgba(var(--wh-gray-75), 0.3);
      }
      
      .wh-card::after {
        clear: both;
      }
      
      .wh-card::after, .wh-card::before {
        content: "";
        display: block;
      }
      
      .wh-card-content {
        padding: 8px 16px 16px 16px;
        text-align: center;
      }
      
      .primary-text {
        margin-top: 12px;
        text-align: center;
        font-size: var(--font-size-sm);
        text-transform: uppercase;
        min-height: 56px;
      }
      
      .supporting-text {
        padding-top: 0;
        background-color: rgba(var(--wh-brand-orange));
        display: inline;
        padding: 8px;
        color: white;
      }
      
      .media {
        position: relative;
      }
      
      [class*='media--'] {
        height: 0;
        overflow: hidden;
      }
      
      .media--3-2 > img {
        height: auto;
        left: 50%;
        top: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: unset;
      }
      
      .media.media--3-2 {
        display: none;
      }
      
      @media (min-width: 576px) {
        .media.media--3-2 {
          display: block;
        }
      }
      
      @media (min-width: 768px) {
        .media--3-2 > img {
          height: auto;
          left: 50%;
          top: 50%;
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          width: 90%;
        }
      }
      
      .media--3-2 img {
        position: absolute;
      }
      
      .media--3-2 {
        padding-bottom: 66.66%;
      }
      
      /* wh shape card */
      .wh-card-bkgr-shape:before {
        content: '';
        position: absolute;
        background: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/WerkzeugHERO/Ci/elements/wh-shape-lightblue.svg) no-repeat;
          top: -20%;
        left: -2%;
        background-size: 500px 500px;
        background-position: 107% 100%;
        z-index: 0;
        width: 100%;
        height: 100%;
        transform: rotate(10deg);
      }
      
      /*  ./ landingpage card  */
      .wh-lp-category--content {
        min-height: 400px;
        background-size: cover;
        background-position: center center;
        padding: 2rem 1.5rem;
      }
      
      .wh-lp-category--content:before {
        content: '';
        width: 100%;
        height: 100%;
        background-color: rgba(var(--wh-gray-100), .75);
        position: absolute;
        top: 0;
        left: 0;
      }
      
      .hero-wrapper {
        overflow: hidden;
        position: relative;
      }
      
      .wh-lp-category--header-block:after {
        content: '';
        position: absolute;
        bottom: -10%;
        left: 0;
        width: 40%;
        height: 16px;
        background-color: white;
        margin: 0 16px;
      }
      
      .ego.wh-lp-category--hero-image:before {
        content: "";
        position: absolute;
        width: 135%;
        height: 135%;
        bottom: 60%;
        left: -50%;
        z-index: -1;
        background: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/WerkzeugHERO/Bilder/general/wh-shape-ego-green.svg) no-repeat;
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
        background-position: center center;
      }
      
      .qbrick.wh-lp-category--hero-image:before {
        content: "";
        position: absolute;
        width: 135%;
        height: 135%;
        bottom: 60%;
        left: -50%;
        z-index: -1;
        background: url(https://cdn02.plentymarkets.com/2r78zj1ma0nn/frontend/wh-shape-qbrick.svg) no-repeat;
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
        background-position: center center;
      }
      
      
      .container-fluid-no-pad .widget.widget-item-list.widget-primary {
        margin: 0 1rem;
        padding: 0 1rem;
      }
      
      @media (min-width: 1200px) {
        .container-fluid-no-pad .widget.widget-item-list.widget-primary {
          margin: 0 4rem;
          padding: 0 4rem;
        }
      }
      
      .anchor-position::before {
        display: block;
        content: "";
        height: 56px;
        margin-top: -56px;
        visibility: hidden;
      }
      
      .wh-iframe-video {
        height: 200px;
      }
      
      @media (min-width: 576px) {
        .wh-iframe-video {
          height: 300px;
        }
      }
      
      @media (min-width: 768px) {
        .wh-iframe-video {
          height: 400px;
        }
      }
      
        @media (min-width: 1200px) {
          .wh-iframe-video {
            height: 500px;
          }
        }
      
        /*---------- ./ firmenkunde landingpage ----------*/
      
        /*---------- express checkout ----------*/
      
        .amzPayButton{
          display: inline;
        }
        #add-item-to-basket-overlay .modal-content .amzPayButton{
          position: absolute;
          bottom: 24px;
          right: 200px;
        }
        #ppButton {
          display: inline;
          margin: 0 16px 8px 0;
          cursor: pointer;
          float: left;
        }
        #add-item-to-basket-overlay .modal-content #ppButton {
          justify-content: flex-end;
          display: flex;
          margin: 8px 16px 24px 16px;
      }
      
        @media (min-width: 200px){
          #paymentMethodContainer .paymentMethodRow:nth-child(9) .detailsText:after{
            content: '\A Für Firmenkunden nur nach Registrierung!' !important;
            font-weight: var(--font-weight-bold) !important;
            white-space: pre-wrap !important;
            color: #f9593a !important;
          }
        }
      
        /*---------- Action-Bar ----------*/
        @media (min-width: 200px){
          #bar {
      
            position: fixed;
            bottom: 0%;
            color: rgba(var(--wh-gray-0));
            left: 0;
            right: 0;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            overflow: hidden;
            box-shadow: 0 -1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
            transform: translate(0,50px);
            transition: box-shadow 0.5s cubic-bezier(.25,.8,.25,1) 0.1s;
            animation: fadeIn 0.5s ease-in-out 1s 1 alternate;
            animation-fill-mode: forwards;
            animation: fadeIn 0.5s ease-in-out 1s 1 alternate;
            animation-fill-mode: forwards;
            visibility: hidden;
            background: linear-gradient(to bottom right,rgba(var(--wh-gray-0),.95) 0%,rgba(var(--wh-gray-0)) 45% ,rgba(var(--wh-gray-25),.95) 100%);
            z-index: 1000;
            
            display: block;
          }
        }
      
      
        .wh-actionBar__fadeOut {
          animation: fadeOut 0.5s ease-in-out 1 alternate;
        }
      
        @keyframes fadeIn {
          0% {
            opacity: 0;
          }
      
          100% {
            visibility: visible;
            opacity: 1;
            transform: translate(0, 0);
          }
        }
      
        @keyframes fadeOut {
          0% {
            opacity: 1;
            visibility: visible;
            transform: translate(0, 0);
          }
      
          100% {
            opacity: 0;
            visibility: none;
            transform: translate(0, 155px);
          }
        }
      
        .wh-actionBar__graphic {
          display: flex;
          justify-content: center;
          margin: 16px 0 0 0;
        }
      
        .wh-actionBar__graphic-img {
          height: 80px;
          width: auto;
          filter: drop-shadow(0px 0px 8px rgba(var(--wh-gray-50)));
        }
      
        .wh-actionBar__content {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: space-between;
          padding: 0;
        }
      
        .wh-actionBar__text {
          padding: 0;
          text-align: center;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          color: rgba(var(--wh-gray-100));
        }
        .wh-actionBar__subHeader {
          font-size: var(--font-size-xs);
        }
        .wh-actionBar__cta {
          margin: 0 16px 24px 16px;
        }
      
        .wh-actionBar__button {
          display: block;
          width: 186px;
          position: relative;
          text-transform: uppercase;
          text-decoration: none;
          letter-spacing: 1.2;
          font-weight: 700;
          font-size: 14px;
          color: #ecf0f1;
          padding: 16px 14px;
          border-radius: var(--border-radius-sm);
          transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
        }
      
        .wh-actionBar__button:hover {
          text-decoration: none;
          color: #fff;
        }
      
        .wh-actionBar__button:active {
          transform: translate(0, 6px);
        }
      
        .wh-actionBar__button--blue {
          background: rgba(var(--wh-brand-blue), .85);
          transition: background 300ms ease-in-out;
        }
      
        .wh-actionBar__button--blue:hover {
          background: rgba(var(--wh-brand-blue), 1);
        }
      
        .wh-actionBar__button--blue:active {
          background: rgba(var(--wh-brand-blue-dark), 1);
        }
      
        .wh-actionBar__flagX {
          position: absolute;
          top: 0;
          right: 0;
          margin: 16px 16px;
          color: white;
          background-color: rgba(var(--wh-gray-25),.7);
          padding: 6px 12px;
          border-radius: 100px;
          font-weight: 700;
          font-size: var(--font-size-root);
        }
      
        @media only screen and (min-width: 576px) {
          #bar:after {
            top: -200px;
            width: 570px;
          }
      
          .wh-actionBar__graphic-img {
            height: 88px;
            margin-top: 0;
          }
        }
      
        @media only screen and (min-width: 768px) {
          .wh-actionBar__content {
            flex-direction: row;
            align-items: center;
            padding-left: 0px;
          }
      
          .wh-actionBar__text {
            padding-left: 40px;
            max-width: 700px;
            text-align: left;
          }
      
          .wh-actionBar__graphic-img {
            margin-top: 0;
            vertical-align: middle;
            height: 96px;
            width: auto;
          }
      
          .wh-actionBar__cta {
            margin: 0;
          }
        }
      
        @media only screen and (min-width: 992px) {
          #bar:after {
            top: -150px;
            right: -280px;
            width: 500px;
          }
      
          .wh-actionBar__cta {
            margin: 16px 0;
          }
        }
      
        @media only screen and (min-width: 1200px) {
          .wh-actionBar__graphic-img {
            height: 150px;
            width: auto;
            position: absolute;
            transform: translate(-30%,-85%);
          }
      
          #bar {
            overflow: visible;
          }
      
          #bar:after {
            display: none;
          }
        }
      
        .wh-btn-strong{
          font-weight: var(--font-weight-bold);
          letter-spacing: 1px;
        }
      
        #gscontainer{
          display: none;
        }
      
      @media (min-width: 992px){
        #gscontainer{
          display: block;
        }
      }
      
        .wh-gs-ausgabe{
          background-color: rgba(var(--wh-brand-blue));
          color: rgba(var(--wh-gray-0));
          display: flex;
          justify-content: center;
          align-items: center;
          padding: 4px;
        }

      /*---------- CURRENT ----------

      .container-fluid.wh-actionBar{
      display: none !important;
      }
      #gscontainer{
      display: none !important;
      }

      */
   /* amazon express button produktseite */
  .amzPayButton.articleCheckout {
    max-width: 143px;
    margin: 0 0 8px 0 !important;
    padding: 0;
    float: left !important;
  }
      
    /* youtube-video  content wurde in shop-builder eingefügt. wird aktuell (26.11.2019) nicht mehr angezeigt.  */
    
    .yt-container {
      display: none;
      position: relative; 
      width: 100%; 
      height: 0; 
      padding-bottom: 56.25%;
      }
      
      .yt-video {
      display: none;
      position: absolute; 
      top: 0; 
      left: 0; 
      width: 100%;
      height: 100%; 
      }