@charset "UTF-8";
/*
0 - 600px:       [This is defalt](Mobile first)
600px +            Tablet
1600px +           Desktop

$breakpoint arguement choices:
- tablet
- desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

button {
  display: inline-block;
  background-color: transparent;
  color: inherit;
  border-width: 0;
  font-size: inherit;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

input,
select,
textarea {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/*
 *
 * INSTRUCTIONS
 *
 * Copy the Legal Disclaimer and the @font-faces statements to your regular CSS file.
 * The font file(s) should be placed relative to the regular CSS file.
 *
 */
/*
 * Legal Disclaimer for Web licence
 *
 * Licence to use self-hosted webfonts for displaying dynamic text on specified website domains. Our package includes WOFF and WOFF2 font formats.
 *
 * Should the license page views limit be exceeded the license holder will be required to contact Lineto.com for an upgrade.
 *
 * It is strictly prohibited to rename the font and to download or use these fonts in any other media.
 *
 * These Web fonts are licensed exclusively for the use on the following domain(s) and their subdomains:
 *
 * birthrightisrael.com (monthly pageviews: < 250K)
 *
 */
/* complete */
@font-face {
  font-family: "CircularXXWeb-Bold";
  src: url("../fonts/circular/CircularXXWeb-Bold.woff") format("woff");
}
@font-face {
  font-family: "CircularXXWeb-Bold";
  src: url("../fonts/circular/CircularXXWeb-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "CircularXXWeb-Regular";
  src: url("../fonts/circular/CircularXXWeb-Regular.woff") format("woff");
}
@font-face {
  font-family: "CircularXXWeb-Regular";
  src: url("../fonts/circular/CircularXXWeb-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "CircularXXWeb-Medium";
  src: url("../fonts/circular/CircularXXWeb-Medium.woff") format("woff");
}
@font-face {
  font-family: "CircularXXWeb-Medium";
  src: url("../fonts/circular/CircularXXWeb-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "CircularXXWeb-Light";
  src: url("../fonts/circular/CircularXXWeb-Light.woff") format("woff");
}
@font-face {
  font-family: "CircularXXWeb-Light";
  src: url("../fonts/circular/CircularXXWeb-Light.woff2") format("woff2");
}
@font-face {
  font-family: "CircularXXWeb-Book";
  src: url("../fonts/circular/CircularXXWeb-Book.woff") format("woff2");
}
:root {
  --t-font-bold: "CircularXXWeb-Bold", sans-serif;
  --t-font-regular: "CircularXXWeb-Regular", sans-serif;
  --t-font-book: "CircularXXWeb-Book", sans-serif;
  --t-font-medium: "CircularXXWeb-Medium", sans-serif;
  --t-font-light: "CircularXXWeb-Light", sans-serif;
}

/* Typography Setup */
body.site-font {
  -webkit-font-smoothing: antialiased;
  color: #002f5e;
}
body.site-font *:not(i) {
  font-family: var(--t-font-light);
  font-weight: normal !important;
}
body.site-font h1, body.site-font h2, body.site-font h3, body.site-font h4, body.site-font h5, body.site-font h6 {
  font-family: var(--t-font-bold);
  letter-spacing: -0.5px;
  font-weight: normal !important;
}
body.site-font a, body.site-font button {
  text-decoration: none;
  font-family: var(--t-font-medium);
  font-weight: normal !important;
}
body.site-font a {
  color: #1D3060;
}

/* Font-family classes */
.font-bold {
  font-family: var(--t-font-bold) !important;
}

.font-regular {
  font-family: var(--t-font-regular) !important;
}

.font-medium {
  font-family: var(--t-font-medium) !important;
}

.font-light {
  font-family: var(--t-font-light) !important;
}

.flex {
  display: flex;
  flex-wrap: nowrap;
}
.flex.stack {
  flex-direction: column;
}
.flex.center {
  align-items: center;
  justify-content: center;
}
.flex.justify-between {
  justify-content: space-between;
}
.flex .wrap {
  flex-wrap: wrap;
}

.my-auto {
  margin-block: auto;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.decoration-none {
  text-decoration: none !important;
}

.capitalize {
  text-transform: capitalize;
}

a,
button,
.btn {
  cursor: pointer;
  font-family: inherit;
}

.applepay_button {
  align-self: flex-end;
  cursor: pointer;
  outline: 0;
  border: 0;
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-family: var(--t-font-book);
  border-radius: 100px;
  font-size: 20px;
  gap: 8px;
}
.applepay_button svg {
  height: 24px;
  fill: #fff;
}

[data-nice-select] {
  display: none;
}

.nice-select {
  width: 100%;
  border-radius: 100px;
  background: transparent;
  font-size: 16px;
  line-height: inherit;
  height: 100%;
  min-height: 45px;
  padding-inline: 1.5rem;
  border-radius: 8px;
  border: 1px solid #b0b6c7;
}
.nice-select, .nice-select.open, .nice-select:active, .nice-select:focus {
  border-color: #cfd2d1;
}
.nice-select.open {
  background: #fff;
  border-radius: 25px 25px 0 0;
  border-bottom: 0;
}
.nice-select .nice-select-dropdown {
  overflow: hidden;
  border-radius: 0 0 1rem 1rem;
  margin-top: 1px;
  box-shadow: 0px 0px 0px 1px #cfd2d1;
}
.nice-select .nice-select-dropdown .nice-select-search {
  margin: 0;
}
.nice-select::after {
  border-color: #1d3060;
  right: 1rem;
  left: 1rem;
  margin-inline-start: auto;
}
.nice-select span.current {
  position: absolute;
  top: 50%;
  left: 1rem;
  right: 1rem;
  max-width: max-content;
  margin-inline-end: auto;
  transform: translateY(-50%);
  color: #1d3060;
}
.nice-select ul.list {
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #002f5e;
  gap: 0;
  border-radius: 0;
}
.nice-select ul.list .selected:not(.disabled) {
  font-family: var(--t-font-book);
  color: #015fc1;
}
.nice-select ul.list::-webkit-scrollbar {
  background: transparent;
  width: 12px;
}
.nice-select ul.list::-webkit-scrollbar-thumb {
  background: #33baf6;
  border-radius: 1.25rem;
  border: 3px solid white;
}
.nice-select ul.list::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 1.25rem;
}
.nice-select ul.list::-webkit-scrollbar-button {
  display: none; /* Hide the scrollbar navigation buttons */
}

.subscribe-section.in-home {
  padding: 75px 150px;
}
.subscribe-section.in-home form {
  row-gap: 3rem;
}

.subscribe-section.in-footer {
  position: relative;
}
.subscribe-section.in-footer #newsletter-footer {
  position: absolute;
  top: -100px;
  left: 0;
}
.subscribe-section.in-footer .button-mobile {
  padding-bottom: 2rem;
}
.subscribe-section.in-footer .button-mobile h2 {
  font-size: 1rem;
  letter-spacing: 0.25px;
}
.subscribe-section.in-footer .form h2 {
  font-size: 1rem;
  text-align: start;
}
.subscribe-section.in-footer .form p.error {
  font-size: 10px;
}

.subscribe-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.subscribe-section #subscribe,
.subscribe-section #newsletter-signup {
  position: absolute;
  top: -100px;
  left: 0;
}
.subscribe-section.in-home {
  background-color: #f4f7f8;
}
.subscribe-section .form {
  display: none;
  flex-direction: column;
}
.subscribe-section form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 1rem;
  column-gap: 1rem;
}
.subscribe-section form h2 {
  font-size: 28px;
  grid-column: 1/-1;
  width: 100%;
}
.subscribe-section form p.error {
  position: absolute;
}
.subscribe-section form p.error.shown {
  padding: 0.5rem 1rem 0 !important;
}

