:root {
  --ci: #008ebd;
  --dci: #007297;
  --hci: #e2f7ff;
  --cigelb: #ffda11;
  --special: #00ffc0;
  --text: #212529;
  --hgrau: #f8f9fa;
  --mgrau: #e3e7eb;
  --grau: #f2f2f2;
  --dgrau: #212121;
}

html {
  scroll-padding-top: 150px;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #000;
}

h2 {
  line-height: 1.3;
}

.p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: custom-font, helvetica, arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
}

.container-max,
.container {
  max-width: 1440px;
}

#page-body {
  background-color: #fff;
}

@media (max-width: 991px) {
  .page-singleitem #page-body {
    background-color: #fbfbfb;
  }
}

.contentLink {
  color: var(--ci);
  font-weight: 700;
}

.contentLink:hover {
  color: var(--dci);
  text-decoration: underline;
}

.contentLinkHome {
  color: var(--dci);
  font-weight: 700;
}

.contentLinkHome:hover {
  color: var(--dci);
  text-decoration: underline;
}

/* vue-app Abstand */
.page-home #vue-app,
.page-category-content #vue-app,
.page-contact #vue-app,
.page-my-account #vue-app,
.page-basket #vue-app,
.page-checkout #vue-app,
.page-category-item #vue-app,
.page-search #vue-app,
.page-singleitem #vue-app,
.page-password-reset #vue-app {
  margin-top: 98px;
}

.page-checkout {
  margin-top: 0;
}

@media (max-width: 991px) {

  .page-home #vue-app,
  .page-category-content #vue-app,
  .page-contact #vue-app,
  .page-my-account #vue-app,
  .page-basket #vue-app,
  .page-category-item #vue-app,
  .page-search #vue-app,
  .page-singleitem #vue-app,
  .page-password-reset #vue-app {
    margin-top: 62px;
  }

  .page-checkout #vue-app {
    margin-top: 80px;
  }
}

@media (max-width: 600px) {

  .page-home #vue-app,
  .page-category-content #vue-app,
  .page-contact #vue-app,
  .page-my-account #vue-app,
  .page-basket #vue-app,
  .page-category-item #vue-app,
  .page-search #vue-app,
  .page-singleitem #vue-app,
  .page-password-reset #vue-app {
    margin-top: 60px;
  }
}

@media (max-width: 423px) {

  .page-home #vue-app,
  .page-category-content #vue-app,
  .page-contact #vue-app,
  .page-my-account #vue-app,
  .page-basket #vue-app,
  .page-category-item #vue-app,
  .page-search #vue-app,
  .page-singleitem #vue-app,
  .page-password-reset #vue-app {
    margin-top: 47px;
  }
}

.page-login #vue-app,
.page-register #vue-app,
.page-checkout #vue-app {
  margin-top: 80px;
}

@media (max-width: 600px) and (min-width: 346px) {

  .page-login #vue-app,
  .page-register #vue-app,
  .page-checkout #vue-app {
    margin-top: 60px;
  }
}

@media (max-width: 345px) {
  header .checkoutContainer .row.align-items-center.justify-content-between.position-relative {
    flex-direction: column;
    gap: 5px;
  }

  .page-login header #page-header-parent,
  .page-register header #page-header-parent,
  .page-checkout header #page-header-parent {
    height: 70px !important;
  }
}

@media (min-width: 576px) {
  .control-user .dropdown .dropdown-toggle::after {
    content: "Konto" !important;
    border: none !important;
    font-size: 12px;
    color: #fff;
    margin-left: -2px;
    margin: 0 0 0 -2px;
  }
}

@media (max-width: 575px) {
  .control-user .dropdown .dropdown-toggle::after {
    display: none;
  }
}

/* Buttons */
.btn-primary {
  /* background-color: var(--ci); */
  border-color: var(--ci);
  color: #fff;
  background: linear-gradient(270deg, var(--dci), var(--ci));
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--dci);
  border-color: var(--dci);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff
}

.btn-outline-primary {
  color: #000;
  border-color: #e3e3e3;
}

.single .btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  color: var(--text);
  background-color: var(--mgrau);
  border-color: var(--mgrau);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-secondary {
  background-color: var(--mgrau);
  border-color: var(--mgrau);
  color: var(--text);
}

.single .btn-secondary {
  font-weight: 700;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-seconday:active {
  background-color: var(--hgrau);
  border-color: var(--hgrau);
  color: #000;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.single .btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle {
  color: var(--text);
  background-color: var(--hgrau);
  border-color: var(--hgrau);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Header */
.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
}

.control-basket .toggle-basket-preview {
  background-color: transparent;
}

.page-content.container-max.contact.pt-3.bg-white {
  background-color: #fbfbfb !important;
}

.cmp-contact {
  padding-bottom: 25px;
}

header .headerBorder {
  /* background: var(--ci); */
  background: linear-gradient(270deg, var(--dci), var(--ci));
}

header#page-header {
  background-color: #f9f9f9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 8px 6px -6px rgb(0 0 0 / 25%);
}

header #page-header-parent {
  padding-top: 6px;
  padding-bottom: 6px;
}

header .navbar {
  background-color: transparent;
}

header #search {
  flex: 1 1 0;
  max-width: 450px;
}

header #search .search-input {
  font-size: 1rem;
  border-radius: .1rem 0 0 .1rem;
  /* -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1); */
  /* box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1); */
  padding-top: .4rem !important;
  padding-bottom: .4rem !important;
  padding-left: 20px !important;
  line-height: 1.5;
}

header #search .search-submit {
  font-size: 1rem;
  color: #fff;
  background-color: #ffffff;
  border-radius: 0 .1rem .1rem 0;
}

header .kontaktfeldText .kontaktfeldTextTop,
header .kontaktfeldText .kontaktfeldTextBottom {
  color: #fff;
  margin-bottom: 0;
}

header .kontaktfeldText .kontaktfeldTextTop {
  font-weight: 700;
  font-size: 16px;
}

header .KontaktfeldHeader {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

header .KontaktfeldHeader i {
  font-size: 35px;
  color: #fff;
}

header .KontaktfeldHeader .kontakt-info {
  font-size: 14px;
}

header .KontaktfeldHeader .kontakt-info small {
  display: block;
}

header .KontaktfeldHeader .telefonnummer {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

header .KontaktfeldHeader .telefonnummer:hover {
  text-decoration: underline;
  color: #fff;
}

header #controlsList .nav-link, .menu-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  min-height: 48px;
  min-width: 48px;
  justify-content: center;
}

header #controlsList .nav-link>.fa,
.menu-close>.fa {
  color: #fff;
  font-size: 20px;
}

header #controlsList .nav-link .small,
.menu-close .small {
  font-size: 12px;
  color: #fff;
}

header #controlsList .nav-link>.fa:focus,
header #controlsList .nav-link>.fa:active,
header #controlsList .nav-link>.fa:hover {
  color: #bdbdbd;
}

header #controlsList .nav-link[aria-expanded="true"]>.fa {
  color: #fff;
}

.controls-list .nav-link span {
  color: #757575;
}

.controls-list .nav-link:hover {
  color: #212529;
  background-color: transparent;
  border-radius: 10%;
}

header #controlsList .nav-link:hover .fa {
  color: #bdbdbd;
}

.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: unset;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-radius: unset;
}

.top-bar-items .fa-shopping-cart {
  color: #fff;
}

#search .fa-search {
  color: #757575;
}

.main-navbar-collapsable .mainmenu {
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  justify-content: space-between;
  display: flex;
  padding: 0;
  margin: 0;
  font-weight: 700;
}

.main-navbar-collapsable .mainmenu>li>a {
  color: #fff;
  padding: 6px 10px;
  font-size: 1.1rem;
}

@media (max-width: 1240px) {
  .main-navbar-collapsable .mainmenu>li>a {
    font-size: 13px;
  }
}

.main-navbar-collapsable .mainmenu>li>a:hover,
.main-navbar-collapsable .mainmenu>li>a:focus,
.main-navbar-collapsable .mainmenu>li>a:active {
  color: #303030;
  background-color: transparent;
}

.main-navbar-collapsable .mainmenu>li:hover>a,
.main-navbar-collapsable .mainmenu>li.hover>a {
  color: #303030;
  border-bottom: 2px solid var(--dci);
}

/* .main-navbar-collapsable a {
  border-bottom: 2px solid #f8f9fa;
} */
.main-navbar-collapsable a:hover,
.main-navbar-collapsable a:focus,
.main-navbar-collapsable a:active {
  /* border-bottom: 2px solid; */
  border-color: #fff;
  color: #fff;
  background-color: var(--dci);
}

.main-navbar-collapsable li {
  display: block;
  margin-right: 0;
  padding: 3px 0 0 0;
}

.main-navbar-collapsable .dropdown li {
  display: block;
  margin-right: 0;
  padding: 0;
}

@media (max-width: 1080px) {
  .main-navbar-collapsable li {
    margin-right: 29px;
  }
}

/* .main-navbar-collapsable .mainmenu>li:last-child>a {
  color: var(--special);
} */
/* .main-navbar-collapsable .mainmenu>li:last-child>a:hover {
  color: var(--special) !important;
} */
.main-navbar-collapsable .mainmenu>li:hover {
  background-color: transparent;
}

.main-navbar-collapsable .mainmenu>li ul {
  position: absolute;
  top: 100%;
  background: #f8f9fa;
  z-index: 999;
  display: none;
  width: 100%;
}

.main-navbar-collapsable .mainmenu>li:hover ul {
  display: block;
}

.headerLogoLink {
  height: 100%;
  display: block;
}

header .controls-list .list-inline-item {
  margin-right: 8px;
  font-size: .8rem;
}

header .header-right .controls-list .list-inline-item {
  margin-right: 8px;
  font-size: .8rem;
}

header .header-right .controls-list .list-inline-item:last-child {
  margin-right: 15px;
  font-size: .8rem;
}

@media (max-width: 430px) {
  header .header-right .controls-list .list-inline-item:last-child {
    margin-right: 8px;
    font-size: .8rem;
  }
}

@media (min-width: 992px) {
  .hidden-over-991 {
    display: none !important;
  }

  #mainNavbarCollapsable .closebar {
    display: none;
  }
}

@media (max-width: 991px) {
  .main-navbar-collapsable .mainmenu>li>ul {
    position: relative;
    top: 0;
    left: 0;
    background: transparent;
    width: 100%;
    z-index: 999;
    display: block;
  }

  .main-navbar-collapsable {
    display: none !important;
  }

  .menu-open .main-navbar-collapsable {
    left: 0;
  }

  .main-navbar-collapsable a {
    display: inline-block;
    width: 100%;
    border-bottom: unset;
  }

  .main-navbar-collapsable a:hover,
  .main-navbar-collapsable a:focus,
  .main-navbar-collapsable a:active {
    border-bottom: unset;
    border-color: var(--dci);
    color: #fff;
    background-color: var(--dci);
  }

  .main-navbar-collapsable .mainmenu {
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start;
    height: auto;
  }

  .main-navbar-collapsable li {
    display: block;
    position: relative !important;
    max-width: 100%;
  }

  .main-navbar-collapsable .mainmenu>li {
    width: 100%;
  }

  .nav-link {
    color: #fff;
  }

  .main-navbar-collapsable .mainmenu>li>a {
    color: #fff;
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 0 20px;
    text-align: left;
    min-height: 60px;
  }

  .main-navbar-collapsable button.close {
    display: none;
  }

  .controls-list .nav-link:hover {
    color: #ffffff;
    background-color: transparent;
  }

  header #controlsList .nav-link>.fa:focus,
  header #controlsList .nav-link>.fa:active,
  header #controlsList .nav-link>.fa:hover {
    color: #bdbdbd;
  }

  .main-navbar-collapsable .mainmenu>li:hover>a {
    color: #fff;
  }

  .main-navbar-collapsable .mainmenu>li:hover>a,
  .main-navbar-collapsable .mainmenu>li.hover>a {
    color: #ffffff;
    border-bottom: 0;
  }

  .main-navbar-collapsable a {
    display: inline-block;
    width: 100%;
    border-bottom: unset;
    font-size: 15px;
    padding: 10px 20px 25px 40px;
  }

  .main-navbar-collapsable .mainmenu>li>a:hover,
  .main-navbar-collapsable .mainmenu>li>a:focus,
  .main-navbar-collapsable .mainmenu>li>a:active {
    color: #fff;
    background-color: var(--dci);
  }

  .toggleOnMobile {
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    transition: 0.3s;
  }

  .toggleOnMobile.open {
    height: auto;
    padding: 0 10px;
  }

  header #search {
    position: fixed;
    top: 65px;
    z-index: 9;
    background: var(--ci);
    /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
    width: 100%;
    flex: 0 0 100%;
    left: 0;
    max-width: 100%;
    padding: 0;
    height: 0;
    visibility: hidden;
    transition: 0.3s;
    overflow: hidden;
  }

  header #search.open {
    height: auto;
    visibility: visible;
    padding: 5px 0;
  }

  header #search .search-input {
    padding: 7px 10px !important;
    -webkit-box-shadow: inset 0 1px 5px 1px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 5px 1px rgba(0, 0, 0, .1);
  }
}

body.basket-open,
.modal-open {
  overflow: visible;
  padding-right: 0 !important
}

.page-login form[id^="login"]::after,
#login-modal-wrapper .modal-body::after {
  content: '* Pflichtfelder';
  margin-top: 10px;
  display: block;
}

@media (max-width: 600px) {
  #logo {
    flex: 0 1 auto;
    margin-left: 5px !important;
  }

  #logo img {
    max-width: 180px;
    height: auto;
  }

  header #search {
    top: 50px;
  }
}

@media (max-width: 423px) {
  header #controlsList .nav-link, .menu-close {
    min-height: 35px;
    min-width: 35px;
  }
}

@media (max-width: 405px) {

  header #controlsList .nav-link,
  .menu-close {
    padding: 0;
  }
}

@media (max-width: 380px) {
  header #controlsList .nav-link {
    padding: 0 0.6rem 0 .4rem;
  }

  header #controlsList .nav-link, .menu-close {
    min-height: 29px;
    min-width: 29px;
  }

  header .controls-list .list-inline-item,
  header .header-right .controls-list .list-inline-item {
    margin-right: 0;
  }
}

@media (max-width: 360px) {
  .main-navbar-collapsable .mainmenu>li>a {
    padding: 0 100px 0 20px;
  }

  .main-navbar-collapsable a {
    padding: 10px 135px 25px 30px;
  }
}

@media (max-width: 345px) {
  header #controlsList .nav-link {
    padding: 0 0.6rem 0 .4rem;
  }
}

/* Menüpunkt Hover-Effekte */
.main-navbar-collapsable .mainmenu>li>a {
  position: relative;
  color: #fff;
  text-decoration: none;
}

.main-navbar-collapsable .mainmenu>li>a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.2s ease;
  transform: scaleX(0);
  transform-origin: center;
}

.main-navbar-collapsable .mainmenu>li:hover>a::after {
  transform: scaleX(1);
  left: 0;
  width: 100%;
}

.main-navbar-collapsable .mainmenu>li:hover>a,
.main-navbar-collapsable .mainmenu>li>a:hover,
.main-navbar-collapsable .mainmenu>li>a:focus,
.main-navbar-collapsable .mainmenu>li>a:active {
  color: #fff;
  background-color: transparent;
  border-bottom: none;
}

/* .main-navbar-collapsable .mainmenu>li:last-child:hover>a {
  color: var(--special);
} */
.warenkorbAnzahl>span {
  display: none;
}

.warenkorbAnzahl>span.basket-badge {
  display: flex;
}

.basket-badge {
  top: 0px;
  right: 10px;
  background-color: #ffffff;
  color: var(--dci) !important;
  font-size: 1rem !important;
  width: 20px;
  height: 20px;
  display: flex;
  padding: .25em .4em;
  padding-left: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 50% !important;
  font-weight: 700 !important;
  position: absolute;
  border: 2px solid var(--dci);
}

@media (max-width: 600px) {
  .basket-badge {
    top: 10px;
    right: 27px;
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 400px) {
  .basket-badge {
    right: 20px;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  background: #f2f2f2;
  /* background: #f8f8f8; */
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: .8rem 1rem .2rem 1rem !important;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  align-items: center;
}

.fa.fa-home {
  color: #000;
  font-size: 16px;
  padding-top: 2px;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #000;
}

.breadcrumb-item.active {
  color: #000;
  font-size: .9rem;
}

.breadcrumb-item a {
  color: #000;
  font-size: .9rem;
  text-underline-offset: 3px;
  text-decoration: underline;
}

@media(max-width: 575px) {
  .breadcrumb-item.active {
    font-size: .9rem;
  }

  .breadcrumb-item a {
    font-size: .9rem;
  }
}

@media (max-width: 410px) {
  .breadcrumb {
    padding: 0.3rem 1rem !important;
  }

  .breadcrumb-item a,
  .breadcrumb-item.active {
    font-size: .8rem;
  }
}

/* Mobiles Burgermenu */
.mobileMenuHomeButton {
  height: 100%;
  display: inline-block;
}

.mobile-navigation .card {
  min-height: 40px;
  display: flex;
  justify-content: center;
}

.mobile-navigation .card-body {
  padding: 0 1rem;
  background: #ffffff;
}

.mobile-navigation .fa-plus:before {
  color: var(--ci);
}

.mobileMenuLevelOne,
.mobileMenuLevelTwo {
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  min-height: 40px;
}

.mobileMenuLevelOne a,
.mobileMenuLevelTwo a,
.mobileMenuUl a {
  flex: 1 0 80%;
}

.mobileMenuLevelOne span,
.mobileMenuLevelTwo span {
  flex: 1 0 20%;
}

.mobileMenuUl {
  display: grid;
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

.mobileMenuUl li {
  display: flex;
  line-height: 35px;
  border-bottom: 1px solid #dfdfdf;
  padding: 3px 0 2px 0;
}

.mobileMenuUl li:last-of-type {
  border-bottom: 1px solid transparent;
  margin-bottom: 0;
}

.mobileMenuUlBottomLink {
  padding: 0.3rem 0;
}

.mobileMenuUlBottomLink i {
  margin-right: .5rem;
  width: 15px;
  text-align: center;
}

.mobileMenuAngebotHeadline {
  background: linear-gradient(270deg, var(--ci), var(--dci));
  color: #fff;
  padding: 1.2rem 1rem;
  margin-bottom: 0;
  margin-top: 1.5rem;
  border-bottom: 2px solid var(--dci);
}

.mobileMenuAngebot .imgWrapper {
  background: linear-gradient(270deg, var(--ci), var(--dci));
}

.mobileMenuSubHeadline {
  background: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  border-bottom: 1px solid var(--ci);
  line-height: 0.1em;
  margin: 10px 0 20px;
}

.mobileMenuSubHeadline span {
  background: #fff;
  padding: 0 10px;
}

.mobileMenuAngebot {
  margin-bottom: 0;
  background: #fff;
}

.mobileMenuAngebot .homeAngeboteBanner {
  padding: 8px 5px;
  transform: unset;
  width: unset;
  position: unset;
  background-color: var(--dci);
}

.mobileMenuAngebot .homeAngeboteBanner p {
  text-align: center;
}

.autocomplete-suggestions {
  position: absolute;
  z-index: 1070;
  max-height: 325px;
}

.autocomplete-suggestions .text-truncate {
  font-size: .9rem;
}

@media (max-width: 991px) {
  .autocomplete-suggestions {
    position: relative;
  }
}

.mobile-navigation {
  box-shadow: 0 0 6px 5px rgb(0 0 0 / 25%);
  background: #fff;
}

.mobile-navigation.open {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  max-width: 430px;
  overflow-y: auto;
}

body.menu-is-visible {
  position: relative;
  overflow-y: hidden;
}

.mobile-navigation .breadcrumb {
  display: inline-block !important;
  width: 100%;
  line-height: .7;
  letter-spacing: 0.02em;
  font-size: .8em;
  background: linear-gradient(270deg, var(--ci), var(--dci));
  padding: .2rem 1rem .2rem .2rem !important;
}

.mobile-navigation .breadcrumb li.btn-close {
  padding-top: 1.3em;
}

.mobile-navigation.open .fa.fa-home {
  color: #ffffff;
  font-size: 20px;
  padding-left: 10px;
}

.mobile-navigation .mainmenu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  cursor: pointer;
  line-height: .7;
  letter-spacing: 0.02em;
  font-size: 1.05em;
}

.mobile-navigation.open .search-input {
  font-size: 1.1rem;
  line-height: 1.6;
  border: 1px solid #e5e5e5;
  padding-top: .5rem;
  padding-bottom: .5rem;
  -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1);
}

.mobile-navigation.open .d-flex.flex-grow-1.position-relative {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.mobile-navigation.open .card .mobileMenuLevelOne a {
  color: #303030;
}

.mobile-navigation.open .card #headingSeven a {
  color: var(--dci);
}

@media(max-width: 991px) {
  .mobile-navigation .breadcrumb {
    color: #fff;
    margin-bottom: 0;
  }

  .mobile-navigation .breadcrumb li:not(:first-of-type) a::before {
    display: none;
  }
}

/* ===== CHECKOUT ===== */
#add-item-to-basket-overlay .modal {
  background: #00000045;
}

