@charset "UTF-8";
:root {
  --bs-border-radius: 1.4rem;
}

#appointmentform {
  position: relative;
  padding-bottom: 0;
  /* The submit bar is fixed over the content at every width, so every step has to
     reserve its height at the bottom — otherwise the last item on a long step
     (the location step with a group per store) sits under the bar with no scroll
     left to reach it. */
  --submit-row-clearance: 4.5rem;
  /* ------------------------------------------------------------------
     Variant B — location + timeslot step

     One radio group per store, all sharing the `moment_id` name, so the
     visitor picks a location and a time in a single choice.
     ------------------------------------------------------------------ */
  /* Remaining-spots note on a timeslot, right-aligned like the price in the
     shared style. Rendered by AppointmentForm::getMomentAvailabilityNote(), so
     both variants show it identically. */
}
@media screen and (max-width: 992px) {
  #appointmentform {
    margin-top: 68px;
  }
}
#appointmentform .form-group,
#appointmentform .form-check {
  scroll-margin-top: 5rem;
}
@media screen and (max-width: 992px) {
  #appointmentform .form-group,
  #appointmentform .form-check {
    scroll-margin-top: 5.5rem;
  }
}
#appointmentform .loader {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: 0.3s ease-in-out opacity;
  opacity: 0;
  pointer-events: none;
}
#appointmentform .ajax-content {
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out opacity;
  opacity: 1;
}
#appointmentform.loading .loader {
  opacity: 1;
}
#appointmentform.loading .ajax-content {
  opacity: 0.3;
}
@media screen and (min-width: 992px) {
  #appointmentform .appointment_progress.info-step {
    margin-top: 85px;
  }
}
#appointmentform .appointment_progress.info-step .progress-steps {
  display: none;
}
#appointmentform .appointment_progress .progress-steps {
  width: auto;
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  #appointmentform .appointment_progress .progress-steps {
    padding: 1.75rem;
    border-radius: 1.4rem;
    background: #f9f5ed;
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  #appointmentform .appointment_progress .progress-steps {
    margin-top: 85px;
  }
}
#appointmentform .appointment_progress .progress-cart {
  width: auto;
  padding: 1.25rem 1.75rem;
  border-radius: 1.4rem;
  background: #f9f5ed;
}
@media screen and (max-width: 992px) {
  #appointmentform .appointment_progress .progress-cart {
    margin-bottom: 1rem;
  }
}
#appointmentform .appointment_progress .progress-cart strong {
  font-weight: 500;
}
#appointmentform .appointment_progress .progress-cart .price {
  padding: 0.75rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.9rem;
}
#appointmentform .appointment_progress .progress-cart .price.promotion {
  color: #C68484;
  align-items: center;
}
#appointmentform .appointment_progress .progress-cart .price:first-of-type {
  margin-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#appointmentform .appointment_progress .progress-cart .price.price--total {
  font-size: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#appointmentform .appointment_progress .progress-cart .price .price-info-wrapper {
  line-height: 1.25;
}
#appointmentform .appointment_progress .progress-cart .price .price-label {
  font-weight: 500;
  min-width: fit-content;
}
#appointmentform .appointment_progress .progress-cart .price .price-price {
  white-space: nowrap;
  font-weight: 400;
  min-width: fit-content;
}
#appointmentform .appointment_progress .progress-cart .price .price-description {
  font-size: 0.8rem;
  font-weight: 300;
}
#appointmentform .appointment_progress ul.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 992px) {
  #appointmentform .appointment_progress ul.steps {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
}
#appointmentform .appointment_progress ul.steps > li {
  margin-bottom: 0.25rem;
}
#appointmentform .appointment_progress ul.steps > li:last-child {
  margin-bottom: 0;
}
#appointmentform .appointment_progress ul.steps > li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  #appointmentform .appointment_progress ul.steps > li a {
    display: flex;
    text-align: center;
    aspect-ratio: 1 !important;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    background: #eee;
    border-radius: 50%;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  #appointmentform .appointment_progress ul.steps > li a {
    justify-content: start;
  }
  #appointmentform .appointment_progress ul.steps > li a .step__number {
    display: inline-flex;
    background: #C68484;
    aspect-ratio: 1/1;
    height: 25px;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    border-radius: 50rem;
    margin-right: 0.75rem;
    font-size: 0.8rem;
  }
}
#appointmentform .appointment_progress ul.steps > li a.disabled, #appointmentform .appointment_progress ul.steps > li a.current {
  text-decoration: none;
  pointer-events: none;
  color: #373737;
}
@media screen and (min-width: 992px) {
  #appointmentform .appointment_progress ul.steps > li a.disabled .step__number, #appointmentform .appointment_progress ul.steps > li a.current .step__number {
    background: #f1eade;
    color: #373737;
  }
}
#appointmentform .appointment_progress ul.steps > li a.disabled.current, #appointmentform .appointment_progress ul.steps > li a.current.current {
  font-weight: 600;
  color: #884545;
}
@media screen and (min-width: 992px) {
  #appointmentform .appointment_progress ul.steps > li a.disabled.current .step__number, #appointmentform .appointment_progress ul.steps > li a.current.current .step__number {
    background: #884545;
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  #appointmentform .appointment_progress ul.steps > li a.disabled.current, #appointmentform .appointment_progress ul.steps > li a.current.current {
    background: #884545;
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  #appointmentform .appointment_progress ul.steps {
    display: flex;
    justify-content: center;
  }
}
#appointmentform ul.order-summary {
  margin-left: 40px !important;
}
#appointmentform ul.order-summary li .fa-li {
  top: 7px;
}
#appointmentform ul.order-summary li small {
  padding-left: 0.25rem;
}
#appointmentform ul.order-summary li small:before {
  content: "(";
}
#appointmentform ul.order-summary li small:after {
  content: ")";
}
#appointmentform .form-content {
  padding-bottom: var(--submit-row-clearance);
}
#appointmentform .submit-row {
  background: #f1eade;
  z-index: 5;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  padding: 0.5rem;
}
#appointmentform .submit-row .btn {
  font-size: 0.9rem !important;
  border-radius: 1rem !important;
}
#appointmentform .appointment_form_info_intro {
  margin-top: 65px;
}
#appointmentform .datepicker-legend {
  width: 240px;
  margin-left: auto;
  margin-right: auto;
  text-align: start;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  font-size: 0.9rem;
}
#appointmentform .datepicker-legend span {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}
#appointmentform .selected-date-summary {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
#appointmentform .selected-date-summary .edit-date-back {
  margin-left: 0.35rem;
  color: #884545;
  text-decoration: none;
}
#appointmentform .selected-date-summary .edit-date-back:hover {
  color: #C68484;
}
#appointmentform .moment-store-group {
  margin: 0 12px;
}
#appointmentform .moment-store-group + .moment-store-group {
  margin-top: 1.75rem;
}
#appointmentform .moment-store-group .moment-store-heading {
  margin-bottom: 1rem;
  text-align: left;
}
#appointmentform .moment-store-group .moment-store-img {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 0.5rem;
  margin: 0;
}
#appointmentform .moment-store-group .moment-store-title {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}
#appointmentform .moment-store-group .moment-store-tagline {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.3;
}
#appointmentform .moment-store-group .radio-list-group {
  max-height: none;
  overflow-y: visible;
}
#appointmentform .moment-store-group .form-group {
  margin-bottom: 0;
}
#appointmentform .moment-store-group .list-group-item label {
  display: flex;
  align-items: center;
  width: 100%;
}
#appointmentform .moment-spots {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
#appointmentform .moment-spots i {
  font-size: 0.95em;
}
#appointmentform .list-group-item label:has(.moment-spots.is-full) {
  opacity: 0.45;
  pointer-events: none;
}
#appointmentform .appointment-extras-upgrade {
  align-self: flex-start;
}
@media screen and (max-width: 992px) {
  #appointmentform .appointment-extras-upgrade {
    margin-top: 1.5rem;
  }
}
#appointmentform .extras-upgrade-card {
  background: #f1eade;
  border-radius: 1.4rem;
  padding: 1.5rem 1.25rem;
  /* Card heading outranks the two section headings below it. */
  /* First section sits directly under the intro text. */
  /* Paid and confirmed: shown for completeness, not selectable. Kept lighter
     than the bookable rows so the eye lands on what can still be added. */
  /* The pending row is not interactive, but its "pay anyway" link must be. */
  /* One payment per group: rows sit tight together, the button belongs to all
     of them. */
  /* Reserved, not selectable: the shared hover treatment would suggest it is. */
}
#appointmentform .extras-upgrade-card .extras-upgrade-title strong {
  font-size: 1.05rem;
}
#appointmentform .extras-upgrade-card .extras-section-heading {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 0.9rem;
}
#appointmentform .extras-upgrade-card .extras-section-heading strong {
  font-weight: 600;
}
#appointmentform .extras-upgrade-card .extras-pending-heading {
  margin-top: 0;
}
#appointmentform .extras-upgrade-card .extras-booked .extra-item,
#appointmentform .extras-upgrade-card .extra-item.is-booked {
  cursor: default;
  pointer-events: none;
}
#appointmentform .extras-upgrade-card .extras-booked .extra-item:hover,
#appointmentform .extras-upgrade-card .extra-item.is-booked:hover {
  background: #ffffff;
  color: inherit;
}
#appointmentform .extras-upgrade-card .extras-pending-group + .extras-pending-group {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
#appointmentform .extras-upgrade-card .extras-pending-group ul.extras {
  margin-bottom: 0.35rem;
}
#appointmentform .extras-upgrade-card .extras-pay-link {
  pointer-events: auto;
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  text-decoration: underline;
  color: #884545;
}
#appointmentform .extras-upgrade-card .extras-pay-link:hover {
  color: #C68484;
}
#appointmentform .extras-upgrade-card .extras-booked-check {
  color: #884545;
  font-size: 0.95rem;
}
#appointmentform .extras-upgrade-card .extras-pending .extra-item,
#appointmentform .extras-upgrade-card .extra-item.is-pending {
  /* Not faded: the row carries a "Betaal alsnog" link, so it has to read as
     actionable. Only the row itself is inert — the link re-enables pointer
     events on itself. */
  cursor: default;
  pointer-events: none;
}
#appointmentform .extras-upgrade-card .extras-pending .extra-item:hover,
#appointmentform .extras-upgrade-card .extra-item.is-pending:hover {
  background: #ffffff;
  color: inherit;
}
#appointmentform .extras-upgrade-card .alert {
  border-radius: 0.9rem;
  font-size: 0.9rem;
}
#appointmentform .extras-upgrade-card ul.extras {
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
#appointmentform .extras-upgrade-card .extra-item {
  background: #ffffff;
  border-color: transparent;
  width: 100%;
  padding: 0.5rem;
  gap: 0.7rem;
  align-items: center;
}
#appointmentform .extras-upgrade-card .extra-thumb {
  width: 3.5rem;
  aspect-ratio: 1;
  margin: 0;
  flex: 0 0 auto;
}
#appointmentform .extras-upgrade-card .extra-content {
  padding: 0;
  min-width: 0;
  flex: 1 1 auto;
  align-items: flex-start;
  gap: 0.25rem;
}
#appointmentform .extras-upgrade-card .extra-content strong {
  font-size: 0.9rem;
  line-height: 1.25;
  display: block;
}
#appointmentform .extras-upgrade-card .extra-content .price {
  font-size: 0.78rem;
  line-height: 1.25;
}
#appointmentform .extras-upgrade-card .extra-content .extra-description {
  line-height: 1.25;
}
#appointmentform .extras-upgrade-card .extra-input {
  flex: 0 0 auto;
  margin: 0;
  padding-right: 0.5rem;
}
#appointmentform .extras-upgrade-card .extra-input .form-check {
  padding: 0;
  margin: 0;
  min-height: 0;
  display: flex;
  align-items: center;
}
#appointmentform .extras-upgrade-card .extra-input .form-check-label {
  display: none;
}
#appointmentform .extras-upgrade-card .extra-input .form-check-input {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
}
#appointmentform .extras-upgrade-card .extras-upgrade-submit .btn {
  width: 100%;
  justify-content: center;
}

