/** Shopify CDN: Minification failed

Line 24:2 Comments in CSS use "/* ... */" instead of "//"
Line 33:2 Comments in CSS use "/* ... */" instead of "//"
Line 282:0 Comments in CSS use "/* ... */" instead of "//"
Line 447:45 Unexpected "#"

**/
/* General */

.lowerCase {
  text-transform: lowercase;
}
.textCapitalize {
  text-transform: capitalize;
}
/* end of general */
/*collection page*/
section.collection div:not(.top-filter-nav) div.product-item:not(.product-item--featured-image) > div.product-item__image {
  background-color: var(--COLOR-BG-GRID);
}
form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav {
  list-style: none;
  // padding: 12px 0px;
}
form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li {
  display: inline !important;
}
form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li label {
  /* display: inline-block !important; */
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(139, 139, 139, 0.3) !important;
  // color: #adadad !important;
  border-radius: 10px !important;
  padding-left: 0;
  padding-right: 20px;
  white-space: nowrap !important;
  margin: 3px 0 !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: all 0.2s;
}

form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li label {
  cursor: pointer !important;
}

form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li label::after {
  display: none;
}

form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li label::before {
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  padding: 12px 6px 12px 12px !important;
  content: "+" !important;
  transition: transform 0.3s ease-in-out;
}

form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li input[type="checkbox"]:checked + label::before {
  content: "\2713" !important;
  transform: rotate(-360deg) !important;
  transition: transform 0.3s ease-in-out;
}

form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li input[type="checkbox"]:checked + label {
  border: 1px solid grey !important;
  background-color: black !important;
  color: #fff !important;
  transition: all 0.2s;
}

form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li input[type="checkbox"] {
  display: absolute !important;
}
form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
}
form.collection__filters div:not(.top-filter-nav) .collection__sidebar__group:not(:nth-child(3)) ul.collection-nav li input[type="checkbox"]:focus + label {
  border: 1px solid #EAE1D7 !important;
}

/* top filter */
.top-filter-nav input[type="checkbox"] {
  opacity: 0 !important;
  position: absolute !important;
  left: 0;
  top: 0;
}
.top-filter-nav,
.top-filter-nav *,
.top-filter-nav label {
  cursor: pointer !important;
}
/*
.top-filter-nav {
  border-radius: 90px;
  margin-right:10px;
  background-color: var(--COLOR-BG-SECONDARY);
  position: relative;
  display: grid;
  align-items: center;
}
*/
.top-filter-nav {
  margin-right: 10px;
  margin-bottom: 0;
}
.top-filter-nav label {
  display: inline-block !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(139, 139, 139, 0.3);
  /* color: #adadad !important; */
  border-radius: 30px !important;
  padding: 8px 20px !important;
  white-space: nowrap !important;
  margin: 3px 0 !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
  /* transition: all 0.2s; */
  cursor: pointer !important;
  font-size: calc(var(--font-1) * var(--FONT-ADJUST-BODY));
}

.top-filter-nav.sidebar__item--active label {
  border-color: black !important;
}
/* .top-filter-nav label::after {
  display: none;
} */


/* .top-filter-nav label::before {
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  padding: 12px 6px 12px 12px !important;
  content: "+";
  transition: transform 0.3s ease-in-out;
}

.top-filter-nav input[type="checkbox"]:checked + label:hover::before { 
    content: "\1F5D1";
}

li.top-filter-nav:hover {
  font-weight: bold;
}

.top-filter-nav:hover input[type="checkbox"]:checked + label::before {
  content: " ";
}
.top-filter-nav:hover label {
  border-color: var(--text) !important;
}
.top-filter-nav input[type="checkbox"]:checked + label::before {
  content: " ";
  transform: rotate(-360deg) !important;
  transition: transform 0.3s ease-in-out;
}

.top-filter-nav input[type="checkbox"]:checked + label {
  background-color: var(--COLOR-BG-SECONDARY) !important;
  color: var(--text) !important;
  transition: all 0.2s;
} */
/* .hide-buble-color {
    visibility: visible !important;
    opacity: 1 !important;
    transition: unset !important;
}   */
/* .hide-text-buble-color {
    visibility: hidden !important;
    opacity: 0 !important;
} */
/* end of collection page*/