.button-mobile {
  padding-block: 1rem;
}
.button-mobile h2 {
  font-size: 1.5rem;
  margin-top: 0;
}
.button-mobile button.take-part {
  margin-top: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  width: 100%;
  color: white;
  background: #00a9e6;
  border: 0;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all;
}

body:has(.subscribe-popup.open) {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.subscribe-popup, .subscribe-section {
  color: #002f5e;
}
.subscribe-popup .thanks, .subscribe-section .thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}
.subscribe-popup .thanks p, .subscribe-section .thanks p {
  line-height: 1.5;
  font-family: var(--t-font-medium);
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
  max-width: 350px;
}
.subscribe-popup .thanks svg, .subscribe-section .thanks svg {
  width: 2.5rem;
  height: 2.5rem;
}
.subscribe-popup .form, .subscribe-section .form {
  width: 100%;
}
.subscribe-popup .form h2, .subscribe-section .form h2 {
  margin: 0;
}
.subscribe-popup .form .nice-select, .subscribe-section .form .nice-select {
  max-height: 53px;
}
.subscribe-popup .form .btn-submit, .subscribe-section .form .btn-submit {
  border-radius: 2rem;
  cursor: pointer;
  font-size: 16px;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  width: 100%;
  color: white;
  background: #00a9e6;
  border: 0;
  padding: 1rem 1rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all;
}
.subscribe-popup .form .btn-submit .text, .subscribe-section .form .btn-submit .text {
  font-family: var(--t-font-medium);
}
.subscribe-popup .form form p.error, .subscribe-section .form form p.error {
  font-size: 14px;
  color: #ee5c5c;
  transition: 0.3s;
  max-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.subscribe-popup .form form p.error.shown, .subscribe-section .form form p.error.shown {
  opacity: 1;
  max-height: 3rem;
}
.subscribe-popup .form form h2, .subscribe-section .form form h2 {
  text-align: center;
  letter-spacing: normal;
}
.subscribe-popup .form form label.field-wrapper, .subscribe-section .form form label.field-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1.5rem 1.5rem 0.5rem;
  border-radius: 2rem;
  border: solid 1px #cfd2d1;
  background-color: rgba(0, 169, 230, 0.0117647059);
  cursor: pointer;
  position: relative;
  transition: 0.2s all;
}
.subscribe-popup .form form label.field-wrapper p.label, .subscribe-section .form form label.field-wrapper p.label {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  margin: 0;
  transform: translateY(-50%);
  transition: 0.2s;
}
.subscribe-popup .form form label.field-wrapper input, .subscribe-section .form form label.field-wrapper input {
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  width: 100%;
}
.subscribe-popup .form form label.field-wrapper input:not(.email), .subscribe-section .form form label.field-wrapper input:not(.email) {
  text-transform: capitalize;
}
.subscribe-popup .form form label.field-wrapper input, .subscribe-popup .form form label.field-wrapper input:focus, .subscribe-popup .form form label.field-wrapper input:active, .subscribe-popup .form form label.field-wrapper input:autofill, .subscribe-popup .form form label.field-wrapper input:-webkit-autofill, .subscribe-section .form form label.field-wrapper input, .subscribe-section .form form label.field-wrapper input:focus, .subscribe-section .form form label.field-wrapper input:active, .subscribe-section .form form label.field-wrapper input:autofill, .subscribe-section .form form label.field-wrapper input:-webkit-autofill {
  outline: 0 !important;
  background-color: transparent !important; /* Set background color */
  color: #002f5e !important; /* Set text color */
  border: 0 !important; /* Set border style */
}
.subscribe-popup .form form label.field-wrapper:focus-within > p.label,
.subscribe-popup .form form label.field-wrapper input:not(:placeholder-shown) + p.label, .subscribe-section .form form label.field-wrapper:focus-within > p.label,
.subscribe-section .form form label.field-wrapper input:not(:placeholder-shown) + p.label {
  top: 0.5rem;
  transform: translateY(0%);
  font-size: 0.75rem;
  font-weight: 600 !important;
}
.subscribe-popup button, .subscribe-section button {
  cursor: pointer;
}
.subscribe-popup.open, .subscribe-section.open {
  opacity: 1;
  pointer-events: all;
}
.subscribe-popup .btn-close, .subscribe-section .btn-close {
  position: absolute;
  top: 1rem;
  right: 0.75rem;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1.5rem;
  color: #002f5e;
  z-index: 22;
}

.subscribe-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all;
}
.subscribe-popup .form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.5rem;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: auto;
}
.subscribe-popup .form form {
  height: 100%;
  width: 100%;
  flex-direction: column;
  display: flex;
  gap: 1.5rem;
}
.subscribe-popup .form form h2 {
  max-width: 280px;
  margin: 0 auto 1.5rem;
}
.subscribe-popup .form form p.error.shown {
  padding: 1rem 1rem 0 !important;
}

@media only screen and (max-width: 1540px) {
  .subscribe-section.in-home {
    padding: 100px 50px;
  }
}
@media only screen and (max-width: 768px) {
  .subscribe-section.in-home {
    padding: 60px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .subscribe-popup {
    display: none;
  }
  .button-mobile {
    display: none;
  }
  .subscribe-section .form {
    display: flex;
  }
}
#donation.hero-donation-cta {
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-block: 2rem;
}
#donation.hero-donation-cta .excerpt {
  padding-top: 0;
}
#donation.hero-donation-cta .left-side {
  padding-block: 0;
  margin-left: 0px !important;
}