.intro-form {
  margin-bottom: 5rem;
}

body.location-setcookie-castle a,
.eye-block.appointmentform.styling-castle a {
  color: #AC872E;
}
body.location-setcookie-castle .iframe-header,
.eye-block.appointmentform.styling-castle .iframe-header {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.25rem;
}
body.location-setcookie-castle .selected-room-img,
.eye-block.appointmentform.styling-castle .selected-room-img {
  border-radius: var(--castle-radius, 0.25rem);
}
body.location-setcookie-castle .promotion-icon,
.eye-block.appointmentform.styling-castle .promotion-icon {
  color: #AC872E !important;
}
body.location-setcookie-castle .tooltip,
.eye-block.appointmentform.styling-castle .tooltip {
  --bs-tooltip-bg: #AC872E;
}
body.location-setcookie-castle .tooltip .tooltip-inner,
.eye-block.appointmentform.styling-castle .tooltip .tooltip-inner {
  background-color: #AC872E;
}
body.location-setcookie-castle .tooltip .tooltip-arrow,
.eye-block.appointmentform.styling-castle .tooltip .tooltip-arrow {
  border-top-color: #AC872E;
}
body.location-setcookie-castle #appointmentform,
.eye-block.appointmentform.styling-castle #appointmentform {
  --castle-radius: 0.25rem;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}
