  .bilberegner__carinfo { display: none; margin-top: 6px; }

  .bilberegner-content{
    text-align: center;
  }

  .bilberegner-result__month {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-secondary);
    padding-block: var(--spacer-lg);
  }

  .bilberegner-result__conditions li::before {
    content: "\2714";
    color: #C51A1B;
    margin-right: 6px;
  }

  .bilberegner-contact h3 {
    color: #C51A1B;
    margin-top: 30px;
  }

  .bilberegner-info {
    display: none;
    text-align: center;
  }

  .bilberegner-info__title {
    color: #C51A1B;
    font-size: 28px;
    margin-bottom: 16px;
  }

  .bilberegner-info__text {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
  }

  .bilberegner__actions{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bilberegner__input{
    font-family: var(--font-primary);
  }

  .bilberegner__carinfo{
    display: none;
    flex-direction: column;
    gap: 20px;
  }

  .bilberegner__control{
    display: flex;
    justify-content: center;
  }

  .bilberegner__title{
    margin-top: 2rem;
  }

  .bilberegner-result__details, .bilberegner-result__price, .bilberegner__title{
    text-align: center;
  }

  .bilberegner-contact{
    margin-top: 0;
  }

  #customerAccept{
    width: auto;
  }

  .bilberegner-result{
    padding-top: 1rem !important;
  }

  .bilberegner-contact__consent{
    display: flex;
    justify-content: center;
    max-width: 540px;
    gap: 2rem;
    margin: 0 auto;
    align-items: start;
  }

  .bilberegner-result__conditions{
    list-style-type: none;
  }

  .bilberegner{
    padding-bottom: 1rem;
  }

  input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
  }

  .bilberegner-error-msg {
    font-weight: bold;
    color: #C51A1B;
  }

  .bilberegner-variant-box {
    text-align: center;
    margin-top: 10px;
  }

  .bilberegner-variant-box a {
    display: block;
    padding: 8px 16px;
    margin: 4px auto;
    max-width: 400px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .bilberegner-variant-box a.active {
    background: #C51A1B;
    color: #fff;
    border-color: #C51A1B;
  }

  .bilberegner-could-not-find {
    display: none;
    text-align: center;
    margin: 10px 0;
    color: #C51A1B;
    font-weight: bold;
  }

  html {
    scroll-behavior: smooth;
  }

  /* Loading spinner overlay */
  #bilberegner-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.13);
    z-index: 100;
  }

  .spinner-active #bilberegner-spinner {
    display: grid;
    place-content: center;
  }

  .spinner-active #bilberegner-spinner svg {
    animation: bilberegner-spin 1s linear infinite;
  }

  .priceOnlyBlock hr{
    margin-top: 2rem;
  }

  @keyframes bilberegner-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  #errorSection{
    color: #f1f1f1;
  }

  #priceOnlyBlock hr{
    margin-top: 2rem;
  }

  .errorwrapper{
    background-color: #C51A1B;
    padding-inline: 0;
    padding: 2rem;
    border-radius: 1.4375rem;
  }

  #errorSection h2{
    color: #f1f1f1;
  }


  .bilberegner__form{
    margin-top: unset;
  }

  .bilberegner-info{
    padding-top: 1rem;
  }

  .bilberegner{
    padding-top: 0;
  }

  .bilberegner__control--date {
    position: relative;
}

.bilberegner__control--date .bilberegner__input {
    padding-right: 52px;
}

.bilberegner__date-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 2;
    pointer-events: auto;
}

.bilberegner__date-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.bilberegner__control--date .flatpickr-input[readonly] {
    cursor: text;
}