#add-item-to-basket-overlay .modal-dialog {
  max-width: 840px;
}

.addItemToBasketRow {
  display: flex;
  justify-content: center;
}

.addItemToBasketDivOne {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
}

#add-item-to-basket-overlay .modal-header, .basket-preview-header {
  border-bottom: none;
}

#add-item-to-basket-overlay .basketModalHeadline {
  font-weight: 700;
}

#add-item-to-basket-overlay .basketModalHeadlineBr {
  display: none;
}

#add-item-to-basket-overlay .basketModalQuantity {
  font-weight: 400;
}

@media (max-width: 400px) {
  #add-item-to-basket-overlay .basketModalQuantity {
    display: block;
  }
}

#add-item-to-basket-overlay .basketModalHeadline:before {
  display: inline-block;
  content: '✓';
  height: 30px;
  width: 30px;
  left: 5px;
  top: -1px;
  position: relative;
}

#add-item-to-basket-overlay .basketModalItemName {
  font-size: 1rem;
  margin-bottom: 0;
}

#add-item-to-basket-overlay .basketModalAttributes,
.page-basket .basketListAttributes,
.page-checkout .basketListAttributes {
  font-size: 95% !important;
}

.addItemToBasketAccessory {
  margin-bottom: 0;
}

#add-item-to-basket-overlay .basketModalPrice {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
}

#add-item-to-basket-overlay .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: unset;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: .75rem;
  border-top: none;
  flex-wrap: unset;
  flex-direction: column;
}

#add-item-to-basket-overlay .modalBasketButton {
  width: 98%;
  height: 45px;
  border-radius: 5px;
  position: relative;
  left: 3px;
}

#add-item-to-basket-overlay .modal-footer .btn-outline-primary {
  border-color: transparent;
  background: #eaeaea;
}

#add-item-to-basket-overlay .modal-footer .btn-outline-primary,
#add-item-to-basket-overlay .modal-footer .btn-primary {
  font-size: 1.15rem;
  align-content: center;
}

@media (max-width: 660px) {
  .addItemToBasketRow {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 500px) {

  #add-item-to-basket-overlay .modal-body .basketModalItemName,
  #add-item-to-basket-overlay .basketModalAttributes,
  .page-basket .basketListAttributes,
  .page-checkout .basketListAttributes {
    font-size: 1.2rem;
  }

  #add-item-to-basket-overlay .modal-footer .btn-outline-primary,
  #add-item-to-basket-overlay .modal-footer .btn-primary {
    font-size: 1.2rem;
  }
}

#add-item-to-basket-overlay .expressButtonText,
.page-basket .expressButtonText {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 10px;
}

.paypalSmartButtons div {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-basket .paypalSmartButtons.btn,
.basket-preview-wrapper .paypalSmartButtons.btn {
  padding: .5rem 0 !important;
}

.basket-preview-wrapper .basket-preview-content .item-list {
  max-height: 55vh;
}

.basket-preview-wrapper .basket-preview-content {
  background: linear-gradient(to bottom, white 60%, #f8f9fa 0%);
}

#add-item-to-basket-overlay .expressButtonText::before,
#add-item-to-basket-overlay .expressButtonText::after,
.page-basket .expressButtonText::before,
.page-basket .expressButtonText::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #c2c2c2;
}

#add-item-to-basket-overlay .expressButtonText::before,
.page-basket .expressButtonText::before {
  margin-right: 10px;
}

#add-item-to-basket-overlay .expressButtonText::after,
.page-basket .expressButtonText::after {
  margin-left: 10px;
}

..basket-preview-wrapper .basket-preview-footer>* {
  -webkit-box-flex: 1;
  -ms-flex: unset;
  flex: 1 0 40%;
}

/* .basket-preview-wrapper .btn-outline-primary,
.basket-preview-wrapper .btn-primary {
  width: 92%;
  margin-left: 25px;
} */
.page-basket .basketContainerMax,
.page-login .checkoutContainer,
.page-checkout .checkoutContainer,
.page-register .checkoutContainer {
  max-width: 1450px !important;
}

.page-login .checkoutFooterContainer,
.page-register .checkoutFooterContainer,
.page-checkout .checkoutFooterContainer {
  max-width: 900px !important;
  display: flex;
  flex-direction: column;
  margin-top: 10rem;
  margin-bottom: 2rem;
}

.page-login .checkoutFooterContainer img,
.page-register .checkoutFooterContainer img,
.page-checkout .checkoutFooterContainer img {
  width: 25%;
}

.page-basket .basketSumBlock,
.page-checkout .basketSumBlock,
.page-confirmation .basketSumBlock {
  background-color: #f6f6f6 !important;
}

.page-basket .basketSumBlockHeadline,
.page-basket .totalSum dt,
.page-basket .totalSum dt,
.page-checkout .basketSumBlockHeadline,
.page-checkout .totalSum dt,
.page-checkout .totalSum dt,
.basket-preview-wrapper .totalSum dt,
.basket-preview-wrapper .totalSum dt,
.page-confirmation .basketSumBlockHeadline,
.page-confirmation .totalSum dt,
.page-confirmation .totalSum dt {
  font-weight: 700;
  font-size: 1.2rem;
}

.page-basket .basketSumBlockSubline,
.page-checkout .basketSumBlockSubline {
  font-size: .8rem;
}

.page-basket .basketPaymentIcons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.page-basket .basket-payment-icon {
  width: 100%;
  height: 30px;
  padding: 6px;
  margin: 0 auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0px 0px 2px 0 rgb(0 0 0 / 40%);
}

.page-basket .basketSumBlockNote,
.page-checkout .basketSumBlockNote {
  text-align: center;
  font-size: .9rem;
  color: var(--dci);
  margin: 30px 0 200px 0;
}

.page-basket .basketSumBlockNote:before,
.page-checkout .basketSumBlockNote:before {
  display: inline-block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/schloss-icon.svg);
  background-repeat: no-repeat;
  height: 15px;
  width: 20px;
  left: 0px;
  top: 1px;
  position: relative;
  filter: invert(20%) sepia(94%) saturate(4098%) hue-rotate(106deg) brightness(97%) contrast(105%);
}

.headerSafeShopping {
  font-size: 1.2rem;
  color: #1d1d1d;
  margin-top: 2px;
  margin-bottom: 0;
}

.headerSafeShopping:before {
  display: inline-block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/schloss-icon.svg);
  background-repeat: no-repeat;
  height: 15px;
  width: 20px;
  left: 0px;
  top: 1px;
  position: relative;
}

@media (max-width: 380px) {
  .headerSafeShopping {
    font-size: .9rem;
  }
}

.page-login header #page-header-parent,
.page-register header #page-header-parent,
.page-checkout header #page-header-parent {
  padding-top: 6px !important;
}

.page-checkout div#page-body,
.page-checkout div.footer,
.page-basket div#page-body,
.page-basket div.footer {
  overflow-x: unset;
}

.page-checkout .basketSumBlock {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  width: 100%;
}

.page-basket .pageBasketSticky {
  position: -webkit-sticky;
  position: sticky;
  top: 155px;
  width: 100%;
}

@media (max-width:545px) {

  .page-login .login-view-title,
  .page-register h1 {
    font-size: 1.25rem !important;
  }

  .page-login .btn-primary,
  .page-basket .btn-primary,
  .page-checkout .btn-primary {
    height: 35px !important;
  }
}

.page-basket .basket-list-item .image-container,
.page-checkout .basket-list-item .image-container {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto;
  margin-right: 30px;
}

.page-checkout .basket-list-item .image-container {
  width: 120px;
}

.basket-preview-wrapper .basket-list-item .image-container {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 75px;
  margin-right: 15px;
}

.basket-preview-wrapper .basketListAttributes {
  font-size: 85% !important;
}

.basket-preview-wrapper .item-name {
  font-size: .9rem !important;
  color: #1b1b1b !important;
}

@media (max-width: 575px) {

  .basket-preview-wrapper .item-name,
  .basket-preview-wrapper .basketListAttributes {
    font-size: 1rem !important;
  }
}

.basket-preview-wrapper .basketReservationNote {
  display: none;
}

.basket-preview-wrapper .qty-box-container {
  height: 31px;
}

.basket-preview-wrapper .qty-box {
  margin-left: 0;
}

.basket-preview-wrapper .basketItemDelete {
  margin-top: 5px;
  display: block;
}

.page-basket .item-name,
.page-checkout .item-name,
.page-confirmation .item-name {
  font-size: 1rem;
}

.page-basket .text-primary,
.page-basket .color-primary,
.page-basket a.text-primary:hover,
.page-basket a.text-primary:focus,
.page-basket a.color-primary:focus,
.page-checkout .text-primary,
.page-checkout .color-primary,
.page-checkout a.text-primary:hover,
.page-checkout a.text-primary:focus,
.page-checkout a.color-primary:focus {
  color: #1b1b1b !important;
}

.basket-preview-wrapper .qty-box .qty-input {
  border-right: 1px solid #ced4da;
}

.page-basket .qty-box,
.page-checkout .qty-box {
  margin-left: unset;
}

.page-basket .qty-box .qty-input,
.page-checkout .qty-box .qty-input {
  width: 40px;
  height: 32px;
}

.page-basket .basketItemDelete,
.page-checkout .basketItemDelete {
  color: #9CA9B9;
  display: block;
}

.page-basket .basketReservationNote,
.page-login .basketReservationNote {
  font-size: .875rem;
  color: #53595F;
}

.page-checkout .basketReservationNote {
  display: none;
}

.page-basket .basketReservationNote:before,
.page-checkout .basketReservationNote:before,
.page-login .basketReservationNote:before {
  display: inline-block;
  content: 'i';
  color: #ffffff;
  background-color: #a2aebd;
  text-align: center;
  line-height: 16px;
  border-radius: 50%;
  height: 13px;
  width: 13px;
  font-size: 13px;
  left: -2px;
  margin-right: 2px;
  top: 1px;
  position: relative;
}

.basketListPrice {
  font-size: 1rem;
}

.progress-container {
  width: 100%;
  margin: 5px 0 20px 0;
  display: flex;
  justify-content: center;
  background: white;
}

.progress {
  display: flex;
  align-items: center;
  width: 80%;
  height: auto;
  position: relative;
  /* margin-top: 15px; */
  background: #fff;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.progress-step>a,
.progress-step>a:hover,
.progress-step>a:active,
.progress-step>a:focus {
  color: #1b1b1b;
  display: inline;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  top: 29%;
  left: 0%;
  transform: translateX(50%);
  z-index: 1;
}

@media (max-width: 610px) {
  .progress-step:not(:last-child)::after {
    top: 22%;
  }
}

@media (max-width: 420px) {
  .page-checkout .basket-list-item .image-container {
    margin-right: 15px;
  }
}

.progress-circle {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.progress-step.active .progress-circle {
  background-color: var(--ci);
  color: #fff;
  border-color: var(--ci);
}

.progress-step.completed .progress-circle {
  background-color: var(--ci);
  color: #1b1b1b;
  border-color: var(--ci);
  position: relative;
}

.progress-step.completed .progress-circle::before {
  content: '✓';
  color: #fff;
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.progress-label {
  margin-top: 2px;
  font-size: 14px;
  color: #666;
}

.progress-step.active .progress-label {
  color: #1b1b1b;
}

.page-basket #ppButton {
  text-align: center;
}

.page-basket .btn-primary,
.page-checkout .btn-primary {
  background-color: var(--ci);
  border-color: var(--ci);
  color: #fff;
  height: 40px;
  align-content: center;
  font-size: 1.2rem;
}

.page-confirmation .bg-primary {
  background-color: var(--ci);
}

.page-basket .basketListButtonNote {
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

.basket-preview-wrapper .btn-outline-primary {
  color: #000;
  border-color: transparent;
  align-content: center;
  background: #d9d9d9;
}

.basket-preview-wrapper .fa-shopping-cart {
  color: #1b1b1b !important;
}

.page-basket .basketListAttributesGroup .basketListAttributes:last-of-type .basketListAttributesPipe {
  visibility: hidden;
}

/* Netto-Werte ausblenden */
.cmp-totals .component-loading [data-testing="item-sum-net"],
.cmp-totals .component-loading [data-testing="shipping-amount-net"],
.cmp-totals .component-loading [data-testing="basket-sub-amount"],
.cmp-totals .component-loading [data-testing="basket-amount-net"],
.cmp-totals .component-loading [data-testing="vat-amount"],
/* Die dt-Elemente, die vor den versteckten dd-Elementen stehen */
.cmp-totals .component-loading dt:has(+ dd[data-testing="item-sum-net"]),
.cmp-totals .component-loading dt:has(+ dd[data-testing="shipping-amount-net"]),
.cmp-totals .component-loading dt:has(+ dd[data-testing="basket-sub-amount"]),
.cmp-totals .component-loading dt:has(+ dd[data-testing="vat-amount"]),
.cmp-totals .component-loading dt:has(+ dd[data-testing="basket-amount-net"]) {
  display: none;
}

/* Zwischensumme und anderen Trennlinien ausblenden außer der letzten */
.cmp-totals .component-loading hr:not(.totalSum hr) {
  display: none;
}

/* Gewichtung für Versandkosten anpassen - sowohl dt als auch dd */
.cmp-totals .component-loading dt:has(+ dd[data-testing="shipping-amount"]),
.cmp-totals .component-loading [data-testing="shipping-amount"] {
  font-weight: 400 !important;
}

/* Gutschein Style */
.cmp-totals .component-loading dt:has(+ dd[data-testing="promotion-coupon"]),
.cmp-totals .component-loading [data-testing="promotion-coupon"] {
  color: green !important;
}

.wish-container {
  border-radius: 5px;
  margin-bottom: 15px;
  margin-top: 1.5rem;
}

.wish-checkbox {
  display: none;
}

.wish-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
}

.wish-label h5 {
  margin: 0;
}

.wish-label::after {
  font-family: "FontAwesome";
  content: "\f078";
  font-size: 12px;
  transition: transform 0.3s ease;
  position: relative;
  left: 10px;
  color: #53595F;
}

.wish-checkbox:checked+.wish-label::after {
  transform: rotate(180deg);
}

.wish-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0;
}

.page-checkout .cmp-contact {
  margin-bottom: 10px;
  max-height: 50px;
}

.wish-checkbox:checked+.wish-label+.wish-content {
  max-height: 70px;
}

.wish-content p {
  margin-top: 10px;
  color: #666;
  font-size: 14px;
}

.page-basket .component-loading.with-icon.refreshing dl,
.basket-preview-wrapper .component-loading.with-icon.refreshing dl,
.page-checkout .component-loading.with-icon.refreshing dl {
  margin-bottom: 0;
}

.buyBoxVat {
  margin-bottom: 1rem;
  font-size: .85rem;
  color: #53595F !important
}

.coupon-checkbox {
  display: none;
}

.coupon-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.coupon-label span {
  margin: 0;
}

.coupon-label::after {
  font-family: "FontAwesome";
  content: "\f078";
  font-size: 12px;
  transition: transform 0.3s ease;
  position: absolute;
  right: 0;
  color: #53595F;
}

.coupon-checkbox:checked+.coupon-label::after {
  transform: rotate(180deg);
}

.coupon-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.coupon-checkbox:checked+.coupon-label+.coupon-content {
  max-height: 35px;
}

.page-checkout .adressHeadline,
.page-checkout .paymentHeadline,
.page-checkout .checkoutProductHeadline,
.page-checkout .wishHeadline {
  font-weight: bold;
}

.page-checkout .shipping-method-select {
  margin-bottom: 15px;
}

.page-checkout .checkoutProductHeadline,
.page-checkout .checkoutProduct {
  padding: 0;
}

.checkout-rightside {
  margin-top: 55px;
}

.page-basket .add-item .btn-primary,
.page-checkout .add-item .btn-primary {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  /* color: #212529; */
  height: 32px;
  align-content: center;
  font-size: 1rem;
  margin-top: 0 !important;
  min-width: 11rem;
}

.page-checkout .coupon-content .btn-primary {
  background-color: var(--dgrau);
  /* border-color: var(--dgrau); */
  color: #fff;
  height: auto;
  align-content: center;
  font-size: 1rem;
}

.page-basket .add-item .btn-primary:hover,
.page-checkout .add-item .btn-primary:hover,
.page-basket .add-item .btn-primary:active,
.page-checkout .add-item .btn-primary:active,
.page-basket .add-item .btn-primary:focus,
.page-checkout .add-item .btn-primary:focus {
  background-color: #1b1b1b;
  border-color: #1b1b1b;
  color: #fff;
}

.page-checkout .coupon-content .btn-primary:hover,
.page-checkout .coupon-content .btn-primary:active,
.page-checkout .coupon-content .btn-primary:focus {
  background-color: var(--ci);
  border-color: var(--ci);
  color: #fff;
}

.page-checkout .checkoutLawLink {
  text-decoration: underline;
  cursor: pointer;
}

.checkoutFooterContainer .checkout-link {
  cursor: pointer;
}

.page-checkout .add-item {
  top: .5em;
  right: .5em;
}

.page-checkout .cmp-address-list .items>div:first-child {
  min-height: 135px;
  margin-bottom: 0;
}

.page-checkout div#page-body,
.page-basket div#page-body,
.page-login div#page-body,
.page-register div#page-body,
.page-confirmation div#page-body {
  background: #fff;
}