body.location-setcookie-castle #appointmentform h2, body.location-setcookie-castle #appointmentform h3, body.location-setcookie-castle #appointmentform h4, body.location-setcookie-castle #appointmentform h5, body.location-setcookie-castle #appointmentform h6, body.location-setcookie-castle #appointmentform strong,
.eye-block.appointmentform.styling-castle #appointmentform h2,
.eye-block.appointmentform.styling-castle #appointmentform h3,
.eye-block.appointmentform.styling-castle #appointmentform h4,
.eye-block.appointmentform.styling-castle #appointmentform h5,
.eye-block.appointmentform.styling-castle #appointmentform h6,
.eye-block.appointmentform.styling-castle #appointmentform strong {
  font-family: "Playfair Display", serif;
}
body.location-setcookie-castle #appointmentform label,
.eye-block.appointmentform.styling-castle #appointmentform label {
  font-family: inherit;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  body.location-setcookie-castle #appointmentform label,
  .eye-block.appointmentform.styling-castle #appointmentform label {
    padding-left: 1rem;
  }
}
body.location-setcookie-castle #appointmentform label.heading::after,
.eye-block.appointmentform.styling-castle #appointmentform label.heading::after {
  background: #AC872E;
}
body.location-setcookie-castle #appointmentform .error,
.eye-block.appointmentform.styling-castle #appointmentform .error {
  color: #644e1b;
}
body.location-setcookie-castle #appointmentform .form-check-input:checked,
.eye-block.appointmentform.styling-castle #appointmentform .form-check-input:checked {
  background-color: #AC872E;
  border-color: #AC872E;
}
body.location-setcookie-castle #appointmentform label.btn.btn-outline-primary:hover, body.location-setcookie-castle #appointmentform label.btn.btn-outline-primary:active,
.eye-block.appointmentform.styling-castle #appointmentform label.btn.btn-outline-primary:hover,
.eye-block.appointmentform.styling-castle #appointmentform label.btn.btn-outline-primary:active {
  border-color: #AC872E;
  background-color: #AC872E;
  color: #ffffff;
}
body.location-setcookie-castle #appointmentform .btn-check:checked + label.btn.btn-outline-primary,
body.location-setcookie-castle #appointmentform .btn-check:checked + label.btn,
body.location-setcookie-castle #appointmentform .btn-check:checked + .btn,
.eye-block.appointmentform.styling-castle #appointmentform .btn-check:checked + label.btn.btn-outline-primary,
.eye-block.appointmentform.styling-castle #appointmentform .btn-check:checked + label.btn,
.eye-block.appointmentform.styling-castle #appointmentform .btn-check:checked + .btn {
  border-color: #AC872E;
  background-color: #AC872E;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  body.location-setcookie-castle #appointmentform .appointment_progress .progress-steps,
  .eye-block.appointmentform.styling-castle #appointmentform .appointment_progress .progress-steps {
    border-radius: var(--castle-radius);
  }
}
body.location-setcookie-castle #appointmentform .appointment_progress .progress-cart,
.eye-block.appointmentform.styling-castle #appointmentform .appointment_progress .progress-cart {
  --notch: 1.25rem;
  border-radius: var(--castle-radius);
  mask-image: radial-gradient(circle at top left, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at top right, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at bottom left, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at bottom right, transparent var(--notch), black calc(var(--notch) + 1px));
  mask-composite: intersect;
  -webkit-mask-image: radial-gradient(circle at top left, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at top right, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at bottom left, transparent var(--notch), black calc(var(--notch) + 1px)), radial-gradient(circle at bottom right, transparent var(--notch), black calc(var(--notch) + 1px));
  -webkit-mask-composite: destination-in;
}
@media screen and (max-width: 768px) {
  body.location-setcookie-castle #appointmentform .appointment_progress .progress-cart,
  .eye-block.appointmentform.styling-castle #appointmentform .appointment_progress .progress-cart {
    --notch: 0.75rem;
  }
}
body.location-setcookie-castle #appointmentform .appointment_progress .progress-cart .price.promotion,
.eye-block.appointmentform.styling-castle #appointmentform .appointment_progress .progress-cart .price.promotion {
  color: #AC872E;
}
@media screen and (min-width: 992px) {
  body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a .step__number,
  .eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a .step__number {
    background: #AC872E;
  }
}
body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.disabled,
body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.current,
.eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.disabled,
.eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.current {
  color: #373737;
}
@media screen and (min-width: 992px) {
  body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.disabled .step__number,
  body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.current .step__number,
  .eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.disabled .step__number,
  .eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.current .step__number {
    background: #f1eade;
    color: #373737;
  }
}
body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.disabled.current,
body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.current.current,
.eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.disabled.current,
.eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.current.current {
  font-weight: 600;
  color: #70581e;
}
@media screen and (min-width: 992px) {
  body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.disabled.current .step__number,
  body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.current.current .step__number,
  .eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.disabled.current .step__number,
  .eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.current.current .step__number {
    background: #7c6121;
    color: #ffffff;
  }
}
@media screen and (max-width: 992px) {
  body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.disabled.current,
  body.location-setcookie-castle #appointmentform .appointment_progress ul.steps > li a.current.current,
  .eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.disabled.current,
  .eye-block.appointmentform.styling-castle #appointmentform .appointment_progress ul.steps > li a.current.current {
    background: #AC872E;
    color: #ffffff;
  }
}
body.location-setcookie-castle #appointmentform .radio-list-group .list-group-item:hover label,
body.location-setcookie-castle #appointmentform .radio-list-group .list-group-item .btn-check:checked + label,
.eye-block.appointmentform.styling-castle #appointmentform .radio-list-group .list-group-item:hover label,
.eye-block.appointmentform.styling-castle #appointmentform .radio-list-group .list-group-item .btn-check:checked + label {
  color: #70581e;
}
body.location-setcookie-castle #appointmentform .radio-image > li label:hover .radio__image,
body.location-setcookie-castle #appointmentform .radio-image > li .btn-check:checked + label .radio__image,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image > li label:hover .radio__image,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image > li .btn-check:checked + label .radio__image {
  border-color: #AC872E;
}
body.location-setcookie-castle #appointmentform .radio-image > li .btn-check:checked + label,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image > li .btn-check:checked + label {
  color: #70581e;
}
body.location-setcookie-castle #appointmentform .radio-image.radio-image-cards > li label .radio__content,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image.radio-image-cards > li label .radio__content {
  background: rgba(172, 135, 46, 0.2);
  border-radius: var(--castle-radius);
}
body.location-setcookie-castle #appointmentform .radio-image.radio-image-cards > li label:hover .radio__image,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image.radio-image-cards > li label:hover .radio__image {
  border-color: #AC872E;
}
body.location-setcookie-castle #appointmentform .radio-image.radio-image-cards > li .btn-check:checked + label,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image.radio-image-cards > li .btn-check:checked + label {
  background: rgba(172, 135, 46, 0.2);
  color: #70581e;
}
body.location-setcookie-castle #appointmentform .radio-image.radio-image-cards > li .radio__image,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image.radio-image-cards > li .radio__image {
  border-radius: var(--castle-radius);
}
body.location-setcookie-castle #appointmentform .radio-image-left-title li label img,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image-left-title li label img {
  border-radius: var(--castle-radius);
}
body.location-setcookie-castle #appointmentform .radio-image-left-title li label:hover,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image-left-title li label:hover {
  color: #70581e;
}
body.location-setcookie-castle #appointmentform .radio-image-left-title li input[type=radio]:checked + label,
.eye-block.appointmentform.styling-castle #appointmentform .radio-image-left-title li input[type=radio]:checked + label {
  color: #70581e;
}
body.location-setcookie-castle #appointmentform ul.extras .extra-item:hover,
body.location-setcookie-castle #appointmentform ul.extras .extra-item:has(.form-check-input:checked),
body.location-setcookie-castle #appointmentform ul.extras .extra-item:has(input:checked),
.eye-block.appointmentform.styling-castle #appointmentform ul.extras .extra-item:hover,
.eye-block.appointmentform.styling-castle #appointmentform ul.extras .extra-item:has(.form-check-input:checked),
.eye-block.appointmentform.styling-castle #appointmentform ul.extras .extra-item:has(input:checked) {
  color: #70581e;
}
body.location-setcookie-castle #appointmentform .datepicker .datepicker-grid .datepicker-cell.day.bridal-ribbon-sale::before,
.eye-block.appointmentform.styling-castle #appointmentform .datepicker .datepicker-grid .datepicker-cell.day.bridal-ribbon-sale::before {
  background: #AC872E;
}
body.location-setcookie-castle #appointmentform ul.usps-list li > div,
.eye-block.appointmentform.styling-castle #appointmentform ul.usps-list li > div {
  background: rgba(172, 135, 46, 0.2);
  color: #644e1b;
  border-radius: var(--castle-radius);
}

/*# sourceMappingURL=style.css.map */
