.rsvp-wrapper {
  max-width: 560px;
  margin: 0 auto;
}
.rsvp-wrapper .rsvp-choice {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: center;
}
.rsvp-wrapper .rsvp-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "athelas", serif;
  font-size: 18px;
}
.rsvp-wrapper .rsvp-radio-label input[type=radio] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--e-global-color-accent);
}
.rsvp-wrapper .rsvp-form-panel {
  animation: rsvpFadeIn 0.3s ease;
}
.rsvp-wrapper .rsvp-form-field {
  margin-bottom: 16px;
}
.rsvp-wrapper .rsvp-form-field input[type=text],
.rsvp-wrapper .rsvp-form-field input[type=email],
.rsvp-wrapper .rsvp-form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  font-family: "athelas", serif;
  background-color: #fafafa;
  transition: border-color 0.2s;
}
.rsvp-wrapper .rsvp-form-field input[type=text]:focus,
.rsvp-wrapper .rsvp-form-field input[type=email]:focus,
.rsvp-wrapper .rsvp-form-field textarea:focus {
  outline: none;
  border-color: var(--e-global-color-accent);
}
.rsvp-wrapper .rsvp-form-field p {
  text-align: center;
  position: relative;
}
.rsvp-wrapper .rsvp-form-field p .wpcf7-spinner {
  position: absolute;
  top: 10px;
}
.rsvp-wrapper .rsvp-form-field textarea {
  min-height: 100px;
  resize: vertical;
}
.rsvp-wrapper .rsvp-form-field input[type=submit] {
  padding: 12px 30px;
  background-color: var(--e-global-color-accent);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-family: "athelas", serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s;
  margin-top: 20px;
}
.rsvp-wrapper .rsvp-form-field input[type=submit]:hover {
  background-color: var(--e-global-color-accent);
}
.rsvp-wrapper .rsvp-form-check {
  margin: 12px 0;
}
.rsvp-wrapper .rsvp-check-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "athelas", serif;
  font-size: 16px;
}
.rsvp-wrapper .rsvp-check-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--e-global-color-accent);
}
.rsvp-wrapper .rsvp-plus-one {
  margin: 16px 0 8px;
  padding: 18px 18px 4px;
  border: 1px dashed #c8cbb3;
  border-radius: 10px;
  background-color: #fafaf3;
  animation: rsvpFadeIn 0.3s ease;
}
.rsvp-wrapper .rsvp-plus-one-title {
  margin: 0 0 12px;
  font-family: "athelas", serif;
  font-size: 16px;
  font-weight: 400;
  color: #545E27;
}
.rsvp-wrapper .rsvp-error-msg {
  color: var(--e-global-color-accent) !important;
  font-size: 14px;
  margin: 8px 0;
  padding: 8px 12px;
  background: rgba(225, 60, 50, 0.08);
  border-radius: 6px;
}
.rsvp-wrapper .wpcf7-not-valid-tip {
  color: var(--e-global-color-accent) !important;
  font-size: 13px;
  padding: 4px 0 0 4px;
}
.rsvp-wrapper .wpcf7-response-output {
  border-radius: 6px !important;
  font-size: 14px !important;
  padding: 10px 16px !important;
  margin: 12px 0 !important;
}

@keyframes rsvpFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rsvp-combined-wrapper {
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  min-height: 500px;
  width: 70vw;
}
@media screen and (max-width: 768px) {
  .rsvp-combined-wrapper {
    width: 90vw;
  }
}
.rsvp-combined-wrapper .rsvp-combined-left {
  display: none !important;
  width: 35%;
  background-color: #545E27;
  padding: 40px 30px;
  flex-shrink: 0;
}
.rsvp-combined-wrapper .rsvp-combined-left .rsvp-event-item {
  cursor: default;
  padding: 20px 16px;
  border-radius: 0;
}
.rsvp-combined-wrapper .rsvp-combined-left .rsvp-event-item .rsvp-event-title {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  color: #fff !important;
}
.rsvp-combined-wrapper .rsvp-combined-left .rsvp-event-divider {
  height: 1px;
  background-color: #d0d3d8;
  margin: 6px 16px;
}
.rsvp-combined-wrapper .rsvp-combined-right {
  flex: 1;
  padding: 40px 50px;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .rsvp-combined-wrapper {
    flex-direction: column;
  }
  .rsvp-combined-wrapper .rsvp-combined-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 16px;
    gap: 0;
  }
  .rsvp-combined-wrapper .rsvp-combined-left .rsvp-event-item {
    flex: 1;
    text-align: center;
  }
  .rsvp-combined-wrapper .rsvp-combined-left .rsvp-event-divider {
    width: 1px;
    height: 40px;
    margin: 0 8px;
  }
  .rsvp-combined-wrapper .rsvp-combined-right {
    padding: 24px 20px;
  }
}
.rsvp-thanks-modal {
  border-radius: 12px;
  overflow: hidden;
}
.rsvp-thanks-modal .modal-header {
  padding: 32px;
}
.rsvp-thanks-modal .modal-header .btn-close {
  background-color: transparent !important;
  border: 0 !important;
}
.rsvp-thanks-modal .modal-body {
  padding: 20px 40px 48px;
}
.rsvp-thanks-modal .rsvp-thanks-title {
  font-family: "r41-alfabeta-72", sans-serif !important;
  font-size: 7vw !important;
  font-weight: 400 !important;
  margin-bottom: 42px;
  color: #333 !important;
}
.rsvp-thanks-modal .rsvp-thanks-msg {
  font-family: "athelas", serif;
  font-size: 18px;
  color: #555 !important;
  margin: 0;
}/*# sourceMappingURL=rsvp.css.map */