@media (max-width: 991px) {
  .checkout-rightside {
    margin-top: 0;
  }
}

.registerBlock {
  background-color: #f6f7f9;
}

.registerBlock,
.loginBlock {
  padding: 15px;
}

.page-login .btn-guestLogin,
.page-login .modal-dialog .btn-primary {
  background-color: var(--ci) !important;
  border-color: var(--ci) !important;
  color: #fff !important;
  height: 40px;
  align-content: center;
  font-size: 1.2rem;
}

.page-login .btn-guestLogin:hover,
.page-login .btn-guestLogin:focus,
.page-login .btn-guestLogin:active,
.page-login .modal-dialog .btn-primary:hover,
.page-login .modal-dialog .btn-primary:focus,
.page-login .modal-dialog .btn-primary:active {
  background-color: var(--hci) !important;
  border-color: var(--hci) !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}

.page-login .btn-primary {
  /* border-color: var(--dgrau); */
  background-color: transparent;
  color: #ffffff;
  height: 40px;
  align-content: center;
  font-size: 1.2rem;
}

.page-login .btn-primary:hover,
.page-login .btn-primary:focus,
.page-login .btn-primary:active {
  background-color: var(--dgrau);
  border-color: var(--dgrau);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}

.page-confirmation .card.smal {
  min-height: 463px;
}

.page-confirmation .card-body .orderConfirmationText {
  font-size: 1rem;
}

.page-confirmation article {
  text-align: left !important;
}

.page-confirmation .cmp-order-item .item-image {
  -ms-flex: 0 1 7.7em;
  flex: 0 1 7.7em;
}

.page-confirmation .itemSummary {
  font-weight: 700;
}

@media (max-width: 1300px) {
  .page-checkout .add-item .btn-primary {
    height: 28px;
    font-size: .8rem;
    min-width: 8.8rem;
  }

  .page-checkout .add-item {
    top: .2em;
    right: .2em;
  }
}

@media (max-width: 990px) {

  .page-basket .item-name,
  .page-basket .basketListPrice {
    font-size: 1rem;
  }

  .page-basket .basketListAttributes {
    font-size: 80% !important;
  }
}

@media (max-width: 767px) {

  .page-basket .basket-item-container-right,
  .page-checkout .basket-item-container-right {
    display: none;
  }

  .progress-label {
    font-size: .8rem;
  }

  .page-checkout .cmp-address-list .items>div:first-child {
    min-height: auto !important;
  }
}

@media (max-width: 610px) {
  .progress-label {
    min-height: 34px;
  }
}

@media (max-width: 460px) {

  .page-basket .item-name,
  .page-basket .basketListPrice,
  .page-basket .basketSumBlockNote,
  .page-checkout .item-name,
  .page-checkout .basketListPrice,
  .page-checkout .basketSumBlockNote {
    font-size: .85rem;
  }

  .page-basket .basketListAttributes,
  .page-checkout .basketListAttributes {
    font-size: 80% !important;
  }

  .page-basket .basketSumBlockNote:before,
  .page-checkout .basketSumBlockNote:before {
    height: 15px;
    width: 20px;
    top: 2px;
  }

  .progress {
    width: 100%;
  }

  .page-confirmation .card-body .orderConfirmationText {
    font-size: .9rem;
  }

  .page-checkout .basket-list-item .image-container {
    width: 80px;
  }
}

/* ===== CHECKOUT END ===== */
/* Artikeldetailseite */
.single .single-carousel {
  max-height: 600px;
}

.single .single-carousel,
.page-singleitem .single-carousel {
  mix-blend-mode: multiply;
}

.owl-carousel .owl-single-item-control {
  font-size: 1.5rem;
}

.owl-carousel .carousel-control:hover i {
  color: var(--ci);
}

.single-carousel .owl-item img {
  max-height: 600px;
  margin: 0 auto;
  height: auto;
  max-width: 600px;
  border-radius: .1rem;
}

.single-carousel.owl-carousel.owl-theme.owl-single-item.mt-0.owl-loaded.owl-drag .owl-stage {
  height: 100%;
}

.single .list-item-carousel .list-control-special,
.page-singleitem .list-item-carousel .list-control-special {
  top: 28.5%;
}

.owl-carousel:hover .owl-single-item-nav {
  opacity: 1;
}

.owl-theme .owl-dots {
  display: none;
}

.single .owl-thumbs .owl-thumb {
  border-radius: .1rem;
  border: 1px solid #dee2e6;
}

.owl-thumbs .owl-thumb.active,
.owl-thumbs .owl-thumb:hover {
  cursor: pointer;
}

.singleItemRechts {
  padding: 20px 20px 5px 20px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
  overflow: hidden;
  min-height: 600px;
  border-radius: .1rem;
  background-color: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  /* justify-content: space-evenly; */
}

.singleItemRechtsUl {
  padding-left: 5px;
}

.single .singleItemDescriptionContainer {
  padding-right: 25px;
}

/* Standard Reihenfolge für Desktop */
.single .articleNameBlock {
  order: 1;
}

.single .feedbackBlock {
  order: 2;
}

.single .seo-subline {
  order: 3;
}

.single .priceBlock {
  order: 4;
  min-height: 60px;
}

.single .coupon-container {
  order: 4;
  margin: 3px 0 7px 0;
}

.single .variationSelectBlock {
  order: 5;
}

.single .shortdescription {
  order: 6;
}

.single .bulletpointsTop {
  order: 7;
  min-height: 1px;
}

.single .shippingInfoBlock {
  order: 8;
  min-height: 46px;
}

.single .cartBlock {
  order: 9;
}

.single .paymentProviderBlock {
  order: 10;
  margin-top: 10px;
}

.single .cmp-product-thumb .thumb-title {
  min-height: 60px;
  margin-bottom: 10px;
}

.single .coupon-box {
  background-color: #eb001b;
  color: #fff;
  max-width: fit-content;
  display: flex;
  align-items: center;
  border-radius: .1rem;
  padding: 0 5px;
}

.single .discount-badge {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 0;
}

.single .coupon-code {
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  letter-spacing: 0.5px;
  background: #ffffff;
  margin-left: 7px;
  border-radius: .1rem;
  padding: 1px 6px 0 6px;
}

.single .title {
  display: inline-block;
  line-height: 1;
  margin-bottom: 0;
  font-size: 1.3rem !important;
  min-height: 40px;
}

.articlenumber {
  font-size: .85rem;
  color: #000;
  display: inline-block;
}

.feedbackAnker {
  font-size: .9rem;
  color: var(--dci);
  margin-left: 5px;
}

.single .artSold {
  color: #303030;
  font-size: .95em;
  font-weight: 700;
  font-stretch: condensed;
  margin-bottom: 5px;
  min-height: 20px;
}

.single .manufacturerWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single .manufacturerLogo {
  width: 150px;
}

.single .price,
.page-singleitem .price {
  display: inline;
  line-height: 1.2;
  font-size: 1.7rem;
  margin-bottom: 0;
  font-weight: 400;
}

.single .has-crossprice {
  margin-top: 5px;
}

.single .priceBlock .price span,
.single .priceBlock .crossprice .text-muted.small.text-appearance {
  display: inline-block;
  width: 120px;
}

.single .singleVariantenHeadlineH2 {
  line-height: 1.5;
}

.single .shortdescription {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: .5rem;
  margin-top: 15px;
}

.single .seo-subline {
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
}

.single .incl,
.modalARContainer .incl {
  color: #000;
}

.single .savePriceDifference {
  background-color: var(--dci);
  border-radius: .1rem;
  padding: 3px 7px 3px 5px;
  color: #fff;
  font-weight: 700;
  position: relative;
  bottom: 4px;
  width: fit-content;
}

.single .variationBlockHeadline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 5px 0;
}

.colorSingleKachel {
  margin-top: 10px;
}

.colorSingleKachel p {
  margin-bottom: 5px;
}

.single .changeColDiv {
  display: inline-flex;
  gap: 10px;
}

.single .changeColDiv article {
  margin-bottom: 0 !important;
}

.single .changeColDiv .singleColorItem {
  border: 2px solid #e6e6e6;
  padding: unset;
  transition: border-color 0.3s;
  border-radius: .1rem;
  flex: 1 1 80px;
  max-width: 52px;
}

.singleColorItem.active {
  border-color: #5a7d70 !important;
}

.singleColorItem.active:hover {
  border-color: #5a7d70 !important;
}

.singleColorItem:hover {
  border-color: #000 !important;
}

.single .changeColDiv .singleColorItem .thumb-image {
  background: #fff !important;
}

.single .singleColorItem .cmp-product-thumb .thumb-image a img {
  position: static;
  width: 100%;
}

.single .auswahlMenuTitle {
  font-weight: 700;
  font-size: 1rem;
  color: #212529;
  margin-bottom: 0;
}

.single .zubehoer-link {
  margin-left: 10px;
  font-weight: 400;
  color: var(--dci);
  text-decoration: none;
  cursor: pointer;
  font-size: .9rem;
}

.single .zubehoer-link:hover {
  text-decoration: underline;
}

.single .zubehoer-link:after {
  display: inline-block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/icons/info-icon.svg);
  background-size: 18px 18px;
  height: 18px;
  width: 18px;
  left: 0;
  top: 3px;
  position: relative;
  margin-left: 5px;
}

.singleItemDeliveryInfo {
  background: #f1f1f1;
  border-radius: .1rem;
  padding: 3px 7px;
  margin-top: 5px;
}

.singleItemDeliveryInfo a {
  margin-left: 35px;
  font-size: .9rem;
  text-decoration: underline;
  display: block;
}

.singleItemDeliveryInfo a:hover {
  color: var(--text);
}

.singleItemDeliveryInfoInner {
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.singleItemDeliveryInfoOutOfStock {
  background: #dd4a4a;
  border-radius: .1rem;
  padding: 3px 7px;
  margin-top: 5px;
}

.singleItemDeliveryInfoInnerOutofStock {
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.singleItemDeliveryInfoOutOfStock a {
  margin-left: 34px;
  font-size: .9rem;
  text-decoration: underline;
  display: block;
  color: #fff;
}

.singleItemDeliveryInfoOutOfStock a:hover {
  color: #f1f1f1;
}

.single .deliveryTextOne {
  font-weight: 700;
  color: #435e54;
  font-size: .9rem;
}

.single .deliveryTextOneOutOfStock {
  font-weight: 700;
  color: #fff;
  font-size: .9rem;
}

.single .deliveryConditionsTime {
  font-size: .9rem;
}

.singleItemDeliveryLeft:before {
  display: inline-block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/icons/lkw-icon-grau.svg);
  background-size: 27px 21px;
  height: 21px;
  width: 30px;
  background-repeat: no-repeat;
  position: relative;
  vertical-align: bottom;
}

.singleItemDeliveryLeftOutOfStock:before {
  display: inline-block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/icons/kontaktanfrage-email-icon.svg);
  background-size: 27px 21px;
  height: 21px;
  width: 27px;
  background-repeat: no-repeat;
  position: relative;
  vertical-align: bottom;
}

.single .linkGPSR {
  padding-bottom: 15px;
}

.single .linkGPSR a {
  text-decoration: underline;
}

@media (min-width: 400px) {

  .singleItemDeliveryLeft:before,
  .singleItemDeliveryLeftOutOfStock:before {
    top: 10px;
  }
}

@media (max-width: 399px) {

  .singleItemDeliveryLeft:before,
  .singleItemDeliveryLeftOutOfStock:before {
    top: 10px;
  }

  .single .deliveryConditionsTime {
    display: block;
    margin-left: 31px;
  }

  .singleItemDeliveryLeft:before {
    background-size: 25px 20px;
    height: 21px;
    width: 30px;
  }
}

/* .single details .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.single details[open] .accordion-content {
  max-height: 1000px;
}

.single details[open] summary::after {
  content: "-";
  font-size: 1.2rem;
  position: absolute;
  right: 12px;
  bottom: 3px
}

.single details summary::after {
  content: "+";
  font-size: 1.2rem;
  position: absolute;
  right: 10px;
}

.single details summary {
  cursor: pointer;
  list-style: none;
  padding: .5em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
} */
.single .itemStock {
  display: flex;
  align-items: center;
  margin-top: 15px;
  background-color: #ef2f2f;
  max-width: fit-content;
  padding: 2px 11px 0 11px;
  margin-bottom: 5px;
  color: #ffffff;
  border-radius: .1rem;
  font-size: .9rem;
  font-weight: 700;
}

.single .itemStock.green {
  background-color: #cef3c7;
  color: #07641F;
}

.single .itemStock.orange {
  background-color: #f69000;
  color: #ffffff;
}

.single .itemStock .dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: red;
  border-radius: 11px;
  margin-right: 10px;
}

.single .itemStock.orange .dot {
  background: orange;
}

.single .qty-box .qty-input {
  width: 42px;
  padding: 5px 0;
  border: none;
  border-right: 0;
  outline: none;
  -webkit-transition: all .2s cubic-bezier(0, 0, 0.26, 1);
  transition: all .2s cubic-bezier(0, 0, 0.26, 1);
  background-color: #fff;
}

.single .input-unit {
  position: relative;
  width: 100%;
  margin-bottom: 7px;
  overflow: hidden;
  border: 1px solid #dee2e6;
  border-radius: .1rem;
}

.single .custom-select {
  font-size: 1rem;
}

.single .add-to-basket-container .btn-primary .fa-shopping-cart {
  display: none;
}

.single .warenkorbDiv {
  margin: 1rem 0 1rem 0;
}

.add-to-basket-container .quantity-input-container {
  margin-right: 15px;
  border: 1px solid #ced4da;
  border-radius: .1rem;
  padding: 0 10px;
}

.add-to-basket-container .btn-primary {
  padding: 0;
  font-size: 1.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  font-weight: 400;
  height: 45px;
  /* color: #000; */
  border-radius: .1rem;
  /* background-color: #ffc617;
  border-color: #ffc617; */
}

.add-to-basket-container .btn-primary:hover,
.add-to-basket-container .btn-primary:focus,
.add-to-basket-container .btn-primary:active {
  color: #fff;
  background-color: var(--dci);
  border-color: var(--dci);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #212529;
  background-color: #e3e3e3 !important;
  border-color: #e3e3e3 !important;
}

.add-to-basket-container .btn-primary .fa-shopping-cart {
  font-size: 30px;
  padding-left: 20px;
  float: none;
}

.add-to-basket-container .btn-primary .fa-shopping-cart:before {
  content: "\f105"
}

.single .payPalExpress {
  display: none;
}

.single .basketPaymentIcons {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin: 0;
}

.single .basket-payment-icon {
  width: 100%;
  height: 25px;
  padding: 3px;
  margin: 0 auto;
  display: block;
}

.single .itemDescriptionText h2 {
  text-align: center;
}

.single .singleDescriptionHeadline {
  font-size: 1.3rem;
  color: #212529;
  margin: 10px auto;
}

.single .itemDescriptionText p {
  line-height: 1.6;
  font-size: .9rem;
}

.single .bulletpointsTop ul {
  padding-left: 0;
  margin-bottom: 5px;
}

.single .bulletpointsTop li {
  list-style: none;
  /* display: flex;
  gap: 5px;
  align-items: flex-start; */
}

.single .bulletpointsTop li .text-muted {
  flex-shrink: 0;
}

.single .bulletpointsTop li b {
  flex: 1;
  display: block;
  min-height: 42px;
  min-height: .9rem;
}

.single .bulletpoints li {
  color: var(--text);
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.single .bulletpoints li::before {
  content: "";
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/icons/checkmark.svg);
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 3px;
  left: -1px;
  filter: invert(19%) sepia(78%) saturate(6596%) hue-rotate(110deg) brightness(101%) contrast(106%);
}

.single .bulletpoints li h3 {
  color: #212529;
  list-style: none;
  position: relative;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 3px;
}

.single .varianteContentHeadline {
  font-weight: 700;
}

.single .singleItemMainHeadline {
  font-size: 1rem;
  margin-bottom: 0rem;
  margin-top: 2rem;
  font-weight: 700;
  background: var(--ci);
  padding: 3px 10px;
  border-radius: .1rem;
  color: #fff;
}

.single .singleItemContentWrapper {
  padding: 5px 5px 0 5px;
}

/* .single .singleItemContentWrapper p,
.single .singleItemContentWrapper h2,
.single .singleItemContentWrapper ul {
  padding: 5px 5px 0 5px;
} */
.single .singleItemContentWrapper p {
  font-size: .9rem;
}

.single .produktvorteileUl {
  padding-left: 0;
  list-style: none;
}

.single .produktvorteileUl li {
  margin: 15px 0;
  line-height: 1.6;
}

.sw-tabelle-noborder {
  background-color: #ebebeb;
}

.sw-tabelle-noborder colgroup .col-1 {
  width: 23%;
}

.sw-tabelle-noborder colgroup .col-2,
.sw-tabelle-noborder colgroup .col-3,
.sw-tabelle-noborder colgroup .col-4,
.sw-tabelle-noborder colgroup .col-5,
.sw-tabelle-noborder colgroup .col-6,
.sw-tabelle-noborder colgroup .col-7,
.sw-tabelle-noborder colgroup .col-8 {
  width: 11%;
}

.single details {
  border-radius: 5px;
}

.single details[open] summary::after {
  content: '\25B2';
}