.donation-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.donation-cta .hidden {
  display: none !important;
}
.donation-cta select, .donation-cta .nice-select {
  max-height: 45px;
  max-width: 250px;
  width: 100%;
}
.donation-cta select {
  width: 100%;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.27);
  font-size: 16px;
  line-height: inherit;
  color: white;
  padding-inline: 1.5rem;
  height: 100%;
  font-family: var(--t-font-medium);
}
.donation-cta .nice-select {
  width: 100%;
  border-radius: 55px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.27);
  font-size: 16px;
  line-height: inherit;
  color: white;
  padding-inline: 1.5rem;
  font-family: var(--t-font-medium);
}
.donation-cta .nice-select.open {
  background: white;
  color: #002f5e;
  border-radius: 25px 25px 0 0;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
}
.donation-cta .nice-select.open .list {
  border-radius: 0;
}
.donation-cta .nice-select::after {
  border-color: white;
  right: 1rem;
  left: 1rem;
  margin-inline-start: auto;
}
.donation-cta .nice-select span.current {
  font-family: var(--t-font-medium);
}
.donation-cta .nice-select ul.list .selected {
  color: #1D3060;
  font-family: var(--t-font-medium);
}
.donation-cta .billing-country {
  color: white;
}
.donation-cta .billing-country > h4 {
  margin-bottom: 1rem;
}
.donation-cta .frequency {
  flex: 0 1 250px;
}
.donation-cta .amounts {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.donation-cta .amounts > * {
  flex: 1 1 100px;
}
.donation-cta .amounts input[type=radio]:checked + label {
  background: white;
  color: #002f5e;
}
.donation-cta .amounts label {
  height: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.27);
  font-size: 16px;
  line-height: inherit;
  color: white;
  font-family: var(--t-font-medium);
}
.donation-cta .amounts .amount-other + label {
  position: relative;
}
.donation-cta .amounts .amount-other + label span {
  font-size: inherit;
  color: white;
  max-width: 130px;
  text-align: center;
  font-family: var(--t-font-medium);
}
.donation-cta .amounts .amount-other + label div {
  pointer-events: none;
  max-width: 0px;
  height: 0px;
  opacity: 0;
}
.donation-cta .amounts .amount-other + label div input {
  background-color: transparent;
  font-size: inherit;
  border: 0;
  border-bottom: 1px solid #002f5e;
  outline: 0;
  color: #002f5e;
  text-align: center;
  font-family: var(--t-font-medium);
}
.donation-cta .amounts .amount-other + label div input::placeholder {
  color: #002f5e;
  font-family: var(--t-font-medium);
}
.donation-cta .amounts .amount-other:checked + label span:not(.error-msg) {
  color: #002f5e;
}
.donation-cta .amounts .amount-other:checked + label > span {
  max-width: 0px;
  height: 0px;
  opacity: 0;
  color: #002f5e;
}
.donation-cta .amounts .amount-other:checked + label div {
  pointer-events: all;
  max-width: 100%;
  display: flex;
  opacity: 1;
  height: auto;
}
.donation-cta .amounts .other-amount {
  position: relative;
}
.donation-cta .amounts .other-amount .error-msg {
  position: absolute;
  min-width: 100%;
  left: 0;
  bottom: -4px;
  color: #1D3060;
  z-index: 1;
  transform: translateY(100%);
  display: flex;
  align-items: center;
  opacity: 0.8;
  font-size: 12px !important;
  font-family: var(--t-font-regular);
}
.donation-cta button[type=submit] {
  flex: 1.5 1 100px;
  width: 100%;
}
.donation-cta button[type=submit], .donation-cta [data-open-donation] {
  height: 45px;
  margin-inline: auto;
  padding-inline: 2rem;
  border-radius: 55px;
  background-color: #00a9e6;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  color: #fff;
}

#donation .donation-cta {
  margin-top: 1.25rem;
  gap: 1rem;
}
#donation .donation-cta [data-open-donation] {
  margin-inline-start: 0;
}
#donation .donation-cta .frequency {
  flex: 1 1 100%;
}

#story #form-donation .donation-cta .frequency select, #story #form-donation .donation-cta .frequency .nice-select {
  color: #002f5e;
  border-color: #002f5e;
}
#story #form-donation .donation-cta .frequency .nice-select.open {
  border-color: #f6f6f6;
}
#story #form-donation .donation-cta .frequency .nice-select::after {
  border-color: #002f5e;
}
#story #form-donation .donation-cta .amounts input[type=radio]:checked + label {
  border-color: #00a9e6;
}
#story #form-donation .donation-cta .amounts label {
  color: #002f5e;
  border-color: #002f5e;
}
#story #form-donation .donation-cta .amounts label span {
  color: #002f5e;
}
#story #form-donation .donation-cta .amounts input {
  color: #002f5e;
}
#story #form-donation .donation-cta .amounts input::placeholder {
  color: #002f5e;
}

