/* #region "../src/elements/donation-form/donation-form.scss" */
/*
- type: css
*/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.donation-form {
  font-family: var(--base-font-family);
  line-height: var(--base-line-height);
  font-size: var(--reduced-font-size);
  max-width: 520px;
}
.donation-form .donation-form-grid {
  margin-top: 1px;
  margin-left: 1px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.donation-form .donation-form-grid > * {
  border: 1px solid var(--black);
  margin-top: -1px;
  margin-left: -1px;
}
.donation-form .donation-form-amounts {
  margin-top: var(--v-xs);
  grid-template-rows: 1fr 1fr;
}
.donation-form .donation-form-amounts .donation-form-label .donation-form-label-primary {
  font-size: /* grow(30, 40) */ clamp(1.875rem, 1.6666666667rem + 0.9259259259vw, 2.5rem);
  padding: 1.5rem 0 0.75rem;
}
.donation-form .donation-form-recurring {
  margin-top: var(--v-s);
  margin-bottom: var(--v-m);
}
.donation-form .donation-form-print {
  margin-top: var(--v-xs);
}
.donation-form .donation-form-label {
  position: relative;
  display: block;
  background-color: var(--white);
  color: var(--black);
  cursor: pointer;
}
.donation-form .donation-form-label:has(input[type=radio]:checked) {
  background-color: var(--light-grey);
}
.donation-form .donation-form-label:has(input[type=radio]:disabled) {
  opacity: 0.4;
  cursor: default;
}
.donation-form .donation-form-label:has(input[type=radio]:focus-visible) {
  outline: 2px solid var(--black);
  outline-offset: 3px;
  z-index: 1;
}
.donation-form .donation-form-label input[type=radio] {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.donation-form .donation-form-label input[type=radio]:focus {
  outline: none;
}
.donation-form .donation-form-label .donation-form-label-regular {
  display: block;
  padding: 1rem /* grow(12, 24) */ clamp(0.75rem, 0.5rem + 1.1111111111vw, 1.5rem);
  text-align: center;
}
.donation-form .donation-form-label .donation-form-label-primary {
  padding: /* grow(36, 44) */ clamp(2.25rem, 2.0833333333rem + 0.7407407407vw, 2.75rem) /* grow(12, 24) */ clamp(0.75rem, 0.5rem + 1.1111111111vw, 1.5rem) /* grow(22, 32) */ clamp(1.375rem, 1.1666666667rem + 0.9259259259vw, 2rem);
  line-height: 1.2;
  text-align: center;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.donation-form .donation-form-label .donation-form-label-secondary {
  position: absolute;
  top: 0.375rem;
  left: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.donation-form .donation-form-label--custom-input {
  font: inherit;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  line-height: 1;
  display: block;
  margin-inline: auto;
}
.donation-form .donation-form-label--custom-input::-webkit-inner-spin-button, .donation-form .donation-form-label--custom-input::-webkit-outer-spin-button {
  display: none;
}
.donation-form .donation-form-label--custom-input:focus {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: var(--border-width);
}
.donation-form .donation-form-label--custom-input::placeholder {
  color: inherit;
}
.donation-form .donation-form-label--custom-input:focus {
  outline: none;
}
.donation-form .donation-form-print-footnote {
  display: flex;
  gap: 0.75ch;
}
.donation-form .donation-form-submit {
  margin-top: var(--v-m);
}
/* #endregion "../src/elements/donation-form/donation-form.scss" */

head{--webpack--css-wpce--donation-form:&\.\.\/src\/elements\/donation-form\/donation-form\.scss;}
/*# sourceMappingURL=css-wpce--donation-form.css.map*/