.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 */
.v-oida-overview .v-btn-map {
  font-size: 14px;
}
@media (min-width: 576px) {
  .v-oida-overview .v-btn-map {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .v-oida-overview .v-btn-map {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .v-oida-overview .v-btn-map {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .v-oida-overview .v-btn-map {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .v-oida-overview .v-btn-map {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .v-oida-overview .v-btn-map {
    font-size: 14px;
  }
}
.v-oida-overview .v-btn.v-btn-secondary.xs-oida-reset-search-term {
  font-size: 10px;
  cursor: pointer;
  vertical-align: middle;
}
@media (min-width: 576px) {
  .v-oida-overview .v-btn.v-btn-secondary.xs-oida-reset-search-term {
    font-size: 10px;
  }
}
@media (min-width: 768px) {
  .v-oida-overview .v-btn.v-btn-secondary.xs-oida-reset-search-term {
    font-size: 10px;
  }
}
@media (min-width: 992px) {
  .v-oida-overview .v-btn.v-btn-secondary.xs-oida-reset-search-term {
    font-size: 10px;
  }
}
@media (min-width: 1200px) {
  .v-oida-overview .v-btn.v-btn-secondary.xs-oida-reset-search-term {
    font-size: 10px;
  }
}
@media (min-width: 1400px) {
  .v-oida-overview .v-btn.v-btn-secondary.xs-oida-reset-search-term {
    font-size: 10px;
  }
}
@media (min-width: 1600px) {
  .v-oida-overview .v-btn.v-btn-secondary.xs-oida-reset-search-term {
    font-size: 10px;
  }
}
.v-oida-event-detail-container {
  display: none;
  position: absolute;
  top: 0;
  z-index: 3;
  background-color: #ffffff;
  width: 100vw;
}
/*/xassets/uncompressed/source_map/211.css.css.map */
.section-map #xs-oida-map-canvas {
  width: 100%;
  height: 80vh;
}
.section-map #xs-oida-map-canvas .xs-oida-map-info-window-content {
  max-width: 380px;
}
.section-map #xs-oida-map-canvas .xs-oida-map-info-window-content .image-container img {
  width: 100%;
  height: auto;
}
.section-map #xs-oida-map-canvas .xs-oida-map-info-window-content .details-container .v-btn.v-btn-primary.xs-oida-map-detail {
  font-size: 12px;
  cursor: pointer;
  vertical-align: middle;
}
@media (min-width: 576px) {
  .section-map #xs-oida-map-canvas .xs-oida-map-info-window-content .details-container .v-btn.v-btn-primary.xs-oida-map-detail {
    font-size: 12.66666667px;
  }
}
@media (min-width: 768px) {
  .section-map #xs-oida-map-canvas .xs-oida-map-info-window-content .details-container .v-btn.v-btn-primary.xs-oida-map-detail {
    font-size: 13.33333333px;
  }
}
@media (min-width: 992px) {
  .section-map #xs-oida-map-canvas .xs-oida-map-info-window-content .details-container .v-btn.v-btn-primary.xs-oida-map-detail {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .section-map #xs-oida-map-canvas .xs-oida-map-info-window-content .details-container .v-btn.v-btn-primary.xs-oida-map-detail {
    font-size: 14.66666667px;
  }
}
@media (min-width: 1400px) {
  .section-map #xs-oida-map-canvas .xs-oida-map-info-window-content .details-container .v-btn.v-btn-primary.xs-oida-map-detail {
    font-size: 15.33333333px;
  }
}
@media (min-width: 1600px) {
  .section-map #xs-oida-map-canvas .xs-oida-map-info-window-content .details-container .v-btn.v-btn-primary.xs-oida-map-detail {
    font-size: 16px;
  }
}
/*/xassets/uncompressed/source_map/222.css.css.map */
.v-oida-main .v-container {
  padding-top: 20px;
}
@media (min-width: 576px) {
  .v-oida-main .v-container {
    padding-top: 25.83333333px;
  }
}
@media (min-width: 768px) {
  .v-oida-main .v-container {
    padding-top: 31.66666667px;
  }
}
@media (min-width: 992px) {
  .v-oida-main .v-container {
    padding-top: 37.5px;
  }
}
@media (min-width: 1200px) {
  .v-oida-main .v-container {
    padding-top: 43.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-oida-main .v-container {
    padding-top: 49.16666667px;
  }
}
@media (min-width: 1600px) {
  .v-oida-main .v-container {
    padding-top: 55px;
  }
}
.v-oida-main .seo_description {
  text-align: center;
  background-color: var(--color-body);
  border: 0.02px solid lightgray;
  box-shadow: 0px 3px 6px rgba(0 0 0 / 30%);
  border-radius: 15px;
  opacity: 1;
  padding: 10px;
  line-height: 1.6;
  font-size: 15;
  padding: 10px 30px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .v-oida-main .seo_description {
    font-size: 15.33333333;
  }
}
@media (min-width: 768px) {
  .v-oida-main .seo_description {
    font-size: 15.66666667;
  }
}
@media (min-width: 992px) {
  .v-oida-main .seo_description {
    font-size: 16;
  }
}
@media (min-width: 1200px) {
  .v-oida-main .seo_description {
    font-size: 16.33333333;
  }
}
@media (min-width: 1400px) {
  .v-oida-main .seo_description {
    font-size: 16.66666667;
  }
}
@media (min-width: 1600px) {
  .v-oida-main .seo_description {
    font-size: 17;
  }
}
/*/xassets/uncompressed/source_map/214.css.css.map */
.category-mini-slider {
  padding: 20px 15px;
  margin: -20px -15px;
  height: calc(100% + 40px);
}
@media (min-width: 576px) {
  .category-mini-slider {
    margin: -20px 0;
    padding: 20px 0;
  }
}
.category-mini-slider .track {
  --columns: 1.5;
  --gap: 15px;
  gap: 15px;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  height: 100%;
}
@media (min-width: 992px) {
  .category-mini-slider .track {
    --columns: 2;
  }
}
.category-mini-slider .track .v-event-category {
  height: 100%;
  flex: 0 0 calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
  width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}
.v-event-category {
  position: relative;
  gap: 0;
  background-color: #FCF5FA;
  border: 1px solid #f6e1f0;
  border-radius: 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .v-event-category {
    display: flex;
    align-items: center;
  }
}
.v-event-category .img-container {
  flex: 0 0 142px;
  position: relative;
}
@media (min-width: 992px) {
  .v-event-category .img-container {
    height: 100%;
  }
}
.v-event-category .img-container img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
  height: auto;
}
@media (min-width: 992px) {
  .v-event-category .img-container img {
    height: 100%;
  }
}
.v-event-category .info-container {
  display: flex;
  flex-direction: column;
  padding: 15px;
}
@media (min-width: 992px) {
  .v-event-category .info-container {
    padding: 5px;
    height: 100%;
  }
}
.v-event-category .info-container .info-holder {
  --gap: var(--utility-layout-gap);
  --columns: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  --gap: 10px;
  --columns: 2;
}
.v-event-category .info-container .info-holder > * {
  flex: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
  width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}
