.mr-70 {
  margin-right: 70px;
}

.donation-layout {
  background-color: #f4f6f8;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
.donation-layout .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 0;
  background-color: #141414;
}

.donation-page-wrapper {
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
}
@media (max-width: 575.98px) {
  .donation-page-wrapper {
    padding: 30px 15px;
  }
}

.donation-page-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.donation-page-footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.powered-by {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
}
.powered-by__text {
  font-size: 12px;
  color: #666;
  text-transform: lowercase;
}
.powered-by__logo {
  height: 24px;
  width: auto;
}

.donation {
  /* TRACKER */
  /* LEFT SIDE */
  /* RIGHT SIDE */
}
.donation__wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0;
}
@media (max-width: 991.98px) {
  .donation__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 15px;
  }
}
.donation__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .donation__title {
    font-size: 20px;
  }
}
.donation .donation-tracker {
  background: #fff;
  padding: 40px 60px;
  border-radius: 6px;
  border: 1px solid #eee;
  width: 990px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .donation .donation-tracker {
    width: 100%;
    padding: 30px 20px;
  }
}
.donation .donation-tracker__title {
  font-size: 32px;
  margin-bottom: 15px;
  color: #111;
  text-transform: none;
  font-weight: 500;
}
.donation .donation-tracker__title strong {
  font-weight: 700;
}
.donation .donation-tracker__description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}
.donation .donation-tracker__goal {
  margin-bottom: 25px;
}
.donation .donation-tracker__goal-label {
  font-size: 18px;
  color: #000;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 2px;
}
.donation .donation-tracker__goal-amount {
  font-size: 36px;
  font-weight: 800;
  color: #004282;
  margin-top: 5px;
}
.donation .donation-tracker__progress {
  max-width: 650px;
  margin: 0 auto 30px;
}
.donation .donation-tracker__progress-bar {
  height: 14px;
  background: #2c3135;
  border-radius: 10px;
  position: relative;
  overflow: visible;
}
.donation .donation-tracker__progress-fill {
  height: 100%;
  background: #004282;
  border-radius: 10px;
  position: relative;
  min-width: 14px;
  transition: width 0.5s ease-out;
}
.donation .donation-tracker__progress-pin {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 4px solid #004282;
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.donation .donation-tracker__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 575.98px) {
  .donation .donation-tracker__stats {
    gap: 20px;
  }
}
.donation .donation-tracker__stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #004282;
}
.donation .donation-tracker__stat-value.raised {
  color: #000;
}
.donation .donation-tracker__stat-label {
  font-size: 12px;
  margin-top: 10px;
  color: #000;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: 0;
}
.donation .donation-tracker__stat-divider {
  width: 1px;
  height: 55px;
  background: #004282;
  opacity: 0.5;
}
.donation__amounts {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  border: 1px solid #eee;
  width: 990px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991.98px) {
  .donation__amounts {
    width: 100%;
  }
}
.donation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 575.98px) {
  .donation__grid {
    gap: 12px;
  }
}
.donation__amount {
  height: 95px;
  font-size: 20px;
  font-weight: 600;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.donation__amount:hover {
  border-color: var(--eve-green-color);
}
.donation__amount.is-active {
  border-color: var(--eve-green-color);
  background: #eef5ff;
}
@media (max-width: 575.98px) {
  .donation__amount {
    height: 60px;
    font-size: 18px;
  }
}
.donation .custom-donation {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 28px;
  text-align: center;
  background: #fff;
}
@media (max-width: 575.98px) {
  .donation .custom-donation {
    padding: 20px;
  }
}
.donation .custom-donation__static {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}
.donation .custom-donation__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
}
.donation__summary {
  width: 350px;
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 130px;
}
@media (max-width: 991.98px) {
  .donation__summary {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 500px;
  }
}
.donation__summary-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #111;
  text-align: center;
}
@media (max-width: 767.98px) {
  .donation__summary-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.donation__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
}
.donation__summary-row--total {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}
.donation__summary-label {
  font-weight: 600;
  color: #222;
}
.donation__summary-value {
  font-weight: 600;
  color: #111;
}
.donation__summary-note {
  font-size: 12px;
  color: #666;
  margin-top: 3px;
}
.donation__cover-fee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin: 18px 0 26px;
  cursor: pointer;
  color: #000;
}
.donation__cover-fee input {
  width: 18px;
  height: 18px;
  accent-color: var(--eve-green-color);
  cursor: pointer;
}
.donation__continue {
  width: 100%;
  height: 56px;
  border-radius: 50px !important;
  border: none !important;
  background-color: var(--eve-green-color) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s ease;
}
.donation__continue:hover {
  background: #5aa03f;
}
.donation__continue:disabled {
  background-color: #dcdcdc !important;
  cursor: not-allowed;
  border: unset !important;
}
@media (max-width: 575.98px) {
  .donation__continue {
    height: 50px;
    font-size: 16px;
  }
}
.donation__step1-action {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}
.donation__step1-action .donation__continue {
  width: 30%;
}
@media (max-width: 575.98px) {
  .donation__step1-action .donation__continue {
    width: 100%;
  }
}

.donation-form {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  border: 1px solid #eee;
  width: 640px;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991.98px) {
  .donation-form {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
  }
}
.donation-form__header {
  display: flex;
  justify-content: space-between;
}
.donation-form__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
  text-align: left;
}
@media (max-width: 575.98px) {
  .donation-form__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.donation-form__back-btn {
  min-width: 110px;
  height: 40px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  text-align: center;
  outline: none;
  padding: 8px 24px;
  color: #fff;
  background-color: var(--eve-green-color);
  transition: background 0.2s ease;
}
@media (max-width: 575.98px) {
  .donation-form__back-btn {
    height: 35px;
    min-width: 75px;
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.donation-form__subtitle {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
}
@media (max-width: 575.98px) {
  .donation-form__subtitle {
    font-size: 16px;
    margin: 20px 0 12px;
  }
}
.donation-form .row {
  margin: 0 -10px;
}
.donation-form .row [class*=col-] {
  padding: 0 10px;
}
@media (min-width: 992px) {
  .donation-form .row .col-md-6:last-child {
    padding-right: 0;
  }
}
.donation-form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 0 0 18px;
}
.donation-form__checkbox input {
  accent-color: var(--eve-green-color);
}
.donation-form__textarea {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  padding: 12px;
  resize: none;
  background-color: #f2f2f2 !important;
  border: 2px solid #f2f2f2;
  color: #1a181e;
  font-size: 14px;
  line-height: 24px;
}
.donation-form__textarea:focus {
  outline: none;
  border-color: var(--eve-green-color);
  background: #fff;
}
