.newsletter-flappy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  border: none;
  border-radius: 9999px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: 300ms;
  z-index: 500;
}
.newsletter-flappy-button.flappy-open {
  pointer-events: none;
  opacity: 0;
}
@media (min-width: 992px) {
  .newsletter-flappy-button {
    bottom: 35px;
    right: 35px;
  }
}
.newsletter-flappy {
  position: fixed;
  inset: auto 0 0 0;
  width: 100%;
  padding: 20px 15px 15px;
  color: white;
  background-color: var(--color-primary);
  z-index: 500;
  transition: 300ms;
  -webkit-transform: translate(0, calc(100% + 25px));
  -moz-transform: translate(0, calc(100% + 25px));
  transform: translate(0, calc(100% + 25px));
  border-radius: 15px;
}
@media (min-width: 992px) {
  .newsletter-flappy {
    inset: auto;
    right: 70px;
    bottom: 70px;
    width: 398px;
    padding: 18px;
    -webkit-transform: translate(calc(100% + 70px), 0);
    -moz-transform: translate(calc(100% + 70px), 0);
    transform: translate(calc(100% + 70px), 0);
  }
}
@media (min-width: 1400px) {
  .newsletter-flappy {
    right: 116px;
    bottom: 116px;
    -webkit-transform: translate(calc(100% + 116px), 0);
    -moz-transform: translate(calc(100% + 116px), 0);
    transform: translate(calc(100% + 116px), 0);
  }
}
.newsletter-flappy.flappy-open {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
}
.newsletter-flappy .content .headline {
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 35px;
  margin-bottom: 15px;
}
.newsletter-flappy .content .text {
  font-size: 16px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .newsletter-flappy .content .text {
    font-size: 15px;
  }
}
.newsletter-flappy .content .jump-button {
  min-width: 174px;
  max-width: 100%;
  font-size: 20px;
  color: var(--color-primary);
  background-color: white;
  padding: 3px 15px;
}
.newsletter-flappy .close-button {
  position: absolute;
  top: 0;
  right: 5px;
  width: 47px;
  height: 47px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: white;
  border: 2px solid var(--color-primary);
  border-radius: 9999px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .newsletter-flappy .close-button {
    top: 0;
    right: 0;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
}
.newsletter-flappy .close-button::after {
  position: absolute;
  inset: 0;
  content: "\00d7";
  font-size: 38px;
  line-height: 1.25;
  color: var(--color-primary);
  font-weight: 600;
}
.newsletter-flappy .xr_form .form-group {
  padding: unset;
}
.newsletter-flappy .xr_form .form-group input[type="text"] {
  background-color: white;
  color: var(--color-dark);
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
}
.newsletter-flappy .xr_form .form-group .xr_error {
  background-color: unset;
}
.newsletter-flappy .xr_form .checkbox-label .inner-checkbox {
  padding-left: 5px;
  font-size: 14px;
}
/*/xassets/uncompressed/source_map/244.css.css.map */
.v-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 30px;
  color: var(--color-primary);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-footer .v-footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.v-footer .v-footer-nav ul li a {
  color: var(--color-primary);
  text-decoration: none;
  padding: 0 7px;
}
.v-footer .v-footer-nav ul li a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .v-footer .v-footer-nav ul li a {
    padding: 0 10px;
  }
}
/*/xassets/uncompressed/source_map/239.css.css.map */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site //jonsuh.com/hamburgers
 * @link //github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: none;
  margin: 0;
  outline: none;
  overflow: visible;
}
.hamburger.active .hamburger-inner,
.hamburger.active .hamburger-inner:before,
.hamburger.active .hamburger-inner:after {
  background: #e6e6e6 !important;
}
.hamburger-box {
  width: 26px;
  height: 26px;
}
.hamburger-inner {
  margin-top: -5px;
  display: block;
  top: 27%;
  font-size: 3px;
}
.hamburger-inner::before {
  top: -5px;
}
.hamburger-inner::after {
  bottom: -5px;
}
.hamburger-inner::before {
  top: -5px;
}
.hamburger-inner::after {
  bottom: -5px;
}
.hamburger-inner {
  display: block;
  top: 27%;
  margin-top: -1.5px px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 26px;
  height: 3px;
  background-color: var(--color-body);
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  border-radius: 3px;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -5px;
}
.hamburger-inner::after {
  bottom: -5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 7px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 14px;
}
.hamburger--slider.active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--slider.active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.active .hamburger-inner::after {
  transform: translate3d(0, -12px, 0) rotate(-90deg);
  top: 12px;
}
.v-header {
  position: sticky;
  left: 0;
  right: 0;
  top: 0px;
  width: 100%;
  z-index: 1000;
  overflow-anchor: none;
  transition: height 150ms ease-in-out;
  margin: 0 auto;
  height: var(--utility-header-height-xs);
}
@media (min-width: 768px) {
  .v-header {
    height: var(--utility-header-height-sm);
  }
}
@media (min-width: 992px) {
  .v-header {
    height: var(--utility-header-height-md);
  }
}
@media (min-width: 1200px) {
  .v-header {
    height: var(--utility-header-height-lg);
  }
}
@media (min-width: 1400px) {
  .v-header {
    height: var(--utility-header-height-xl);
  }
}
@media (min-width: 1600px) {
  .v-header {
    height: var(--utility-header-height-xxl);
  }
}
.v-header .wrapper {
  height: 100%;
  background-color: var(--color-primary);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
.v-header .inner {
  position: relative;
  padding-left: var(--utility-layout-gap);
  padding-right: var(--utility-layout-gap);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 576px) {
  .v-header .inner {
    max-width: var(--utility-container-xs);
  }
}
@media (min-width: 768px) {
  .v-header .inner {
    max-width: var(--utility-container-sm);
  }
}
@media (min-width: 992px) {
  .v-header .inner {
    max-width: var(--utility-container-md);
  }
}
@media (min-width: 1200px) {
  .v-header .inner {
    max-width: var(--utility-container-lg);
  }
}
@media (min-width: 1400px) {
  .v-header .inner {
    max-width: var(--utility-container-xl);
  }
}
@media (min-width: 1600px) {
  .v-header .inner {
    max-width: var(--utility-container-xxl);
  }
}
.v-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.v-header .v-btn.v-btn-menu {
  width: 30px;
  height: 30px;
}
@media (min-width: 992px) {
  .v-header .v-btn.v-btn-menu {
    display: none;
  }
}
.v-header .v-btn.v-btn-menu .hamburger-box {
  display: block;
}
.v-header .v-btn.v-btn-menu .hamburger-box .hamburger-inner {
  top: 40%;
}
.v-header .v-btn-holder {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
@media (min-width: 992px) {
  .v-header .v-btn-holder {
    display: none;
  }
}
.v-header .v-btn-holder button,
.v-header .v-btn-holder a.btnx {
  font-size: 1em;
  color: var(--color-body);
}
.v-header .logo-holder {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  align-self: flex-start;
  height: calc(100% + 20px);
  transition: width 150ms ease-in-out;
  width: 90px;
  padding: 15px;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .v-header .logo-holder {
    width: 180px;
    height: calc(100% + 40px);
    position: relative;
    transform: none;
    left: auto;
    top: auto;
  }
}
.v-header .logo-holder .logo {
  height: 1em;
  width: 1em;
  color: var(--color-body);
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-size: 38.5px;
}
@media (min-width: 992px) {
  .v-header .logo-holder .logo {
    font-size: 77px;
  }
}
.v-header .logo-holder .flickenteppich {
  position: absolute;
  left: 0;
  bottom: 0;
}
.v-header .logo-holder .flickenteppich:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  border-radius: 4px;
  transform: translateY(-100%);
  background-color: var(--color-primary);
  transition: width 150ms ease-in-out;
  width: 100%;
}
.v-header .logo-holder .flickenteppich .flickenteppich-img {
  transition: width 150ms ease-in-out;
  width: 90px;
  height: auto;
  filter: drop-shadow(0 3px 2px rgba(0 0 0 / 30%));
  z-index: -1;
}
@media (min-width: 992px) {
  .v-header .logo-holder .flickenteppich .flickenteppich-img {
    width: 180px;
  }
}
.v-header .v-menu {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  padding: calc(var(--utility-header-height-dynamic) * 2) 15px 15px;
  width: 100%;
  height: var(--app-height);
  background-color: var(--color-primary);
  flex: 1 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translateY(-100%);
  transition: transform 400ms ease-in-out;
}
@media (min-width: 992px) {
  .v-header .v-menu {
    position: static;
    z-index: 0;
    padding: 0;
    height: 100%;
    overflow: visible;
    gap: 15px;
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    transform: translateY(0%);
  }
}
.v-header .v-menu .v-menu-item {
  color: var(--color-body);
  font-size: 14px;
  opacity: 0.75;
  transition: opacity 150ms ease-in-out;
  padding: 20px 15px;
}
@media (min-width: 992px) {
  .v-header .v-menu .v-menu-item {
    font-size: 20px;
    padding: 0;
  }
}
.v-header .v-menu .v-menu-item:not(:last-of-type) {
  border-bottom: 1px solid var(--color-body);
}
@media (min-width: 992px) {
  .v-header .v-menu .v-menu-item:not(:last-of-type) {
    border-bottom: 0;
  }
}
.v-header .v-menu .v-menu-item.active {
  font-weight: 700;
  opacity: 1;
}
.v-header .v-menu .v-menu-item:hover {
  opacity: 1;
}
.v-header .v-menu .v-menu-item.login {
  background-color: white;
  color: var(--color-primary);
  border-radius: 15px;
  padding: 5px 10px;
  opacity: 1;
}
.v-header .v-menu .v-menu-item.login span {
  font-size: 90%;
  vertical-align: middle;
}
.v-header .v-menu .v-menu-item.login:hover {
  opacity: 0.75;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .v-header .v-menu {
  transform: translateY(0);
}
/*/xassets/uncompressed/source_map/187.css.css.map */
/*/xassets/uncompressed/source_map/190.css.css.map */
.language-switcher {
  position: absolute;
  left: 52px;
  display: inline-block;
  cursor: pointer;
  z-index: 1;
}
@media (min-width: 992px) {
  .language-switcher {
    left: 155px;
  }
}
@media (min-width: 1200px) {
  .language-switcher {
    left: 195px;
  }
}
.language-switcher .selected-language {
  width: 30px;
  height: auto;
  overflow: hidden;
}
.language-switcher .selected-language img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.language-switcher .language-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 30px;
  display: none;
  z-index: 100;
  padding-top: 5px;
}
.language-switcher .language-option {
  width: 30px;
  height: auto;
  overflow: hidden;
}
.language-switcher .language-option:last-child {
  border-bottom: none;
}
.language-switcher .language-option img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.language-switcher .language-option:hover {
  background-color: var(--color-primary);
}
/*/xassets/uncompressed/source_map/306.css.css.map */
@media (min-width: 768px) {
  .v-oida-detail {
    padding-top: 25px;
  }
}
@media (min-width: 1200px) {
  .v-oida-detail {
    padding-top: 50px;
  }
}
.v-oida-detail .row {
  padding-block: 30px;
}
.v-oida-detail .slick-vertical .slick-slide {
  border: 0;
}
@media (min-width: 992px) {
  .v-oida-detail .flex-wrapper.content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.v-oida-detail .flex-wrapper.content .item:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .v-oida-detail .flex-wrapper.content .item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.v-oida-detail .flex-wrapper.content .item .icon {
  font-size: 28px;
  margin-right: 15px;
}
@media (min-width: 992px) {
  .v-oida-detail .flex-wrapper.content .item .icon {
    margin-right: 0;
    margin-left: 15px;
  }
}
.v-oida-detail .flex-wrapper.content .item u {
  font-size: 16px;
}
@media (min-width: 576px) {
  .v-oida-detail .flex-wrapper.content .item u {
    font-size: 16.66666667px;
  }
}
@media (min-width: 768px) {
  .v-oida-detail .flex-wrapper.content .item u {
    font-size: 17.33333333px;
  }
}
@media (min-width: 992px) {
  .v-oida-detail .flex-wrapper.content .item u {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .v-oida-detail .flex-wrapper.content .item u {
    font-size: 18.66666667px;
  }
}
@media (min-width: 1400px) {
  .v-oida-detail .flex-wrapper.content .item u {
    font-size: 19.33333333px;
  }
}
@media (min-width: 1600px) {
  .v-oida-detail .flex-wrapper.content .item u {
    font-size: 20px;
  }
}
.v-oida-detail .buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.v-oida-detail .buttons .v-btn-map-2 {
  font-size: 12px;
}
@media (min-width: 992px) {
  .v-oida-detail .buttons .v-btn-map-2 {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .v-oida-detail .buttons .v-btn-map-2 {
    font-size: 15px;
  }
}
.v-oida-detail .slick-list {
  height: 100%;
}
.v-oida-detail .slick-list .slick-track {
  height: 100%;
}
.v-oida-detail .v-btn.icon-heart-empty.active.after:after {
  content: "\e90e";
}
.v-oida-detail .v-btn.icon-heart-empty.active.before:before {
  content: "\e90e";
}
.v-oida-detail .v-product-gallery {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery {
    display: flex;
    align-items: center;
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-main {
  position: relative;
  margin: 20px 0;
}
@media (min-width: 576px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main {
    margin: 0 0 20px;
  }
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main {
    flex: 0 0 85.71428571%;
    width: 14.28571429%;
    height: 100%;
    margin: 0;
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .v-product-gallery-slider .single-item .slider-content-container {
  position: relative;
  /* Moderne Browser */
  aspect-ratio: 16 / 9;
  /* Fallback für ältere Safari/IE: ratio via padding-hack */
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .v-product-gallery-slider .single-item .slider-content-container::before {
  content: "";
  display: block;
  padding-top: 56.25%;
  /* 16:9 */
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .v-product-gallery-slider .single-item .slider-content-container .image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* WICHTIG: alte Vorgaben entfernen/überstimmen */
  min-height: 0;
  border-radius: 15px;
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .v-product-gallery-slider .single-item .slider-content-container .credits {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  background-color: #f0f0f0;
  padding: 10px;
  color: #666;
  font-size: 12px;
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .new,
.v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .v-fallstaff,
.v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .xs-shop-add-to-cart {
  margin: 10px;
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .new,
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .v-fallstaff,
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .xs-shop-add-to-cart {
    margin: 20px;
  }
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .v-fallstaff {
    max-width: 115px;
  }
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .v-fallstaff .v-fallstaff-punkte {
    font-size: 45px;
  }
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .v-fallstaff .v-fallstaff-line {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .v-fallstaff .v-fallstaff-text {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .merkliste {
    height: 50px;
    width: 50px;
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .new {
    font-size: 35px;
    width: 2.97142em;
    height: 2, 97142em;
  }
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .v-badges-holder .js-xs-shop-ajax-discount-update-wrapper {
    font-size: 25px;
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .next,
.v-oida-detail .v-product-gallery .v-product-gallery-main .prev {
  border-radius: 5px;
  width: 2em;
  height: 3em;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  font-size: 10px;
  background-color: rgba(255 255 255 / 30%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .next,
  .v-oida-detail .v-product-gallery .v-product-gallery-main .prev {
    font-size: 30px;
    border-radius: 15px;
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .next:after,
.v-oida-detail .v-product-gallery .v-product-gallery-main .prev:after,
.v-oida-detail .v-product-gallery .v-product-gallery-main .next:before,
.v-oida-detail .v-product-gallery .v-product-gallery-main .prev:before {
  padding: 0;
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .prev {
  left: var(--utility-layout-gap);
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .prev {
    left: 15px;
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .prev:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .next {
  right: var(--utility-layout-gap);
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-main .next {
    right: 15px;
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-main .next:after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-sub {
    flex: 0 0 14.28571429%;
    width: 14.28571429%;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-sub .v-product-gallery-navigation {
  height: 100%;
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-sub .v-product-gallery-navigation {
    transform: translateY(50px);
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-sub .v-product-gallery-navigation .slick-slide {
  margin: auto calc(var(--utility-layout-gap) / 2);
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-sub .v-product-gallery-navigation .slick-slide {
    margin: calc(var(--utility-layout-gap) / 2) auto;
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-sub .v-product-gallery-navigation .slick-list {
  margin: 0 calc(var(--utility-layout-gap) / 2 * -1);
  padding-bottom: 5px;
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-gallery .v-product-gallery-sub .v-product-gallery-navigation .slick-list {
    margin: calc(var(--utility-layout-gap) / 2 * -1) 0;
    padding-bottom: 0px;
  }
}
.v-oida-detail .v-product-gallery .v-product-gallery-sub .v-product-gallery-navigation .single-item {
  background-color: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  overflow: hidden;
}
.v-oida-detail .v-product-gallery .v-product-gallery-sub .v-product-gallery-navigation .single-item .asspect {
  position: relative;
  padding-top: 100%;
}
.v-oida-detail .v-product-gallery .v-product-gallery-sub .v-product-gallery-navigation .single-item .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.v-oida-detail .v-product-description .v-herkunft {
  line-height: 1;
  margin-bottom: 20px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media (min-width: 576px) {
  .v-oida-detail .v-product-description .v-herkunft {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .v-oida-detail .v-product-description .v-herkunft {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .v-oida-detail .v-product-description .v-herkunft {
    font-size: 20px;
  }
}
.v-oida-detail .v-product-description .v-herkunft .country {
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
}
.v-oida-detail .v-product-description .v-rating {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
@media (min-width: 576px) {
  .v-oida-detail .v-product-description .v-rating {
    margin: 0;
  }
}
.v-oida-detail .v-product-description .v-rating .sinlge-item.summary {
  font-size: 10px;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .v-oida-detail .v-product-description .v-rating .sinlge-item.summary {
    font-size: 12px;
  }
}
.v-oida-detail .v-product-description .v-rating .sinlge-item .svg {
  height: 25px;
  width: auto;
}
@media (min-width: 1200px) {
  .v-oida-detail .v-product-description .v-rating .sinlge-item .svg {
    height: 35px;
  }
}
.v-oida-detail .v-product-description .hr {
  border-color: var(--color-dark);
  margin: 10px 0;
}
@media (min-width: 768px) {
  .v-oida-detail .v-product-description .hr {
    margin: 15px 0;
  }
}
.v-oida-detail .v-product-description .v-manufacturer {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: 1;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.1em;
}
@media (min-width: 576px) {
  .v-oida-detail .v-product-description .v-manufacturer {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .v-oida-detail .v-product-description .v-manufacturer {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
@media (min-width: 1200px) {
  .v-oida-detail .v-product-description .v-manufacturer {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.v-oida-detail .v-product-description .v-description {
  padding: 0 0 15px 0;
}
@media (min-width: 768px) {
  .v-oida-detail .v-product-description .v-description {
    padding: 0 0 25px 0;
  }
}
.v-oida-detail .v-product-description .v-description * {
  font-size: 12px !important;
  letter-spacing: 0;
}
@media (min-width: 1200px) {
  .v-oida-detail .v-product-description .v-description * {
    font-size: 18px !important;
  }
}
.v-oida-detail .v-product-description .v-title {
  letter-spacing: 0.1em;
  font-size: 15px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .v-oida-detail .v-product-description .v-title {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .v-oida-detail .v-product-description .v-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1200px) {
  .v-oida-detail .v-product-description .v-title {
    font-size: 40px;
  }
}
.v-oida-detail .v-product-description .v-contacts {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  margin: 15px 0;
}
.v-oida-detail .v-product-description .v-versand {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .v-oida-detail .v-product-description .v-versand {
    font-size: 15px;
    padding-top: 35px;
  }
}
.v-oida-detail .v-product-description .v-versand .icon {
  display: block;
  font-size: 20px;
  height: 20px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .v-oida-detail .v-product-description .v-versand .icon {
    font-size: 25px;
    height: 25px;
  }
}
@media (min-width: 1600px) {
  .v-oida-detail .v-product-description .xs-shop-price-tag-update {
    max-width: 50%;
    margin-bottom: var(--utility-layout-gap);
  }
}
.v-oida-detail .v-product-description .v-mengenrabatt {
  margin: 15px 0 30px;
}
.v-oida-detail .v-product-description .v-mengenrabatt .single-item {
  display: flex;
  align-items: flex-end;
  font-size: 12px;
}
@media (min-width: 1200px) {
  .v-oida-detail .v-product-description .v-mengenrabatt .single-item {
    font-size: 18px;
  }
}
.v-oida-detail .v-product-description .v-mengenrabatt .single-item:not(:last-of-type) {
  margin-bottom: 8px;
}
.v-oida-detail .v-product-description .v-mengenrabatt .single-item .v-prozent {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: -2px;
  margin-right: 5px;
}
@media (min-width: 1200px) {
  .v-oida-detail .v-product-description .v-mengenrabatt .single-item .v-prozent {
    font-size: 25px;
  }
}
.v-oida-detail .v-product-description .v-mengenrabatt .single-item .v-summary {
  margin-left: auto;
  color: var(--color-2);
}
.v-oida-detail .v-product-description .v-btn-holder {
  display: flex;
}
.v-oida-detail .v-product-description .v-versand-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-description .v-versand-info {
    max-width: 50%;
  }
}
.v-oida-detail .v-product-description .v-versand-info > * {
  display: flex;
  align-items: flex-start;
  flex: 0 0 50%;
}
.v-oida-detail .v-product-description .v-versand-info .v-availability {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 10px;
  text-align: right;
}
@media (min-width: 576px) {
  .v-oida-detail .v-product-description .v-versand-info .v-availability {
    font-size: 12px;
  }
}
.v-oida-detail .v-product-description .v-versand-info .v-availability .dot {
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: var(--color-font);
  margin-right: 5px;
}
.v-oida-detail .v-product-description .v-versand-info .v-availability .dot.red {
  background-color: var(--color-shop-red);
}
.v-oida-detail .v-product-description .v-versand-info .v-availability .dot.yellow {
  background-color: var(--color-shop-yellow);
}
.v-oida-detail .v-product-description .v-versand-info .v-availability .dot.in_stock,
.v-oida-detail .v-product-description .v-versand-info .v-availability .dot.green {
  background-color: var(--color-shop-green);
}
.v-oida-detail .v-product-description .v-versand-info .v-shipping {
  font-size: 10px;
  font-weight: 500;
}
.v-oida-detail .v-product-info {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .v-oida-detail .v-product-info {
    margin-top: 0;
  }
}
.v-oida-detail .v-product-info .info-text {
  box-shadow: 0px 3px 6px rgba(0 0 0 / 16%);
  border-radius: 15px;
  opacity: 1;
  padding: 15px;
  margin: 0 0 15px 0;
}
.v-oida-detail .v-product-info .info-text .v-btn-holder {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.v-oida-detail .v-product-info .info-text .v-btn-holder .v-btn {
  font-size: 16px;
}
.v-oida-detail .v-product-info .features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-oida-detail .v-product-info .features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
.v-oida-detail .v-product-info .features .feature .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 25px;
}
.v-oida-detail .table-holder {
  border-radius: 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  padding: 15px;
}
.v-oida-detail .table-holder .table th,
.v-oida-detail .table-holder .table td {
  border: 0;
  font-weight: 500;
  color: #707070;
  padding: 10px 0;
}
.v-oida-detail .v-btn-map-2 {
  height: auto;
  cursor: pointer;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
.v-oida-detail ul.share-dropdown {
  list-style: none outside none;
  margin: 0;
  min-width: 51px;
  padding: 0;
  top: 8px !important;
  left: -17px !important;
}
.v-oida-detail ul.share-dropdown li {
  display: block;
  font-size: 18px;
  list-style: none outside none;
  margin-bottom: 3px;
  margin-left: 4px;
  margin-top: 3px;
}
.v-oida-detail ul.share-dropdown li a {
  display: block;
  padding: 6px 10px 6px 10px;
  text-align: center;
}
.v-oida-detail ul.share-dropdown li a.btn-whatsapp {
  background-color: #25D366 !important;
  width: 41px;
  color: #FFFFFF !important;
}
.v-oida-detail ul.share-dropdown li a.btn-twitter {
  background-color: #3399CC !important;
  width: 41px;
  color: #FFFFFF !important;
}
.v-oida-detail ul.share-dropdown li a.btn-facebook {
  background-color: #3D5B96 !important;
  width: 41px;
  color: #FFFFFF !important;
}
.v-oida-detail ul.share-dropdown li a.btn-google {
  background-color: #DD3F34 !important;
  width: 41px;
  color: #FFFFFF !important;
}
.v-oida-detail ul.share-dropdown li a.btn-linkedin {
  background-color: #1884BB !important;
  width: 41px;
  color: #FFFFFF !important;
}
.v-oida-detail ul.share-dropdown li a.btn-pinterest {
  background-color: #CC1E2D !important;
  width: 41px;
  color: #FFFFFF !important;
}
.v-oida-detail ul.share-dropdown li a.btn-mail {
  background-color: #FFC90E !important;
  width: 41px;
  color: #FFFFFF !important;
}
.v-oida-detail .detail-main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 21px;
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #707070;
  background: radial-gradient(50% 50% at 50% 50%, #911963 0%, #621444 100%);
}
.v-oida-detail .detail-main-content .header {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-weight: 700;
  color: #ffffff;
  font-size: 22.3px;
  letter-spacing: 0;
  line-height: 34.3px;
}
.v-oida-detail .detail-main-content .div-offer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.v-oida-detail .detail-main-content .text-wrapper {
  position: relative;
  align-self: stretch;
  color: #ffffff;
  font-size: 14.4px;
  letter-spacing: 0;
  line-height: 22.9px;
}
.v-oida-detail .detail-main-content .button-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 4px 25px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid;
  border-color: #621645;
}
.v-oida-detail .detail-main-content .button-primary:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
.v-oida-detail .detail-main-content .start {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  margin-left: -3.58px;
  margin-right: -3.58px;
  color: #621645;
  white-space: nowrap;
  font-size: 26px;
  font-weight: 600;
}
.v-event-dates {
  overflow: hidden;
}
.v-event-dates .v-event {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  position: relative;
  transition: background-color 150ms ease;
  border-radius: 5px;
  width: 100%;
}
.v-event-dates .v-event:hover {
  background-color: rgba(0 0 0 / 5%);
}
.v-event-dates .v-event:after {
  font-family: "oida-icomoon" !important;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e91f";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 200%;
}
.v-event-dates .v-event .date {
  background-color: var(--color-primary);
  flex: 0 0 100px;
  color: var(--color-body);
  border-radius: 15px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
  font-size: 20px;
  font-weight: 500;
}
.v-event-dates .v-event .content-holder .title {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
  padding-right: 30px;
}
.v-event-dates .v-event .content-holder .time {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
  padding-right: 30px;
  color: #707070;
}
.v-event-dates .v-event .hover-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}
.v-event-trigger {
  opacity: 1;
  transition: all 300ms ease-in-out;
}
.v-event-trigger:empty {
  opacity: 0;
}
.v-container .title_404 {
  opacity: 0.5;
}
.v-container .gallery_404 {
  opacity: 0.5;
}
/* === MINI-CONVERSIONS (Newsletter + Watchdog unter Detail-Kasten) === */
/* Screen Reader only helper */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Newsletter Card */
.newsletter-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}
.newsletter-card .newsletter-title {
  margin: 0 0 6px;
  font-size: 18px;
}
.newsletter-card .newsletter-sub {
  margin: 0 0 12px;
  color: #707070;
}
.newsletter-card .newsletter-input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 15px;
  background: #fff;
}
.newsletter-card .newsletter-btn {
  width: 100%;
  border: 1px solid #621645;
  background: #621645;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
}
.newsletter-card .newsletter-btn:focus-visible {
  outline: 2px solid #4a90e2;
}
.newsletter-card .newsletter-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #707070;
}
.newsletter-card .js-nl-feedback {
  margin-top: 8px;
  font-size: 14px;
}
/* Watchdog */
.watchdog-card {
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #f6f2f5;
}
.watchdog-card .watchdog-title {
  margin: 0 0 8px;
  font-size: 16px;
}
.watchdog-card .watchdog-btn {
  width: 100%;
  border-radius: 999px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #621645;
  color: #621645;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.watchdog-card .watchdog-btn:hover {
  background: #fdeff7;
  border-color: #621645;
}
.watchdog-card .watchdog-btn.is-active {
  background: #621645;
  color: #fff;
}
.watchdog-card .watchdog-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #707070;
}
/* === MINI-CONVERSIONS (Newsletter + Watchdog im Detail-Kasten) === */
.detail-main-content .mini-conversion {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
  /* Überschrift linksbündig */
  /* Beschreibung linksbündig */
  /* Button mittig */
}
.detail-main-content .mini-conversion:last-of-type {
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.detail-main-content .mini-conversion .mini-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.3;
  text-align: left;
}
.detail-main-content .mini-conversion .mini-text {
  color: #f1dff0;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 6px;
  text-align: left;
}
.detail-main-content .mini-conversion .mini-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #621645;
  border: 1px solid #ffffff;
  border-radius: 999px;
  padding: 6px 18px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  text-align: center;
  margin: 0 auto;
  /* zentriert */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  line-height: 14px;
}
.detail-main-content .mini-conversion .mini-btn:hover {
  background-color: #f7e4f0;
  color: #621645;
}
.detail-main-content .mini-conversion .mini-btn:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}
.try {
  /* HEADER WRAPPER */
  /* STATUS */
  /* MAIN FLEX CONTAINER */
  /* LEFT BLOCK (Thumb + Title) */
  /* THUMB */
  /* HEADLINE */
  /* DETAIL CONTENT */
  /* BUTTONS */
}
.try .eol-header {
  padding: 8px 0 20px 0;
}
.try .eol-status-wrap {
  margin-bottom: 8px;
}
.try .eol-status {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #a61b3d;
}
@media (min-width: 576px) {
  .try .eol-status {
    font-size: 13.66666667px;
  }
}
@media (min-width: 768px) {
  .try .eol-status {
    font-size: 15.33333333px;
  }
}
@media (min-width: 992px) {
  .try .eol-status {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .try .eol-status {
    font-size: 18.66666667px;
  }
}
@media (min-width: 1400px) {
  .try .eol-status {
    font-size: 20.33333333px;
  }
}
@media (min-width: 1600px) {
  .try .eol-status {
    font-size: 22px;
  }
}
.try .eol-header-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .try .eol-header-content {
    flex-direction: row;
    align-items: flex-start;
  }
}
.try .eol-title-block {
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: 0.5;
  flex: 1 1 auto;
  min-width: 0;
}
.try .eol-thumb {
  flex: 0 0 96px;
  max-width: 96px;
}
@media (min-width: 768px) {
  .try .eol-thumb {
    flex: 0 0 160px;
    max-width: 160px;
  }
}
.try .eol-thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0.75;
}
.try .eol-headline {
  flex: 1 1 auto;
  min-width: 0;
}
.try .eol-title {
  margin: 0;
  font-size: 16px;
  word-break: break-word;
}
@media (min-width: 576px) {
  .try .eol-title {
    font-size: 18.33333333px;
  }
}
@media (min-width: 768px) {
  .try .eol-title {
    font-size: 20.66666667px;
  }
}
@media (min-width: 992px) {
  .try .eol-title {
    font-size: 23px;
  }
}
@media (min-width: 1200px) {
  .try .eol-title {
    font-size: 25.33333333px;
  }
}
@media (min-width: 1400px) {
  .try .eol-title {
    font-size: 27.66666667px;
  }
}
@media (min-width: 1600px) {
  .try .eol-title {
    font-size: 30px;
  }
}
.try .eol-meta {
  margin-top: 6px;
  font-size: 14px;
  color: #777;
}
.try .detail-main-content {
  flex: 0 0 auto;
  color: white;
  text-align: center;
  gap: 3px;
}
@media (min-width: 992px) {
  .try .detail-main-content {
    flex: 0 0 40%;
    margin-left: auto;
    text-align: left;
  }
}
.try .detail-main-content .header {
  font-size: 16px;
}
@media (min-width: 576px) {
  .try .detail-main-content .header {
    font-size: 16.66666667px;
  }
}
@media (min-width: 768px) {
  .try .detail-main-content .header {
    font-size: 17.33333333px;
  }
}
@media (min-width: 992px) {
  .try .detail-main-content .header {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .try .detail-main-content .header {
    font-size: 18.66666667px;
  }
}
@media (min-width: 1400px) {
  .try .detail-main-content .header {
    font-size: 19.33333333px;
  }
}
@media (min-width: 1600px) {
  .try .detail-main-content .header {
    font-size: 20px;
  }
}
.try .detail-main-content .div-offer-info {
  font-size: 14px;
}
@media (min-width: 576px) {
  .try .detail-main-content .div-offer-info {
    font-size: 14.66666667px;
  }
}
@media (min-width: 768px) {
  .try .detail-main-content .div-offer-info {
    font-size: 15.33333333px;
  }
}
@media (min-width: 992px) {
  .try .detail-main-content .div-offer-info {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .try .detail-main-content .div-offer-info {
    font-size: 16.66666667px;
  }
}
@media (min-width: 1400px) {
  .try .detail-main-content .div-offer-info {
    font-size: 17.33333333px;
  }
}
@media (min-width: 1600px) {
  .try .detail-main-content .div-offer-info {
    font-size: 18px;
  }
}
.try .detail-main-content .div-offer-info .text-wrapper {
  line-height: 1.3rem !important;
}
.try .buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}
.try .mini-conversion-link {
  display: flex;
  gap: 25px;
  background: linear-gradient(90deg, rgba(98, 22, 69, 0.07), rgba(98, 22, 69, 0.05));
  padding: 12px;
  border-radius: 15px;
}
.try .mini-conversion-link .v-btn {
  transition: transform 150ms ease, box-shadow 150ms ease, color 150ms ease;
}
.try .mini-conversion-link .v-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 14px rgba(98, 22, 69, 0.25);
  color: #621645;
  border-radius: 15px;
}
.try .Pain-holder {
  display: flex;
  justify-content: center;
  padding-bottom: 25px;
}
.try .Pain-holder .yns-survey {
  width: 500px;
}
/*/xassets/uncompressed/source_map/237.css.css.map */
.v-oida-best-offer {
  padding-bottom: 60px;
  scroll-margin-top: 70px;
  overflow: hidden;
  /* Track bündig mit Überschrift, keine Linksversätze */
  /* LINK-TILE STYLING (füge in dein LESS/CSS) */
  /* Media area ohne echtes Bild; dekorative Lupe als Hintergrund-SVG (low opacity) */
  /* Grund-Layout: gleiche Position, Größe usw. */
  /* ===========================================
   1) Agent (Fedora + Brille)
   =========================================== */
  /* ===========================================
   2) Karte
   =========================================== */
  /* ===========================================
   3) Lupe
   =========================================== */
  /* ===========================================
   4) Empfehlung / Stern / Highlight
   =========================================== */
  /* Platzhalter-Icon / link-symbol (links oben) */
  /* Content (oben drauf, rechts von Placeholder) */
  /* Titel, Description, CTA */
  /* Entferne ribbon, badges, bookmark (nicht relevant für Link-Tile) */
  /* Ensure the tile keeps the same flex sizing as other tiles (prevents next-line wrap) */
  /* zwingt horizontales Scrolling, keine Zeilenumbrüche */
  /* Responsive: kleinere Tiles auf xs */
  /* Desktop: erlauben mehr Kacheln pro Reihe (falls du auf Desktop Grid willst) */
}
@media (min-width: 576px) {
  .v-oida-best-offer {
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer {
    padding-bottom: 90px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer {
    padding-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer {
    padding-bottom: 110px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer {
    padding-bottom: 120px;
  }
}
.v-oida-best-offer .v-container h2 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
@media (min-width: 576px) {
  .v-oida-best-offer .v-container h2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .v-container h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer .v-container h2 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer .v-container h2 {
    font-size: 26px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer .v-container h2 {
    font-size: 28px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer .v-container h2 {
    font-size: 30px;
  }
}
.v-oida-best-offer .js-mini-slider {
  --gap: 15px;
}
.v-oida-best-offer .js-mini-slider .track {
  --columns: 1.5;
  gap: 15px;
}
@media (min-width: 576px) {
  .v-oida-best-offer .js-mini-slider .track {
    --columns: 2.5;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .js-mini-slider .track {
    --columns: 3.5;
  }
}
.v-oida-best-offer .js-mini-slider .track .single-item {
  flex: 0 0 calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}
.v-oida-best-offer .v-nob-event {
  position: relative;
  border-radius: 15px;
  box-shadow: 0px 3px 6px rgba(0 0 0 / 16%);
  overflow: hidden;
}
.v-oida-best-offer .v-nob-event .media-holder {
  position: relative;
  padding-top: 80%;
  background-color: #e2e5e7;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background-size: 200px 100%;
  background-repeat: no-repeat;
  background-position: left -200px top 0;
  -webkit-animation: shine 1s ease infinite;
  animation: shine 1s ease infinite;
}
.v-oida-best-offer .v-nob-event .media-holder .xs-oida-event-nob-tile-image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  -moz-user-select: none;
}
.v-oida-best-offer .v-nob-event .media-holder .offer-ribbon {
  position: absolute;
  top: 80px;
  left: -25px;
  width: 150px;
  height: 22px;
  background-color: #911963;
  color: white;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  line-height: 22px;
  transform: rotate(-45deg);
  transform-origin: top left;
  z-index: 1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .v-oida-best-offer .v-nob-event .media-holder .offer-ribbon {
    top: 104px;
    left: -26px;
    width: 180px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
}
.v-oida-best-offer .v-nob-event .content-holder {
  width: 100%;
  z-index: 1;
  padding: 8px 15px 8px 15px;
}
.v-oida-best-offer .v-nob-event .content-holder .title {
  font-size: 16px;
  color: inherit;
  padding: 8px 0px 4px 0px;
}
@media (min-width: 576px) {
  .v-oida-best-offer .v-nob-event .content-holder .title {
    font-size: 17.33333333px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .v-nob-event .content-holder .title {
    font-size: 18.66666667px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer .v-nob-event .content-holder .title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer .v-nob-event .content-holder .title {
    font-size: 21.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer .v-nob-event .content-holder .title {
    font-size: 22.66666667px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer .v-nob-event .content-holder .title {
    font-size: 24px;
  }
}
.v-oida-best-offer .v-nob-event .content-holder .info {
  color: inherit;
  font-size: 14px;
  padding: 4px 0px 4px 0px;
}
@media (min-width: 576px) {
  .v-oida-best-offer .v-nob-event .content-holder .info {
    font-size: 14.33333333px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .v-nob-event .content-holder .info {
    font-size: 14.66666667px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer .v-nob-event .content-holder .info {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer .v-nob-event .content-holder .info {
    font-size: 15.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer .v-nob-event .content-holder .info {
    font-size: 15.66666667px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer .v-nob-event .content-holder .info {
    font-size: 16px;
  }
}
.v-oida-best-offer .v-nob-event .content-holder .short-description {
  padding: 4px 0px 4px 0px;
  font-size: 14px;
  color: #666;
}
@media (min-width: 576px) {
  .v-oida-best-offer .v-nob-event .content-holder .short-description {
    font-size: 14.33333333px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .v-nob-event .content-holder .short-description {
    font-size: 14.66666667px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer .v-nob-event .content-holder .short-description {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer .v-nob-event .content-holder .short-description {
    font-size: 15.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer .v-nob-event .content-holder .short-description {
    font-size: 15.66666667px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer .v-nob-event .content-holder .short-description {
    font-size: 16px;
  }
}
.v-oida-best-offer .v-nob-event .content-holder .price {
  padding: 4px 0px 4px 0px;
  font-size: 14px;
  color: #911963;
}
@media (min-width: 576px) {
  .v-oida-best-offer .v-nob-event .content-holder .price {
    font-size: 14.33333333px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .v-nob-event .content-holder .price {
    font-size: 14.66666667px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer .v-nob-event .content-holder .price {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer .v-nob-event .content-holder .price {
    font-size: 15.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer .v-nob-event .content-holder .price {
    font-size: 15.66666667px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer .v-nob-event .content-holder .price {
    font-size: 16px;
  }
}
.v-oida-best-offer .v-nob-event .content-holder .ico-fav {
  color: inherit;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 22px;
  padding: 15px;
}
.v-oida-best-offer .v-nob-event .content-holder .ico-fav.active.after:after {
  content: "\e90e";
}
.v-oida-best-offer .v-nob-event .content-holder .ico-fav.active.before:before {
  content: "\e90e";
}
.v-oida-best-offer .v-nob-event .hover-link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.v-oida-best-offer .v-nob-event .v-badges-holder {
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 15px;
}
.v-oida-best-offer .v-nob-event .v-badges-holder .v-btn {
  font-size: 18px !important;
}
@media (min-width: 576px) {
  .v-oida-best-offer .v-nob-event .v-badges-holder .v-btn {
    font-size: 19.16666667px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .v-nob-event .v-badges-holder .v-btn {
    font-size: 20.33333333px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer .v-nob-event .v-badges-holder .v-btn {
    font-size: 21.5px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer .v-nob-event .v-badges-holder .v-btn {
    font-size: 22.66666667px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer .v-nob-event .v-badges-holder .v-btn {
    font-size: 23.83333333px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer .v-nob-event .v-badges-holder .v-btn {
    font-size: 25px;
  }
}
.v-oida-best-offer .v-nob-event .v-badges-holder .v-btn.icon-heart-empty.active.after:after {
  content: "\e90e";
}
.v-oida-best-offer .v-nob-event .v-badges-holder .v-btn.icon-heart-empty.active.before:before {
  content: "\e90e";
}
.v-oida-best-offer .nbo-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}
@media (min-width: 576px) {
  .v-oida-best-offer .nbo-title {
    font-size: 22.16666667px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .nbo-title {
    font-size: 24.33333333px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer .nbo-title {
    font-size: 26.5px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer .nbo-title {
    font-size: 28.66666667px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer .nbo-title {
    font-size: 30.83333333px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer .nbo-title {
    font-size: 33px;
  }
}
.v-oida-best-offer .nbo-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 22px;
  list-style: none;
  padding: 0;
}
.v-oida-best-offer .nbo-tab {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #621645;
  text-decoration: none;
  transition: 0.2s;
}
@media (min-width: 576px) {
  .v-oida-best-offer .nbo-tab {
    font-size: 13.5px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .nbo-tab {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer .nbo-tab {
    font-size: 14.5px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer .nbo-tab {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer .nbo-tab {
    font-size: 15.5px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer .nbo-tab {
    font-size: 16px;
  }
}
.v-oida-best-offer .nbo-tab:hover {
  background: #fdeff7;
  border-color: #621645;
}
.v-oida-best-offer .nbo-tab.active {
  background: #621645;
  color: #fff;
  border-color: #621645;
}
.v-oida-best-offer .nbo-section {
  margin-bottom: 28px;
}
.v-oida-best-offer .nbo-section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #000;
}
@media (min-width: 576px) {
  .v-oida-best-offer .nbo-section-title {
    font-size: 20.5px;
  }
}
@media (min-width: 768px) {
  .v-oida-best-offer .nbo-section-title {
    font-size: 23px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer .nbo-section-title {
    font-size: 25.5px;
  }
}
@media (min-width: 1200px) {
  .v-oida-best-offer .nbo-section-title {
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .v-oida-best-offer .nbo-section-title {
    font-size: 30.5px;
  }
}
@media (min-width: 1600px) {
  .v-oida-best-offer .nbo-section-title {
    font-size: 33px;
  }
}
@media (min-width: 992px) {
  .v-oida-best-offer {
    /* Überschrift & Abschnittstitel zentrieren */
    /* Tabs sind bei dir bereits centered – hier nur Safety */
    /* Track: aus dem Horizontal-Scroller ein zentriertes Grid machen */
    /* Kachelbreite für ein sauberes Grid fixieren (anstatt %-Basis) */
    /* Optional: maximale Breite der gesamten Section begrenzen und mittig halten */
  }
  .v-oida-best-offer .nbo-title,
  .v-oida-best-offer .nbo-section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .v-oida-best-offer .nbo-tabs {
    justify-content: center;
  }
  .v-oida-best-offer .js-mini-slider .track {
    overflow: visible;
    /* kein Scrollbalken am Desktop */
    flex-wrap: wrap;
    /* mehrere Zeilen */
    justify-content: center;
    /* mittig ausrichten */
    padding-left: 0;
    padding-right: 0;
    gap: 16px;
    /* etwas großzügiger auf Desktop */
  }
  .v-oida-best-offer .single-item {
    flex: 0 0 220px !important;
    /* Wunschbreite pro Tile */
    max-width: none;
    scroll-snap-align: initial;
    /* Snap am Desktop nicht nötig */
  }
  .v-oida-best-offer .v-container {
    max-width: 1140px;
    /* an dein Grid anpassen (z.B. 1200/1320px) */
    margin-left: auto;
    margin-right: auto;
  }
}
.v-oida-best-offer .js-mini-slider .track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 8px;
  scroll-snap-type: x mandatory;
}
.v-oida-best-offer .js-mini-slider .track::-webkit-scrollbar {
  height: 6px;
}
.v-oida-best-offer .js-mini-slider .track::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.v-oida-best-offer .nbo-link-tile {
  /* Kachel grundstruktur (nutzt dieselben .v-nob-event / .single-item Klassen) */
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  color: #1b1b1b;
  position: relative;
  display: flex;
  flex-direction: column;
}
.v-oida-best-offer .nbo-link-holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v-oida-best-offer .nbo-link-tile .media-holder {
  height: calc(80 / 100 * 100%);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  background: linear-gradient(90deg, rgba(98, 22, 69, 0.03), rgba(98, 22, 69, 0.02));
  overflow: hidden;
  flex-direction: column;
  text-align: center;
  height: 100%;
}
.v-oida-best-offer .nbo-link-tile .media-holder::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.5;
}
.v-oida-best-offer .nbo-link-tile.nbo-icon-agent .media-holder::after {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'>\
  <g fill='none' stroke='%23621245' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.08'>\
    <!-- Fedora-Krempe -->\
    <path d='M8 26 Q32 20 56 26' />\
    <!-- Fedora-Oberteil: 3-teilige Wellenform -->\
    <path d='M20 24 \
             C23 15, 26 15, 28 17 \
             C32 20, 34 20, 36 17 \
             C39 15, 42 15, 44 24' />\
    <!-- Sonnenbrille -->\
    <circle cx='26' cy='35' r='5' />\
    <circle cx='38' cy='35' r='5' />\
    <line x1='31' y1='35' x2='33' y2='35' />\
  </g>\
</svg>");
}
.v-oida-best-offer .nbo-link-tile.nbo-icon-map .media-holder::after {
  background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'>\
      <g fill='none' stroke='%23621245' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.08'>\
        <path d='M8 16l16-6 16 6 16-6v38l-16 6-16-6-16 6z'/>\
        <path d='M24 10v38'/>\
        <path d='M40 16v38'/>\
      </g>\
    </svg>");
}
.v-oida-best-offer .nbo-link-tile.nbo-icon-search .media-holder::after {
  background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'>\
      <g fill='none' stroke='%23621245' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.08'>\
        <circle cx='27' cy='27' r='12'/>\
        <path d='M41 41L56 56'/>\
      </g>\
    </svg>");
}
.v-oida-best-offer .nbo-link-tile.nbo-icon-rec .media-holder::after {
  background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'>\
      <g fill='none' stroke='%23621245' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.08'>\
        <path d='M32 6l8 16 18 3-13 12 3 18-16-8-16 8 3-18L6 25l18-3z'/>\
      </g>\
    </svg>");
}
.v-oida-best-offer .nbo-link-tile .link-placeholder {
  z-index: 1;
  font-size: 28px;
  margin-right: 12px;
  flex: 0 0 auto;
}
.v-oida-best-offer .nbo-link-tile .content-holder {
  z-index: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v-oida-best-offer .nbo-link-tile .title {
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 6px;
}
.v-oida-best-offer .nbo-link-tile .short-description {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
  margin-bottom: 8px;
}
.v-oida-best-offer .nbo-link-tile .cta {
  font-weight: 700;
  color: #621645;
  font-size: 14px;
  text-decoration: none;
}
.v-oida-best-offer .nbo-link-tile .offer-ribbon,
.v-oida-best-offer .nbo-link-tile .v-badges-holder {
  display: none !important;
}
.v-oida-best-offer .js-mini-slider .track {
  flex-wrap: nowrap !important;
}
.v-oida-best-offer .js-mini-slider .track .single-item {
  flex: 0 0 220px !important;
  max-width: 220px !important;
}
@media (max-width: 600px) {
  .v-oida-best-offer .js-mini-slider .track .single-item {
    flex: 0 0 180px !important;
    max-width: 180px !important;
  }
  .v-oida-best-offer .nbo-link-tile .media-holder::after {
    width: 160px;
    height: 160px;
    right: -12%;
  }
  .v-oida-best-offer .nbo-link-tile .link-placeholder {
    font-size: 24px;
  }
}
@media (min-width: 1000px) {
  .v-oida-best-offer {
    /* optional: auf großen Bildschirmen zum Grid wechseln */
  }
  .v-oida-best-offer .js-mini-slider .track {
    flex-wrap: wrap;
    justify-content: center;
  }
  .v-oida-best-offer .js-mini-slider .track .single-item {
    flex: 0 0 220px !important;
  }
}
/* Link-Tiles für NBO (fifth tile) */
.nbo-link-tile .media-holder {
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
}
.nbo-link-tile .link-placeholder {
  font-size: 36px;
  line-height: 1;
  opacity: 0.92;
}
.nbo-link-tile .content-holder {
  padding: 12px 14px;
}
.nbo-link-tile .short-description {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}
.nbo-link-tile .cta {
  margin-top: 10px;
  color: #621645;
  font-weight: 600;
}
.nbo-link-tile .offer-ribbon {
  display: none;
}
/*/xassets/uncompressed/source_map/308.css.css.map */
/* === USER PAIN SURVEY CARD === */
/* === YNS MODERN SURVEY (REFINED) === */
/* === YNS MODERN SURVEY (FINAL REFINED) === */
/* === USER PAIN SURVEY – CLEAN STABLE === */
.yns-survey {
  border: 1px solid #e1e1e1;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  overflow: visible;
  max-width: 500px;
}
.yns-question {
  font-weight: 600;
  margin-bottom: 6px;
}
.yns-choice {
  font-size: 12px;
  color: #888;
  display: block;
}
/* dropdown */
.yns-dropdown {
  position: relative;
  margin: 6px 0;
}
.yns-dropdown-head {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 13px;
  cursor: pointer;
  background: #fff;
}
@media (min-width: 576px) {
  .yns-dropdown-head {
    font-size: 13.5px;
  }
}
@media (min-width: 768px) {
  .yns-dropdown-head {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .yns-dropdown-head {
    font-size: 14.5px;
  }
}
@media (min-width: 1200px) {
  .yns-dropdown-head {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .yns-dropdown-head {
    font-size: 15.5px;
  }
}
@media (min-width: 1600px) {
  .yns-dropdown-head {
    font-size: 16px;
  }
}
.yns-dropdown-list {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-height: 220px;
  overflow: auto;
  display: none;
  z-index: 9999;
}
.yns-dropdown.open .yns-dropdown-list {
  display: block;
}
.yns-option {
  padding: 6px 8px;
  font-size: 13px;
  cursor: pointer;
}
@media (min-width: 576px) {
  .yns-option {
    font-size: 13.5px;
  }
}
@media (min-width: 768px) {
  .yns-option {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .yns-option {
    font-size: 14.5px;
  }
}
@media (min-width: 1200px) {
  .yns-option {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .yns-option {
    font-size: 15.5px;
  }
}
@media (min-width: 1600px) {
  .yns-option {
    font-size: 16px;
  }
}
.yns-option:hover {
  background: #f3f3f3;
}
/* chips */
.yns-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  justify-content: center;
}
.yns-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #621645;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.yns-chip-remove {
  font-size: 16px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.15s ease;
}
.yns-chip-remove:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}
/* other */
.yns-other-input {
  display: none;
  margin-top: 6px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px;
}
/* button */
.yns-nav {
  text-align: center;
  margin-top: 8px;
}
.yns-submit {
  font-size: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: #621645;
  color: #fff;
}
.yns-step {
  display: none;
}
.yns-step.is-active {
  display: block;
}
.yns-thanks {
  text-align: center;
  padding: 40px 10px;
  font-size: 16px;
  font-weight: 600;
}
/*/xassets/uncompressed/source_map/317.css.css.map */