.single details summary::after {
  content: '\25BC';
  font-size: 1.3rem;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.single details summary {
  font-size: 1.15rem;
  /* font-weight: 700; */
  cursor: pointer;
  list-style: none;
  padding: 10px;
  /* background: #f1f1f1; */
  border: 1px solid #495057;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  min-height: 45px;
}

.single .accordion-content {
  padding: 5px 5px 0 5px;
  animation: fadein 0.3s;
  margin-top: 10px;
}

.single .bayRow {
  gap: 15px 0;
  margin-top: 20px;
}

.single .item .item-body {
  margin-top: 10px;
}

@media (max-width: 1350px) and (min-width: 1061px) {
  .sw-tabelle-noborder.ausbauPakets {
    overflow-x: auto;
    display: block;
  }

  .single .singleBulletpointRow .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .single .singleItemRechtsUl {
    margin-bottom: 0;
  }
}

@media (max-width: 1330px) {
  .single .savePriceDifference {
    padding: 4px 3px 3px 3px !important;
  }
}

@media (max-width: 1100px) {
  .sw-tabelle-noborder.techData {
    overflow-x: auto;
    display: block;
  }
}

table.sw-tabelle-noborder thead {
  background-color: #fff;
}

.sw-tabelle-noborder thead th {
  white-space: nowrap;
}

.sw-tabelle-noborder thead th span {
  display: block;
}

.single .sw-tabelle-noborder td,
.single .sw-tabelle-noborder th {
  padding: 4px 10px;
  border: 1px solid #212529;
  font-size: .9rem;
  width: fit-content;
  white-space: nowrap;
}

.sw-tabelle-noborder .tableBodyTr {
  text-align: center;
  font-weight: 700;
  color: green;
}

.sw-tabelle-noborder .tableBodyFirstTd {
  font-weight: 700;
}

.sw-tabelle-noborder tr:nth-child(even) {
  background: #fff;
}

.single .variationSelectDetailImg {
  display: flex;
  align-items: center;
}

.single .btn-download {
  text-align: left;
  display: flex;
  align-items: center;
  font-weight: 700;
  padding: 0.4rem 0.8em;
  background: #ebebeb;
  min-height: 45px;
  margin-top: 10px;
}

.single .btn-download>img {
  max-width: 22px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.single .btn-download:hover {
  background: var(--ci);
  color: #fff;
}

.single .btn-download:hover img {
  filter: invert(100%) sepia(1%) saturate(1700%) hue-rotate(276deg) brightness(116%) contrast(101%);
}

.single .downloads a:hover {
  background: var(--ci);
  color: #fff;
}

.single .downloads a:hover img {
  filter: invert(100%) sepia(1%) saturate(1700%) hue-rotate(276deg) brightness(116%) contrast(101%);
}

.single hr {
  border-top: 1px solid #ebebeb;
}

.single .crossSellingHeadline {
  font-size: 1.3rem;
  margin: 60px 0 20px 0;
  text-align: center;
}

.single .crossSelling .owl-item.active,
.page-home .homeItemList .owl-item.active {
  margin-right: 30px !important;
}

.single .crossSelling .price,
.page-home .homeItemList .price {
  font-size: 1.2rem;
  font-weight: 700;
  min-height: 23px;
}

.single .crossSelling .savePriceDifference,
.page-home .homeItemList .savePriceDifference {
  left: 0;
  bottom: 0;
}

.single .crossSelling .cmp-product-thumb .thumb-content,
.single .crossSelling .cmp-product-thumb .itemInfo,
.page-home .homeItemList .cmp-product-thumb .thumb-content,
.page-home .homeItemList .cmp-product-thumb .itemInfo {
  min-height: unset;
  padding: 1rem .5rem .5rem .5rem;
  background: #fff;
}

.single .crossSelling .cmp-product-thumb .thumb-meta,
.page-home .homeItemList .cmp-product-thumb .thumb-meta {
  min-height: 80px;
}

.single .crossSelling .rrp-discount,
.page-home .homeItemList .rrp-discount {
  display: flex;
  justify-content: space-between;
}

.page-home .homeItemList .deliveryConditionsKat {
  text-align: left;
}

.single .crossSelling .categoryItemShortDescription,
.single .crossSelling .configButtonContainer,
.page-home .homeItemList .categoryItemShortDescription,
.page-home .homeItemList .configButtonContainer {
  text-align: left;
}

.single .crossSelling .categoryItemBulletpoints,
.single .crossSelling .configButtonContainer,
.page-home .homeItemList .categoryItemBulletpoints,
.page-home .homeItemList .configButtonContainer {
  display: none;
}

.single .crossSelling .itemStock,
.page-home .homeItemList .itemStock {
  padding: 2px 11px 0 0;
}

.single .crossSelling .itemStock.green,
.single .crossSelling .itemStock.orange,
.page-home .homeItemList .itemStock.green,
.page-home .homeItemList .itemStock.orange {
  background-color: transparent;
}

.single .crossSelling .itemStock.orange,
.page-home .homeItemList .itemStock.orange {
  color: #4b4f53;
}

.single .crossSelling .cmp-product-thumb .thumb-title,
.page-home .homeItemList .cmp-product-thumb .thumb-title {
  margin-bottom: 0;
}

/*VariationSelect */
.single .v-s-boxes .v-s-box {
  margin: .2rem .5rem;
}

.single .v-s-boxes.images .v-s-box:not(.empty-option) {
  width: 70px;
  height: 70px;
}

.v-s-boxes .v-s-box.invalid {
  border-style: solid;
}

.v-s-boxes.py-3.images {
  padding-top: .2rem !important;
  padding-bottom: .5rem !important;
}

.v-s-boxes .v-s-box.active {
  border-radius: .1rem;
  border: 2px solid var(--ci);
}

@media (min-width: 1601px) {
  .singleItemDivRechts {
    padding-left: 0;
    position: sticky;
    top: 105px;
    align-self: start;
  }
}

@media (max-width: 1600px) {
  .singleItemDivRechts {
    padding-left: 0;
    position: sticky;
    top: 20px;
    align-self: start;
  }

  .singleItemRechts {
    min-height: 565px;
  }

  .single .seo-subline,
  .colorSingleKachel {
    margin-top: 7px;
  }

  .single .auswahlMenuTitle {
    margin: 0;
  }
}

@media (min-width: 1391px) {
  div#thumb-carousel {
    max-width: 600px;
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    top: -7px;
    right: 59px;
    overflow: hidden;
  }

  img.owl-thumb {
    transform: rotate(270deg);
  }

  .owl-wrap {
    position: relative;
    margin-left: 170px;
    max-width: 600px;
  }
}

@media (max-width: 1390px) and (min-width: 1335px) {
  div#thumb-carousel {
    max-width: 600px;
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    top: -7px;
    right: 25px;
    overflow: hidden;
  }

  img.owl-thumb {
    transform: rotate(270deg);
  }

  .owl-wrap {
    position: relative;
    margin-left: 138px;
    max-width: 600px;
  }
}

@media (max-width: 1334px) {
  .owl-wrap {
    display: flex;
    flex-direction: column;
  }

  .single-carousel {
    order: 1;
  }

  div#thumb-carousel {
    order: 2;
  }
}

@media (max-width: 1310px) and (min-width: 991px) {
  .single .v-s-boxes.images .v-s-box:not(.empty-option) {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1165px) and (min-width: 1061px) {
  .single .v-s-boxes.images .v-s-box:not(.empty-option) {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 1105px) and (min-width: 1051px) {
  .singleItemDivRechts {
    position: sticky;
    top: 106px;
  }
}

@media (max-width: 1060px) {

  .singleItemTopRow .col-lg-5,
  .singleItemTopRow .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .singleItemTopRow .col-lg-7 {
    align-self: center;
  }

  .single .singleItemDescriptionContainer {
    padding-right: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .singleItemRechts {
    min-height: 591px;
  }

  .singleItemDivRechts {
    position: unset;
  }

  .single .crossSellingHeadline {
    margin: 20px 0;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .single .price {
    float: none;
  }
}

@media (max-width: 991px) {
  .singleItemRechts {
    box-shadow: unset;
    padding: 10px 0 0 0;
    background-color: #fbfbfb;
  }
}

@media (max-width: 815px) {

  .singleItemTopRow .col-lg-5,
  .singleItemTopRow .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .singleItemRechts {
    padding: 12px 0 5px 18px;
  }

  .single .feedback-stars-average.feedback-category-view {
    margin-left: 0;
  }

  /* Reihenfolge für mobile Endgeräte ab 815px */
  .single .articleNameBlock {
    order: unset;
    display: grid;
    margin-top: -1rem;
  }

  .single .articlenumber {
    margin-top: 5px;
  }

  .single .variationBlockHeadline {
    margin: 20px 0 5px 0;
  }

  .single .singleItemRechts .feedbackCountitemList {
    display: inline-flex;
    order: 2;
    justify-content: flex-start;
    margin-top: -19px;
    margin-left: 90px;
  }

  .single .title {
    font-size: 1rem !important;
    font-weight: 700;
  }

  .singleItemDeliveryInfo {
    background: #fbfbfb;
    padding: 3px 1px;
  }

  .single .feedback-stars-average.feedback-category-view {
    order: 2;
  }

  .single .title,
  .articlenumber {
    order: 1;
  }

  .single .seo-subline {
    order: 3;
  }

  .single .colorSelectBlock {
    order: 4;
  }

  .single.coupon-container {
    order: 4;
    margin: 3px 0 7px 0;
  }

  .single .variationSelectBlock {
    order: 5;
  }

  .single .priceBlock {
    order: 6;
    margin: 10px 1px;
    min-height: 80px;
  }

  .single .shippingInfoBlock {
    order: 7;
  }

  .single .cartBlock {
    order: 8;
  }

  .single .payPalExpress {
    display: block;
    order: 9;
    margin-bottom: 15px;
  }

  .single .payPalExpress p {
    font-weight: 700;
    text-align: center;
    margin-bottom: .7rem;
  }

  .single .paypalSmartButtons div {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .single .paymentProviderBlock {
    order: 10;
  }
}

@media (max-width: 785px) {
  .single .payPalExpress>div {
    padding: 0;
  }
}

@media (max-width: 775px) {
  .single .singleBulletpointRow .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .single .singleItemRechtsUl {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .single .px-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .sw-tabelle-noborder.ausbauPakets {
    overflow-x: auto;
    display: block;
  }
}

@media (max-width: 600px) {

  header #controlsList .nav-link .small,
  .menu-close .small {
    display: none !important;
  }
}

/* @media (max-width: 585px) and (min-width: 575px) {

  .single .crossSelling .cmp-product-thumb .thumb-title,
  .page-home .homeItemList .cmp-product-thumb .thumb-title {
    min-height: 61px;
  }
} */
@media (max-width: 755px) and (min-width: 576px) {

  .single .crossSelling .row .col-12.col-sm-6.col-md-3,
  .page-home .row.homeItemList .col-12.col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 756px) {

  .single .crossSelling .cmp-product-thumb,
  .page-home .row.homeItemList .cmp-product-thumb {
    padding: 0 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
  }

  .single .crossSelling .row .col-12.col-sm-6.col-md-3,
  .page-home .row.homeItemList .col-12.col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .single .crossSelling .row .col-5.col-sm-5.col-md-3,
  .page-home .row.homeItemList .col-5.col-sm-5.col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }

  .single .crossSelling .row .col-7.col-sm-7.col-md-9,
  .page-home .row.homeItemList .col-7.col-sm-7.col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
  }

  .single .crossSelling .row .col-12.col-md-8,
  .single .crossSelling .row .col-12.col-md-4,
  .page-home .row.homeItemList .row .col-12.col-md-8,
  .page-home .row.homeItemList .row .col-12.col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .single .crossSelling .cmp-product-thumb .thumb-title,
  .page-home .homeItemList .cmp-product-thumb .thumb-title {
    min-height: 41px;
  }

  .single .crossSelling .cmp-product-thumb .itemStock,
  .page-home .homeItemList .cmp-product-thumb .itemStock {
    margin-top: 5px;
  }

  .single .crossSelling .cmp-product-thumb .deliveryCost,
  .single .crossSelling .cmp-product-thumb .deliveryHinweis,
  .page-home .homeItemList .cmp-product-thumb .deliveryCost,
  .page-home .homeItemList .cmp-product-thumb .deliveryHinweis {
    margin-bottom: 0;
    font-size: .9rem;
  }
}

@media (min-width: 1360px) {

  .single .crossSelling .cmp-product-thumb .thumb-title,
  .page-home .homeItemList .cmp-product-thumb .thumb-title {
    min-height: 41px;
  }
}

@media (max-width: 755px) {

  .single .crossSelling .row .col-5.col-sm-5.col-md-3,
  .page-home .row.homeItemList .col-5.col-sm-5.col-md-3 {
    display: flex;
    align-items: center;
  }

  .single .crossSelling .cmp-product-thumb .thumb-image,
  .page-home .homeItemList .cmp-product-thumb .thumb-image {
    width: 100%;
  }

  .single .crossSelling .cmp-product-thumb .thumb-content,
  .page-home .homeItemList .cmp-product-thumb .thumb-content {
    padding: .5rem;
  }

  .single .crossSelling .cmp-product-thumb .itemInfo,
  .page-home .homeItemList .cmp-product-thumb .itemInfo {
    padding: .5rem;
  }

  .single .crossSelling .cmp-product-thumb .thumb-content,
  .page-home .homeItemList .cmp-product-thumb .thumb-content {
    width: calc(100% - 0px);
  }

  .single .crossSelling .cmp-product-thumb .thumb-meta,
  .page-home .homeItemList .cmp-product-thumb .thumb-meta {
    min-height: 50px;
  }

  .single .crossSelling .deliveryConditionsKat,
  .page-home .homeItemList .deliveryConditionsKat {
    min-height: 49px;
  }

  .single .crossSelling .deliveryHinweis,
  .page-home .homeItemList .deliveryHinweis {
    margin-bottom: 0;
  }

  .single .crossSelling .rrp-discount,
  .page-home .homeItemList .rrp-discount {
    justify-content: left;
    gap: 10px;
    align-items: end;
  }

  .single .crossSelling .cmp-product-thumb .price,
  .single .crossSelling .cmp-product-thumb .artSold,
  .single .crossSelling .cmp-product-thumb .price-view-port,
  .page-home .homeItemList .cmp-product-thumb .price,
  .page-home .homeItemList .cmp-product-thumb .artSold,
  .page-home .homeItemList .cmp-product-thumb .price-view-port {
    justify-content: flex-start;
  }

  .single .crossSelling .inclKat,
  .page-home .homeItemList .inclKat {
    display: flex;
    justify-content: flex-start;
    margin-top: 5px;
    color: #000;
    font-size: .85rem;
  }

  .single .crossSelling .owl-theme .owl-dots,
  .page-home .homeItemList .owl-theme .owl-dots {
    top: 95%;
  }

  .single .crossSelling .owl-carousel .owl-single-item-control,
  .page-home .homeItemList .owl-carousel .owl-single-item-control {
    display: none;
  }

  .single .crossSelling .owl-theme .owl-dots,
  .page-home .homeItemList .owl-theme .owl-dots {
    display: block;
  }

  .single .crossSelling .itemInfo,
  .page-home .homeItemList .itemInfo {
    min-height: 40px;
  }

  .single .crossSelling .cmp-product-thumb .crossprice,
  .single .crossSelling .cmp-product-thumb .artSold,
  .page-home .homeItemList .cmp-product-thumb .crossprice,
  .page-home .homeItemList .cmp-product-thumb .artSold {
    font-size: .8em;
  }

  .single .crossSelling .price,
  .page-home .homeItemList .price {
    min-height: 10px;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .page-singleitem .crossSelling .cmp.cmp-product-thumb>div,
  .page-home .homeItemList .cmp.cmp-product-thumb>div {
    display: flex;
    align-items: center;
  }

  .page-singleitem .crossSelling .cmp.cmp-product-thumb,
  .page-home .homeItemList .cmp.cmp-product-thumb {
    padding: 5px;
    border: 2px solid #e3e3e3;
  }
}

@media (max-width: 575px) {
  .single .singleColorItem .cmp-product-thumb {
    width: 100%;
    padding: 0;
    margin-top: unset;
    margin-left: unset;
    border-radius: unset;
    box-shadow: unset;
  }

  .single .singleColorItem .cmp-product-thumb .thumb-image {
    width: 100%;
  }

  .single .list-item-carousel .list-control-special,
  .page-singleitem .list-item-carousel .list-control-special {
    top: 44.5%;
  }

  .single .feedback-container .feedback-list .feedback .feedback-comment .feedback-attributes-list p span {
    margin: 0 0 4px 0;
  }

  .single .feedback-container .feedback-list .feedback .feedback-comment .feedback-comment-text {
    font-size: .9rem;
  }

  .single .variationSelectDetailImg {
    justify-content: center;
  }

  .single .variationSelectDetailImg img {
    max-width: 50%;
  }
}

@media (max-width: 525px) {
  .single .v-s-boxes.images .v-s-box:not(.empty-option) {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {

  .single .crossSelling .price,
  .page-home .homeItemList .price {
    font-size: 1.1rem;
  }

  .sw-tabelle-noborder tbody td {
    font-size: 13px;
  }

  .single .has-crossprice {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .single .savePriceDifference {
    bottom: 0px;
  }

  .single .savePriceDifference {
    padding: 3px 3px 1px 3px !important;
  }

  .sw-tabelle-noborder tbody td {
    font-size: 11px;
  }
}

@media (max-width: 462px) {
  .single .singleItemDescriptionContainer .downloads {
    column-count: 1;
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .single .title {
    font-size: 1.2em;
  }

  .single .singleVariantenHeadlineH2 {
    font-size: 1.1em;
  }

  .single .singleDescriptionHeadline {
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
  }

  .single .singleItemRechtsUl {
    margin-bottom: 0;
  }

  .single .bulletpoints li,
  .single .row.bayRow p,
  .single .produktvorteileUl li {
    font-size: .9rem;
  }

  .single .btn-download {
    font-size: .85rem;
    padding: 0.4rem;
    hyphens: auto;
  }

  .single .crossSellingHeadline {
    font-size: 1rem;
    font-weight: 700;
  }

  .single .bulletpoints li::before {
    top: 1px;
  }

  .single .bulletpointsTop li b {
    font-size: .9rem;
  }

  .single .btn-download {
    min-height: 39px;
  }
}

@media (max-width: 375px) {

  .single .crossSelling .cmp-product-thumb,
  .page-home .homeItemList .cmp-product-thumb {
    padding: 15px;
  }

  .single .crossSelling .row .col-5.col-sm-5.col-md-3,
  .page-home .row.homeItemList .col-5.col-sm-5.col-md-3 {
    justify-content: center;
  }

  .single .crossSelling .row .col-5.col-sm-5.col-md-3,
  .single .crossSelling .row .col-7.col-sm-7.col-md-9,
  .page-home .row.homeItemList .col-5.col-sm-5.col-md-3,
  .page-home .row.homeItemList .col-7.col-sm-7.col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .single .crossSelling .cmp-product-thumb .thumb-image,
  .page-home .homeItemList .cmp-product-thumb .thumb-image {
    width: 70%;
  }

  .single .crossSelling .cmp-product-thumb .special-tags,
  .page-home .homeItemList .cmp-product-thumb .special-tags {
    top: 0;
    left: 15px;
  }

  .single .crossSelling .cmp-product-thumb .thumb-title,
  .page-home .homeItemList .cmp-product-thumb .thumb-title {
    font-size: 13px;
    min-height: 17px !important;
  }

  .single .crossSelling .owl-theme .owl-dots,
  .page-home .homeItemList .owl-theme .owl-dots {
    top: 99%;
  }
}

@media (max-width: 410px) {
  .single .add-to-basket-container .btn-primary {
    font-size: 1.2rem;
  }

  .single .basketPaymentIcons {
    grid-template-columns: repeat(4, 1fr);
  }

  .singleItemDeliveryInfoInner {
    flex-direction: column;
    align-items: flex-start;
  }

  .single .feedback-container .feedback-stars-average .feedback-star {
    width: 16px;
    font-size: 16px;
  }

  .single .feedback-container .feedback-stars-average {
    margin-left: 0;
  }
}

@media (max-width: 403px) {
  .single .deliveryConditionsTime {
    font-size: .85rem;
  }
}

@media (max-width: 360px) {
  .single .manufacturerLogo {
    width: 107px;
  }

  .single .bulletpoints li {
    font-size: .85rem;
  }
}

/* Kategorieansicht und Suchergebnisse */
.page-category-item.category-956 article[data-testing="3012"] {
  display: none;
}

.categoryTopBackground {
  background: #f8f8f8;
  /* background: linear-gradient(270deg, var(--dci), var(--ci));
  background-repeat: no-repeat;
  background-position: right 1%;
  position: relative; */
}

.page-category-item .catHeroContent,
.page-category-item .homeHeroContentTop,
.page-category-content .catHeroContent,
.page-category-content .homeHeroContentTop {
  padding: 15px 0;
  text-align: left;
}

.page-home .catHeroContent,
.page-home .homeHeroContentTop {
  padding: 30px 0 15px 0;
  text-align: left;
  min-height: 350px;
}

.page-category-item .catHeroContentTop {
  min-height: 314px;
}

.catHeroContentLeft,
.homeHeroContentLeftTop {
  display: flex;
  /* justify-content: space-around; */
  flex-direction: column;
}

.catHeadline, .homeHeadline {
  color: #343434;
  font-weight: 700;
  font-size: 1.8rem;
  /* text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4); */
  margin-bottom: 5px;
}

.homeHeadline {
  margin-top: 13px;
}

.homeHeroContentRightTop img {
  margin-top: 6px;
}

.catHeroContent p,
.homeHeroContentTop p {
  color: #343434;
  font-size: 1.1rem;
  line-height: 1.3;
  /* margin-bottom: 0; */
}

.catHeroImg {
  display: none;
}

.catHeroContentUl {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.catHeroContentUl li {
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
  width: max-content;
  border-radius: .1rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.catHeroContentUl li:last-child {
  margin-bottom: 0;
}

.contactBox {
  padding: 13px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: #fff;
  background: linear-gradient(320deg, var(--dci), var(--ci));
}

.contactBoxInfo {
  font-size: 1rem;
  font-weight: 700;
}

.contactBox a {
  color: #fff;
}

@media (max-width: 1420px) {

  .contactBoxInfo,
  .contactBox p {
    font-size: .9rem;
  }

  .contactBox p.h3 {
    font-size: 1.1rem;
    font-weight: 700;
  }
}

.categoriegrid {
  margin-top: 15px;
}

.pagination {
  align-items: center;
  justify-content: end;
  margin-bottom: 0;
}

.product-list {
  display: block;
  margin: 0 -15px;
}

.product-list::after {
  content: "";
  display: table;
  clear: both;
}

.product-list select {
  border: 1px solid var(--hgrau);
}

.ziDisplayNone {
  display: none;
}

.single .crossSelling .cmp-product-thumb .price,
.single .crossSelling .cmp-product-thumb .artSold,
.single .crossSelling .cmp-product-thumb .price-view-port,
.page-home .homeItemList .cmp-product-thumb .price,
.page-home .homeItemList .cmp-product-thumb .artSold,
.page-home .homeItemList .cmp-product-thumb .price-view-port {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-category-item .rrp-discount,
.page-search .rrp-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cmp-product-thumb .price-view-port {
  -webkit-box-flex: 1;
  -ms-flex: unset;
  flex: unset;
}

.page-category-item .cmp-product-thumb .price,
.page-search .cmp-product-thumb .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-category-item .inclKat,
.page-search .inclKat {
  display: flex;
  justify-content: flex-end;
  color: #000;
}

.cmp-product-thumb .artSold p {
  margin-bottom: 0;
}

.page-home .cmp-product-thumb .thumb-image,
.page-category-item .cmp-product-thumb .thumb-image,
.page-search .cmp-product-thumb .thumb-image,
.page-singleitem .cmp-product-thumb .thumb-image {
  position: relative;
  overflow: unset !important;
  border-radius: .1rem;
}

.page-singleitem .cmp-product-thumb .thumb-image {
  background: #fff;
}

.cmp-product-thumb:hover .img-fluid {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.cmp-product-thumb .thumb-title {
  color: #303030;
  min-height: 21px;
  line-height: 1.3em;
  font-size: 1.1rem;
}

.page-search .isSearchDisplay {
  display: none;
}

@media (max-width: 1420px) {

  .catHeadline,
  .homeHeadline {
    font-size: 1.5rem;
  }

  .catHeroContent p,
  .homeHeroContentTop p {
    font-size: 1rem;
  }

  .catHeroContentUl li {
    font-size: 1rem;
  }
}

@media (max-width: 1300px) {

  .catHeroContent p,
  .homeHeroContentTop p {
    font-size: .9rem;
  }

  .catHeroContentUl li {
    font-size: .9rem;
    background-color: var(--dci);
    color: #303030;
    padding: 1px 10px;
    text-shadow: unset;
  }

  .configButtonHome span {
    font-size: 1rem;
    font-weight: 700;
  }
}

@media (max-width: 991px) and (min-width: 756px) {
  .cmp-product-thumb .thumb-title {
    font-size: 1rem;
  }

  .single .crossSelling .row .col-5.col-sm-5.col-md-3,
  .page-home .row.homeItemList .col-5.col-sm-5.col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .single .crossSelling .row .col-7.col-sm-7.col-md-9,
  .page-home .row.homeItemList .col-7.col-sm-7.col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
  }
}

@media (max-width: 880px) {

  .single .crossSelling .cmp-product-thumb .thumb-title,
  .page-home .homeItemList .cmp-product-thumb .thumb-title {
    min-height: 60px;
  }
}

@media (max-width: 767px) {
  .single .savePriceDifference {
    padding: 2px 1px 2px 1px !important;
  }

  .single .crossSelling .cmp-product-thumb .deliveryCost,
  .single .crossSelling .cmp-product-thumb .deliveryHinweis,
  .page-home .homeItemList .cmp-product-thumb .deliveryCost,
  .page-home .homeItemList .cmp-product-thumb .deliveryHinweis {
    margin-bottom: 0;
    font-size: .84rem;
  }
}

.cmp-product-thumb .price {
  color: #303030;
  font-size: 1.5rem;
  font-weight: 400;
}

.cmp-product-thumb .itemInfo {
  min-height: 270px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f8f8f8;
}

.cmp-product-thumb .artSold {
  color: #303030;
  font-size: .9rem;
  font-weight: 700;
  font-stretch: condensed;
}

.cmp-product-thumb .artSold p {
  margin-bottom: 0;
}

article .categoryItemShortDescription {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  font-size: .9rem;
}

.categoryItemBulletpoints ul {
  padding-left: 0;
}

.categoryItemBulletpoints li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  font-size: .9rem;
}

.categoryItemBulletpoints li::before {
  content: "";
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/icons/checkmark.svg);
  background-size: 13px 13px;
  height: 13px;
  width: 13px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 2px;
  left: -1px;
  filter: invert(19%) sepia(78%) saturate(6596%) hue-rotate(110deg) brightness(101%) contrast(106%);
}

.cmp-product-thumb .itemStock {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: .9rem;
  margin-top: 25px;
  color: #303030;
}

.cmp-product-thumb .itemStock.green {
  color: #07641F;
}

.cmp-product-thumb .itemStock .dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: red;
  border-radius: 11px;
  margin-right: 3px;
  top: 1px;
  position: relative;
}

.cmp-product-thumb .itemStock.green .dot {
  background: #07641F;
}

.cmp-product-thumb .itemStock.orange .dot {
  background: orange;
}

.page-category-item .deliveryCost,
.page-search .deliveryCost {
  margin-bottom: 0;
  font-size: .9rem;
}

.page-category-item .deliveryHinweis,
.page-search .deliveryHinweis {
  font-size: .9rem;
}

@media (max-width: 1135px) {

  .page-category-item .deliveryCost,
  .page-search .deliveryCost {
    margin-bottom: 0;
    font-size: .85rem;
    font-weight: 700;
    font-stretch: condensed;
  }

  .page-category-item .deliveryHinweis,
  .page-search .deliveryHinweis {
    font-size: .85rem;
  }
}

.page-category-item .catVariationWrapper,
.page-search .catVariationWrapper {
  width: max-content;
}

.page-category-item .catVariationImgWrapper,
.page-search .catVariationImgWrapper {
  display: flex;
  margin-bottom: 8px;
}

.page-category-item .catVariationHeadline,
.page-search .catVariationHeadline {
  background: #f1f1f1;
  margin: 10px 0;
  padding: 4px 5px 1px 5px;
  font-weight: 700;
  font-size: .9rem;
}

.page-category-item .catVariationImgWrapper img,
.page-search .catVariationImgWrapper img {
  max-width: 71px;
  border: 1px solid #dee2e6;
}

.page-category-item .catVariationImgWrapper img:not(:last-child),
.page-search .catVariationImgWrapper img:not(:last-child) {
  margin-right: 10px;
}

.cmp-product-thumb .special-tags {
  padding: 0 !important;
}

.cmp-product-thumb .special-tags .badge {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  display: block;
  padding: 5px 8px;
  font-size: 14px;
}

.cmp-product-thumb .special-tags .badge-primary {
  background-color: var(--ci);
  color: #fff;
}

.page-category-item .custom-select,
.page-search .custom-select {
  padding: 5px 30px 5px 10px;
  background-color: #fff;
  border: 1px solid #bebebe;
  border-radius: .1rem;
  height: 33.5px;
}

.cat-control p,
.cat-control h2 {
  color: #000;
  font-size: 20px;
  margin-bottom: 0;
}

.cat-control .list-sort {
  margin-left: auto;
  margin-right: 10px;
}

.page-item.active .page-link {
  background-color: #495057;
  border-color: #495057;
  color: #fff;
}

.ratgeberAnker {
  color: var(--dci);
  font-weight: 700;
  font-size: 15px;
}

.cmp-product-thumb .special-tags {
  top: 20px;
  left: 15px;
}

.cmp-product-thumb .special-tags .badge {
  font-size: .95rem;
}

.cmp-product-thumb .special-tags .badge-new {
  background-color: var(--ci);
  color: #fff;
  border-radius: .1rem;
}

.cmp-product-thumb .special-tags .badge-success {
  background-color: var(--ci);
  color: #fff;
  border-radius: .1rem;
}

.cmp-product-thumb .special-tags .badge-custom {
  background-color: var(--ci);
  color: #fff;
  border-radius: .1rem;
}

.cmp-product-thumb .special-tags .badge-out-of-stock {
  background-color: #000;
  color: #fff;
  border-radius: .1rem;
}

/* .cmp-product-thumb .special-tags .ifProperty105 {
  position: absolute;
  top: 30px;
} */
.cmp-product-thumb .thumb-meta {
  min-height: 47px;
}

.cmp-product-thumb .crossprice {
  font-size: 80% !important;
  font-weight: 400;
  color: #53595F;
  display: inline-block;
}

.page-category-item .configButtonKat,
.page-search .configButtonKat {
  border: 1px solid var(--ci);
  /* background-color: var(--ci); */
  color: #fff;
  text-align: center;
  padding: 8px;
  background: linear-gradient(270deg, var(--dci), var(--ci));
}

.page-category-item .configButtonKat:hover,
.page-search .configButtonKat:hover {
  border: 1px solid var(--dci);
  background-color: var(--dci);
  color: #fff;
}

/* FAQ */
#faq-wrapper .item {
  padding: 10px;
  margin-top: 15px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .15);
}

#faq-wrapper .item-body {
  margin-top: 1rem;
}

#faq-wrapper h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
  color: #212529;
}

#faq-wrapper h4 {
  margin-bottom: 0;
  font-size: 1.15rem;
  color: #000;
}

.single #faq-wrapper h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

#faq-wrapper button {
  background-color: #fff;
  border: none;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

#faq-wrapper .toggle-icon::before {
  content: '\25BC';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: inline-block;
  color: #303030;
}

button[aria-expanded="true"] .toggle-icon::before {
  content: '\25B2' !important;
}

@media (max-width: 575px) {

  .page-search #faq-wrapper .item-body p,
  .page-category-item #faq-wrapper .item-body p {
    font-size: .9rem;
  }

  .page-search #faq-wrapper .item-header h4,
  .page-category-item #faq-wrapper .item-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2f2f2f;
  }

  .page-search .branchenWrapper h3,
  .page-category-item .branchenWrapper h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2f2f2f;
  }

  .homeFAQheadline h3 {
    font-size: 1.2rem;
  }

  .page-search .branchenWrapper p,
  .page-category-item .branchenWrapper p,
  .page-search .branchenWrapper .branchenSubline,
  .page-category-item .branchenWrapper .branchenSubline {
    font-size: .9rem;
  }

  .page-search .branchenWrapper .branchenKachel,
  .page-category-item .branchenWrapper .branchenKachel {
    text-align: center;
  }
}