/* header */
/*
.header__menu,
.header__menu div.menu__item span.navtext {
    font-family: Silk Serif !important;
}
*/

.theme__header {
  border-bottom: none;
}

.header__desktop {
  border-bottom: 1px solid;
}

.header__mobile {
  border-bottom: 1px solid;
}

.header__dropdown {
  /* 
    margin: 0 auto;
    padding: 0 var(--outer);
    left: 10% !important;
    max-width: calc((var(--content-max)) + (calc(var(--outer)/2))) !important;
    */
  box-shadow: -1px 0 12px 7px #0000001a;
}

.header__dropdown .dropdown__family {
  padding: 0;
}

.header__dropdown .dropdown__family--wide {
  padding: 30px 0;
}

.header__dropdown .dropdown__family > a span {
  display: inline-block;
  position: relative;
}
.header__dropdown .dropdown__family > a span:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--COLOR-HEADER-LINK-HOVER);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.header__dropdown .dropdown__family > a span:hover:after,
.header__dropdown .dropdown__family > a span:active {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.header__dropdown .dropdown__family .navtext {
  padding: 0.5rem 0;
  letter-spacing: 0.125rem;
  border-bottom: none !important;
  text-transform: uppercase;
  color: #3d3935 !important;
}
/* end of header */

@media only screen and (min-width: 750px) {
  .brick--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 750px) {
  .brick--border:not(.brick--margin).brick--3 .brick__block:last-of-type {
    border-left: none;
  }
}

@media only screen and (max-width: 749px) {
  .brick--border:not(.brick--margin).brick--3 .brick__block:last-of-type {
    border-top: none;
  }
}

// footer
footer .footer__top {
  padding: 20px 28px;
  border-bottom: 1px solid #B1B1B1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__border-line {
  width: 100vw;
  border-bottom: 1px solid #B1B1B1;
  right: 0;
  position: absolute;
}
footer .footer__block__title {
  font-family: 'ITC StoneSansII', 'ITC Stone Sans II';
  font-size: 16px !important;
  font-weight: bold !important;
}
div.footer__blocks .footer__quicklinks a {
  font-size: 15px !important;
}
.localization__wrapper {
  display: flex;
  max-width: 60%;
}
footer div.footer__block.footer__block--text:nth-child(4) div.rte > p {
  line-height: 30pt;
  margin-top: -10pt;
  text-transform: initial;
}
footer .localization__wrapper form {
  flex-flow: row wrap;
}
footer .localization__wrapper form .footer-country__wrapper,
footer .localization__wrapper form .footer-lang__wrapper {
  display: inline-flex;
  align-items: center;
}
footer div.site-footer > div.footer__blocks .footer__block:first-child,
footer .localization__wrapper form .footer-lang__wrapper {
  min-width: 253px;
  max-width: 253px;
}

@media only screen and (max-width: 370px) {
  footer .wrap_second_line {
    max-width: 100vw;
    overflow: hidden;
  }

  footer #localization_form .footer-country__wrapper {
    display: grid !important;
  }
}

@media only screen and (min-width: 990px) {
  footer div.footer__blocks > div.footer__block.footer__block--text {
    flex-basis: auto !important;
  }
  footer div.footer__blocks > div.footer__block .footer__payment {}
}
@media only screen and (min-width: 1440px) {
  footer div.site-footer > div.footer__blocks .footer__block:first-child,
  footer .localization__wrapper form .footer-lang__wrapper {
    min-width: 20%;
    max-width: 20%;
  }
  footer .localization__wrapper form .footer-lang__wrapper {
    width: calc(100vw - var(--outer));
  }
}
footer div.footer__blocks {
  padding-top: 20px;
}
footer .wrap_second_line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .wrap_second_line > div {
  margin: 0 0 1.25em;
}
footer #localization_form button[aria-describedby="lang-heading"],
footer #localization_form button[aria-describedby="country-heading"] {
  border: none;
  font-size: 16px !important;
}
@media only screen and (max-width: 749px) {
  footer .wrap_second_line {
    flex: 0 0 100%;
  }
  .localization__wrapper {
    max-width: unset !important;
  }
}
@media only screen and (min-width: 749px) {
  footer div.site-footer > div.footer__blocks .footer__block:last-child {
    text-align: right;
  }
}