@media (max-width: 1024px) {
  #hero .donation-cta {
    display: none;
  }
  #donation .donation-cta {
    margin-top: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  #donation .donation-cta .billing-country h4 {
    margin: 0;
  }
  #donation .donation-cta .frequency, #donation .donation-cta .billing-country {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
  }
  #donation .donation-cta .amounts {
    flex-wrap: wrap;
  }
}
.general-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.general-popup .popup-content {
  background-color: #fff;
  border-radius: 1rem;
  display: flex;
  max-width: 900px;
}
@media (max-width: 768px) {
  .general-popup .popup-content {
    max-width: calc(100% - 2rem);
  }
}
.general-popup .popup-content .image-side {
  position: relative;
  display: flex;
  max-width: 50%;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
@media (max-width: 768px) {
  .general-popup .popup-content .image-side {
    display: none;
  }
}
.general-popup .popup-content .image-side img {
  object-fit: cover;
  width: 100%;
  max-width: 400px;
}
.general-popup .popup-content .content-side {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.general-popup .popup-content .content-side .text-and-close-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.general-popup .popup-content .content-side .text-and-close-wrapper .form {
  width: 100%;
}
.general-popup .popup-content .content-side .text-and-close-wrapper .error {
  font-size: 12px;
  padding: 0 12px;
}
.general-popup .popup-content .content-side .text-and-close-wrapper .thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 16px;
}
.general-popup .popup-content .content-side .text-and-close-wrapper .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto 0;
}
.general-popup .popup-content .content-side .text-and-close-wrapper .text h2 {
  font-size: 44px;
}
@media (max-width: 768px) {
  .general-popup .popup-content .content-side .text-and-close-wrapper .text h2 {
    font-size: 32px;
  }
}
.general-popup .popup-content .content-side .text-and-close-wrapper .text p {
  font-size: 22px;
  font-weight: 600 !important;
}
@media (max-width: 768px) {
  .general-popup .popup-content .content-side .text-and-close-wrapper .text p {
    font-size: 16px;
  }
}
.general-popup .popup-content .content-side form {
  width: 100%;
  height: 100%;
}
.general-popup .popup-content .content-side form .field-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1.5rem 1.5rem 0.5rem;
  border-radius: 2rem;
  border: solid 1px #cfd2d1;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: 0.2s all;
}
.general-popup .popup-content .content-side form .field-wrapper input[type=text] {
  outline: 0 !important;
  background-color: transparent !important;
  color: #002f5e !important;
  border: 0 !important;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  width: 100%;
}
.general-popup .popup-content .content-side form .field-wrapper p.label {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  margin: 0;
  transform: translateY(-50%);
  transition: 0.2s;
}
.general-popup .popup-content .content-side .popup-button {
  padding: 12px 33px;
  object-fit: contain;
  border: 1px solid #00a9e6;
  border-radius: 21px;
  background-color: #00a9e6;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  width: fit-content;
}
.general-popup .popup-content .content-side button.popup-close-button {
  all: unset;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23002F5E' d='M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  height: 18px;
  min-width: 18px;
}
.general-popup.newsletter-popup h2 {
  font-size: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .general-popup.newsletter-popup h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .general-popup.newsletter-popup {
    width: 100%;
    height: 100%;
    border-radius: unset;
  }
}
.general-popup.newsletter-popup form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 0;
}
.general-popup.newsletter-popup form label.field-wrapper p.label {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  margin: 0;
  transform: translateY(-50%);
  transition: 0.2s;
}
.general-popup.newsletter-popup form label.field-wrapper input:not(:placeholder-shown) + p.label,
.general-popup.newsletter-popup form label.field-wrapper input:focus + p.label {
  top: 0.5rem;
  transform: translateY(0%);
  font-size: 0.75rem;
  font-weight: 600 !important;
}
.general-popup.newsletter-popup form .nice-select {
  min-height: 53px;
  height: 53px;
}
.general-popup.newsletter-popup form .nice-select ul.list {
  max-height: 150px;
}
.general-popup.newsletter-popup form button.btn-submit {
  padding: 12px 33px 12px 33px;
  object-fit: contain;
  border: 1px solid #00a9e6;
  border-radius: 21px;
  background-color: #00a9e6;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-top: auto;
  margin-bottom: 1rem;
}
.general-popup.newsletter-popup form button.btn-submit:hover {
  border-color: #00a9e6;
  background: white;
  color: #00a9e6;
}
@media (max-width: 768px) {
  .general-popup.newsletter-popup form button.btn-submit {
    margin: auto 0 20px;
  }
}
@media (max-width: 768px) {
  .general-popup.newsletter-popup form {
    width: 100%;
    height: 100%;
  }
}

#footer-wrapper {
  padding: 80px 150px 60px;
}
#footer-wrapper .top {
  flex-wrap: wrap;
  gap: 2rem;
  display: flex;
  align-items: start;
}
#footer-wrapper .top #footer-subscribe {
  flex: 1 0 800px;
}
#footer-wrapper .top .left-side {
  flex: 1 1 max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#footer-wrapper .top .left-side .nav, #footer-wrapper .top .left-side .contact {
  flex: 1;
  align-items: center;
}
#footer-wrapper .top .left-side p {
  margin: unset;
}
#footer-wrapper .top .left-side .nav {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: start;
  border-left: 1px solid #f4f7f8;
  padding-left: 10px;
}
#footer-wrapper .top .left-side .nav .menu {
  margin-bottom: 8px;
  width: 100%;
}
#footer-wrapper .top .left-side .nav .menu a {
  padding-block: 0.5rem;
  color: #002f5e;
}
#footer-wrapper .top .left-side .contact {
  border-left: 1px solid #f4f7f8;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: start;
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: left;
  color: #002f5e;
}
#footer-wrapper .top .left-side .contact > * {
  width: 100%;
}
#footer-wrapper .top .left-side .contact .name {
  margin-top: 5px;
  font-weight: 300;
}
#footer-wrapper .top .left-side .contact .email {
  display: flex;
  align-items: center;
}
#footer-wrapper .top .left-side .contact .email svg {
  height: 12px;
  width: 17px;
  margin-right: 5px;
}
#footer-wrapper .top .left-side .contact .email p {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: left;
  color: #002f5e;
}
#footer-wrapper .top .left-side .contact .email p a {
  color: #002f5e;
  text-decoration: unset;
}
#footer-wrapper .join-form-footer {
  margin-top: -9px;
  border-left: 1px solid #f4f7f8;
  padding-left: 10px;
}
#footer-wrapper .join-form-footer .title h3 {
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.25;
  margin-top: unset;
  letter-spacing: normal;
  text-align: left;
  margin-left: 10px;
  color: rgb(0, 47, 94);
  padding: unset;
  margin: unset;
  margin-bottom: 20px;
  margin-left: 8px;
  text-align: left;
}
#footer-wrapper .join-form-footer .join-form {
  padding: unset;
  background: white;
}
#footer-wrapper .join-form-footer .join-form .input-wrapper-wrapper {
  margin: 0 7px;
}
#footer-wrapper .join-form-footer .thanks {
  display: flex;
  align-items: center;
  justify-content: start;
}
#footer-wrapper .join-form-footer .thanks svg {
  margin-right: 10px;
}
#footer-wrapper .join-form-footer .thanks p {
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.25;
  letter-spacing: normal;
  text-align: center;
  color: #002f5e;
}
#footer-wrapper .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
#footer-wrapper .bottom a {
  font-size: 12px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  text-decoration: none;
  line-height: 3;
  letter-spacing: normal;
  text-align: left;
  color: #002f5e;
  margin: 0 5px;
}
@media (max-width: 1540px) {
  #footer-wrapper {
    padding: 2rem 50px 2rem;
  }
}
@media (max-width: 1024px) {
  #footer-wrapper {
    padding: 70px 30px 70px 30px;
  }
  #footer-wrapper .top {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #footer-wrapper .top .left-side {
    flex: 1;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  #footer-wrapper .top .left-side .nav {
    flex-direction: row;
    width: 100%;
    padding-left: unset;
    flex-wrap: wrap;
    border-left: unset;
    border-bottom: 1px solid #dfe2e3;
    padding-bottom: 25px;
  }
  #footer-wrapper .top .left-side .contact {
    padding-left: unset;
    font-size: 18px;
    border-left: unset;
    margin-top: 20px;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #footer-wrapper .top .left-side .contact .email {
    justify-content: center;
  }
  #footer-wrapper .top #footer-subscribe {
    flex: 1;
  }
  #footer-wrapper .join-form-footer {
    margin-top: unset;
    border-left: unset;
  }
  #footer-wrapper .join-form-footer .title {
    display: none;
  }
  #footer-wrapper .join-form-footer .join-form {
    padding: 30px 0 40px 0;
  }
  #footer-wrapper .join-form-footer .join-form .title h3 {
    display: none;
  }
  #footer-wrapper .bottom {
    flex-wrap: wrap;
    margin-top: unset;
  }
}
@media (max-width: 900px) {
  #footer-wrapper {
    padding: 1.5rem 2rem;
  }
  #footer-wrapper .top .left-side .nav {
    flex-direction: column;
  }
}