@media (max-width: 480px) {
  #faq-wrapper h3 {
    font-size: 1rem;
  }

  .catHeroImg {
    display: block;
    margin-top: 10px;
    padding: 0 17%;
  }

  .page-home .catHeroImg,
  .page-category-content .catHeroImg,
  .page-category-item .catHeroImg {
    display: block;
    margin-top: 10px;
    padding: 0;
  }

  .catHeroContent p,
  .catHeroContentRight img,
  .homeHeroContentRightTop img,
  .catHeroContentRightTop img, {
    display: none;
  }

  .catHeroContentRightTop img,
  .homeHeroContentRightTop img {
    display: none;
  }

  .page-category-item .catHeroContent,
  .page-category-item .homeHeroContentTop,
  .page-category-content .catHeroContent,
  .page-category-content .homeHeroContentTop {
    padding: 15px 0 0 0;
  }
}

@media (max-width: 430px) {
  #faq-wrapper h3 {
    font-size: .9rem;
  }

  #faq-wrapper .item {
    padding: 10px 8px 8px 8px;
  }

  .single .basket-payment-icon {
    height: 20px;
  }

  .branchenHeadline {
    padding: 5px 10px;
  }
}

@media (max-width: 385px) {
  #faq-wrapper .item {
    min-height: 40px;
  }

  #faq-wrapper .toggle-icon::before {
    font-size: 1rem;
  }
}

/* Branchenbanner */
.branchenWrapper {
  background: #f6f7f9;
  padding: 15px 0;
}

.branchenHeadline {
  background-color: var(--ci);
  font-weight: 700;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  border-radius: .1rem;
}

.branchenSubline {
  padding: 15px 0;
}