/* newsletter */
#Newsletter--section-newsletter .text__standard > h2 {
  font-family: 'Silk Serif';
  letter-spacing: 0.125rem;
}

#Newsletter--section-newsletter .newsletter-form {
  max-width: 464px !important;
}

#Newsletter--section-newsletter .newsletter-form div.input-group #email-input-newsletter-1 {
  box-shadow: 0 0 0 transparent;
  padding: 0.875rem 1rem 0.8125rem;
  font-weight: 300;
}

.newsletter-form input#email-input-newsletter-1::-webkit-input-placeholder {
  color: red !important;
  text-transform: uppercase;
}
.newsletter-form input#email-input-newsletter-1::-moz-placeholder {
  color: red !important;
  text-transform: uppercase;
}
.newsletter-form input#email-input-newsletter-1::-ms-placeholder {
  color: red !important;
  text-transform: uppercase;
}
.newsletter-form input#email-input-newsletter-1::placeholder {
  color: red !important;
  text-transform: uppercase;
}

div.stuetz-newsletter-btn > button.btn--black {
  color: #fff !important;
  word-break: unset !important;
  min-width: 7.5rem;
  margin-top: 5px;
  min-height: 50px;
}
.consent-button-wrap {
  display: inline-flex;
}
@media only screen and (max-width: 749px) {
  .consent-button-wrap {
    display: block;
  }
}
/* end of newsletter*/

/* start about-us page */

#about-us section[id^=BrickSection--template][id$=__custom-content-2] .brick__section.brick--1 .image__hero__scale {
  min-height: unset !important;
  height: 100% !important;
}

#about-us section[id^=BrickSection--template][id$=__custom-content-1] .standard__rte.body-size-2 {
  max-width: 550px;
  margin: auto;
}

#about-us section[id^=BrickSection--template]#[id$=__custom-content-2] .brick__section.brick--1 .image__hero__scale {
  height: 100% !important;
}

#about-us section[id^=BrickSection--template][id$=__custom-content-5] .brick__section.brick--2,
#about-us section[id^=BrickSection--template][id$=__custom-content-3] .brick__section.brick--2 {
  grid-template-columns: 2fr 1fr !important;
  max-width: 900px;
}
#about-us section[id^=BrickSection--template][id$=__custom-content-4] .brick__section.brick--2 {
  grid-template-columns: 1fr 2fr !important;
  max-width: 900px;
}
#about-us section[id^=BrickSection--template][id$=__custom-content-5] .brick__section.brick--2 .image__fill,
#about-us section[id^=BrickSection--template][id$=__custom-content-4] .brick__section.brick--2 .image__fill,
#about-us section[id^=BrickSection--template][id$=__custom-content-3] .brick__section.brick--2 .image__fill {
  margin: 15% 0;
}

#about-us section[id^=BrickSection--template][id$=__custom-content-1] .standard__rte > p,
#about-us section[id^=BrickSection--template][id$=__custom-content-3] .standard__rte > p,
#about-us section[id^=BrickSection--template][id$=__custom-content-4] .standard__rte > p,
#about-us section[id^=BrickSection--template][id$=__custom-content-5] .standard__rte > p {
  line-height: 1.3125rem;
  font-size: 0.875rem;
  letter-spacing: 0.03125rem;
}
#about-us section[id^=BrickSection--template][id$=__custom-content-1] h2.standard__heading,
#about-us section[id^=BrickSection--template][id$=__custom-content-3] h2.standard__heading,
#about-us section[id^=BrickSection--template][id$=__custom-content-4] h2.standard__heading,
#about-us section[id^=BrickSection--template][id$=__custom-content-5] h2.standard__heading {
  font-family: 'Silk Serif';
}
/* end of about-us */