.v-event-category .info-container .info-holder .item {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
}
.v-event-category .info-container .v-btn-holder {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .v-event-category .info-container .v-btn-holder {
    margin-top: auto;
  }
}
.v-event-category .info-container .v-btn-holder .v-btn {
  padding: 0.66666667em 2em;
}
.v-event-category2 {
  display: inline-block;
  padding: 5px 5px 5px 5px;
  margin: 10px 10px 10px 10px;
  border-style: solid;
  border-color: #606a75;
  border-radius: 15px;
  border-width: 0px;
  vertical-align: top;
  box-shadow: 0px 3px 6px #00000059;
}
.v-event-category2 .img-container img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .v-event-category2 {
    max-width: 200px;
  }
}
.v-event-category2 .hover-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
}
.v-event-category2 .oida-event-title {
  color: #606a75;
  font-size: 1.1em;
  font-family: Hind Siliguri;
  font-weight: 200;
  padding: 5px 3px 3px 3px;
  white-space: normal;
}
.oida-category-title {
  color: #606a75;
  font-size: 30px;
  font-family: Hind Siliguri;
  font-weight: 600;
  margin: 0px 0px 5px 0px;
}
.v-btn.v-btn-icon.icon.arrow {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-body);
  text-decoration: none;
  padding: 0;
  height: 100%;
  width: 100%;
  position: relative;
  border: 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid #f6e1f0;
  max-width: 60px;
}
.v-btn.v-btn-icon.icon.arrow:hover {
  background-color: var(--color-primary);
}
.v-btn.v-btn-icon.icon.arrow:before,
.v-btn.v-btn-icon.icon.arrow:after {
  width: 1em;
  height: 1em;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow a {
  color: Blue;
  text-decoration: none;
}
ul.share-dropdown {
  list-style: none outside none;
  margin: 0;
  min-width: 51px;
  padding: 0;
  top: 8px !important;
  left: -17px !important;
}
ul.share-dropdown li {
  display: block;
  font-size: 18px;
  list-style: none outside none;
  margin-bottom: 3px;
  margin-left: 4px;
  margin-top: 3px;
}
ul.share-dropdown li a {
  display: block;
  padding: 6px 10px 6px 10px;
  text-align: center;
}
ul.share-dropdown li a.btn-whatsapp {
  background-color: #25D366 !important;
  width: 41px;
  color: #FFFFFF !important;
}
ul.share-dropdown li a.btn-twitter {
  background-color: #3399CC !important;
  width: 41px;
  color: #FFFFFF !important;
}
ul.share-dropdown li a.btn-facebook {
  background-color: #3D5B96 !important;
  width: 41px;
  color: #FFFFFF !important;
}
ul.share-dropdown li a.btn-google {
  background-color: #DD3F34 !important;
  width: 41px;
  color: #FFFFFF !important;
}
ul.share-dropdown li a.btn-linkedin {
  background-color: #1884BB !important;
  width: 41px;
  color: #FFFFFF !important;
}
ul.share-dropdown li a.btn-pinterest {
  background-color: #CC1E2D !important;
  width: 41px;
  color: #FFFFFF !important;
}
ul.share-dropdown li a.btn-mail {
  background-color: #FFC90E !important;
  width: 41px;
  color: #FFFFFF !important;
}
.xs-oida-sort {
  /* Für extra kleine Screens */
}
.xs-oida-sort .xs-oida-stoebern-location-container {
  font-size: 14px;
  align-self: center;
  margin-right: auto;
}
@media (min-width: 576px) {
  .xs-oida-sort .xs-oida-stoebern-location-container {
    font-size: 15.83333333px;
  }
}
@media (min-width: 768px) {
  .xs-oida-sort .xs-oida-stoebern-location-container {
    font-size: 17.66666667px;
  }
}
@media (min-width: 992px) {
  .xs-oida-sort .xs-oida-stoebern-location-container {
    font-size: 19.5px;
  }
}
@media (min-width: 1200px) {
  .xs-oida-sort .xs-oida-stoebern-location-container {
    font-size: 21.33333333px;
  }
}
@media (min-width: 1400px) {
  .xs-oida-sort .xs-oida-stoebern-location-container {
    font-size: 23.16666667px;
  }
}
@media (min-width: 1600px) {
  .xs-oida-sort .xs-oida-stoebern-location-container {
    font-size: 25px;
  }
}
.xs-oida-sort .information-group {
  width: 100%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
}
.xs-oida-sort .header-container {
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  border-bottom: 1px solid #ccc;
  flex-direction: row;
}
.xs-oida-sort .header-container .xs-oida-sort-holder {
  font-size: 14px;
  margin-left: auto;
  height: auto !important;
}
@media (min-width: 576px) {
  .xs-oida-sort .header-container .xs-oida-sort-holder {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .xs-oida-sort .header-container .xs-oida-sort-holder {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .xs-oida-sort .header-container .xs-oida-sort-holder {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .xs-oida-sort .header-container .xs-oida-sort-holder {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .xs-oida-sort .header-container .xs-oida-sort-holder {
    font-size: 19px;
  }
}
@media (min-width: 1600px) {
  .xs-oida-sort .header-container .xs-oida-sort-holder {
    font-size: 20px;
  }
}
.xs-oida-sort .header-container .sod_select {
  height: auto !important;
}
.xs-oida-sort .text-group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1.2rem;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .xs-oida-sort .header-container {
    align-items: flex-start;
  }
  .xs-oida-sort .xs-oida-sort-holder {
    align-self: flex-end;
    /* oder center/auto je nach Wunsch */
  }
}
.ys-feature-tile {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  min-height: 220px;
}
.ys-feature-card {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  display: block;
}
.ys-feature-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.ys-feature-card .media-holder {
  min-height: 220px;
  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;
}
.ys-feature-card .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;
}
.ys-feature-card .content-holder {
  z-index: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ys-feature-card .title {
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 6px;
}
.ys-feature-card .short-description {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ys-feature-card .cta {
  font-weight: 700;
  color: #621645;
  font-size: 14px;
}
.tile-feature {
  min-height: 220px;
}
/*/xassets/uncompressed/source_map/217.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 {
  max-width: 500px;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0 0 0 / 16%);
  margin-bottom: 30px;
  overflow: hidden;
  transition: height 520ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.yns-survey-body {
  overflow: hidden;
  transition: height 520ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}
/* Step Animation */
.yns-step {
  display: block;
  /* wichtig: KEIN display none */
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition: opacity 300ms ease, transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
  position: absolute;
  width: 100%;
}
.yns-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  position: relative;
}
/* Smooth Thank You */
.yns-thanks {
  font-size: 16px;
  text-align: center;
  padding: 45px 0;
}
.yns-sub {
  font-size: 13px;
  color: grey;
}
.yns-question {
  font-weight: 600;
  margin-bottom: 10px;
}
.yns-choice {
  display: block;
  font-size: 12px;
  color: #9a9a9a;
  font-weight: normal;
  margin-top: 2px;
}
.yns-card-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: 12px 0;
  position: relative;
}
@media (min-width: 400px) {
  .yns-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 576px) {
  .yns-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .yns-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.yns-card {
  min-height: 60px;
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #621645;
  background: #fff;
  color: #621645;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
@media (min-width: 576px) {
  .yns-card {
    font-size: 11.5px;
  }
}
@media (min-width: 768px) {
  .yns-card {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .yns-card {
    font-size: 12.5px;
  }
}
@media (min-width: 1200px) {
  .yns-card {
    font-size: 13px;
  }
}
@media (min-width: 1400px) {
  .yns-card {
    font-size: 13.5px;
  }
}
@media (min-width: 1600px) {
  .yns-card {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .yns-card {
    line-height: 1.3;
  }
}
.yns-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}
.yns-card.active {
  background: #621645;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.yns-card.neutral {
  border-color: #ccc;
  color: #707070;
}
.yns-card.neutral.active {
  color: white;
}
.yns-input,
.yns-textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
}
.yns-next,
.yns-submit {
  display: block;
  margin: 15px auto 0;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #621645;
  color: #fff;
  font-weight: 600;
}
.yns-footer {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: #707070;
}
.yns-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.yns-back {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: normal;
  color: #9a9a9a;
  cursor: pointer;
  line-height: 1;
}
.yns-back:hover {
  color: #621645;
  text-decoration: underline;
}
.yns-next,
.yns-submit {
  margin: 0;
  /* wichtig: kein Auto-Margin mehr */
}
/*/xassets/uncompressed/source_map/312.css.css.map */
.v-event {
  border-radius: 15px;
  border: 0.02px solid lightgray;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .v-event {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
  }
}
.v-event .img-container {
  position: relative;
}
@media (min-width: 768px) {
  .v-event .img-container {
    flex: 0 0 30%;
  }
}
.v-event .img-container .img-responsive {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .v-event .img-container .img-responsive {
    height: 100%;
    object-fit: cover;
  }
}
.v-event .img-container .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-event .img-container .offer-ribbon {
    top: 104px;
    left: -26px;
    width: 180px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
}
.v-event .content-holder {
  padding: 15px;
}
@media (min-width: 768px) {
  .v-event .content-holder {
    display: flex;
    flex-wrap: wrap;
  }
}
.v-event .content-holder .title {
  font-size: 20px;
}
@media (min-width: 576px) {
  .v-event .content-holder .title {
    font-size: 21.66666667px;
  }
}
@media (min-width: 768px) {
  .v-event .content-holder .title {
    font-size: 23.33333333px;
  }
}
@media (min-width: 992px) {
  .v-event .content-holder .title {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .v-event .content-holder .title {
    font-size: 26.66666667px;
  }
}
@media (min-width: 1400px) {
  .v-event .content-holder .title {
    font-size: 28.33333333px;
  }
}
@media (min-width: 1600px) {
  .v-event .content-holder .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .v-event .content-holder .title {
    order: 0;
    flex: 0 0 100%;
    margin-bottom: 10px;
    padding-right: 80px;
  }
}
.v-event .content-holder .description {
  font-size: 11px;
}
@media (min-width: 576px) {
  .v-event .content-holder .description {
    font-size: 11.33333333px;
  }
}
@media (min-width: 768px) {
  .v-event .content-holder .description {
    font-size: 11.66666667px;
  }
}
@media (min-width: 992px) {
  .v-event .content-holder .description {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .v-event .content-holder .description {
    font-size: 12.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-event .content-holder .description {
    font-size: 12.66666667px;
  }
}
@media (min-width: 1600px) {
  .v-event .content-holder .description {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .v-event .content-holder .description {
    order: 3;
    flex: 0 0 100%;
  }
}
.v-event .content-holder .price {
  padding: 10px 0;
}
@media (min-width: 768px) {
  .v-event .content-holder .price {
    order: 5;
    flex: 0 0 100%;
  }
}
.v-event .content-holder .v-infos-holder {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .v-event .content-holder .v-infos-holder {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .v-event .content-holder .v-infos-holder {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .v-event .content-holder .v-infos-holder {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .v-event .content-holder .v-infos-holder {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .v-event .content-holder .v-infos-holder {
    font-size: 19px;
  }
}
@media (min-width: 1600px) {
  .v-event .content-holder .v-infos-holder {
    font-size: 20px;
  }
}
.v-event .content-holder .v-infos-holder .views {
  font-weight: 400;
}
@media (min-width: 768px) {
  .v-event .content-holder .v-infos-holder .views {
    width: auto !important;
  }
}
.v-event .content-holder .v-badges-holder {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 15px;
}
.v-event .content-holder .v-badges-holder .v-btn {
  font-size: 25px;
}
.v-event .content-holder .v-badges-holder .v-btn.icon-heart-empty.active.after:after {
  content: "\e90e";
}
.v-event .content-holder .v-badges-holder .v-btn.icon-heart-empty.active.before:before {
  content: "\e90e";
}
@media (min-width: 768px) {
  .v-event .content-holder .v-btn-holder {
    order: 7;
    flex: 0 0 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }
}
.v-event .content-holder .v-btn-holder > * {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
/*/xassets/uncompressed/source_map/221.css.css.map */
/* ================================
   Container: Pinterest-Style Masonry 
   FABIAN WIR BAUEN JETZT DEN MASO...
=================================== */
/* ================================
   Masonry Container
================================ */
.xs-oida-overview-container-grid {
  position: relative;
  margin: 0 auto;
  max-width: 100vw;
  overflow-x: hidden;
}
/* Masonry Item (Wrapper) */
.xs-oida-overview-container-grid-half-size {
  box-sizing: border-box;
  margin-bottom: 24px;
  background: none;
  /* Wrapper selbst bleibt neutral */
}
/* Sizer */
.masonry-generated-sizer {
  height: 0;
  visibility: hidden;
  pointer-events: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ================================
   Responsive Breakpoints -> Nicht mehr Notwendig, wird über JS gesteuert. Ich lasse es da für den Fall der Fälle
================================ */
/*  */
/* ================================
   Eigentliche Kachel
================================ */
.v-event-half-size {
  min-width: 110px;
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  /* nötig für z-index */
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto;
}
.v-event-half-size:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
/* Dropdown beim Öffnen hervorheben */
.dropdown-menu {
  display: none;
}
.v-event-half-size .dropdown-menu.show {
  position: absolute;
  /* relativ zur Kachel */
  display: block;
  top: 100%;
  /* unterhalb des Buttons */
  left: 0;
  z-index: 20;
  /* noch höher als die Kachel selbst */
}
/* ================================
   Bild
=================================== */
.v-event-half-size .img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0px 0px;
  aspect-ratio: 4 / 3;
}
.v-event-half-size img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.v-event-half-size:hover img {
  transform: scale(1.05);
}
/* Ribbon (Angebot-Badge) */
.v-event-half-size .offer-ribbon {
  position: absolute;
  top: 12px;
  left: -38px;
  background: #621645;
  color: #fff;
  font-size: 0.8rem;
  font-weight: normal;
  padding: 6px 40px;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
/* ================================
   Content
=================================== */
.v-event-half-size .content-holder {
  padding: 0.5em 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.v-event-half-size .title {
  width: 100%;
  margin: 0 0 0.5rem;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 0px !important;
  white-space: normal;
  /* Zeilenumbruch zulassen */
  word-wrap: break-word;
  /* lange Wörter umbrechen */
  overflow-wrap: break-word;
  /* moderne Alternative */
}
@media (min-width: 576px) {
  .v-event-half-size .title {
    font-size: 15.33333333px;
  }
}
@media (min-width: 768px) {
  .v-event-half-size .title {
    font-size: 16.66666667px;
  }
}
@media (min-width: 992px) {
  .v-event-half-size .title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .v-event-half-size .title {
    font-size: 19.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-event-half-size .title {
    font-size: 20.66666667px;
  }
}
@media (min-width: 1600px) {
  .v-event-half-size .title {
    font-size: 22px;
  }
}
.v-event-half-size .title .veranstalter {
  padding-top: 4px;
  display: block;
  font-size: 70%;
  color: grey;
  font-weight: 100;
  line-height: 2;
}
.v-event-half-size .title a {
  color: #222;
  text-decoration: none;
  line-height: 1.1;
}
.v-event-half-size .title a :first-line {
  line-height: 0.8;
}
.v-event-half-size .title a:hover {
  text-decoration: underline;
}
/* Infos (Views, Adresse, Distanz) */
.v-event-half-size .v-infos-holder {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85em;
  justify-content: flex-end;
  flex-direction: row;
  color: grey;
  font-size: 14px;
}
.v-event-half-size .v-infos-holder .views {
  font-size: 14px;
  font-weight: 50;
}
.v-event-half-size .adress_sm {
  display: none;
}
/* Description */
.v-event-half-size .description {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.75rem;
  display: none;
}
/* Price */
.v-event-half-size .price {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #621645;
  display: none;
}
/* ================================
   Badges + Share + Wishlist
=================================== */
.v-event-half-size .v-badges-holder {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 3px 5px;
  border: 1px solid #C7C7C7;
  border-radius: 30px;
  background: #fafafa;
  margin-bottom: 10px;
}
.v-event-half-size .v-badges-holder .wishlist {
  border-radius: 0px !important;
  border-left: 1px solid lightgrey;
}
.v-event-half-size .v-badges-holder .v-btn {
  background: none;
  padding: 6px 13px 6px 13px;
  cursor: pointer;
  font-size: 17px;
}
.v-event-half-size .v-badges-holder .v-btn.icon-heart-empty.active.after:after {
  content: "\e90e";
}
.v-event-half-size .v-badges-holder .v-btn.icon-heart-empty.active.before:before {
  content: "\e90e";
}
/* ================================
   Action Buttons (unten)
=================================== */
.v-event-half-size .v-btn-holder {
  gap: 0.5rem;
  display: none;
}
.v-event-half-size .v-btn {
  flex: 1;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
/* Secondary Button */
.v-event-half-size .v-btn.v-btn-secondary {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}
.v-event-half-size .v-btn.v-btn-secondary:hover {
  background: #000;
  color: #fff;
}
/* Primary Button */
.v-event-half-size .v-btn.v-btn-primary {
  background: #621645;
  border: 1px solid #621645;
  color: #fff;
}
.v-event-half-size .v-btn.v-btn-primary:hover {
  background: #4e1034;
}
/*/xassets/uncompressed/source_map/291.css.css.map */
.v-filter {
  position: fixed;
  top: calc(var(--utility-header-height-dynamic) + 30px);
  left: 0;
  z-index: 500;
}
@media (min-width: 992px) {
  .v-filter {
    position: static;
  }
}
@media (min-width: 992px) {
  .v-filter .v-filter-trigger {
    display: none;
  }
}
.v-filter .v-filter-inner {
  position: fixed;
  left: 0;
  top: var(--utility-header-height-dynamic);
  width: 100%;
  height: calc(var(--app-height) - var(--utility-header-height-dynamic));
  background-color: var(--color-body);
  padding: 44px 15px 15px;
  transform: translateX(-100%);
  transition: transform 300ms ease;
  overflow: auto;
}
@media (min-width: 992px) {
  .v-filter .v-filter-inner {
    position: static;
    transform: none;
    padding: 0px;
    overflow: visible;
    height: auto;
  }
}
.v-filter .v-filter-inner .v-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 10;
}
@media (min-width: 992px) {
  .v-filter .v-filter-inner .v-close {
    display: none;
  }
}
.form-holder {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
}
.form-holder .sitesearch-form {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0 0 0 / 30%);
}
.form-holder .sitesearch-form input {
  width: 100%;
  position: relative;
  font-size: 16px;
}
.form-holder .xs-oida-filter-search-suggestions-container {
  display: none;
  overflow: hidden;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-left: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  background-color: #ffffff;
  padding-top: 0;
  border-radius: 0 0 15px 15px;
  transition: padding 300ms ease-in-out, top 300ms ease-in-out;
  width: 100%;
}
.form-holder .xs-oida-filter-search-suggestions-container .xs-oida-filter-search-suggestions {
  list-style: none;
  padding: 0 0 0 0;
}
.form-holder .xs-oida-filter-search-suggestions-container.active {
  top: 19.5px;
  padding-top: 19.5px;
  display: block;
}
.form-holder .xs-oida-filter-search-suggestions-container li {
  cursor: pointer;
  padding: 5px 15px;
  color: var(--color-dark);
  font-weight: 300;
}
.form-holder .xs-oida-filter-search-suggestions-container li:hover {
  background-color: #f2f2f2;
}
.form-holder {
  position: relative;
  z-index: 1;
  width: 100%;
}
.form-holder .sitesearch-form {
  position: relative;
  z-index: 1;
}
.form-holder .sitesearch-form input {
  position: relative;
}
.form-holder .xs-oida-filter-search-term {
  height: 95%;
}
.form-holder .xs-oida-filter-search-term-clear-button {
  display: none;
  cursor: pointer;
}
.form-holder .xs-oida-filter-search-suggestions-container {
  display: none;
  overflow: hidden;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-left: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  background-color: #ffffff;
  padding-top: 0;
  border-radius: 0 0 15px 15px;
  transition: padding 300ms ease-in-out, top 300ms ease-in-out;
}
.form-holder .xs-oida-filter-search-suggestions-container .xs-oida-filter-search-suggestions {
  list-style: none;
  padding: 0 0 0 0;
}
.form-holder .xs-oida-filter-search-suggestions-container.active {
  top: 19.5px;
  padding-top: 19.5px;
  display: block;
}
@media (min-width: 1200px) {
  .form-holder .xs-oida-filter-search-suggestions-container {
    width: 100%;
  }
}
.form-holder .xs-oida-filter-search-suggestions-container li {
  cursor: pointer;
  padding: 5px 15px;
  color: var(--color-dark);
  font-weight: 300;
}
.form-holder .xs-oida-filter-search-suggestions-container li:hover {
  background-color: #f2f2f2;
}
.v-search {
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 992px) {
  .xs-oida-filter-container {
    display: flex;
    flex-direction: column;
  }
}
.xs-oida-filter-container .search,
.xs-oida-filter-container .filter {
  background-color: var(--color-body);
  border: 0.02px solid lightgray;
  box-shadow: 0px 3px 6px rgba(0 0 0 / 30%);
  border-radius: 15px;
  opacity: 1;
  padding: 10px;
}
.xs-oida-filter-container h3 {
  opacity: 1;
}
.xs-oida-filter-container .sod_select {
  width: 100%;
  background: var(--color-body);
}
.xs-oida-filter-container .sod_select .sod_list_wrapper {
  z-index: 2;
}
.xs-oida-filter-container .xs-oida-filter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.xs-oida-filter-container .xs-oida-filter-form:after {
  content: "";
}
.xs-oida-filter-sort {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.xs-oida-sort {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-direction: column;
}
.xs-oida-sort .xs-oida-sort-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
body.show-filter {
  overflow: hidden;
}
body.show-filter .v-filter .v-filter-inner {
  transform: translateX(0%);
  display: flex;
  justify-content: center;
}
.feedbackbogen {
  background-color: var(--color-body);
  border: 0.02px solid lightgray;
  box-shadow: 0px 3px 6px rgba(0 0 0 / 30%);
  border-radius: 15px;
  padding: 10px;
  width: 100%;
  margin: 40px;
  max-width: 400px;
}
@media (min-width: 576px) {
  .feedbackbogen {
    margin: 20px;
  }
}
@media (min-width: 768px) {
  .feedbackbogen {
    margin: 50px;
  }
}
@media (min-width: 992px) {
  .feedbackbogen {
    margin: 0px;
  }
}
.feedbackbogen .feedbackbogen-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px 0px 19px 0px;
  position: relative;
  font-size: 14px;
}
.feedbackbogen .feedbackbogen-content .feedback_description {
  margin: 0px 0px 0px 20px;
}
.feedbackbogen .xr_form_submit {
  margin-left: auto;
  margin-right: auto;
}
.feedback-flappy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 75px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: white;
  border: 2px solid var(--color-primary);
  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: 50;
  color: black;
}
.feedback-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Ausgrauen */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  /* über Bootstrap-Normal-Content, unter Modal (falls du das nutzt) */
}
.feedbackbogen-close-button {
  position: absolute;
  top: -10;
  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;
}
.feedbackbogen-close-button::after {
  position: absolute;
  top: 0%;
  left: 27%;
  content: "\00d7";
  font-size: 38px;
  line-height: 1.25;
  color: var(--color-primary);
  font-weight: 600;
  pointer-events: none;
}
body.no-scroll {
  overflow: hidden;
}
/*/xassets/uncompressed/source_map/216.css.css.map */
.v-filter {
  /* Range wrapper (two inputs übereinander) */
  /* Track (wir malen ihn in .range::before, damit beide Inputs teilen) */
  /* Active fill zwischen den Griffen */
  /* Thumb styling */
  /* Firefox track reset */
  /* Tick-Labels */
  /* kleines Badge für Min/Max Anzeige */
}
.v-filter .age-filter {
  max-width: 560px;
  margin: 0 auto;
}
.v-filter .age-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.v-filter .age-header h2 {
  font-size: 12px;
  color: #444444;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 576px) {
  .v-filter .age-header h2 {
    font-size: 13.33333333px;
  }
}
@media (min-width: 768px) {
  .v-filter .age-header h2 {
    font-size: 14.66666667px;
  }
}
@media (min-width: 992px) {
  .v-filter .age-header h2 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .v-filter .age-header h2 {
    font-size: 17.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-filter .age-header h2 {
    font-size: 18.66666667px;
  }
}
@media (min-width: 1600px) {
  .v-filter .age-header h2 {
    font-size: 20px;
  }
}
.v-filter .age-value {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.v-filter .range {
  position: relative;
  height: var(--thumb);
  margin: 18px 2px 8px;
}
.v-filter .range input[type="range"] {
  position: absolute;
  inset: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: var(--thumb);
  background: none;
  pointer-events: none;
  /* wir lassen nur den Thumb klickbar */
}
.v-filter .range::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: var(--track-h);
  transform: translateY(-50%);
  background: var(--c-bg);
  border-radius: var(--radius);
}
.v-filter .range .fill {
  position: absolute;
  top: 50%;
  height: var(--track-h);
  transform: translateY(-50%);
  background: var(--c-fill);
  border-radius: var(--radius);
}
.v-filter input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--thumb);
  height: var(--thumb);
  background: #fff;
  border: 2px solid var(--c-thumb);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  cursor: pointer;
}
.v-filter input[type="range"]::-moz-range-thumb {
  width: var(--thumb);
  height: var(--thumb);
  background: #fff;
  border: 2px solid var(--c-thumb);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  cursor: pointer;
}
.v-filter input[type="range"]::-moz-range-track {
  background: transparent;
  border: none;
}
.v-filter input[type="range"] {
  /* bessere Hitbox */
  outline: none;
}
.v-filter .ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 8px;
}
.v-filter .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3f4f6;
  padding: 4px 8px;
  border-radius: 999px;
  color: #111827;
  font-size: 0.9rem;
}
/*/xassets/uncompressed/source_map/299.css.css.map */
.xs-oida-filter-container {
  /* Dual-Range Layout (wie beim Alters-Slider) */
}
.xs-oida-filter-container .price-filter {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--c-text);
}
.xs-oida-filter-container .canvas_cost {
  width: 100%!important;
  height: 60px!important;
  display: block;
  padding: 0!important;
  margin: 0!important;
}
.xs-oida-filter-container .slider-container {
  margin-top: 6px;
}
.xs-oida-filter-container .range {
  position: relative;
  height: var(--thumb);
  margin: 10px 2px 0;
}
.xs-oida-filter-container .range::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: var(--track-h);
  transform: translateY(-50%);
  background: var(--c-bg);
  border-radius: var(--radius);
}
.xs-oida-filter-container .range .fill {
  position: absolute;
  top: 50%;
  height: var(--track-h);
  transform: translateY(-50%);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #621645 0%, #911963 100%);
}
.xs-oida-filter-container .range input[type="range"] {
  position: absolute;
  inset: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: var(--thumb);
  background: none;
  pointer-events: none;
  outline: none;
}
.xs-oida-filter-container .range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--thumb);
  height: var(--thumb);
  background: #fff;
  border: 2px solid var(--c-thumb);
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
}
.xs-oida-filter-container .range input[type="range"]::-moz-range-thumb {
  width: var(--thumb);
  height: var(--thumb);
  background: #fff;
  border: 2px solid var(--c-thumb);
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
}
.xs-oida-filter-container .range input[type="range"]::-moz-range-track {
  background: transparent;
  border: none;
}
.xs-oida-filter-container .price-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.95em;
  padding: 0 4px;
}
.xs-oida-filter-container .range input[type="range"]:focus-visible {
  outline: none;
}
.xs-oida-filter-container .range input[type="range"],
.xs-oida-filter-container .range input[type="range"]:focus,
.xs-oida-filter-container .range input[type="range"]:active {
  outline: none;
  border: none;
  box-shadow: none;
}
/*/xassets/uncompressed/source_map/301.css.css.map */
.v-atom.v-collapse-input {
  font-size: 16px;
}
@media (min-width: 576px) {
  .v-atom.v-collapse-input {
    font-size: 16.66666667px;
  }
}
@media (min-width: 768px) {
  .v-atom.v-collapse-input {
    font-size: 17.33333333px;
  }
}
@media (min-width: 992px) {
  .v-atom.v-collapse-input {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .v-atom.v-collapse-input {
    font-size: 18.66666667px;
  }
}
@media (min-width: 1400px) {
  .v-atom.v-collapse-input {
    font-size: 19.33333333px;
  }
}
@media (min-width: 1600px) {
  .v-atom.v-collapse-input {
    font-size: 20px;
  }
}
.v-atom.v-collapse-input .v-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1em;
  font-weight: 500;
}
.v-atom.v-collapse-input .v-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.v-atom.v-collapse-input .v-trigger i {
  font-size: 0.3em;
  transition: transform 150ms ease;
}
/*/xassets/uncompressed/source_map/218.css.css.map */
.v-collapse-input.region {
  margin: 10px 0;
  line-height: 1;
  cursor: pointer;
}
.v-collapse-input.region [type="radio"]:checked ~ .label-text {
  opacity: 1;
}
.v-collapse-input.region [type="radio"] ~ .label-text {
  transition: opacity 300ms ease;
  opacity: 0.5;
}
/*/xassets/uncompressed/source_map/220.css.css.map */
.xs-oida-top-filter .js-mini-slider .track {
  padding-top: 5px;
  padding-bottom: 5px;
  --columns: 3.5;
}
@media (min-width: 576px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-top: 5.83333333px;
  }
}
@media (min-width: 768px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-top: 6.66666667px;
  }
}
@media (min-width: 992px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-top: 7.5px;
  }
}
@media (min-width: 1200px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-top: 8.33333333px;
  }
}
@media (min-width: 1400px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-top: 9.16666667px;
  }
}
@media (min-width: 1600px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-top: 10px;
  }
}
@media (min-width: 576px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-bottom: 5.83333333px;
  }
}
@media (min-width: 768px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-bottom: 6.66666667px;
  }
}
@media (min-width: 992px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-bottom: 7.5px;
  }
}
@media (min-width: 1200px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-bottom: 8.33333333px;
  }
}
@media (min-width: 1400px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-bottom: 9.16666667px;
  }
}
@media (min-width: 1600px) {
  .xs-oida-top-filter .js-mini-slider .track {
    padding-bottom: 10px;
  }
}
@media (min-width: 576px) {
  .xs-oida-top-filter .js-mini-slider .track {
    --columns: 4;
  }
}
@media (min-width: 768px) {
  .xs-oida-top-filter .js-mini-slider .track {
    --columns: 4.2;
  }
}
@media (min-width: 992px) {
  .xs-oida-top-filter .js-mini-slider .track {
    --columns: 5;
  }
}
@media (min-width: 1200px) {
  .xs-oida-top-filter .js-mini-slider .track {
    --columns: 6;
  }
}
@media (min-width: 1400px) {
  .xs-oida-top-filter .js-mini-slider .track {
    --columns: 8;
  }
}
@media (min-width: 1600px) {
  .xs-oida-top-filter .js-mini-slider .track {
    --columns: 8;
  }
}
.xs-oida-top-filter .form-group {
  margin: 0;
}
.xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 3px 6px rgba(0 0 0 / 16%);
  overflow: hidden;
  cursor: pointer;
}
.xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .media-holder {
  padding-top: 100%;
  position: relative;
}
.xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .media-holder .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .content-holder {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-body);
  width: 100%;
  border-radius: 0 0 15px 15px;
  transition: background-color 300ms ease, color 300ms ease;
}
.xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .content-holder .title {
  font-size: 12px;
  padding: 0.3em 0;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 576px) {
  .xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .content-holder .title {
    font-size: 13.33333333px;
  }
}
@media (min-width: 768px) {
  .xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .content-holder .title {
    font-size: 14.66666667px;
  }
}
@media (min-width: 992px) {
  .xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .content-holder .title {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .content-holder .title {
    font-size: 17.33333333px;
  }
}
@media (min-width: 1400px) {
  .xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .content-holder .title {
    font-size: 18.66666667px;
  }
}
@media (min-width: 1600px) {
  .xs-oida-top-filter .form-group [type="radio"] ~ .fake-figure .content-holder .title {
    font-size: 20px;
  }
}
.xs-oida-top-filter .form-group [type="radio"]:checked ~ .fake-figure .content-holder {
  background-color: var(--color-primary);
  color: var(--color-body);
}
/*/xassets/uncompressed/source_map/215.css.css.map */
.select2-search__field {
  height: 30px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-secondary) !important;
  color: var(--color-primary) !important;
}
.select2-selection__rendered {
  color: var(--color-primary) !important;
}
.v-oida-hero-location-date {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: var(--color-primary);
  background-image: radial-gradient(circle, var(--color-accent) 0%, var(--color-primary) 100%);
}
@media (min-width: 576px) {
  .v-oida-hero-location-date {
    padding-top: 70px;
  }
}
@media (min-width: 768px) {
  .v-oida-hero-location-date {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .v-oida-hero-location-date {
    padding-top: 90px;
  }
}
@media (min-width: 1200px) {
  .v-oida-hero-location-date {
    padding-top: 100px;
  }
}
@media (min-width: 1400px) {
  .v-oida-hero-location-date {
    padding-top: 110px;
  }
}
@media (min-width: 1600px) {
  .v-oida-hero-location-date {
    padding-top: 120px;
  }
}
@media (min-width: 576px) {
  .v-oida-hero-location-date {
    padding-bottom: 35px;
  }
}
@media (min-width: 768px) {
  .v-oida-hero-location-date {
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .v-oida-hero-location-date {
    padding-bottom: 45px;
  }
}
@media (min-width: 1200px) {
  .v-oida-hero-location-date {
    padding-bottom: 50px;
  }
}
@media (min-width: 1400px) {
  .v-oida-hero-location-date {
    padding-bottom: 55px;
  }
}
@media (min-width: 1600px) {
  .v-oida-hero-location-date {
    padding-bottom: 60px;
  }
}
.v-oida-hero-location-date .v-container h1 {
  color: var(--color-body);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 576px) {
  .v-oida-hero-location-date .v-container h1 {
    font-size: 34.16666667px;
  }
}
@media (min-width: 768px) {
  .v-oida-hero-location-date .v-container h1 {
    font-size: 38.33333333px;
  }
}
@media (min-width: 992px) {
  .v-oida-hero-location-date .v-container h1 {
    font-size: 42.5px;
  }
}
@media (min-width: 1200px) {
  .v-oida-hero-location-date .v-container h1 {
    font-size: 46.66666667px;
  }
}
@media (min-width: 1400px) {
  .v-oida-hero-location-date .v-container h1 {
    font-size: 50.83333333px;
  }
}
@media (min-width: 1600px) {
  .v-oida-hero-location-date .v-container h1 {
    font-size: 55px;
  }
}
.v-oida-hero-location-date .v-container h2 {
  color: var(--color-body);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 576px) {
  .v-oida-hero-location-date .v-container h2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .v-oida-hero-location-date .v-container h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .v-oida-hero-location-date .v-container h2 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .v-oida-hero-location-date .v-container h2 {
    font-size: 26px;
  }
}
@media (min-width: 1400px) {
  .v-oida-hero-location-date .v-container h2 {
    font-size: 28px;
  }
}
@media (min-width: 1600px) {
  .v-oida-hero-location-date .v-container h2 {
    font-size: 30px;
  }
}
.v-oida-hero-location-date .v-container .hero-input {
  position: relative;
  display: flex;
  justify-content: center;
}
.v-oida-hero-location-date .v-container .hero-input .hero .bg-container {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border: 2.5px solid;
  border-color: #c0c0c0;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container #address {
  height: 32px;
  padding-left: 0px;
  font-size: 16px;
  border: 0;
  text-align: center;
  padding-left: 0;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container #address:focus {
  text-align: left;
  padding-left: 30px;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container #address:focus::placeholder {
  opacity: 0;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container #address::placeholder {
  transition: opacity 0.2s;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container #suggestionsList {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container #suggestionsList li {
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container #suggestionsList li:hover {
  background: #f3f4f6;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container .hidden {
  display: none;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container .icon-geo {
  position: absolute;
  left: 8px;
  top: 10px;
  z-index: 1;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container .icon-arrow-down {
  position: absolute;
  right: 12px;
  top: 8px;
  pointer-events: none;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-datepicker {
  width: 247px;
  height: 32px;
  text-align: center;
  cursor: pointer;
  border: 0;
  font-size: 16px;
  line-height: 32px;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-datepicker::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-datepicker::-moz-calendar-picker-indicator {
  display: none;
}
.v-oida-hero-location-date .v-container .hero-input .hero {
  position: relative;
  background-color: #c0c0c0;
  box-shadow: var(--dropdown-auswah-schatten);
  border-radius: 5px;
}
.v-oida-hero-location-date .v-container .hero-input .hero .icon.icon-geo.after:after {
  font-size: 1.2em;
  padding-left: 2px;
}
.v-oida-hero-location-date .v-container .hero-input .hero .icon.icon-calendar.after:after {
  font-size: 1.2em;
}
.v-oida-hero-location-date .v-container .hero-input .hero .icon.icon-arrow-down.after:after {
  font-size: 0.7em;
}
.v-oida-hero-location-date .v-container .hero-input .filter-ort-dropdown {
  position: relative;
  width: 252px;
  height: 34px;
  z-index: 2;
}
.v-oida-hero-location-date .v-container .hero-input .iconholder-location {
  position: relative;
  width: 29px;
}
.v-oida-hero-location-date .v-container .hero-input .img {
  position: relative;
  width: 20px;
  height: 10.5px;
}
.v-oida-hero-location-date .v-container .hero-input .filter-datumdropdown {
  position: relative;
  width: 252px;
  height: 34px;
  z-index: 1;
}
.v-oida-hero-location-date .v-container .hero-input .filter-datumdropdown .icon-calendar-check {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
}
.v-oida-hero-location-date .v-container .hero-input .filter-datumdropdown .icon-arrow-down {
  position: absolute;
  right: 12px;
  top: 8px;
  pointer-events: none;
}
.v-oida-hero-location-date .v-container .hero-input .icon-date {
  position: relative;
  width: 29px;
  height: 29px;
}
.v-oida-hero-location-date .v-container .hero-input .button-small {
  display: flex;
  height: 34px;
  margin-top: 1px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 1px 6px;
  position: relative;
  align-self: stretch;
  width: 100%;
  z-index: 0;
  background-color: #ecba23;
  border-radius: 5px;
  border: 1px solid;
  border-color: #c0c0c0;
}
.v-oida-hero-location-date .v-container .hero-input .start {
  position: relative;
  width: fit-content;
  font-family: var(--font-primary);
  font-weight: 600;
  color: #000000;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 23.5px;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .v-oida-hero-location-date .v-container .hero-input .hero {
    display: inline-flex;
    flex-wrap: wrap;
    height: 36px;
    align-items: flex-start;
    justify-content: center;
    gap: 0px 0px;
    padding-right: 2px;
  }
  .v-oida-hero-location-date .v-container .hero-input .hero .bg-container.date {
    border-left: 1px;
  }
  .v-oida-hero-location-date .v-container .hero-input .hero .xs-yns-hero-location-container .icon-geo {
    top: 8px;
  }
  .v-oida-hero-location-date .v-container .hero-input .dropdown-ortklein {
    padding-top: 6px;
  }
  .v-oida-hero-location-date .v-container .hero-input .filter-datumdropdown {
    margin-left: 0px;
    flex: unset;
  }
  .v-oida-hero-location-date .v-container .hero-input .button-small {
    margin-left: 0px;
    width: 88px;
    align-self: auto;
  }
}
body .android-device .v-oida-hero-location-date .v-container .hero-input .hero input[type="date"].xs-yns-hero-datepicker {
  -webkit-appearance: none;
  line-height: 24px;
}
/*/xassets/uncompressed/source_map/250.css.css.map */
.v-oida-top {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: var(--color-primary);
  background-image: radial-gradient(circle, var(--color-accent) 0%, var(--color-primary) 100%);
  overflow: hidden;
}
@media (min-width: 576px) {
  .v-oida-top {
    padding-top: 70px;
  }
}
@media (min-width: 768px) {
  .v-oida-top {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .v-oida-top {
    padding-top: 90px;
  }
}
@media (min-width: 1200px) {
  .v-oida-top {
    padding-top: 100px;
  }
}
@media (min-width: 1400px) {
  .v-oida-top {
    padding-top: 110px;
  }
}
@media (min-width: 1600px) {
  .v-oida-top {
    padding-top: 120px;
  }
}
@media (min-width: 576px) {
  .v-oida-top {
    padding-bottom: 35px;
  }
}
@media (min-width: 768px) {
  .v-oida-top {
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .v-oida-top {
    padding-bottom: 45px;
  }
}
@media (min-width: 1200px) {
  .v-oida-top {
    padding-bottom: 50px;
  }
}
@media (min-width: 1400px) {
  .v-oida-top {
    padding-bottom: 55px;
  }
}
@media (min-width: 1600px) {
  .v-oida-top {
    padding-bottom: 60px;
  }
}
.v-oida-top .v-container h2 {
  color: var(--color-body);
  font-size: 25px;
  font-weight: 700;
}
@media (min-width: 576px) {
  .v-oida-top .v-container h2 {
    font-size: 28.33333333px;
  }
}
@media (min-width: 768px) {
  .v-oida-top .v-container h2 {
    font-size: 31.66666667px;
  }
}
@media (min-width: 992px) {
  .v-oida-top .v-container h2 {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .v-oida-top .v-container h2 {
    font-size: 38.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-oida-top .v-container h2 {
    font-size: 41.66666667px;
  }
}
@media (min-width: 1600px) {
  .v-oida-top .v-container h2 {
    font-size: 45px;
  }
}
.v-oida-top .js-mini-slider {
  --gap: 15px;
}
.v-oida-top .js-mini-slider .track {
  --columns: 1.5;
  gap: 15px;
}
@media (min-width: 576px) {
  .v-oida-top .js-mini-slider .track {
    --columns: 2.5;
  }
}
@media (min-width: 768px) {
  .v-oida-top .js-mini-slider .track {
    --columns: 3.5;
  }
}
.v-oida-top .js-mini-slider .track .single-item {
  flex: 0 0 calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}
.v-oida-top .v-top-event {
  position: relative;
  border-radius: 15px;
  box-shadow: 0px 3px 6px rgba(0 0 0 / 16%);
  overflow: hidden;
  color: var(--color-body);
}
.v-oida-top .v-top-event .media-holder {
  position: relative;
  padding-top: 113.31658291%;
  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-top .v-top-event .media-holder .xs-oida-event-top-tile-image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v-oida-top .v-top-event .media-holder .overlay {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + (2px * 2));
  height: calc(100% + (2px * 2));
  z-index: 1;
  background-image: linear-gradient(180deg, transparent, var(--color-accent) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.v-oida-top .v-top-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-top .v-top-event .media-holder .offer-ribbon {
    top: 104px;
    left: -26px;
    width: 180px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
}
.v-oida-top .v-top-event .content-holder {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  padding: 15px 50px 15px 15px;
}
.v-oida-top .v-top-event .content-holder .title {
  font-size: 20px;
  color: inherit;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .v-oida-top .v-top-event .content-holder .title {
    font-size: 21.66666667px;
  }
}
@media (min-width: 768px) {
  .v-oida-top .v-top-event .content-holder .title {
    font-size: 23.33333333px;
  }
}
@media (min-width: 992px) {
  .v-oida-top .v-top-event .content-holder .title {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  .v-oida-top .v-top-event .content-holder .title {
    font-size: 26.66666667px;
  }
}
@media (min-width: 1400px) {
  .v-oida-top .v-top-event .content-holder .title {
    font-size: 28.33333333px;
  }
}
@media (min-width: 1600px) {
  .v-oida-top .v-top-event .content-holder .title {
    font-size: 30px;
  }
}
.v-oida-top .v-top-event .content-holder .info {
  color: inherit;
  font-size: 14px;
}
@media (min-width: 576px) {
  .v-oida-top .v-top-event .content-holder .info {
    font-size: 14.33333333px;
  }
}
@media (min-width: 768px) {
  .v-oida-top .v-top-event .content-holder .info {
    font-size: 14.66666667px;
  }
}
@media (min-width: 992px) {
  .v-oida-top .v-top-event .content-holder .info {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .v-oida-top .v-top-event .content-holder .info {
    font-size: 15.33333333px;
  }
}
@media (min-width: 1400px) {
  .v-oida-top .v-top-event .content-holder .info {
    font-size: 15.66666667px;
  }
}
@media (min-width: 1600px) {
  .v-oida-top .v-top-event .content-holder .info {
    font-size: 16px;
  }
}
.v-oida-top .v-top-event .content-holder .ico-fav {
  color: inherit;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 22px;
  padding: 15px;
}
.v-oida-top .v-top-event .content-holder .ico-fav.active.after:after {
  content: "\e90e";
}
.v-oida-top .v-top-event .content-holder .ico-fav.active.before:before {
  content: "\e90e";
}
.v-oida-top .v-top-event .hover-link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
/*/xassets/uncompressed/source_map/213.css.css.map */