@media (max-width: 1430px) {

  .page-category-item .cmp-product-thumb .price,
  .page-search .cmp-product-thumb .price {
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    min-height: 55px;
  }

  .page-category-item .rrp-discount, .page-search .rrp-discount {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1010px) and (min-width: 992px) {

  .cmp-product-thumb .itemStock,
  .page-category-item .deliveryCost,
  .page-search .deliveryCost,
  .page-category-item .deliveryHinweis,
  .page-search .deliveryHinweis {
    font-size: .77rem;
  }

  .cmp-product-thumb .itemStock .dot {
    margin-right: 1px;
  }
}

@media (max-width: 1135px) {

  .page-category-item .catVariationImgWrapper img,
  .page-search .catVariationImgWrapper img {
    max-width: 60px;
  }
}

@media (max-width: 776px) {
  .branchenKachel {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 576px) {

  .page-category-item .cmp-product-thumb,
  .page-search .cmp-product-thumb {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .15);
  }

  .cmp-product-thumb .thumb-content {
    min-height: 210px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (max-width: 1250px) and (min-width: 992px) {

  .categoryCols .col-lg-10,
  .row .col-lg-10.cat-control {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .categoryCols .col-lg-2,
  .row .col-lg-2.cat-control {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .categoryCols .product-list .col-md-3 {
    display: flex;
    align-items: center;
  }

  .categoryCols .product-list .col-md-7 {
    flex: 0 0 56.333%;
    max-width: 56.333%;
  }

  .categoryCols .product-list .col-md-5 {
    flex: 0 0 43.666%;
    max-width: 43.666%;
  }

  .catHeroContent p,
  .catHeroContentUl li,
  .homeHeroContentTop p,
  .configButtonHome span {
    margin-bottom: .5rem;
  }

  /* .catHeroContentRightTop,
  .homeHeroContentRight {
    display: flex;
  } */
  .page-category-content .catHeroContentRightTop,
  .page-category-content .homeHeroContentRight {
    display: flex;
    flex-direction: column;
  }

  .cmp-product-thumb .thumb-title {
    min-height: 41px;
  }

  .cmp-product-thumb .thumb-content {
    padding: .7rem 0;
    font-size: .9rem;
  }

  .cmp-product-thumb .itemInfo {
    padding: .7rem .5rem;
  }

  .cmp-product-thumb .special-tags {
    top: 10px;
    left: 10px;
  }

  .cmp-product-thumb .special-tags .badge-custom {
    white-space: normal;
    word-break: break-word;
    display: inline-block;
    max-width: 165px;
  }
}

@media (max-width: 1125px) {

  .catHeadline,
  .homeHeadline {
    font-size: 1.3rem;
    margin-bottom: .5rem;
  }

  .page-home .homeHeroContentLeftTop p>b {
    font-size: 1.15rem;
  }
}

@media (max-width: 991px) {

  .catHeroContent,
  .homeHeroContentTop {
    padding: 5px 0;
  }

  .catHeroContentLeft {
    min-height: 145px;
  }

  .homeHeroContentLeftTop {
    min-height: 200px;
  }

  .catHeroContentRight,
  .homeHeroContentRightTop,
  .homeHeroContentRight {
    text-align: center;
    padding: 10px 15px 0 15px;
  }

  .catHeadline,
  .homeHeadline {
    font-size: 1.3rem;
  }

  .product-list {
    display: flex;
  }

  .cmp-product-thumb .thumb-content {
    padding: .7rem 0;
    font-size: .9rem;
  }

  .cmp-product-thumb .itemInfo {
    padding: .7rem .7rem .7rem .7rem;
  }

  .categoryCols .product-list .col-md-3 {
    display: flex;
    align-items: center;
  }

  article .categoryItemShortDescription {
    -webkit-line-clamp: 3;
  }

  .cmp-product-thumb .thumb-content,
  .cmp-product-thumb .itemInfo {
    min-height: 220px;
  }

  .catHeroContentUl {
    display: block;
    margin: 7px 0;
  }

  .catHeroContentUl li {
    font-size: .9rem;
    margin-bottom: 7px;
    margin-right: 0;
    width: 100%;
  }

  .cmp-product-thumb .special-tags .badge-custom {
    white-space: normal;
    word-break: break-word;
    display: inline-block;
    max-width: 160px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .cmp-product-thumb .thumb-title {
    min-height: 41px;
  }
}

/* Scrollen auf mobilen Geräten */
@media (max-width: 800px) {
  .facettenBubble {
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {

  .cmp-product-thumb .thumb-content,
  .cmp-product-thumb .itemInfo {
    min-height: 225px;
  }

  .cmp-product-thumb .thumb-title {
    min-height: 16px;
  }

  .single .cmp-product-thumb .thumb-title {
    min-height: 41px;
  }

  .page-category-item .catVariationImgWrapper,
  .page-search .catVariationImgWrapper {
    margin-bottom: 10px;
  }

  .page-category-item .catVariationImgWrapper img,
  .page-search .catVariationImgWrapper img {
    max-width: 52px;
  }

  .homeHeroContentLeftTop {
    min-height: 220px;
  }

  .cmp-product-thumb .special-tags .badge-custom {
    max-width: 200px;
  }
}

@media (max-width: 767px) and (min-width: 576px) {

  .page-category-item .cmp-product-thumb .thumb-content,
  .page-search .cmp-product-thumb .thumb-content {
    padding: .7rem .5rem;
    background: #f8f8f8;
  }
}

@media (max-width: 650px) {
  .cmp-product-thumb .thumb-title {
    min-height: 47px;
  }
}

@media (max-width: 575px) {
  .cmp-product-thumb {
    padding: 5px;
    border: 2px solid #e3e3e3;
  }

  .cmp-product-thumb .special-tags .badge {
    font-size: .8rem;
  }

  .page-home .cmp-product-thumb .thumb-image,
  .page-search .cmp-product-thumb .thumb-image,
  .page-category-item .cmp-product-thumb .thumb-image {
    width: 100%;
  }

  .cmp-product-thumb .thumb-title {
    min-height: 41px !important;
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 7px;
  }

  /*
  .single .crossSelling .cmp-product-thumb .thumb-title {
    min-height: 55px !important;
  } */
  .cmp-product-thumb .crossprice,
  .cmp-product-thumb .artSold {
    font-size: .9em !important;
  }

  .page-home .cmp-product-thumb .thumb-content,
  .page-search .cmp-product-thumb .thumb-content,
  .page-category-item .cmp-product-thumb .thumb-content {
    width: calc(100% - 0px);
    padding: .8rem 0;
  }

  .homeHeroContentLeftTop {
    min-height: 170px;
  }

  .page-home .cmp-product-thumb .thumb-content,
  .page-search .cmp-product-thumb .thumb-content,
  .page-category-item .cmp-product-thumb .thumb-content {
    padding: .5rem 0 0 0;
  }

  .cmp-product-thumb .itemInfo {
    padding: 0 0 .5rem 0;
    flex-direction: column-reverse;
  }

  .cmp-product-thumb .thumb-content,
  .cmp-product-thumb .itemInfo {
    min-height: 53px;
  }

  .categoryItemShortDescription,
  .categoryItemBulletpoints {
    display: none !important;
  }

  .page-category-item .rrp-discount,
  .page-search .rrp-discount {
    justify-content: left;
  }

  .page-category-item .cmp-product-thumb .price,
  .page-search .cmp-product-thumb .price {
    justify-content: space-evenly;
  }

  .cmp-product-thumb .price {
    font-size: 1.4rem;
  }

  .page-category-item .inclKat, .page-search .inclKat {
    justify-content: flex-start;
    margin-top: 5px;
    color: #000;
  }

  .cmp-product-thumb .artSold {
    text-align: left !important;
  }

  .cmp-product-thumb .itemStock {
    text-align: left;
    margin-bottom: 0px;
    margin-top: 3px;
  }

  .page-category-item .deliveryHinweis,
  .page-search .deliveryHinweis {
    text-align: left;
    font-size: .9rem;
  }

  .single .itemDescriptionText h2,
  .single .crossSellingHeadline {
    text-align: left;
  }

  .page-category-item .catVariationWrapper,
  .page-search .catVariationWrapper {
    width: auto;
  }

  .page-category-item .catVariationImgWrapper,
  .page-search .catVariationImgWrapper {
    display: inline-block;
  }

  .page-category-item .catVariationImgWrapper img,
  .page-search .catVariationImgWrapper img {
    margin-bottom: 5px;
  }

  .cmp-product-thumb .itemInfo {
    padding: .5rem;
  }

  .page-home .cmp-product-thumb .thumb-content,
  .page-search .cmp-product-thumb .thumb-content,
  .page-category-item .cmp-product-thumb .thumb-content {
    padding: .5rem;
  }

  .page-search .cmp-product-thumb .itemInfo,
  .page-category-item .cmp-product-thumb .itemInfo {
    background: #fff;
  }

  #faq-wrapper .toggle-icon::before {
    margin-left: 10px;
  }

  #faq-wrapper .item {
    padding: 5px 10px;
  }

  #faq-wrapper h4 {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 530px) {
  .cmp-product-thumb .thumb-title {
    font-size: 1rem;
  }

  .cmp-product-thumb .price {
    font-size: 17px;
    font-weight: 700;
  }
}

@media (max-width: 500px) {
  .bubbleImage img {
    max-width: 80%;
  }

  .facettenBubble {
    gap: 2%;
  }

  .cmp-product-thumb .special-tags .badge-custom {
    max-width: 150px;
  }
}

@media (max-width: 480px) {

  .page-category-item .categoriegrid article>div,
  .page-search .categoriegrid article>div {
    display: flex;
  }

  .page-category-item .categoriegrid .col-6,
  .page-search .categoriegrid .col-6 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-category-item .cmp-product-thumb,
  .page-search .cmp-product-thumb {
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
  }

  .page-category-item .cmp-product-thumb .itemInfo,
  .page-search .cmp-product-thumb .itemInfo {
    min-height: 72px;
  }

  .page-category-item .cmp-product-thumb .thumb-meta,
  .page-search .cmp-product-thumb .thumb-meta {
    min-height: 40px;
  }

  .page-search .h2 {
    font-size: 1.3rem;
  }

  .asideHeadline {
    font-size: .9rem;
  }

  .catHeadline,
  .homeHeadline {
    font-size: 1.2rem;
  }
}

@media (max-width: 420px) {

  .single .crossSelling .cmp-product-thumb .itemInfo,
  .page-home .homeItemList .cmp-product-thumb .itemInfo,
  .single .crossSelling .cmp-product-thumb .thumb-content,
  .page-home .homeItemList .cmp-product-thumb .thumb-content {
    padding: .2rem;
  }

  .single .crossSelling .price,
  .page-home .homeItemList .price {
    font-size: .9rem;
  }
}

@media (max-width: 400px) {

  .categoryCols .product-list .col-5.col-sm-5.col-md-3,
  .categoryCols .product-list .col-7.col-sm-7.col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cmp-product-thumb {
    padding: 15px;
  }

  .cmp-product-thumb .thumb-title {
    min-height: 17px !important;
  }

  .cmp-product-thumb .thumb-title {
    font-size: 13px;
  }

  .categoryCols .product-list .col-5.col-sm-5.col-md-3 {
    justify-content: center;
  }

  .page-home .cmp-product-thumb .thumb-image,
  .page-search .cmp-product-thumb .thumb-image,
  .page-category-item .cmp-product-thumb .thumb-image {
    width: 70%;
  }

  .cmp-product-thumb .special-tags .badge-custom {
    max-width: 190px;
  }
}

@media (max-width: 375px) {

  .page-category-item .categoriegrid article>div,
  .page-search .categoriegrid article>div {
    align-items: center;
  }

  .catHeroContentLeft {
    min-height: 270px;
  }
}

@media (max-width: 345px) {

  header #controlsList .nav-link>.fa,
  .menu-close>.fa {
    font-size: 18px;
  }
}

/* Modellauswahl Kategorie */
.catModellAuswahl {
  padding: 2px;
  margin-bottom: 1rem;
}

.catModellAuswahl ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.catModellAuswahl li {
  border-top: 1px solid #e3e3e3;
}

@media (min-width: 992px) {
  .catModellAuswahl li:last-child {
    border-bottom: 1px solid #e3e3e3;
  }
}

.catModellAuswahl li a {
  display: flex;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.catModellAuswahl img {
  height: auto;
  margin-right: 15px;
  mix-blend-mode: multiply;
}

.catModellAuswahl span {
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  color: #000;
}

.catModellAuswahl li a:hover span::after {
  transform: scaleX(1);
}

.catModellAuswahl span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--dci);
  transition: all 0.2s ease;
  transform: scaleX(0);
  transform-origin: center;
}

.catModellAuswahl li:hover span::after {
  transform: scaleX(1);
  left: 0;
  width: 100%;
}

/* Produktfilter */
.savePriceDifference {
  background-color: var(--dci);
  border-radius: .1rem;
  padding: 3px 5px 2px 3px;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}

@media (max-width: 575px) {
  .savePriceDifference {
    background-color: var(--dci);
  }
}

.filter-toggle {
  display: block;
  text-align: start;
  /* background-color: var(--ci); */
  border-radius: .1rem;
  padding: 3px 5px 3px 10px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(270deg, var(--dci), var(--ci));
}

.filter-toggle:hover,
.filter-toggle:focus,
.filter-toggle:active {
  text-decoration: none;
  cursor: default;
  color: #fff;
}

.filterHeadline {
  font-weight: 700;
  color: #303030;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 1rem !important;
  margin-top: .5rem !important;
  font-size: 1rem;
  line-height: 1.1;
}

.filter-wrapper {
  width: 100%;
}

.filter-wrapper .card:first-child {
  border-top: 0;
}

.filter-wrapper .card {
  border: 0;
  border-top: 1px solid #e3e3e3;
}

.filter-wrapper .card .pic {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f2f2f2;
}

.filter-wrapper .filter-badge {
  width: 24px;
  height: 24px;
  padding: 3px 0;
  min-width: 1px;
  z-index: 2;
}

.filter-wrapper .form-check-label {
  display: block;
}

.filter-wrapper .card-columns {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
  orphans: 1;
  widows: 1;
}

.text-appearance.selected-filter {
  display: table;
  color: #ffffff;
  font-weight: 700;
  background-color: var(--ci);
  border-radius: .1rem;
  margin: 10px 0;
  padding: 2px 15px;
  text-align: center;
  cursor: pointer;
}

.text-appearance.selected-filter:hover i {
  color: red;
}

.selected-filter.reset-all {
  display: block;
  background: #ddd;
  padding: 5px;
  margin: 10px 0;
  text-align: center;
  cursor: pointer;
}

#filter-accordion .card {
  border: 0 !important;
  margin-bottom: 2px;
}

#filter-accordion .card-header {
  padding: 0;
  background-color: transparent;
  border-bottom: 0;
}

#filter-accordion button {
  color: #000;
  background: #f5f5f5;
  padding: 15px 20px 5px;
}

#filter-accordion button i {
  font-size: 25px;
  position: relative;
  top: -5px;
  line-height: 1;
}

#filter-accordion .pic {
  position: sticky;
}

#filter-accordion .filter-badge {
  min-width: 2em;
  color: #808080;
  background: #ffffff;
}

#filter-accordion .card-body {
  padding-left: 38px;
}

@media (max-width: 991px) {
  .filterTopBar {
    margin-top: 0 !important;
  }

  .sortingBlock {
    justify-content: end;
    margin-bottom: 15px;
  }

  .list-sort {
    margin-right: 10px;
  }

  .page-category-item .custom-select,
  .page-search .custom-select {
    margin-bottom: 0;
    margin-right: 20px;
  }

  .filter-wrapper {
    border: 1px solid #dee2e6;
  }

  .filter-toggle {
    background-color: var(--ci);
    border-radius: .1rem;
    color: #fff;
    font-size: 1.2rem;
  }

  .filter-toggle:hover,
  .filter-toggle:focus,
  .filter-toggle:active {
    color: #fff;
  }

  .toggleOnMobile {
    margin-bottom: 0;
  }

  .catModellAuswahl {
    display: flex;
    overflow: hidden;
    justify-content: center;
    margin: 0 0 10px 0;
    flex-wrap: nowrap;
  }

  .catModellAuswahl ul {
    display: flex;
    flex: 0 0 auto;
    width: 100%;
    justify-content: space-evenly;
  }

  .catModellAuswahl li {
    border-top: none;
    margin-right: 10px;
  }

  .catModellAuswahl li a {
    justify-content: center;
    flex-direction: column;
  }

  .catModellAuswahl img {
    margin-right: 0;
  }
}

@media (max-width: 430px) {
  .catModellAuswahl {
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
  }

  .catModellAuswahl ul {
    width: unset;
  }
}

@media (max-width: 575px) {

  .cat-control p,
  .cat-control h2 {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
  }

  .filter-toggle {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .sortingBlock {
    display: none !important;
  }
}

/* Startseite */
.homeGridFirst {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "imageOne imageTwo imageThree"
    "imageFour imageFive imageSix"
    "imageSeven imageEight imageNine";
  gap: 25px;
  margin-top: 20px;
}

.page-home .gridKachel {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .15);
  background: var(--grau);
}

.homeHeroContent {
  padding: 15px 0;
  text-align: left;
}

.homeSeo .homeHeroContent {
  padding: 0 0 30px 0;
  text-align: left;
}

.page-home .row.homeItemList article a:hover .categoryItemShortDescription,
.page-home .row.homeItemList article a:hover .inclKat {
  color: #000;
}

.page-home .row.homeItemList img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(0, 0, .26, 1), opacity .3s cubic-bezier(0, 0, .26, 1), -webkit-transform .3s cubic-bezier(0, 0, .26, 1);
}

.page-home .row.homeItemList article a:hover img {
  transform: scale(1.05);
}

.page-home .homeHeroContentLeftTop p>b,
.page-home .homeHeroContentLeftTop h2>b,
.page-category-item .catHeroContentLeftTop h2>b {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 5px;
}

.page-home .homeHeroContentRightTop a {
  height: 100%;
  display: block;
}

@media (max-width: 991px) {
  .homeSeo .homeHeroContent {
    padding: 0;
  }
}

.homeSeo .homeHeroContentLeft {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 330px;
}

.page-category-content .homeSeo .homeHeroContentLeft {
  min-height: 275px;
}

.homeSeo .homeHeroContent .homeRatgeberHeadline {
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.homeSeo .homeHeroContent p,
.homeSeo .homeHeroContent li {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.4;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.homeSeo .homeHeroContent p.modal-title {
  color: var(--text);
  text-shadow: unset;
}

.homeSeo .homeVideoBanner p {
  color: #212529;
  line-height: 1.3;
  text-shadow: unset;
}

.homeSeo ul {
  padding-left: 15px;
}

.homeVideo {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.page-home .box.video-link {
  cursor: pointer;
  height: 100%;
  display: block;
}

.page-home .catVariationWrapper {
  display: none;
}

.page-home #page-body .homeHeroContentRight img {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .15);
}

.page-home #page-body .homeServices .homeHeroContentRight img {
  box-shadow: none;
}

#item-0 {
  grid-area: imageOne;
}

#item-1 {
  grid-area: imageTwo;
}

#item-2 {
  grid-area: imageThree;
}

#item-3 {
  grid-area: imageFour;
}

#item-4 {
  grid-area: imageFive;
}

#item-5 {
  grid-area: imageSix;
}

#item-6 {
  grid-area: imageSeven;
}

#item-7 {
  grid-area: imageEight;
}

#item-8 {
  grid-area: imageNine;
}

#item-9 {
  grid-area: imageTen;
}

#item-10 {
  grid-area: imageEleven;
}

#item-11 {
  grid-area: imageTwelve;
}

.homeHeroContentLeftTop p.h2 {
  font-size: 1.8rem;
}

.configButtonContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .configButtonContainer,
.page-category-content .configButtonContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

@media (max-width: 991px) {
  .page-home .configButtonContainer {
    width: 100%;
  }
}

.configButtonContainer a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.page-home .configButtonHome,
.page-category-content .configButtonHome {
  border: 2px solid var(--special);
  background-color: var(--special);
  /* border: 2px solid #fff; */
  /* background-color: #fff; */
  color: #303030;
  text-align: center;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.page-home .configButtonHome:hover,
.page-category-content .configButtonHome:hover {
  border: 2px solid #fff;
  background-color: #fff;
  /* border: 2px solid var(--dci); */
  /* background-color: var(--dci); */
  color: #303030;
}

.configButtonBodyContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 351px;
  margin: 0 0 25px 0;
}

.configButtonBodyContainer a {
  display: block;
  width: 100%;
  text-decoration: none;
  margin-bottom: 0;
}

