@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes stonelli-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
}
.stonelli-rechner_offer-request-wrapper {
  max-width: var(--max-content-width, 1200px);
  margin: 0 auto;
  font-family: var(--font-family-body, "Roboto", sans-serif);
  color: var(--text-color-on-bright, #333);
}
.stonelli-rechner_offer-request-wrapper.offer-request-submitting {
  opacity: 0.6;
  pointer-events: none;
}
.stonelli-rechner_offer-request-wrapper.offer-request-submitting:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.6);
  position: fixed;
  z-index: var(--z-index-above-overlay, 999999);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .section {
  margin-bottom: var(--spacing-10, 3.143rem);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .section:last-of-type {
  margin-bottom: var(--spacing-06, 1.714rem);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .section h2 {
  margin: 0 0 var(--spacing-06, 1.714rem) 0;
  font-weight: var(--font-weight-headline, 700);
  font-size: var(--font-size-xl, 1.714rem);
  color: var(--color-primary, #1E64AF);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .section h2:after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent, #F03282) 0%, rgba(var(--color-accent, #F03282), 0) 100%);
  opacity: 0.3;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .section h2:before {
  content: "";
  width: 4px;
  height: 1.5em;
  background: var(--color-accent, #F03282);
  border-radius: 2px;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .section h3 {
  font-size: var(--font-size-l, 1.286rem);
  color: var(--color-secondary, #41AAF5);
  margin: 0;
  font-weight: var(--font-weight-bold, 600);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .row {
  display: flex;
  gap: var(--spacing-06, 1.714rem);
  flex-wrap: wrap;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .row .col {
  flex: 1 1 300px;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-grid,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--spacing-05, 1.429rem);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-03, 0.857rem);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: var(--border-radius-width, 8px);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--color-darker-background, #fafafa);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card::after,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card::after {
  content: "✓";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--color-accent, #F03282);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card:has(input:checked)::after,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card:has(input:checked)::after {
  opacity: 1;
  transform: scale(1);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card input[type=checkbox],
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card input[type=checkbox] {
  display: none;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card:hover,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card:hover {
  border-color: var(--color-secondary, #41AAF5);
  background: var(--color-default-background, #ffffff);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card:has(input:focus-visible),
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card:has(input:focus-visible) {
  outline: 2px solid var(--color-accent, #F03282);
  outline-offset: 2px;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card:has(input:checked),
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card:has(input:checked) {
  border-color: var(--color-accent, #F03282);
  box-shadow: 0 4px 15px rgba(var(--color-accent, #F03282), 0.1);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card:has(input:checked) .steinteppich-name, .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card:has(input:checked) .profile-name,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card:has(input:checked) .steinteppich-name,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card:has(input:checked) .profile-name {
  color: var(--color-accent, #F03282);
  font-weight: var(--font-weight-bold, 600);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-card img,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: calc(var(--border-radius-width, 8px) - 4px);
  margin-bottom: 0.5rem;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-name,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-name {
  margin-top: var(--spacing-02, 0.571rem);
  font-size: var(--font-size-s, 1rem);
  text-align: center;
  font-weight: var(--font-weight-semibold, 500);
  transition: color 0.2s;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-06, 1.714rem);
  grid-auto-rows: 1fr;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-split-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: var(--border-radius-width, 8px);
  overflow: hidden;
  background: var(--color-default-background, #ffffff);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-03, 0.857rem);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-darker-background2, #f5f2f2);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 50%;
  color: var(--text-color-on-bright-lighten, #666);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-close:hover {
  background: var(--color-danger, #f90029);
  border-color: var(--color-danger, #f90029);
  color: #fff;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-image-panel {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  background: var(--color-darker-background2, #f5f2f2);
  border-right: 1px solid var(--color-border, #e0e0e0);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-inputs-panel {
  flex: 1;
  min-width: 0;
  padding: var(--spacing-05, 1.429rem);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-04, 1.143rem);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-inputs-panel > h3 {
  margin: 0;
  padding: 0;
  border: none;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-rows {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-rows--profile {
  grid-template-columns: 1fr auto;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: subgrid;
  align-items: center;
  border-bottom: 1px solid var(--color-border, #e0e0e0);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row > *:not(:last-child) {
  padding: var(--spacing-04, 1.143rem) var(--spacing-04, 1.143rem);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row > *:last-child {
  padding: var(--spacing-04, 1.143rem) var(--spacing-04, 1.143rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row > *:nth-child(2):not(input) {
  color: var(--text-color-on-bright-lighten, #666);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row:last-child {
  border-bottom: none;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row:not(.composition-row--header):hover {
  background: var(--color-darker-background, #fafafa);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row.composition-row--header {
  border-bottom: 2px solid var(--color-accent, #F03282);
  font-weight: var(--font-weight-bold, 600);
  font-size: var(--font-size-s, 0.857rem);
  color: var(--text-color-on-bright-lighten, #666);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row.composition-row--header > *:last-child {
  text-align: center;
  justify-content: center;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row .stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: var(--border-radius-width, 8px);
  overflow: hidden;
  background: var(--color-default-background, #ffffff);
  transition: border-color 0.2s;
  padding: 0;
  width: fit-content;
  margin: auto;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row .stepper:focus-within {
  border-color: var(--color-accent, #F03282);
  box-shadow: 0 0 0 3px rgba(var(--color-accent, #F03282), 0.1);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row .stepper-btn {
  flex-shrink: 0;
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-darker-background2, #f5f2f2);
  border: none;
  color: var(--text-color-on-bright-lighten, #666);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.15s;
  padding: var(--spacing-02, 0.571rem) 0;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row .stepper-btn:hover {
  background: var(--color-accent, #F03282);
  color: #fff;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row .stepper-btn:active {
  transform: scale(0.92);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row input[type=number] {
  width: 60px;
  padding: var(--spacing-02, 0.571rem) var(--spacing-02, 0.571rem);
  border: none;
  background: transparent;
  font-family: inherit;
  text-align: center;
  transition: all 0.2s;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row input[type=number]::-webkit-outer-spin-button, .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row input[type=number] {
  -moz-appearance: textfield;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-row input[type=number]:focus {
  outline: none;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-placeholder {
  padding: var(--spacing-04, 1.714rem);
  color: var(--text-color-on-bright-lighten, #666);
  font-style: normal;
  background: var(--color-darker-background2, #f5f2f2);
  border-radius: var(--border-radius-width, 8px);
  text-align: center;
  border: 2px dashed var(--color-border, #e0e0e0);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-steinteppich-box,
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-variations-box {
  margin-top: var(--spacing-06, 1.714rem);
  animation: fadeIn 0.3s ease-out;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-03, 0.857rem);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card {
  display: flex;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: var(--border-radius-width, 8px);
  overflow: hidden;
  background: var(--color-default-background, #ffffff);
  cursor: pointer;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card input[type=checkbox] {
  display: none;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card:hover {
  border-color: var(--color-secondary, #41AAF5);
  box-shadow: var(--modal-box-shadow, 0 2px 15px rgba(0, 0, 0, 0.08));
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card:has(input:focus-visible) {
  outline: 2px solid var(--color-accent, #F03282);
  outline-offset: 2px;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card:has(input:checked) {
  border-color: var(--color-accent, #F03282);
  box-shadow: 0 4px 12px rgba(var(--color-accent, #F03282), 0.1);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card:has(input:checked) .zubehoer-card__name {
  color: var(--color-accent, #F03282);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card:has(input:checked) .zubehoer-card__check {
  background: var(--color-accent, #F03282);
  border-color: var(--color-accent, #F03282);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card:has(input:checked) .zubehoer-card__check::after {
  opacity: 1;
  transform: scale(1);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card__image-panel {
  flex: 0 0 140px;
  position: relative;
  min-height: 110px;
  background: var(--color-darker-background2, #f5f2f2);
  border-right: 1px solid var(--color-border, #e0e0e0);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card__image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card__content-panel {
  flex: 1;
  min-width: 0;
  padding: var(--spacing-04, 1.143rem) var(--spacing-05, 1.429rem);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-02, 0.571rem);
  justify-content: center;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-03, 0.857rem);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card__name {
  font-size: var(--font-size-m, 1rem);
  font-weight: var(--font-weight-semibold, 600);
  color: var(--text-color-on-bright, #333);
  transition: color 0.2s;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card__desc {
  font-size: var(--font-size-s, 0.857rem);
  color: var(--text-color-on-bright-lighten, #666);
  line-height: 1.6;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border, #e0e0e0);
  border-radius: 50%;
  background: var(--color-default-background, #ffffff);
  transition: all 0.2s;
  position: relative;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card__check::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .submit-block {
  margin-bottom: var(--spacing-08, 2.571rem);
  padding-top: var(--spacing-06, 1.714rem);
  border-top: 1px solid var(--color-border, #e0e0e0);
  text-align: center;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .submit-block p {
  font-size: var(--font-size-xs, 0.857rem);
  color: var(--text-color-on-bright-lighten, #666);
  max-width: 800px;
  margin: 0 auto 1rem;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .submit-block button.offer-request-form-submit-button {
  display: inline-block;
  width: auto;
  min-width: 260px;
  padding: var(--spacing-04, 1.143rem) var(--spacing-10, 3.143rem);
  font-size: var(--font-size-m, 1rem);
  font-weight: var(--font-weight-extra-bold, 800);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--border-radius-width, 8px);
  background-color: var(--color-primary, #1E64AF);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  margin-top: 1rem;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .submit-block button.offer-request-form-submit-button:hover, .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .submit-block button.offer-request-form-submit-button:focus-visible {
  background-color: var(--color-accent, #F03282);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .submit-block button.offer-request-form-submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .offer-request-error-handler:empty {
  display: none;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .offer-request-error-handler {
  margin: var(--spacing-07, 1.429rem) 0;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .step-required {
  color: var(--color-danger, #f90029);
  font-size: 1.1em;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .step-hint {
  margin-top: calc(-1 * var(--spacing-04, 1.143rem));
  margin-bottom: var(--spacing-05, 1.429rem);
  padding: var(--spacing-03, 0.857rem) var(--spacing-04, 1.143rem);
  background: var(--color-darker-background2, #f5f2f2);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: var(--border-radius-width, 8px);
  color: var(--text-color-on-bright-lighten, #666);
  font-size: var(--font-size-s, 0.857rem);
  line-height: 1.6;
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .step-validation-error {
  margin-top: var(--spacing-03, 0.857rem);
  margin-bottom: var(--spacing-04, 1.143rem);
}
.stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .section--error {
  outline: 2px solid var(--color-danger, #f90029);
  outline-offset: 10px;
  border-radius: var(--border-radius-width, 8px);
  animation: stonelli-shake 0.45s ease;
}
.stonelli-rechner_offer-request-wrapper .woocommerce-offer-request-thank-you {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-10, 3.143rem) 0;
}
.stonelli-rechner_offer-request-wrapper .woocommerce-offer-request-thank-you .thank-you-message-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-07, 2.143rem);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: var(--border-radius-width-large, 15px);
  box-shadow: var(--modal-box-shadow, 0 2px 15px rgba(0, 0, 0, 0.08));
  background: var(--color-default-background, #ffffff);
}
.stonelli-rechner_offer-request-wrapper .woocommerce-offer-request-thank-you .thank-you-title {
  font-size: var(--font-size-xxl, 2rem);
  color: var(--color-primary, #1E64AF);
  margin-bottom: var(--spacing-05, 1.429rem);
  font-weight: var(--font-weight-headline, 700);
}
.stonelli-rechner_offer-request-wrapper .woocommerce-offer-request-thank-you .thank-you-message {
  font-size: var(--font-size-m, 1rem);
  color: var(--text-color-on-bright-lighten, #666);
  margin-bottom: var(--spacing-06, 1.714rem);
}
.stonelli-rechner_offer-request-wrapper .woocommerce-offer-request-thank-you .button.wc-backward {
  display: inline-block;
  background-color: var(--color-primary, #1E64AF);
  color: var(--text-color-on-primary, #fff);
  padding: var(--spacing-04, 0.857rem) var(--spacing-07, 2.143rem);
  border-radius: var(--border-radius-width, 8px);
  font-weight: var(--font-weight-bold, 600);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.stonelli-rechner_offer-request-wrapper .woocommerce-offer-request-thank-you .button.wc-backward:hover {
  opacity: 0.85;
  color: var(--text-color-on-primary, #fff);
}

@media (max-width: 768px) {
  .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form {
    padding: var(--spacing-05, 1.429rem);
  }
  .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .section h2 {
    font-size: var(--font-size-l, 1.286rem);
  }
  .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .section h2:after {
    display: none;
  }
  .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .steinteppich-grid, .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-split-card {
    flex-direction: column;
  }
  .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .composition-image-panel {
    flex: 0 0 auto;
    border-right: none;
    border-bottom: 1px solid var(--color-border, #e0e0e0);
  }
  .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card {
    flex-direction: column;
  }
  .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .zubehoer-card__image-panel {
    width: 100%;
    aspect-ratio: 1/1;
    flex: 0 0 auto;
    border-right: none;
    border-bottom: 1px solid var(--color-border, #e0e0e0);
  }
  .stonelli-rechner_offer-request-wrapper .stonelli-rechner-offer-request-form .submit-block button.offer-request-form-submit-button {
    min-width: 0;
    width: 100%;
  }
}

/*# sourceMappingURL=offer-request.css.map */