.loader {
  --color: var(--loader-color,#fff);
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#acwp-toolbar-btn-wrap {
  top: 200px !important;
}

.wpml-ls-statics-footer,
.otgs-development-site-front-end {
  display: none;
}

body #acwp-toolbar-btn-wrap {
  top: 120px;
  left: 20px;
}

.acwp-toolbar {
  top: -100vh;
  left: 20px;
}

.acwp-toolbar.acwp-toolbar-show {
  top: 55px;
}

/* ================================
   DONATE MODAL – TYPOGRAPHY ISOLATION
   ================================ */
.donate-modal {
  --dm-font-title: "CircularXXWeb-Bold", sans-serif;
  --dm-font-ui: "CircularXXWeb-Medium", sans-serif;
  --dm-font-body: "CircularXXWeb-Regular", sans-serif;
  --dm-font-light: "CircularXXWeb-Light", sans-serif;
}
.donate-modal,
.donate-modal * {
  font-weight: normal !important;
  letter-spacing: normal;
}
.donate-modal h1,
.donate-modal h2,
.donate-modal h3,
.donate-modal h4 {
  font-family: var(--dm-font-title) !important;
}
.donate-modal p,
.donate-modal span,
.donate-modal li,
.donate-modal label {
  font-family: var(--dm-font-body) !important;
}
.donate-modal button,
.donate-modal .frequencies label,
.donate-modal .amounts label,
.donate-modal .donor-type-options label,
.donate-modal .next-btn,
.donate-modal .credit-toggle {
  font-family: var(--dm-font-ui) !important;
}
.donate-modal .donation-purpose-text,
.donate-modal .dedication-description,
.donate-modal .powered-by-tz em,
.donate-modal .cant-pay-msg {
  font-family: var(--dm-font-light) !important;
}

/* =====================================
   GLOBAL LOCK
===================================== */
body:has(.donate-modal.open) {
  overflow: hidden;
}