.page-home .configButtonBody,
.page-category-content .configButtonBody {
  border: 2px solid var(--ci);
  background-color: var(--ci);
  color: #fff;
  text-align: center;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.page-home .configButtonBody:hover,
.page-category-content .configButtonBody:hover {
  border: 2px solid var(--hci);
  background-color: var(--hci);
  color: #fff;
}

.contentImgSubline {
  color: var(--ci);
  text-align: center;
  font-weight: 700;
  margin-top: 10px;
}

.itemKachelTitle {
  color: var(--text);
  font-size: 1.3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 55px;
}

.itemKachelTitle p {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.itemKachelTitle p.brandName {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.itemKachelImage {
  overflow: hidden;
  height: 100%;
}

.itemKachelImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(0, 0, .26, 1),
    opacity .3s cubic-bezier(0, 0, .26, 1),
    -webkit-transform .3s cubic-bezier(0, 0, .26, 1);
}

/* .categoryTopBackground .homeHeroContentRightTop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(0, 0, .26, 1),
    opacity .3s cubic-bezier(0, 0, .26, 1),
    -webkit-transform .3s cubic-bezier(0, 0, .26, 1);
} */
.page-home .homeSeo,
.page-category-content .homeSeo {
  /* background: var(--ci); */
  background: linear-gradient(320deg, var(--dci), var(--ci));
}

.homeRatgeberInfo {
  font-size: 1.3rem !important;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  font-weight: 700;
  text-align: left;
  padding-top: 15px;
  font-stretch: condensed;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.homeRatgeberInfo::before {
  content: "i";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.4rem;
  height: 1.4rem;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1rem;
  margin-right: 0.5rem;
  background-color: transparent;
  text-transform: none;
  font-weight: 700;
  bottom: 2px;
  position: relative;
}

@media (max-width: 1420px) {
  .page-category-content .ratgeberH2 {
    font-size: 1.3rem;
  }

  .page-category-content .ratgeberH3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 1125px) {
  .page-category-content .ratgeberH2 {
    font-size: 1.2rem;
  }

  .page-category-content .ratgeberH3 {
    font-size: 1.15rem;
  }
}

.homeRatgeberHeadline {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}

.homeContentLeft {
  display: flex;
  flex-direction: column;
}

.page-home .homeContentLeft li {
  margin-bottom: 5px;
}

.homeContentLeft p,
.homeContentLeft ul,
.homeContentLeft li,
.homeContentText,
.homeContentUl li,
.page-home #faq-wrapper .item-body p,
.page-category-item #faq-wrapper .item-body p,
.catRatgeber p,
.page-category-content .catRatgeber li {
  font-size: 1.1rem;
  line-height: 1.4;
}

.page-home .homeContentUl li, {
  line-height: 1.8;
}

.homeContentTextH3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  line-height: 1.1;
}

.homeItemList article>row {
  flex-direction: column;
}

/* .homeVideoBorder {
  border: 1px solid #f0f0f0;
} */
.homeVideoBanner {
  position: absolute;
  left: 16px;
  bottom: 8px;
  background-color: var(--dci);
  padding: 8px 16px;
}

.homeSeo .homeVideoBanner p {
  margin-bottom: 0;
  text-align: left;
  font-size: 1.25rem;
}

.homeVideoBanner strong {
  font-weight: 400;
}

.homeAngeboteBanner {
  position: absolute;
  left: 50%;
  top: 92%;
  background-color: var(--ci);
  padding: 8px 16px;
  transform: translate(-50%, -50%);
  /* width: max-content; */
  width: 95%;
}

.page-home .row.homeItemList a:hover p {
  color: var(--text);
}

.page-home .row.homeItemList a:hover .itemStock.green {
  color: #07641F;
}

.homeAngeboteBanner p {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  /* text-align: left; */
  color: #fff;
  text-shadow: unset;
}

.mixBlendImg {
  mix-blend-mode: multiply;
}

.page-home .homeItemList .cmp-product-thumb .special-tags {
  top: -15px;
  left: 15px;
}

@media (max-width: 1450px) {
  .homeAngeboteBanner p {
    font-size: 1.15rem;
  }
}

@media (max-width: 1420px) {
  .homeHeroContentLeftTop p.h2 {
    font-size: 1.3rem;
  }

  .page-home h2,
  .page-home h3 {
    font-size: 1.5rem;
  }

  .homeSeo .homeHeroContent p,
  .homeSeo .homeHeroContent li,
  .homeContentLeft p,
  .homeServices p,
  .homeContentLeft ul,
  .homeContentLeft li,
  .homeContentText,
  .homeContentUl li,
  .page-home #faq-wrapper .item-body p,
  .page-category-item #faq-wrapper .item-body p,
  .catRatgeber p,
  .page-category-content .catRatgeber li {
    font-size: .9rem;
  }

  .homeAngeboteBanner p {
    font-size: .9rem;
  }

  .homeVideoBanner {
    bottom: 14%;
  }
}

@media (max-width: 1352px) {
  .page-home .homeServices .col-12.col-lg-8.serviceContentLeft {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-home .homeServices .col-12.col-lg-4.homeHeroContentRight {
    display: none;
  }

  .serviceContentLeft {
    padding: 15px !important;
  }

  .homeServicesHeadline {
    text-align: center;
  }

  .homeServices p {
    text-align: center;
  }

  .serviceBannerContact,
  .serviceBannerUsp {
    justify-content: space-evenly !important;
    width: auto !important;
    gap: unset !important;
  }
}

@media (max-width: 1300px) {

  .homeSeo .homeHeroContent p,
  .homeContentLeft p,
  .homeServices p,
  .homeContentLeft ul,
  .homeContentLeft li,
  .homeContentText,
  .homeContentUl li,
  .page-home #faq-wrapper .item-body p,
  .page-category-item #faq-wrapper .item-body p,
  .catRatgeber p,
  .page-category-content li {
    font-size: .9rem;
  }

  header .kontaktfeldText {
    display: none;
  }
}

@media (max-width: 1250px) {
  .homeVideoBanner {
    bottom: 19px;
  }
}

@media (max-width: 1170px) {
  header .KontaktfeldHeader i {
    display: none;
  }

  header #search {
    max-width: 420px;
  }
}

@media (max-width: 1300px) and (min-width: 576px) {
  .page-home .homeItemList .cmp-product-thumb .special-tags {
    display: none;
  }
}

@media (max-width: 1180px) and (min-width: 992px) {
  .homeAngeboteBanner {
    left: 0;
    bottom: 0;
    top: unset;
    transform: unset;
    width: unset;
  }
}

@media (max-width: 1125px) {
  .homeHeroContentLeftTop p.h2 {
    font-size: 1.2rem;
  }

  .page-home h2,
  .page-home h3,
  .homeContentTextH3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 1100px) {
  .itemKachelTitle {
    bottom: 0;
    padding: 10px 19px 7px 1px;
    width: 100%;
    font-size: 1rem;
  }

  .homeKatMainHeadlineWhite {
    font-size: 15px;
    font-weight: 700;
  }

  header .KontaktfeldHeader {
    display: none !important;
  }

  header #search {
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  header #search {
    max-width: 100%;
  }

  .homeServices p,
  .serviceBannerUsp p {
    font-size: .9rem;
  }

  .serviceBannerContact a {
    font-size: 1rem;
  }

  .homeHeroContentLeftTop p.h2 {
    font-size: 1.3rem;
  }

  .configButtonContainer {
    margin: 7px 0;
  }

  .page-home .configButtonHome {
    width: 100% !important;
  }

  .page-home h2,
  .page-home h3,
  .homeContentTextH3 {
    font-size: 1.5rem;
  }

  .homeRatgeberInfo {
    margin-top: 15px;
  }

  .homeSeo .configButtonContainer {
    display: block !important;
  }

  .contentRowReverse {
    flex-direction: column-reverse;
  }

  .catHeroContentRightTop img,
  .page-home .homeHeroContentTop img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }

  .homeGridFirst {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "imageOne imageTwo"
      "imageThree imageFour"
      "imageFive imageSix"
      "imageSeven imageEight"
      "imageNine imageTen";
    gap: 20px;
  }

  .homeAngeboteBannerCode {
    padding: 5px 8px 4px 4px;
  }

  .page-home .catHeroContent,
  .page-home .homeHeroContentTop {
    padding: 15px 0 15px 0;
  }

  .homeAngeboteBanner {
    bottom: unset;
    padding: 8px 16px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
  }
}

@media (max-width: 991px) {
  header#page-header {
    position: fixed;
    transition: box-shadow 0.3s;
  }

  header#page-header.scrolled {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.25);
  }

  header #search {
    top: 62px;
    max-width: 100%;
    background: var(--ci);
    /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
    box-shadow: 0 4px 5px 0px rgb(0 0 0 / 25%);
  }
}

@media (max-width: 600px) {
  header #search {
    top: 45px;
  }

  header #controlsList {
    margin-top: 0;
    align-items: center;
  }
}

#item-0 {
  grid-area: imageOne;
}

#item-1 {
  grid-area: imageTwo;
}

#item-2 {
  grid-area: imageThree;
}

.gridKachel a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gridKachel a:hover .itemKachelImage img,
.categoryTopBackground .homeHeroContentRightTop a:hover img {
  transform: scale(1.05);
}

.homeSocialKachelBorder {
  border: solid 5px var(--ci);
}

.homeKatMainHeadlineWhite {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.text-img-caption {
  margin-top: 5px;
  text-align: center;
}

.homeServices {
  background: var(--ci);
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
}

.serviceContentLeft {
  padding-top: 15px;
}

.homeServicesHeadline {
  color: #fff;
}

.homeServicesHeadline::before {
  display: inline-block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/sprechblase-icon-weiss.svg);
  background-size: 33px 33px;
  height: 33px;
  width: 45px;
  top: 9px;
  background-repeat: no-repeat;
  position: relative;
}

.homeServices p {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #fff;
}

.homeServices .homeHeroContentRight img {
  clip-path: polygon(18% -1%, 100% -1%, 100% 50%, 100% 100%, 18% 100%, 0% 50%);
}

.serviceBannerContact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: max-content;
  gap: 120px;
  margin-top: 20px;
}

.serviceBannerContact a {
  font-size: 1.5rem;
  color: #fff;
}

.serviceBannerTel::before {
  display: inline-block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/telefon-mobil-icon.svg);
  background-size: 20px 28px;
  height: 33px;
  width: 26px;
  top: 9px;
  background-repeat: no-repeat;
  position: relative;
}

.serviceBannerMail::before {
  display: inline-block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/e-mail-icon.svg);
  background-size: 28px 33px;
  height: 33px;
  width: 35px;
  top: 9px;
  background-repeat: no-repeat;
  position: relative;
}

.serviceBannerUsp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: max-content;
  gap: 155px;
  margin-top: 30px;
}

.serviceBannerUsp p {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #fff;
}

.serviceBannerUsp-one,
.serviceBannerUsp-two,
.serviceBannerUsp-three,
.serviceBannerUsp-four {
  text-align: center;
}

.serviceBannerUsp-one::before {
  display: block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/sonderanfertigung-icon.svg);
  background-size: 28px 28px;
  height: 33px;
  width: 33px;
  top: 9px;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.serviceBannerUsp-two::before {
  display: block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/vertrauen-icon.svg);
  background-size: 33px 28px;
  height: 33px;
  width: 33px;
  top: 9px;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.serviceBannerUsp-three::before {
  display: block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/uhr-termin-icon.svg);
  background-size: 32px 28px;
  height: 33px;
  width: 33px;
  top: 9px;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.serviceBannerUsp-four::before {
  display: block;
  content: ' ';
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/lieferung-gratis-icon.svg);
  background-size: 32px 28px;
  height: 33px;
  width: 33px;
  top: 9px;
  background-repeat: no-repeat;
  margin: 0 auto;
}

@media (max-width: 630px) {
  .homeGridFirst {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "imageOne"
      "imageTwo"
      "imageThree"
      "imageFour"
      "imageFive"
      "imageSix"
      "imageSeven"
      "imageEight"
      "imageNine";
    gap: 20px;
  }

  .homeFAQheadline h2 {
    font-size: 14px;
  }

  .homeGridFirst .row.align-items-center .itemKachelImage,
  .homeGridFirst .row.align-items-center .itemKachelTitle {
    display: flex;
    justify-content: center;
  }

  .homeGridFirst .row.align-items-center .itemKachelImage {
    padding: 0 15px;
  }

  .homeGridFirst .row.align-items-center .col-6.itemKachelImage,
  .homeGridFirst .row.align-items-center .col-6.itemKachelTitle {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    max-width: unset;
  }
}

@media (max-width: 575px) {
  .homeHeroContentTop .homeHeadline {
    font-size: 1.2rem;
  }

  .catHeroContentLeft {
    min-height: 250px;
  }

  .homeHeroContentLeftTop p.h2 {
    font-size: 1rem;
    font-weight: 700;
  }

  .page-home h2,
  .page-home h3,
  .homeContentTextH3 {
    font-size: 1.2rem;
  }

  .page-home .homeItemList .cmp-product-thumb .special-tags {
    top: 0;
  }

  .serviceBannerContact a {
    font-size: 1.2rem;
  }

  .serviceBannerContact {
    flex-direction: column;
  }

  .serviceBannerUsp {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0 !important;
  }

  .page-home .homeHeroContentLeftTop p>b {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .homeHeroContentLeftTop {
    min-height: 470px;
  }

  .page-home .homeHeroContentLeftTop {
    min-height: auto;
  }

  .catHeroContentRightTop img,
  .page-home .homeHeroContentTop img {
    height: auto;
  }

  .homeAngeboteBanner {
    position: relative;
    right: unset;
    bottom: unset;
    transform: unset;
    left: unset;
    width: auto;
    top: unset;
  }

  .homeHeroContentLeftTop p.h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .homeSeo .homeHeroContentLeft .homeRatgeberHeadline {
    margin-top: 10px;
  }

  .homeAngeboteBanner p {
    text-align: center;
  }
}

@media (max-width: 430px) {

  .page-home h2,
  .page-home .h2,
  .page-home h3,
  .homeContentTextH3 {
    font-size: 1rem;
    font-weight: 700;
  }
}

@media (max-width: 400px) {
  .homeVideoBanner {
    position: unset;
  }

  .itemKachelTitle {
    font-size: .9rem;
  }
}

@media (max-width: 360px) {
  .homeAngeboteBanner strong {
    font-size: 1rem;
    text-align: left;
  }

  .homeAngeboteBanner span {
    font-size: .9rem;
    display: block;
  }
}

/* Footer */
footer .footerTop {
  padding: 30px 30px 10px 30px;
  background-color: #f0f0f0;
}

footer .footerTop a {
  color: #212529;
}

footer .list-unstyled {
  padding-left: 0;
  list-style: none;
  line-height: 1.5;
}

footer .list-unstyled li {
  margin-bottom: 3px;
}

footer .footerTop a:hover {
  text-decoration: underline;
}

footer .footerTop img {
  background-color: #fff;
  width: 100%;
  height: 15px;
  margin-right: 20px;
  mix-blend-mode: multiply;
}

footer .footerTop li:first-of-type img {
  width: 75px;
  height: 100%;
}

footer .footerBottom {
  padding: 20px 0;
  text-align: center;
  background-color: var(--hgrau);
}

footer .footerBottomRow {
  justify-content: space-between;
}

footer .footerBottom p {
  margin-bottom: 5px;
}

footer .footerIconRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

footer .footerLegalInfo span {
  font-size: .8rem;
}

footer .headline {
  font-weight: 700;
}

footer a {
  color: #000
}

footer .socialmedia a {
  color: #fff
}

footer .tabStop {
  width: 100px;
  display: inline-block;
}

footer .icons ul {
  display: flex;
  flex-wrap: wrap;
}

footer .icons ul li {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

footer .icons ul li img {
  margin-bottom: 10px;
  margin-right: 10px;
}

footer .social-media ul li {
  flex: 0 0 40px;
  max-width: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
}

footer .social-media ul li i {
  display: block;
  height: 40px;
  text-align: center;
  padding: 8px;
  color: #fff;
  font-size: 25px;
}

footer .social-media ul li.facebook i {
  background-color: #0654a1;
}

footer .social-media ul li.instagram i {
  background-color: #973464;
}

footer .social-media ul li.whatsapp i {
  background-color: #42d855;
}

footer .social-media ul li.youtube i {
  background-color: #ce1629;
}

@media (max-width: 1285px) and (min-width: 992px) {
  footer .text-right {
    font-size: .87rem;
  }

  footer .tabStop {
    width: 60px;
  }
}

@media (max-width: 1035px) and (min-width: 992px) {
  footer .contact .tabStop {
    /* display: block; */
    font-size: .87rem;
  }

  footer .tabStop {
    width: 49px;
  }
}

@media (max-width: 991px) {
  footer .footerBottomRow {
    justify-content: space-between;
    flex-direction: column-reverse;
    display: flex;
    align-items: flex-end;
  }

  footer .tabStop {
    width: 60px;
  }
}

@media (max-width: 600px) and (min-width: 576px) {
  footer .text-right {
    font-size: .95rem;
  }
}

@media (max-width: 767px) {
  footer .footerTop {
    background-size: cover;
  }
}

@media (max-width: 700px) {
  footer .footerIconRow {
    justify-content: center;
    margin-top: 20px;
  }

  footer .footerIconRow li:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  footer .footerIconRow li:not(:first-child) {
    max-width: calc(25% - 5px);
    flex: 0 0 calc(25% - 5px);
    margin-top: 15px;
    margin-left: 5px;
  }
}

@media (max-width: 380px) {
  footer .footerIconRow li:not(:first-child) {
    max-width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
    margin-top: 15px;
    margin-left: 0;
  }
}

/* Feedback Bewertung Sterne */
.single #bewertungen .widget-primary .btn-appearance {
  color: #fff;
  background-color: var(--ci);
  border-color: var(--ci);
}

.single #bewertungen .feedback-container.widget-inner {
  display: flex;
  flex-direction: column;
}

.single #bewertungen .feedback-container.widget-inner>hr {
  display: none;
}

.single #bewertungen .row.my-2 {
  order: 2;
}

.single .feedback-container .title {
  font-size: 1.35rem !important;
  line-height: .5;
  min-height: 20px;
}

.feedback-comment-title {
  position: relative;
  display: inline-block;
}

.feedback-comment-title::after {
  content: "Verifizierter Kauf ✔";
  color: green;
  font-size: 0.9em;
  margin-left: 5px;
  font-weight: 400;
}

.single .feedback-container .feedback-list .feedback .feedback-comment .feedback-comment-title {
  font-size: 1.2rem;
}

.single .feedback-container .feedback-list .feedback .feedback-comment .feedback-comment-text {
  line-height: 1.6;
}

.single .feedback-stars-average {
  height: 20px !important;
  margin-left: 0;
}

.single #bewertungen .feedback-stars-average {
  height: 30px !important;
  margin-left: 0;
}

.single .feedback-container .feedback-stars-average {
  float: unset;
}

.single .feedback-stars-average.feedback-category-view {
  width: 85px;
  margin-left: 10px;
}

.feedbackCountitemList {
  font-size: .9rem;
  color: #000;
}

.feedbackCountitemList a:hover {
  color: var(--dci);
  text-decoration: underline;
}

#feedback-stars {
  display: flex;
  justify-content: left;
  align-items: flex-end;
  margin: 2px 0;
}

#feedback-stars .fa-star {
  margin: 0 2px;
}

.cmp-product-thumb #feedback-stars.star-0 .feedback-star {
  color: transparent;
}

#feedback-stars .feedback-star {
  color: #dbdbdb;
}

#feedback-stars.star-1 .feedback-star:first-child,
#feedback-stars.star-2 .feedback-star:first-child,
#feedback-stars.star-2 .feedback-star:nth-child(2),
#feedback-stars.star-3 .feedback-star:first-child,
#feedback-stars.star-3 .feedback-star:nth-child(2),
#feedback-stars.star-3 .feedback-star:nth-child(3),
#feedback-stars.star-4 .feedback-star:first-child,
#feedback-stars.star-4 .feedback-star:nth-child(2),
#feedback-stars.star-4 .feedback-star:nth-child(3),
#feedback-stars.star-4 .feedback-star:nth-child(4),
#feedback-stars.star-5 .feedback-star:first-child,
#feedback-stars.star-5 .feedback-star:nth-child(2),
#feedback-stars.star-5 .feedback-star:nth-child(3),
#feedback-stars.star-5 .feedback-star:nth-child(4),
#feedback-stars.star-5 .feedback-star:nth-child(5) {
  color: #ffd700;
}

.single .feedback-stars-average .feedback-star {
  height: 30px;
  width: 17px;
  line-height: 32px;
  font-size: 16px;
  float: left;
  text-align: center;
  color: #ffd700;
}

.single .feedback-container .feedback-list .feedback .feedback-comment .feedback-rating .full {
  color: #ffd700;
}

.single .feedback-container input.star:checked~label.star:before,
.single .feedback-container input.star-rated:checked~label.star-rated:before {
  content: "";
  color: #ffd700;
}

.single .feedback-container label.star:hover:before {
  color: #ffd700 !important;
}

.single .feedback-container label.star:hover~label.star:before {
  color: #ffd700;
}

.single .feedback-container .feedback-list .feedback {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: rgba(0, 0, 0, .1) solid 1px;
}

.single .crossSelling article #feedback-stars,
.single .crossSelling article .shortDesc,
.single .crossSelling article .deliveryConditionsKat {
  display: none
}

.page-home .homeItemList article .shortDesc {
  display: none
}

.single .widget-primary .bg-appearance {
  color: #212529 !important;
  background-color: #ffd700 !important;
}

@media (max-width: 815px) {
  .single .feedback-stars-average.feedback-category-view {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .single .feedback-container .feedback-list .feedback .feedback-comment .feedback-comment-title {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  #feedback-stars {
    position: relative;
    min-height: 22px
  }

  .feedback-stars-overlay-wrap {
    position: absolute;
    top: 0;
  }

  #feedback-stars-average .feedback-star {
    display: inline-block;
  }

  .feedback-stars-overlay-wrap .feedback-star {
    color: #ffd700;
  }

  .feedback-stars-average .feedback-stars-background .feedback-star {
    color: rgba(0, 0, 0, 0.1);
  }

  .form-control {
    font-size: .9rem !important;
  }

  .single .variationBlockHeadline {
    flex-direction: column;
    align-items: flex-start;
  }

  .single .zubehoer-link {
    margin-left: 0;
  }
}

