.give-a-donation {
  position: relative;
}

.give-a-donation:after {
  content: "";
  background-image: url(/hubfs/47091876/Landing%20Pages/icons/icon-accent-arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 18px;
}

.give-a-donation .row-fluid {
  align-items: center;
}

.give-a-donation-has-transform .row-fluid {
  align-items: flex-start;
}

.give-a-donation p {
  margin: 0 0 2.813rem; /* 0 0 40px */
}

.give-a-donation p:last-child {
  margin: 0;
}

.donation-options-wrapper {
  display: flex;
  justify-content: flex-end;
}

.give-a-donation-has-transform .donation-options-wrapper {
  transform: translateY(-11.25rem); /* -180px */
  margin-bottom: -11.25rem; /* -180px */
}

.donation-options {
  background-color: var(--white);
  box-shadow: 0px 3px 36px rgba(0, 0, 0, 0.24);
  padding: 1.563rem 2.188rem 1.875rem; /* 25px 35px 30px */
  max-width: 23.75rem; /* 380px */
}

p.donation-options_header {
  color: var(--bosco-blue);
  font-size: 1.313rem; /* 21px */
  font-weight: 900;
  line-height: 1.563rem; /* 25px */
  margin: 0 0 0.938rem; /* 0 0 15px */
  text-align: center;
}

.donation-options_presets {
  border: none;
  padding: 0;
  margin: 0 0 1.25rem; /* 0 0 20px */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.938rem; /* 15px */
}

.donation-options_checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.donation-options_checkbox input {
  display: none; /* Hide default checkbox */
}

.donation-options_checkbox-amount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 100%;
  background-color: transparent;
  border: 0.188rem solid var(--gray); /* 3px */
  position: relative;
  transition: var(--transition);
}

@supports (aspect-ratio: 1 / 1) {
  .donation-options_checkbox-amount {
    padding-top: 0;
    aspect-ratio: 1 / 1;
  }
}

.donation-options_checkbox-amount span {
  font-size: 1.375rem; /* 22px */
  font-weight: 900;
  color: var(--gorse-yellow-orange);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.donation-options_checkbox:hover .donation-options_checkbox-amount,
.donation-options_checkbox input:checked + .donation-options_checkbox-amount {
  border-color: var(--gorse-yellow-orange);;
}

.donation-options_custom-donation {
  border: 0.063rem solid var(--dark-gray); /* 1px */
  color: rgb(0 0 0 / 60%);
  font-size: 0.75rem; /* 12px */
  font-weight: 600;
  padding: 0.938rem; /* 15px */
  width: 100%;
  margin: 0 0 1.25rem; /* 0 0 20px */
}

.donation-options_custom-donation:focus,
.donation-options_custom-donation:focus-visible {
  border: 0.063rem solid var(--gorse-yellow-orange); /* 1px */
  outline: none;
}

.donation-options_custom-donation::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: 600;
}
.donation-options_custom-donation::-moz-placeholder { /* Firefox 19+ */
  font-weight: 600;
}
.donation-options_custom-donation:-ms-input-placeholder { /* IE 10+ */
  font-weight: 600;
}
.donation-options_custom-donation:-moz-placeholder { /* Firefox 18- */
  font-weight: 600;
}

.donation-options_button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: var(--base-font-family);
  width: 100%;
  transition: var(--transition);
}

.donation-options_error {
  display: none;
  margin-top: 0.938rem; /* 15px */
}

.donation-options_error.show {
  display: block;
}

.donation-options_error p {
  color: var(--error-red);
  font-size: 0.75rem /* 12px */
}

@media (max-width: 960px) {
  .donation-options {
    padding: 1.563rem 1.25rem 1.875rem; /* 25px 35px 30px */
  }

  .donation-options_checkbox-amount span {
    font-size: 1.125rem; /* 18px */
  }
}

@media (max-width: 768px) {
  .give-a-donation {
    padding: 3.125rem 0; /* 50px 0 */
  }

  .give-a-donation p {
    margin: 0 0 1.563rem; /* 0 0 25px */
  }

  .give-a-donation-has-transform .donation-options-wrapper {
    transform: none;
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .donation-options {
    max-width: none;
  }

  .donation-options_checkbox-amount span {
    font-size: 1.375rem; /* 22px */
  }

  .donation-options_custom-donation {
    font-size: 1rem; /* 16px */
  }
}

@media (max-width: 375px) {
  .donation-options_checkbox-amount span {
    font-size: 1.125rem; /* 18px */
  }
}