div.product-grid-outer form.radio__fieldset--swatches.radio__fieldset--small,
div.product-grid-outer .swatch__button.swatch__button--circle,
div.product-grid-outer .aos-initialized [data-fades-in] {
  opacity: 1;
  visibility: visible;
}

@media(hover: none) and (pointer: coarse) {
  .radio__fieldset--swatches {
    display: flex;
  }
}

div.product-grid-outer span.product-item__swatches-count {
  display: none;
}

a.navlink.navlink--grandchild {
  width: 100%;
}

[data-swatch="gold/silberfarben"] {
  background: linear-gradient(90deg, #f4dba4 50%, #d0d5d8 50%)
}

[data-swatch="gold/roséfarben"] {
  background: linear-gradient(90deg, #e4b6ab 50%, #f4dba4 50%)
}

[data-swatch="schwarz/ silberfarben"] {
  background: linear-gradient(90deg, #000000 50%, #d0d5d8 50%)
}

[data-swatch="silber/schwarz"] {
  background: linear-gradient(90deg, #d0d5d8 50%, #000000 50%)
}

[data-swatch="schwarz/braun"] {
  background: linear-gradient(90deg, #000000 50%, #8B4513 50%)
}

[data-swatch="silberfarben/ schwarz"] {
  background: linear-gradient(90deg, #d0d5d8 50%, #000000 50%)
}

[data-swatch="Gelb/Weißgold"] {
  background: linear-gradient(90deg, #f4dba4 50%, #d0d5d8 50%)
}

[data-swatch="Gelb/Weiß/Roségold"] {
  background: linear-gradient(90deg, #f4dba4 25%, #d0d5d8 50%, #e4b6ab 75%)
}

[data-swatch="Rosé/Weißgold"] {
  background: linear-gradient(90deg, #e4b6ab 50%, #d0d5d8 50%)
}

[data-swatch="Gelb/Roségold"] {
  background: linear-gradient(90deg, #f4dba4 50%, #e4b6ab 50%)
}

.vidBlockCollection {
  display: block;
  -webkit-animation: fadeInFromNone 5s ease-in-out;
  -moz-animation: fadeInFromNone 5s ease-in-out;
  -o-animation: fadeInFromNone 5s ease-in-out;
  animation: fadeInFromNone 5s ease-in-out;
}

@-webkit-keyframes fadeInFromNone {
  0% {
    opacity: 0;
  }

  1% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeInFromNone {
  0% {
    opacity: 0;
  }

  1% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeInFromNone {
  0% {
    opacity: 0;
  }

  1% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInFromNone {
  0% {
    opacity: 0;
  }

  1% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.product-item__bg__under,
.product-item__bg__inner,
.product-item__bg {
  background-color: var(--COLOR-BG-GRID);
}

header #header-lang-list-drawer {
  bottom: initial !important;
  box-shadow: 0 0 5px #0000003d;
}

header #header-language-form {
  margin: 0 -4px;
}

@media only screen and (max-width: 749px) {
  .drawer__content {
    top: unset !important;
    padding-top: 40px;
  }
  .drawer__bottom {
    bottom: 0;
    position: sticky;
  }
  #localization-form-drawer,
  .drawer__bottom__right,
  .drawer__bottom__left {
    justify-content: flex-end;
  }
  #localization-form-drawer {
    margin: 0;
  }
  #localization-form-drawer .popout--drawer .popout__toggle {
    padding: 0;
  }
  #localization-form-drawer .popout--drawer #lang-list-drawer {
    right: 0;
    left: auto;
    border: solid 1px;
  }
}

li.top-filter-nav:has([for="filter-Produkttyp-1"]) {
  display: none;
}

@media only screen and (max-width: 749px) {
  nav.header__drawer .drawer__bottom {
    border-top: none;
  }
}