/* =====================================
   DONATE MODAL ROOT
===================================== */
.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.25s ease;
  /* =====================================
     SIDE PANEL
  ===================================== */
  /* =====================================
     HEADER
  ===================================== */
  /* =====================================
     FORM
  ===================================== */
  /* =====================================
     STEPS CONTAINER (NO TRANSFORMS)
  ===================================== */
  /* =====================================
     TYPOGRAPHY
  ===================================== */
  /* =====================================
     FREQUENCY TOGGLE & FREQUENCY-AMOUNT-SECTION SPACING
  ===================================== */
  /* =====================================
     DEDICATION CHECKBOX (FIGMA)
  ===================================== */
  /* =====================================
     DEDICATION SECTION (FIGMA)
  ===================================== */
  /* =====================================
     AMOUNTS
  ===================================== */
  /* =====================================
     OTHER AMOUNT
  ===================================== */
  /* =====================================
     FORM INPUTS
  ===================================== */
  /* =====================================
     DONOR TYPE
  ===================================== */
  /* =====================================
     NEXT / SUBMIT
  ===================================== */
  /* =====================================
     STEP 3 - PAYMENT STEP
  ===================================== */
  /* =====================================
     STEP 4
  ===================================== */
  /* =====================================
     MOBILE
  ===================================== */
}
.donate-modal.open {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: all;
}
.donate-modal.open .wrapper {
  right: 0;
  opacity: 1;
}
.donate-modal .wrapper {
  position: absolute;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease, opacity 0.2s ease;
  opacity: 0;
}
.donate-modal .modal-actions {
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.donate-modal .modal-actions .back-btn {
  font-size: 16px;
  color: #1d3060;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.donate-modal .modal-actions .back-btn .back-btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.donate-modal .modal-actions .back-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
.donate-modal .modal-actions .exit-btn {
  font-size: 22px;
  background: none;
  border: 0;
  cursor: pointer;
  color: #1d3060;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 1 !important;
  visibility: visible !important;
}
.donate-modal .modal-actions .exit-btn svg {
  width: 22px;
  height: 22px;
  display: block !important;
  fill: #1d3060;
  opacity: 1 !important;
  visibility: visible !important;
}
.donate-modal .modal-actions .exit-btn i {
  display: block !important;
  color: #1d3060 !important;
  font-size: 22px !important;
  line-height: 1;
  opacity: 1 !important;
  visibility: visible !important;
}
.donate-modal .modal-actions .exit-btn:hover {
  opacity: 0.7;
}
.donate-modal .modal-actions .exit-btn:hover svg {
  fill: #1d3060;
}
.donate-modal .modal-actions .exit-btn:focus {
  outline: 2px solid #32baf6;
  outline-offset: 2px;
}
.donate-modal .donation-form.modal {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.donate-modal .steps {
  flex: 1;
  position: relative;
  overflow-y: auto;
}
.donate-modal [data-step] {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px 24px;
  min-height: 100%;
}
.donate-modal .steps[data-current="1"] [data-step="1"],
.donate-modal .steps[data-current="3"] [data-step="3"],
.donate-modal .steps[data-current="4"] [data-step="4"] {
  display: flex;
}
.donate-modal .donation-form.modal:has(.steps[data-current="4"]) .back-btn {
  display: none !important;
}
.donate-modal .steps[data-current="4"] ~ .modal-actions .back-btn,
.donate-modal [data-step="4"]:not([style*="display: none"]) ~ * .back-btn {
  display: none !important;
}
.donate-modal h3 {
  font-family: "CircularXX";
  font-size: 24px;
  font-weight: 700;
  color: #1d3060;
  text-align: center;
  width: 100%;
}
.donate-modal h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1d3060;
}
.donate-modal h4:has(+ .inputs-list) {
  margin-bottom: 11px;
  margin-top: 20px;
}
.donate-modal label {
  font-size: 14px;
  color: #546286;
}
.donate-modal .frequency-amount-section h3 {
  margin-bottom: 16px;
}
.donate-modal .other-amount-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.donate-modal .other-amount-label .currency {
  order: 1;
}
.donate-modal .other-amount-label .other-amount-input {
  flex: 1;
}
.donate-modal .donation-purpose-text {
  margin-bottom: 16px !important;
  font-weight: 700 !important;
  font-style: Bold;
  font-size: 18px;
  text-align: center;
}
.donate-modal .dedication-checkbox-wrapper {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: start;
}
.donate-modal .dedication-checkbox-wrapper input[type=checkbox] {
  grid-column: 1;
  grid-row: 1;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #32baf6;
  cursor: pointer;
}
.donate-modal .dedication-checkbox-wrapper label {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 15px;
  color: #1d3060;
  font-weight: 700 !important;
  cursor: pointer;
}
.donate-modal .dedication-checkbox-wrapper .dedication-description {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 15px;
  line-height: 18px;
  color: #546286;
}
.donate-modal .dedication-section {
  border-top: 1px solid #b0b6c7;
  padding-top: 18px;
}
.donate-modal .dedication-section-title {
  font-size: 20px;
  line-height: 28px;
  color: #1d3060;
  margin: 0 0 14px;
  text-align: left;
}
.donate-modal .dedication-top-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
  align-items: start;
}
@media (max-width: 640px) {
  .donate-modal .dedication-top-fields {
    grid-template-columns: 1fr;
  }
}
.donate-modal .dedication-top-fields .field-wrapper {
  min-width: 0;
}
.donate-modal .dedication-top-fields .field-wrapper input,
.donate-modal .dedication-top-fields .field-wrapper select {
  width: 100%;
  box-sizing: border-box;
}
.donate-modal .dedication-section .field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.donate-modal .dedication-section .field-wrapper label {
  font-size: 14px;
  color: #546286;
}
.donate-modal .dedication-section .field-wrapper input,
.donate-modal .dedication-section .field-wrapper select,
.donate-modal .dedication-section .field-wrapper textarea {
  border-radius: 8px;
  border: 1px solid #b0b6c7;
  font-size: 15px;
  color: #1d3060;
  background: #fff;
  font-family: inherit;
  resize: none;
  overflow-y: hidden;
}
.donate-modal .dedication-section .field-wrapper input,
.donate-modal .dedication-section .field-wrapper select {
  height: 45px;
  padding: 0 10px;
}
.donate-modal .dedication-section .field-wrapper textarea {
  min-height: 40px;
  padding: 10px 14px;
  line-height: 1.5;
}
.donate-modal .dedication-section .field-wrapper .error-msg {
  font-size: 12px;
  color: #ff8888;
  margin-top: 4px;
  line-height: 1.4;
}
.donate-modal .dedication-notification {
  margin-bottom: 14px;
}
.donate-modal .dedication-notification-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #546286;
}
.donate-modal .dedication-top-fields input:focus,
.donate-modal .dedication-top-fields select:focus,
.donate-modal .dedication-top-fields textarea:focus,
.donate-modal .dedication-recipient-fields input:focus,
.donate-modal .dedication-recipient-fields select:focus,
.donate-modal .dedication-recipient-fields textarea:focus {
  border: 2px solid rgb(26, 115, 232);
  outline: none;
}
.donate-modal .dedication-top-fields input:focus,
.donate-modal .dedication-top-fields select:focus,
.donate-modal .dedication-recipient-fields input:focus,
.donate-modal .dedication-recipient-fields select:focus {
  padding: 0 12px;
}
.donate-modal .dedication-top-fields textarea:focus,
.donate-modal .dedication-recipient-fields textarea:focus {
  padding: 10px 14px;
}
.donate-modal .dedication-notification-toggle {
  display: flex;
  border: 1px solid #b0b6c7;
  border-radius: 8px;
  overflow: hidden;
}
.donate-modal .dedication-notification-toggle input {
  display: none;
}
.donate-modal .dedication-notification-toggle label {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  color: #546286;
  font-size: 15px;
  font-weight: 600 !important;
}
.donate-modal .dedication-notification-toggle label:last-child {
  border-right: 0;
}
.donate-modal .dedication-notification-toggle input:checked + label {
  background: rgba(50, 186, 246, 0.12);
  color: #1d3060;
  border-color: #32baf6;
  box-shadow: inset 0 0 0 1px #32baf6;
  border-radius: 7px;
}
.donate-modal .dedication-recipient-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.donate-modal .frequency-amount-section > div,
.donate-modal .frequency-amount-section > .frequencies,
.donate-modal .frequency-amount-section > .amounts,
.donate-modal .frequency-amount-section > .other-amount-wrapper,
.donate-modal .frequency-amount-section > .dedication-checkbox-wrapper {
  margin-bottom: 22px;
}
.donate-modal .frequency-amount-section > div:last-child,
.donate-modal .frequency-amount-section > .frequencies:last-child,
.donate-modal .frequency-amount-section > .amounts:last-child,
.donate-modal .frequency-amount-section > .other-amount-wrapper:last-child,
.donate-modal .frequency-amount-section > .dedication-checkbox-wrapper:last-child {
  margin-bottom: 0;
}
.donate-modal .frequencies {
  display: flex;
  border: 1px solid #b0b6c7;
  border-radius: 8px;
  overflow: hidden;
}
.donate-modal .frequencies input {
  display: none;
}
.donate-modal .frequencies label {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  background: #fff;
  color: #546286;
}
.donate-modal .frequencies input:checked + label {
  background: #32baf6;
  color: #1d3060;
  font-weight: 600;
}
.donate-modal .amounts {
  display: flex;
  gap: 8px;
}
.donate-modal .amounts input {
  display: none;
}
.donate-modal .amounts label {
  flex: 1;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #b0b6c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #546286;
}
.donate-modal .amounts input:checked + label {
  background: #32baf6;
  color: #1d3060;
  font-weight: 700;
  border-color: #32baf6;
}
.donate-modal .other-amount-wrapper {
  height: 57px;
  border: 1px solid #b0b6c7;
  border-radius: 8px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.donate-modal .other-amount-wrapper .currency {
  font-size: 18px;
  font-weight: 700;
  color: #546286;
}
.donate-modal .other-amount-wrapper input {
  border: 0;
  outline: none;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  color: #546286;
  width: 100%;
}
.donate-modal .other-amount-wrapper .error-msg {
  margin-top: 5px;
  color: #ff8888 !important;
  margin-right: 30px;
}
.donate-modal .inputs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.donate-modal .inputs-list .country-dd,
.donate-modal .inputs-list .donor-type-toggle {
  flex: 0 0 100%;
  height: 100%;
}
.donate-modal .inputs-list li {
  position: relative;
  width: 100%;
}
.donate-modal .inputs-list li.half-width {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
}
.donate-modal .inputs-list li:has(#google-address-donate-modal), .donate-modal .inputs-list li:has(#company_address) {
  flex: 0 0 100%;
  max-width: 100%;
}
.donate-modal .inputs-list li input,
.donate-modal .inputs-list li select {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #b0b6c7;
  padding: 0 10px;
  font-size: 16px;
  color: #1d3060;
  background: #fff;
}
.donate-modal .inputs-list li.private-person-fields input:focus,
.donate-modal .inputs-list li.private-person-fields select:focus,
.donate-modal .inputs-list li.private-person-fields textarea:focus, .donate-modal .inputs-list li.company-fields input:focus,
.donate-modal .inputs-list li.company-fields select:focus,
.donate-modal .inputs-list li.company-fields textarea:focus {
  border: 2px solid rgb(26, 115, 232);
  outline: none;
  padding: 0 12px;
}
.donate-modal .inputs-list li .places-autocomplete-container {
  width: 100%;
  margin-top: 3px;
}
.donate-modal .inputs-list li .places-autocomplete-container gmp-place-autocomplete {
  width: 100%;
  border-radius: 8px;
  height: 40px;
  border: 1px solid #b0b6c7;
  background: #fff !important;
  background-color: #fff !important;
}
.donate-modal .inputs-list li .places-autocomplete-container gmp-place-autocomplete input {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #b0b6c7;
  padding: 0 16px;
  font-size: 16px;
  color: #1d3060;
  background: #fff;
  font-family: var(--dm-font-body);
}
.donate-modal .inputs-list li .places-autocomplete-container gmp-place-autocomplete::part(input) {
  color: #1d3060 !important;
}
.donate-modal .inputs-list li .places-autocomplete-container gmp-place-autocomplete::part(input-container), .donate-modal .inputs-list li .places-autocomplete-container gmp-place-autocomplete::part(container) {
  background: #fff !important;
  background-color: #fff !important;
}
.donate-modal .inputs-list li.private-person-fields .places-autocomplete-container gmp-place-autocomplete::part(input):focus, .donate-modal .inputs-list li.company-fields .places-autocomplete-container gmp-place-autocomplete::part(input):focus {
  outline: none;
}
.donate-modal .inputs-list li .error-msg {
  font-size: 12px;
  color: #ff8888;
  margin-top: 4px;
  line-height: 1.4;
}
.donate-modal .agreements {
  margin: revert;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.donate-modal .agreements li {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 10px;
  align-items: start;
}
.donate-modal .agreements li.hidden, .donate-modal .agreements li.tax-checkbox-field.hidden {
  display: none !important;
}
.donate-modal .agreements li input[type=checkbox] {
  grid-column: 1;
  grid-row: 1;
  margin: 2px 0 0;
}
.donate-modal .agreements li label {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}
.donate-modal .agreements li .error-msg {
  grid-column: 1/-1;
  grid-row: 2;
  font-size: 12px;
  color: #ff8888 !important;
  margin: 0;
  line-height: 1.4;
}
.donate-modal .donor-type-options {
  display: flex;
  border: 1px solid #b0b6c7;
  border-radius: 8px;
  overflow: hidden;
}
.donate-modal .donor-type-options input {
  display: none;
}
.donate-modal .donor-type-options label {
  flex: 1;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  background: #fff;
  color: #546286;
}
.donate-modal .donor-type-options input:checked + label {
  background: #ebf8fe;
  color: #1d3060;
  border: 1px solid #32baf6;
  border-radius: 7px;
}
.donate-modal .next-btn,
.donate-modal button[type=submit],
.donate-modal .btn.primary.btn-tax-redirect {
  /* Button */
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 24px;
  gap: 10px;
  height: 40px;
  background: #32baf6;
  border-radius: 999px;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
  color: #002f5e;
  font-family: var(--dm-font-ui) !important;
}
.donate-modal [data-step="3"] {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  /* Credit Checkout */
  /* PayPal Button Container */
  /* PayPal Loader */
  /* Secured Payment Image */
  /* Loader */
}
.donate-modal [data-step="3"] iframe {
  width: 100% !important;
  min-height: 800px;
  height: calc(100vh - 68px - 48px);
  border: 0;
  display: block;
}
.donate-modal [data-step="3"]:has(iframe:not([style*="display: none"])) {
  overflow-y: auto;
  min-height: 100%;
}
.donate-modal [data-step="3"]:has(iframe:not([style*="display: none"])) iframe {
  min-height: 800px;
  height: calc(100vh - 68px - 48px);
}
.donate-modal [data-step="3"] h3 {
  margin-bottom: 8px;
}
.donate-modal [data-step="3"] h4 {
  margin-bottom: 8px;
}
.donate-modal [data-step="3"] .donation-summary {
  text-align: center;
  font-size: 18px;
  color: #546286;
  margin-bottom: 24px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}
.donate-modal [data-step="3"] .donation-summary .currency {
  font-weight: 700;
}
.donate-modal [data-step="3"] .donation-summary .final-amount {
  font-weight: 700;
  color: #1d3060;
}
.donate-modal [data-step="3"] .cant-pay-msg {
  text-align: center;
  color: #546286;
  padding: 24px;
}
.donate-modal [data-step="3"] .credit-checkout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}
.donate-modal [data-step="3"] .credit-checkout .credit-toggle {
  width: 100%;
  max-width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #32baf6;
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  user-select: none;
  order: 1;
}
.donate-modal [data-step="3"] .credit-checkout .credit-toggle:hover {
  opacity: 0.9;
}
.donate-modal [data-step="3"] .credit-checkout #credit-toggle:checked + .credit-toggle {
  opacity: 0.5;
}
.donate-modal [data-step="3"] .credit-checkout .powered-by-tz {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
  order: 2;
  position: relative;
  z-index: 1;
}
.donate-modal [data-step="3"] .credit-checkout .powered-by-tz em {
  font-size: 11px;
  color: #546286;
  font-family: var(--dm-font-light);
}
.donate-modal [data-step="3"] .credit-checkout .powered-by-tz img {
  max-width: 85px;
  height: auto;
}
.donate-modal [data-step="3"] .credit-checkout .card-details {
  width: 100%;
  background: #f0f3f6;
  border-radius: 16px;
  padding: 0;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.5s ease, visibility 0s 0.5s;
  position: relative;
  z-index: 10;
  margin-top: 0;
  margin-bottom: 0;
  order: 3;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.donate-modal [data-step="3"] .credit-checkout #credit-toggle:checked ~ .card-details {
  max-height: 2000px;
  min-height: auto;
  opacity: 1;
  visibility: visible;
  padding: 0;
  margin-top: 16px;
  margin-bottom: 16px;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.5s ease, visibility 0s 0s;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
  position: relative;
  z-index: 11;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .card-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .card-details-header h4 {
  margin: 0;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: #1d3060;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .card-details-header .thawte {
  max-width: 150px;
  width: auto;
  height: auto;
  display: block;
  margin: 0;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper h4 {
  margin-bottom: 20px;
  text-align: left;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .flex {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .flex > .field-wrapper {
  flex: 1;
  min-width: 140px;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper.small {
  flex: 0 0 calc(33.333% - 8px);
  min-width: 80px;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper.holder_id {
  display: none;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper.holder_id.shown {
  display: flex;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper label {
  font-size: 14px;
  color: #546286;
  font-weight: 500;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper input,
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper select {
  width: 100%;
  height: 48px;
  border: 1px solid #b0b6c7;
  background: #fff;
  color: #1d3060;
  border-radius: 55px;
  padding: 0 20px;
  font-size: 16px;
  transition: box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 0 0 0 transparent;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper input:focus, .donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper input:active,
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper select:focus,
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper select:active {
  outline: none;
  border-color: #32baf6;
  box-shadow: 0 0 0 2px rgba(50, 186, 246, 0.2);
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper input.error,
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper select.error {
  border-color: #ff8888;
  box-shadow: 0 0 0 2px rgba(255, 136, 136, 0.2);
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper .error-msg {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 12px;
  color: #ff8888;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper button[type=submit] {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  background: #32baf6;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper button[type=submit]:hover {
  opacity: 0.9;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .applepay_button {
  width: 100%;
  height: 48px;
  margin-top: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .applepay_button .applepay_logo {
  height: 20px;
  width: auto;
}
.donate-modal [data-step="3"] .credit-checkout #credit-toggle:checked ~ .card-details .wrapper {
  opacity: 1;
  background: #e6e8e9;
}
.donate-modal [data-step="3"] #paypal-button-modal-wrapper {
  width: 100%;
  margin: 24px 0;
  position: relative;
  min-height: 200px;
}
.donate-modal [data-step="3"] #paypal-button-modal {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.donate-modal [data-step="3"] .paypal-loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.donate-modal [data-step="3"] .paypal-loader-container.show {
  opacity: 1;
  pointer-events: all;
}
.donate-modal [data-step="3"] .paypal-loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(50, 186, 246, 0.2);
  border-top-color: #32baf6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.donate-modal [data-step="3"] .secured-payment-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 0;
}
.donate-modal [data-step="3"] .secured-payment-img img {
  max-width: 200px;
  height: auto;
}
.donate-modal [data-step="3"] .loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.donate-modal [data-step="3"] .loader-container .loader {
  width: 40px;
  height: 40px;
  border: 3px solid #32baf6;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.donate-modal [data-step="3"].loading .loader-container {
  opacity: 1;
  pointer-events: all;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.donate-modal [data-step="4"] {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.donate-modal [data-step="4"] svg {
  height: 24px;
  fill: #11c533;
}
.donate-modal [data-step="4"] button {
  background: none;
  text-decoration: underline;
  color: #1d3060;
  font-size: 16px;
}
@media (max-width: 640px) {
  .donate-modal .wrapper {
    max-width: 100%;
  }
  #credit-toggle:checked ~ .donate-modal [data-step="3"] .credit-checkout .card-details {
    max-height: none;
    overflow-y: auto;
  }
  .donate-modal [data-step="3"] .credit-checkout .card-details .wrapper {
    padding: 20px 16px;
  }
  .donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields {
    gap: 16px;
  }
  .donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .flex {
    flex-direction: column;
    gap: 16px;
  }
  .donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .flex > .field-wrapper {
    min-width: 100%;
  }
  .donate-modal [data-step="3"] .credit-checkout .card-details .wrapper .fields .field-wrapper.small {
    flex: 1 1 100%;
    min-width: 100%;
  }
}
.donate-modal .places-autocomplete-container {
  color-scheme: light only;
  --gmpx-color-surface: #fff;
  --gmpx-color-on-surface: #1d3060;
  --gmpx-color-on-surface-variant: #546286;
  --gmpx-color-primary: #32baf6;
  --gmpx-font-family-base: "CircularXXWeb-Regular", sans-serif;
  --gmpx-font-size-base: 16px;
}
.donate-modal .places-autocomplete-container gmp-place-autocomplete {
  color-scheme: light only;
  --gmpx-color-surface: #fff;
  --gmpx-color-on-surface: #1d3060;
  --gmpx-color-on-surface-variant: #546286;
  --gmpx-color-primary: #32baf6;
  display: block;
  width: 100%;
}
.donate-modal .places-autocomplete-container gmp-place-autocomplete::part(input) {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
  color: #1d3060;
  color-scheme: light only;
  font-family: "CircularXXWeb-Regular", sans-serif;
  box-sizing: border-box;
}
.donate-modal .places-autocomplete-container gmp-place-autocomplete::part(input):focus {
  outline: none;
}
.donate-modal .places-autocomplete-container gmp-place-autocomplete::part(predictions-list) {
  background: #fff !important;
  background-color: #fff !important;
  color-scheme: light only;
  border: 1px solid #b0b6c7;
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.donate-modal .places-autocomplete-container gmp-place-autocomplete::part(prediction-item) {
  background: #fff !important;
  background-color: #fff !important;
  color: #1d3060;
  padding: 10px 16px;
}
.donate-modal .places-autocomplete-container gmp-place-autocomplete::part(prediction-item):hover, .donate-modal .places-autocomplete-container gmp-place-autocomplete::part(prediction-item-focused) {
  background: #f5f5f5 !important;
  background-color: #f5f5f5 !important;
}

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