/* width */
::-webkit-scrollbar {
  width: 10px;
}
/* button */
::-webkit-scrollbar-button {
  background: var(--primaryColor);
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffffff88;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
/* Track */
::-webkit-scrollbar-track {
  background: var(--primaryColor);
}
/* The track NOT covered by the handle.
::-webkit-scrollbar-track-piece {
    background: #000;
}

/* Corner */
::-webkit-scrollbar-corner {
  background: var(--primaryColor);
}
/* Resizer */
::-webkit-resizer {
  background: var(--primaryColor);
}
.modalproducts {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-left: -1%;
  margin-right: -1%;
  justify-content: center;
  flex-wrap: wrap;
}
.modalproducts .badges {
  display: flex;
  gap: 10px;
}
.modalproducts .badges span {
  padding: 0.25em 0.5em;
  background-color: var(--primaryColor);
  color: #ffffff;
  font-size: 0.8rem;
  display: block;
}
.modalproducts .badges span.badge-tipp {
  background-color: var(--primaryDarkerColor);
}
.modalproducts .badges span.badge-exclusive {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#c19e67+0,f3e2c7+39,f3e2c7+39,b68d4c+63,e9d4b3+100 */
  background: #c19e67;
  /* Old browsers */
  background: -moz-linear-gradient(left, #c19e67 0%, #f3e2c7 39%, #f3e2c7 39%, #b68d4c 63%, #e9d4b3 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #c19e67 0%, #f3e2c7 39%, #f3e2c7 39%, #b68d4c 63%, #e9d4b3 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #c19e67 0%, #f3e2c7 39%, #f3e2c7 39%, #b68d4c 63%, #e9d4b3 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c19e67', endColorstr='#e9d4b3', GradientType=1);
  /* IE6-9 */
}
.modalproducts .modal-dialog {
  max-width: 800px;
}
.modalproducts .modalproduct {
  flex: 0 0 100%;
  padding: 1%;
}
.modalproducts .modalproduct a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modalproducts .modalproduct a .badges {
  position: absolute;
  top: 1rem;
  left: 0;
  gap: 0.5rem;
  flex-direction: column;
}
.modalproducts .modalproduct a .badges span.badge {
  border-radius: 0 0.25rem 0.25rem 0;
}
.modalproducts .modalproduct a > img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 12px;
  box-shadow: 0px 6px 12px -3px #999999;
}
.modalproducts .modalproduct a > .title {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 24px;
}
@media screen and (min-width: 480px) {
  .modalproducts .modalproduct {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 992px) {
  .modalproducts .modalproduct {
    flex: 0 0 25%;
  }
}
@media screen and (min-width: 1500px) {
  .modalproducts .modalproduct {
    flex: 0 0 14.28%;
  }
}
.productmodal {
  padding: 0;
  font-size: 1rem;
}
.productmodal .title {
  text-align: center;
  font-size: 4rem;
}
.productmodal .subtitle {
  display: block;
  font-size: 1.6rem;
  text-align: center;
}
.productmodal .row {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.productmodal p {
  font-size: 1.125rem;
}
.productmodal ul {
  list-style-image: url('/fileadmin/template/eschenbach-main/images/plus-bullet.png');
  padding-left: 22px;
}
.productmodal ul li {
  font-size: 1rem;
}
.productmodal img {
  width: 100%;
  height: auto;
}
.productmodal .itemdata {
  margin-bottom: 2rem;
}
.productmodal .itemdata dl {
  border-bottom: 1px solid #000000;
  padding: 0.25rem;
  line-height: 1em;
  display: flex;
  margin-bottom: 0;
}
.productmodal .itemdata dl:last-child {
  border: none;
}
.productmodal .itemdata dl dt {
  flex: 0 0 200px;
}
.productmodal .itemdata dl dd {
  margin-bottom: 0;
  text-align: right;
}
.productmodal .seals {
  display: flex;
}
.productmodal .seals .seal {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.productmodal .seals .seal img {
  width: 3rem;
  height: auto;
}
.productmodal .seals .seal span {
  color: #0096a4;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.accordion {
  margin: 3rem 0;
}
.accordion .carditem {
  border-bottom: 1px solid var(--primaryColor);
}
.accordion .carditem:last-child {
  border: none;
}
.accordion .carditem .carditem-header {
  padding: 1rem 0;
  background: transparent;
  padding-left: 2rem;
  position: relative;
}
.accordion .carditem .carditem-header .less,
.accordion .carditem .carditem-header .more {
  position: absolute;
  left: 0;
  top: 0.9rem;
  transition: all 250ms ease-in-out;
}
.accordion .carditem .carditem-header .less svg,
.accordion .carditem .carditem-header .more svg {
  width: 1rem;
  height: auto;
}
.accordion .carditem .carditem-header .more {
  opacity: 0;
}
.accordion .carditem .carditem-header .less {
  opacity: 1;
}
.accordion .carditem .carditem-header a.collapsed .more {
  opacity: 1;
}
.accordion .carditem .carditem-header a.collapsed .less {
  opacity: 0;
}
.accordion .carditem .carditem-header .title {
  margin: 0;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2em;
}
.accordion .carditem .carditem-header .title a {
  display: flex;
  gap: 20px;
}
.accordion .carditem .carditem-header .title a:hover {
  text-decoration: none;
}
.accordion .carditem .carditem-body {
  padding-left: 2rem;
  font-size: 0.8rem;
  padding-bottom: 2rem;
}
.tx-kmgallery {
  display: flex;
  margin-left: -1rem;
  margin-right: -1rem;
  flex-wrap: wrap;
}
.tx-kmgallery > div {
  flex: 0 0 50%;
  padding: 1rem;
  position: relative;
}
@media screen and (min-width: 640px) {
  .tx-kmgallery > div {
    flex: 0 0 25%;
  }
}
.tx-kmgallery > div img {
  width: 100%;
  height: auto;
  transition: all 150ms ease-in-out;
}
.tx-kmgallery > div svg {
  width: 2rem;
  height: auto;
  position: absolute;
  top: 1rem;
  right: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: all 150ms ease-in-out;
}
.tx-kmgallery > div svg * {
  fill: #cccccc;
}
.tx-kmgallery > div:hover img {
  transform: scale(1.1);
}
.tx-kmgallery > div:hover svg {
  opacity: 1;
}
.navbar-nav .nav-item {
  position: relative;
}
.navbar-nav .nav-item .dropdown-toggle {
  position: absolute;
  right: 0;
  top: 0.5rem;
  font-size: 2em;
  color: #ffffff;
  line-height: 1em;
  display: inline-block;
}
.navbar-nav .nav-item .dropdown-toggle:hover {
  text-decoration: none;
}
.navbar-nav .nav-item:hover > .dropdown-toggle {
  color: #446eb3;
}
@media screen and (min-width: 992px) {
  .navbar-nav > .nav-item {
    position: relative;
  }
  .navbar-nav > .nav-item .dropdown-menu-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    overflow: visible;
  }
  .navbar-nav > .nav-item .dropdown-menu-wrap:before {
    content: "";
    display: block;
    right: 100%;
    height: 100%;
    width: 99999em;
    background-color: var(--primaryDarkerColor);
    position: absolute;
  }
  .navbar-nav > .nav-item .dropdown-menu-wrap > .dropdown-menu {
    display: block;
  }
  .navbar-nav > .nav-item .dropdown-menu-wrap .dropdown-submenu {
    position: static;
  }
  .navbar-nav > .nav-item .dropdown-menu-wrap .dropdown-submenu .dropdown-menu {
    padding: 0;
    border-radius: 0;
    top: -30px;
  }
  .navbar-nav > .nav-item .dropdown-menu-wrap .dropdown-submenu .dropdown-menu ul {
    padding-top: 30px;
    padding-bottom: 30px;
    max-height: 500px;
    overflow: auto;
    list-style: none;
    padding-left: 0;
  }
  .navbar-nav > .nav-item .dropdown-menu-wrap .dropdown-submenu .dropdown-menu ul .nav-link {
    margin-left: 40px;
  }
  .navbar-nav > .nav-item .dropdown-menu-wrap .dropdown-submenu:hover .dropdown-menu {
    display: block;
    background-color: var(--primaryColor);
  }
  .navbar-nav > .nav-item:hover .dropdown-menu-wrap {
    display: block;
  }
  .navbar-nav .nav-item.page_161 .dropdown-menu {
    top: unset !important;
    bottom: -30px;
  }
}
.km-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
}
.km-embed-container iframe,
.km-embed-container object,
.km-embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.frame-type-felogin_login legend {
  display: none;
}
.frame-type-felogin_login label {
  width: 300px;
}
.frame-type-table {
  overflow: auto;
}
.ce-table {
  margin-top: 3rem;
}
.ce-table td,
.ce-table th {
  padding: 10px;
}
.ce-table td:first-child,
.ce-table th:first-child {
  padding-left: 0;
}
.ce-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ce-table tr {
  transition: all 250ms ease-in-out;
}
.ce-table tr:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/*# sourceMappingURL=filename.map */