@media (max-width: 370px) {
  .feedback-container .feedback-bars .feedback-bar-wrap .feedback-bar {
    width: 110px !important;
  }

  .feedback-container .title {
    font-size: 1.5rem !important;
  }
}

/* modalZubehör Garten */
.modalZubehoerContainer {
  max-width: 50%;
}

@media (max-width: 767px) {
  .modalZubehoerContainer {
    max-width: 90%;
  }
}

.modalZubehoerContainer .modal-header {
  padding: 1rem 1rem 0 1rem;
}

.modalZubehoerContainer .modal-body {
  padding: 1rem;
}

.modal-dialog {
  margin: 1rem auto;
}

.modalZubehoerContainer .widget {
  margin-bottom: 0rem;
}

@media (max-width: 991px) {
  #modalOberContainer {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "modalImageFirstOne modalImageSecondOne"
      "modalTextOne modalTextOne"
      "modalImageFirstTwo modalImageSecondTwo"
      "modalTextTwo modalTextTwo"
      "modalImageFirstThree modalImageSecondThree"
      "modalTextThree modalTextThree";
  }
}

/* Versandkostenseite */
.page-category-content #header-shipping-table {
  background-color: #e3e3e3;
  border: 1px solid #e3e3e3;
  font-weight: 700;
  padding: 5px;
  float: left;
}

.page-category-content #content-shipping-table {
  border: 1px solid #e3e3e3;
  font-weight: 700;
  padding: 5px;
  float: left;
}

@media (max-width: 400px) {
  .page-category-content #content-shipping-table {
    font-weight: 400;
    font-size: .9rem;
  }
}

/* Ratgeber */
div#page-body {
  overflow-x: unset;
}

.page-category-content .catHeroContentLeft h2 {
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}

.ratgeberDetails {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ffffff;
}

.ratgeberDetails p {
  display: flex;
  align-items: center;
  margin: 0;
}

.ratgeberDetails .ratgeberArtikelDate::before,
.ratgeberDetails .ratgeberArtikelReadingTime::before,
.ratgeberDetails .ratgeberArtikelAuthor::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.ratgeberDetails .ratgeberArtikelDate::before {
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/calendar-icon.svg);
}

.ratgeberDetails .ratgeberArtikelReadingTime::before {
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/clock-icon.svg);
}

.ratgeberDetails .ratgeberArtikelAuthor::before {
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/sickerschacht/icons/pen-solid.svg);
}

.ratgeberDetails .ratgeberArtikelPipe {
  color: #ffffff;
}

.ratgeberBeispiel {
  background: #f0f0f0;
  padding: 15px;
}

.sideNavSticky {
  position: sticky;
  top: 20px;
  align-self: start;
}

.sideNavUl {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.sideNavUl li {
  border-top: 1px solid #e3e3e3;
  font-size: 1rem;
  font-weight: 700;
}

.sideNavUl li:last-child {
  border-bottom: 1px solid #e3e3e3;
}

.sideNavUl li a {
  display: flex;
  align-items: center;
  min-height: 60px;
  text-decoration: none;
  padding: 0;
  color: #2d2d2d;
}

.sideNavUl li a:hover {
  color: #2d2d2d;
}

.sideNavUl li.active {
  color: var(--ci);
}

.sideNavUl li.active a {
  color: var(--ci);
}

.catRatgeberText {
  color: #fff;
  padding: 10px;
  hyphens: auto;
}

.catRatgeberText ol {
  padding-left: 25px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .catRatgeberText {
    text-align: left;
    padding: 10px 15px 10px 15px;
  }

  .catRatgeberText ol {
    column-count: 2;
  }
}

@media (max-width: 460px) {
  .catRatgeberText ol {
    column-count: 1;
  }
}

.h4-contentHeadline {
  font-size: 1.25rem;
}

.page-category-content hr {
  margin-top: 0;
  border-top: 2px solid var(--dci);
}

.page-category-content #regenwassernutzung-haus-und-garten,
.page-category-content #vorteile-der-kunststoffzisterne,
.page-category-content #foederung-fuer-zisternen,
.page-category-content #regenwasserrueckhaltung-mit-retentionszisterne,
.page-category-content #zisternengroesse-berechnen,
.page-category-content #zisterne-einbauen,
.page-category-content #sammelgruben-fuer-abwasser,
.page-category-content #branchenloesungen-regenwasser,
.page-category-content #zisternenreinigung,
.page-category-content #regenertrag-ermitteln,
.page-category-content #regenwasserbedarf-berechnen,
.page-category-content #zisternenrechner-online,
.page-category-content #zisternengroesse-ausrechnen,
.page-category-content #zisterne-position,
.page-category-content #baugrube-ausheben,
.page-category-content #kiesbett-anlegen,
.page-category-content #zisterne-einsetzen,
.page-category-content #komponenten-anschliessen,
.page-category-content #zisterne-ueberdecken,
.page-category-content #zisternen-reinigung {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .15);
  padding: 30px;
  background-color: #fff;
}

.page-category-content .homeSeo .configButtonContainer {
  width: 100%;
}

.page-category-content ol>li,
.page-category-content #regenwasserrueckhaltung-mit-retentionszisterne ul>li,
.page-category-content #sammelgruben-fuer-abwasser ul>li {
  margin-bottom: 5px;
}

.table-wrapper {
  overflow-x: auto;
  max-width: 100%;
}

table.zisternen-foerdermittel-tabelle {
  border-collapse: collapse;
  border: 1px solid #eee;
  margin: 0 0 15px;
  text-align: left;
  width: 100%;
  border-spacing: 0;
}

table.zisternen-foerdermittel-tabelle thead {
  background: var(--ci);
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
  border: 1px solid #aaa;
}

table.zisternen-foerdermittel-tabelle thead th {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  padding: 5px;
}

table.zisternen-foerdermittel-tabelle td {
  border: 1px solid #aaa;
  padding: 5px;
}

table.zisternen-foerdermittel-tabelle tbody td {
  font-size: 1.1rem;
}

@media (max-width: 1420px) {

  table.zisternen-foerdermittel-tabelle thead th,
  table.zisternen-foerdermittel-tabelle tbody td {
    font-size: .9rem;
  }
}

table.niederschlag-je-bundesland {
  border-collapse: collapse;
  border: 1px solid #eee;
  margin: 0 0 15px;
  text-align: left;
  width: 100%;
  border-spacing: 0;
}

table.niederschlag-je-bundesland thead {
  background: var(--ci);
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
  border: 1px solid #aaa;
}

table.niederschlag-je-bundesland thead th {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  padding: 5px;
  border: 1px solid #fff;
}

table.niederschlag-je-bundesland td {
  border: 1px solid #aaa;
  padding: 5px;
}

table.niederschlag-je-bundesland tbody td {
  font-size: 1.1rem;
}

@media (max-width: 1420px) {

  table.niederschlag-je-bundesland thead th,
  table.niederschlag-je-bundesland tbody td {
    font-size: .9rem;
  }
}

table.dachneigung-und-faktor {
  border-collapse: collapse;
  border: 1px solid #eee;
  margin: 0 0 15px;
  text-align: center;
  width: 100%;
  border-spacing: 0;
}

table.dachneigung-und-faktor thead {
  background: var(--ci);
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
  border: 1px solid #aaa;
}

table.dachneigung-und-faktor thead th {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  padding: 5px;
  border: 1px solid #fff;
}

table.dachneigung-und-faktor td {
  border: 1px solid #aaa;
  padding: 5px;
}

table.dachneigung-und-faktor tbody td {
  font-size: 1.1rem;
}

@media (max-width: 1420px) {

  table.dachneigung-und-faktor thead th,
  table.dachneigung-und-faktor tbody td {
    font-size: .9rem;
  }
}

table.niederschlag-muenchen {
  border-collapse: collapse;
  border: 1px solid #eee;
  margin: 0 0 15px;
  text-align: center;
  width: 100%;
  border-spacing: 0;
}

table.niederschlag-muenchen thead {
  background: var(--ci);
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
  border: 1px solid #aaa;
}

table.niederschlag-muenchen thead th {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  padding: 5px;
  border: 1px solid #fff;
}

table.niederschlag-muenchen td {
  border: 1px solid #aaa;
  padding: 5px;
}

table.niederschlag-muenchen tbody td {
  font-size: 1.1rem;
}

@media (max-width: 1420px) {

  table.niederschlag-muenchen thead th,
  table.niederschlag-muenchen tbody td {
    font-size: .9rem;
  }
}

table.zisterne-garten {
  border-collapse: collapse;
  border: 1px solid #eee;
  margin: 0 0 15px;
  text-align: center;
  width: 100%;
  border-spacing: 0;
}

table.zisterne-garten thead {
  background: var(--ci);
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
  border: 1px solid #aaa;
}

table.zisterne-garten thead th {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  padding: 5px;
  border: 1px solid #fff;
}

table.zisterne-garten td {
  border: 1px solid #aaa;
  padding: 5px;
}

table.zisterne-garten tbody td {
  font-size: 1.1rem;
}

@media (max-width: 1420px) {

  table.zisterne-garten thead th,
  table.zisterne-garten tbody td {
    font-size: .9rem;
  }
}

table.zisterne-haus {
  border-collapse: collapse;
  border: 1px solid #eee;
  margin: 0 0 15px;
  text-align: center;
  width: 100%;
  border-spacing: 0;
}

table.zisterne-haus thead {
  background: var(--ci);
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
  border: 1px solid #aaa;
}

table.zisterne-haus thead th {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  padding: 5px;
  border: 1px solid #fff;
}

table.zisterne-haus td {
  border: 1px solid #aaa;
  padding: 5px;
}

table.zisterne-haus tbody td {
  font-size: 1.1rem;
}

@media (max-width: 1420px) {

  table.zisterne-haus thead th,
  table.zisterne-haus tbody td {
    font-size: .9rem;
  }
}

table.zisternengroesse-ergebnis {
  border-collapse: collapse;
  border: 1px solid #eee;
  margin: 0 0 15px;
  text-align: center;
  width: 100%;
  border-spacing: 0;
}

table.zisternengroesse-ergebnis thead {
  background: var(--ci);
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
  border: 1px solid #aaa;
}

table.zisternengroesse-ergebnis thead th {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  padding: 5px;
  border: 1px solid #fff;
}

table.zisternengroesse-ergebnis td {
  border: 1px solid #aaa;
  padding: 5px;
}

table.zisternengroesse-ergebnis tbody td {
  font-size: 1.1rem;
}

@media (max-width: 1420px) {

  table.zisternengroesse-ergebnis thead th,
  table.zisternengroesse-ergebnis tbody td {
    font-size: .9rem;
  }
}

.page-category-content section {
  margin-bottom: 1rem;
}

.ratgeberMainMargin {
  margin-bottom: 5rem !important;
}

/* Volumenplaner */
.page-category-content #zisternenrechner-online .form-group>label {
  font-weight: 700;
}

.calculator-section p.h4 {
  background: var(--ci);
  /* background: linear-gradient(270deg, var(--dci), var(--ci)); */
  color: #fff;
  font-weight: 700;
  padding: 5px;
}

.rechnerResultHeadline,
.rechnerResult {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.rechnerResult {
  text-align: center;
  background-color: transparent !important;
  border: none;
  font-weight: 700;
}

.rechnerWetterSubline {
  text-align: center;
}

.rechnerResultHinweis,
.rechnerWetterSubline {
  font-size: .85rem !important;
  font-style: italic;
}

@media (max-width: 1240px) and (min-width: 768px) {
  .rechnerDachdeckung .rechnerDachOne {
    max-width: 65%;
    flex: 0 0 65%;
  }

  .rechnerDachdeckung .rechnerDachTwo {
    max-width: 35%;
    flex: 0 0 35%;
  }

  .rechnerWaterUse .col-12.col-sm-6.col-lg-2 {
    max-width: 21.6%;
    flex: 0 0 21.6%;
  }

  .rechnerWaterUse .col-12.col-sm-6.col-lg-3 {
    max-width: 30%;
    flex: 0 0 30%;
  }
}

@media (max-width: 767px) {

  .rechnerResultHeadline,
  .rechnerResult {
    font-size: 1.1rem !important;
    margin-bottom: 0;
  }
}

/* Ratgeber */
@media (max-width: 1420px) {
  .page-category-content .catHeroContentLeft h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 1125px) {
  .page-category-content .catHeroContentLeft h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 991px) {
  .page-category-content #mobileNavAccordion button i {
    font-size: 30px;
    position: relative;
    top: 0;
    line-height: 1;
  }

  .page-category-content #mobileNavAccordion button[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .page-category-content #mobileNavAccordion .card-header {
    background-color: var(--ci);
    padding: 0;
  }

  .page-category-content #mobileNavAccordion .card-body {
    padding: 0 1rem;
  }

  .page-category-content #mobileNavAccordion .ratgeberNavMobile {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sideNavUl li:first-child {
    border-top: unset;
  }

  .sideNavUl li:last-child {
    border-bottom: unset;
  }

  .page-category-content .catHeroContentLeft h2 {
    margin-bottom: 5px;
  }

  .ratgeberDetails {
    margin-top: 15px;
  }
}

@media (max-width: 610px) {
  table.niederschlag-muenchen {
    overflow-x: auto;
    display: block;
  }
}

@media (max-width: 600px) {
  .rechnerImages {
    display: none;
  }
}

@media (max-width: 500px) {
  table.zisternengroesse-ergebnis {
    overflow-x: auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .ratgeberDetails {
    justify-content: center;
  }

  .ratgeberDetails .ratgeberArtikelPipe {
    display: none;
  }
}

@media (max-width: 470px) {
  table.zisterne-haus {
    overflow-x: auto;
    display: block;
  }
}

@media (max-width: 454px) {
  table.niederschlag-je-bundesland {
    overflow-x: auto;
    display: block;
  }
}

/* HTML SITEMAP */
.html-sitemap h3.p {
  margin-bottom: 0;
  font-weight: 700;
}

.html-sitemap ul {
  padding-left: 5px;
  list-style: none;
}

.html-sitemap ul.html-sitemap-articles {
  padding-left: 5px;
  list-style: none;
}

.html-sitemap a {
  color: var(--ci);
  text-decoration: underline;
}

.html-sitemap a:hover {
  color: var(--dci);
}

/* TELEFONABFRAGE WIDGET */
.telefonabfrageWidget .widget {
  margin-bottom: 1rem;
}

.telefonabfrageWidget #addPhoneWidget {
  background: #f6f6f6;
}

.telefonabfrageWidget #addPhoneWidget .h2 {
  font-weight: 700;
  font-size: 1.2rem;
}

.telefonabfrageWidget #addPhoneWidget .btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: var(--ci);
  border-color: var(--ci);
}

.telefonabfrageWidget #addPhoneWidget .btn.disabled, .btn:disabled {
  opacity: 1;
}

.telefonabfrageWidget #addPhoneWidget .btn-link {
  color: var(--ci) !important;
}

/* Cookiebanner */
.cookie-bar__message.mb-2 {
  color: #000;
}

.cookie-bar .custom-control-input[disabled]~.custom-control-label,
.cookie-bar .custom-control-input:disabled~.custom-control-label {
  color: #575757;
}

.cookie-bar .text-primary {
  color: #575757 !important;
}

/* CSS Sickerschacht ALT */
.homeHeaderPic {
  margin-top: 0;
}

.headerPic {
  position: relative;
}

.headerPic .container-max {
  position: absolute;
  bottom: 50px;
  right: 0;
}

/* .container-max {
  max-width: 1810px;
} */
.headerPic .headline {
  background-color: var(--hci);
  padding: 10px 60px;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  display: inline;
}

.borderSolidBlack {
  border: 1px solid var(--text);
}

.newsbox {
  position: relative;
  background-color: #f8f9fa;
}

.timesNewRoman {
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
}

.newsBoxContentTopLeft {
  position: absolute;
  top: 15px;
  left: 15px;
}

.newsBoxAktuell {
  color: var(--dci);
}

.newsBoxContentTopRight {
  position: absolute;
  top: 15px;
  right: 15px;
}

.newsBoxContentCenter {
  position: absolute;
  top: 0;
  left: 0;
  padding: 75px 85px;
  font-size: 18px;
}

.newsBoxContentBottomLeft {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.newsBoxContentBottomRight {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.homeCategories .box {
  border: 1px solid #000;
  padding: 10px;
  display: block;
  height: 100%;
  margin-bottom: 20px;
}

.homeCategories a:hover.box p {
  color: #000;
}

.homeCategories .box img {
  padding: 30px;
}

.homeServices {
  /* background: var(--hci); */
  padding: 15px 0;
  background: linear-gradient(270deg, var(--dci), var(--ci));
}

.homeServices img {
  padding-bottom: 10px;
  max-height: 75px;
  width: auto;
  /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1868%) hue-rotate(315deg) brightness(107%) contrast(101%); */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.homeServices p {
  color: #fff;
  /* color: #000; */
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.homeFAQheadline {
  /* background: var(--hci); */
  padding: 15px 0 10px 0;
  background: linear-gradient(270deg, var(--dci), var(--ci));
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

#mainNavbarCollapsable {
  width: 100%;
}

/* .main-navbar-collapsable .mainmenu {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  display: flex;
  padding: 0;
  margin: 0;
  font-weight: bold;
} */
.main-navbar-collapsable .mainmenu>li {
  position: relative;
}

/* .main-navbar-collapsable .mainmenu>li>a {
  padding: 0.5rem 1rem;
  color: #000;
} */
.main-navbar-collapsable .mainmenu>li ul {
  position: absolute;
  top: 100%;
  left: 0;
  /* background: #fff; */
  background: #f8f9fa;
  width: 300px;
  z-index: 999;
}

.ulCheckmark {
  list-style: none;
  line-height: 40px;
  margin-top: 16px;
}

.ulCheckmark li:before {
  content: '\2714\0020';
}

.homeHeroContentLeftTopBulletpoints ul,
.catHeroContentLeftTopBulletpoints ul {
  padding-left: 0;
  list-style: none;
}

.homeHeroContentLeftTopBulletpoints li,
.catHeroContentLeftTopBulletpoints li {
  color: #343434;
  font-size: 1.1rem;
  line-height: 1.5;
}

.homeHeroContentLeftTopBulletpoints li::before,
.catHeroContentLeftTopBulletpoints li::before {
  content: "";
  background-image: url(https://cdn02.plentymarkets.com/yi9z0xbw5t14/frontend/icons/checkmark.svg);
  background-size: 13px 13px;
  height: 13px;
  width: 13px;
  background-repeat: no-repeat;
  display: inline-block;
  filter: invert(19%) sepia(78%) saturate(6596%) hue-rotate(110deg) brightness(101%) contrast(106%);
  padding-right: 20px;
}

.page-category-content .breadcrumbs {
  display: none !important;
}

.catHeadlineLinkBlau {
  color: var(--dci);
}