@charset "UTF-8";
/**
 * WCDP
 */
/**
 * Imports
 */
/* Text meant only for screen readers. */
.progress-wrapper {
  --height-progress: 5px;
  width: 100%;
}
.progress-wrapper .progress-time {
  text-align: right;
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--e-global-color-lighter);
}
.progress-wrapper .progress-bar {
  height: var(--height-progress);
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}
.progress-wrapper .progress-bar .progress-thermometer {
  height: 100%;
  border-radius: 12px;
}
.progress-wrapper .progress-bar .thermometer-bg {
  background-color: #f0f0f0;
}
.progress-wrapper .progress-bar .thermometer-fg {
  background-color: var(--e-global-color-accent);
  margin-top: calc(-1 * var(--height-progress));
  animation: wihelp2-progress 1s ease-in;
}
.progress-wrapper.progress-style-1 .progress-label-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.progress-wrapper.progress-style-1 .progress-label-wrapper .progress-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  color: var(--e-global-color-lighter);
}
.progress-wrapper.progress-style-1 .progress-label-wrapper .progress-label .progress-goal-price {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  color: var(--e-global-color-dark);
}
.progress-wrapper.progress-style-1 .progress-label-wrapper .fundraising-progress {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  color: var(--e-global-color-accent);
}
.progress-wrapper.progress-style-2 .progress-label-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.progress-wrapper.progress-style-2 .progress-label-wrapper .progress-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  color: var(--e-global-color-lighter);
}
.progress-wrapper.progress-style-2 .progress-label-wrapper .progress-label .progress-goal-price {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  color: var(--e-global-color-dark);
}
.progress-wrapper.progress-style-2 .progress-label-wrapper .fundraising-progress {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  color: var(--e-global-color-accent);
}

@keyframes wihelp2-progress {
  0% {
    width: 0;
  }
}
/**
 * Donations
 */
article.donation {
  overflow: hidden;
}
article.donation:hover .donation-image img {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
article.donation .donation-image {
  position: relative;
  overflow: hidden;
  will-change: transform;
}
article.donation .donation-image img {
  position: absolute;
  top: 0;
  object-fit: cover;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  transform: scale(1);
  will-change: transform;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
article.donation .entry-category-wrapper {
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--e-global-color-border);
}
article.donation .entry-category-wrapper .entry-category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}
article.donation .entry-category-wrapper .entry-category a:hover {
  text-decoration: underline;
}
article.donation .entry-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  line-height: 1.3;
  margin: 0 0 15px;
  padding: 0;
}
article.donation .entry-title a {
  color: var(--e-global-color-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s all ease;
}
article.donation .entry-title a:hover {
  text-decoration: underline;
}
article.donation .entry-content {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 16px;
  font-size: 1rem;
}
article.donation .button-wrapper {
  display: inline-flex;
  padding: 13px 35px 13px;
  border-radius: 3px;
  background-color: var(--e-global-color-primary);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  color: #FFFFFF;
}
article.donation .button-wrapper:hover {
  background-color: var(--e-global-color-primary);
}

article.donation-grid {
  border: 1px solid var(--e-global-color-border);
}
article.donation-grid .donation-image {
  padding-top: 58%;
}
article.donation-grid .donation-image img {
  transition: 0.5s ease all;
}
article.donation-grid .donation-content {
  padding: 19px 50px 40px;
}
@media (max-width: 767px) {
  article.donation-grid .donation-content {
    padding: 20px 20px;
  }
}
article.donation-grid .donation-content .progress-wrapper {
  margin-bottom: 27px;
}
article.donation-grid .donation-content .button-wrapper {
  width: 100%;
}
article.donation-grid .progress-wrapper {
  margin-bottom: 20px;
}

article.donation-modern {
  position: relative;
}
article.donation-modern .donation-image {
  position: relative;
  overflow: hidden;
  padding-top: 109%;
  will-change: transform;
}
article.donation-modern .donation-image img {
  object-fit: cover;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  transform: scale(1);
  will-change: transform;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: 0.5s ease all;
}
article.donation-modern .entry-category-wrapper {
  position: absolute;
  top: 40px;
  left: 50px;
}
@media (max-width: 880px) {
  article.donation-modern .entry-category-wrapper {
    top: 30px;
    left: 30px;
  }
}
@media (max-width: 767px) {
  article.donation-modern .entry-category-wrapper {
    top: 20px;
    left: 15px;
  }
}
article.donation-modern .donation-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 80px 50px 30px;
}
@media (max-width: 880px) {
  article.donation-modern .donation-content {
    padding: 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  article.donation-modern .donation-content {
    padding: 20px 15px 20px;
  }
}
article.donation-modern .donation-content:before {
  content: "";
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 21.35%, #000000 93.23%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
article.donation-modern .donation-content .donation-content-wrapper {
  position: relative;
  z-index: 1;
}
article.donation-modern .entry-category-wrapper {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}
article.donation-modern .entry-category-wrapper .entry-category a {
  color: #FFFFFF;
  padding: 5px 9px;
}
article.donation-modern .entry-category-wrapper .entry-category a:hover {
  text-decoration: none;
}
article.donation-modern .entry-title {
  margin-bottom: 15px;
}
article.donation-modern .entry-title a {
  color: #ffffff;
}
article.donation-modern .progress-wrapper .progress-label-wrapper .progress-label {
  color: var(--e-global-color-lighter);
}
article.donation-modern .progress-wrapper .progress-label-wrapper .progress-label .progress-goal-price {
  color: #FFFFFF;
}

article.donation-list {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--e-global-color-border);
}
@media (max-width: 767px) {
  article.donation-list {
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}
.donation-position-right article.donation-list {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .donation-position-right article.donation-list {
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}
article.donation-list .donation-image {
  width: 50%;
  padding-top: 35%;
}
@media (max-width: 767px) {
  article.donation-list .donation-image {
    width: 100%;
    padding-top: 60%;
  }
}
article.donation-list .donation-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
  padding: 0 0 0 30px;
}
@media (max-width: 767px) {
  article.donation-list .donation-content {
    padding: 20px 0 0;
  }
}
article.donation-list .progress-wrapper {
  margin-bottom: 20px;
}

.single-donation div.donation .donation-images-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery {
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.25s ease-in-out;
  position: relative;
  width: 100%;
  margin-right: 0;
  float: left;
  --swiper-navigation-size: 14px;
  --swiper-navigation-color: #fff;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .swiper-button {
  border-radius: 50px;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  display: block;
  width: 20px;
  z-index: 80;
  text-align: center;
  font-size: 0;
  color: var(--e-global-color-dark);
  top: 20px;
  right: 20px;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__trigger img {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
  font-family: "wihelp2-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
  font-size: 18px;
  font-size: 1.125rem;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
  color: var(--e-global-color-primary);
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
  width: 100%;
  height: 551px;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 10px;
  border-radius: 3px;
}
@media (max-width: 425px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-viewport {
    width: 395px;
  }
}
@media (max-width: 375px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-viewport {
    width: 345px;
  }
}
@media (max-width: 320px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-viewport {
    width: 290px;
    height: 290px;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper {
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-viewport img {
  overflow: hidden;
  width: 100%;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-control-thumbs {
  margin: 0;
  display: flex;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-control-thumbs:first-child {
  margin-left: 0;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-control-thumbs li {
  list-style: none;
  cursor: pointer;
  display: block !important;
  position: relative;
  width: 80px;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-control-thumbs li img {
  object-fit: cover;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 3px;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-control-thumbs li:hover img {
  opacity: 1;
  border-color: var(--e-global-color-primary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
  border-color: var(--e-global-color-primary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-horizontal .flex-control-thumbs img {
  max-width: 100%;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-horizontal .woocommerce-product-gallery__image > img {
  background-color: var(--body-color);
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .woocommerce-product-gallery__image > img {
  background-color: var(--body-color);
}
@media (min-width: 426px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .label-wrapper {
    left: 125px;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .flex-control-thumbs {
  margin: 0;
}
@media (min-width: 426px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .flex-control-thumbs li {
    margin-left: 20px !important;
    margin-bottom: 20px !important;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .flex-control-thumbs li:last-child {
  margin-bottom: 0;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .swiper-thumbs-vertical {
  width: 100%;
}
@media (min-width: 426px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .swiper-thumbs-vertical {
    margin-top: 0;
    order: -1;
    width: 120px;
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .swiper-thumbs-vertical .swiper-button {
  left: calc(50% - 5px);
  right: auto;
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .swiper-thumbs-vertical .swiper-button-next {
  top: 15px;
  bottom: auto;
}
@media (max-width: 425px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .swiper-thumbs-vertical .swiper-button-next {
    right: 0;
    left: auto;
    top: calc(50% - 5px);
    transform: rotate(0deg);
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .swiper-thumbs-vertical .swiper-button-prev {
  top: auto;
  bottom: 15px;
}
@media (max-width: 425px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .swiper-thumbs-vertical .swiper-button-prev {
    right: auto;
    left: 0;
    top: calc(50% - 5px);
    transform: rotate(0deg);
  }
}
@media (min-width: 426px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery.woocommerce-product-gallery-vertical .flex-viewport {
    width: calc(100% - 120px);
    margin-bottom: 0;
    margin-right: auto;
    border-radius: 20px;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-gallery .woocommerce-product-gallery__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  border: none;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  flex-basis: 50%;
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 425px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    flex-basis: 100%;
    width: 100%;
    padding: 0;
  }
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:last-child {
    margin: 0;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  width: 100%;
}
@media (max-width: 425px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper {
  display: flex;
  flex-wrap: wrap;
  border: none;
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  flex-basis: 100%;
  min-width: 630px;
  min-height: 630px;
}
@media (max-width: 1200px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    min-width: 530px;
    min-height: 530px;
  }
}
@media (max-width: 1024px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    min-width: 430px;
    min-height: 430px;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
  display: block;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 425px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
    width: 395px;
  }
}
@media (max-width: 375px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
    width: 345px;
  }
}
@media (max-width: 320px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
    width: 290px;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a img {
  width: 100%;
}
@media (max-width: 375px) {
  .single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    min-width: 0;
    min-height: 0;
  }
}
.single-donation div.donation .donation-images-wrapper .woocommerce-product-gallery-sticky .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:last-child a {
  margin-bottom: 0;
}
.single-donation div.donation .product-video-360 {
  position: absolute;
  z-index: 111;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  top: 18px;
  bottom: auto;
  right: 60px;
  left: auto;
}
.single-donation div.donation .product-video-360 .product-video-360__btn {
  cursor: pointer;
  color: var(--e-global-color-text);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-flex;
}
.single-donation div.donation .product-video-360 .product-video-360__btn:hover {
  text-decoration: none;
}
.single-donation div.donation .product-video-360 .product-video-360__btn:hover.btn-video i {
  color: var(--e-global-color-primary);
}
.single-donation div.donation .product-video-360 .product-video-360__btn span {
  display: block;
  line-height: 30px;
}
.single-donation div.donation .product-video-360 .product-video-360__btn.btn-video span {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.single-donation div.donation .product-video-360 .product-video-360__btn.btn-video span:focus {
  background-color: #f1f1f1;
  color: #21759b;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  display: block;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
.single-donation div.donation .product-video-360 .product-video-360__btn.btn-video i {
  font-size: 20px;
  font-size: 1.25rem;
  transition: 0.4s ease all;
  color: var(--e-global-color-dark);
}
.single-donation div.donation .product-video-360 .product-video-360__btn.btn-360 span {
  display: none;
}
.single-donation div.donation .product-video-360 .product-video-360__btn i {
  font-size: 24px;
  font-size: 1.5rem;
}
.single-donation div.donation .entry-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.single-donation div.donation .entry-info a {
  color: var(--e-global-color-dark);
}
.single-donation div.donation .entry-info a:hover {
  text-decoration: underline;
}
.single-donation div.donation .entry-info span {
  color: var(--e-global-color-text);
}
.single-donation div.donation .entry-info .entry-category,
.single-donation div.donation .entry-info .entry-author,
.single-donation div.donation .entry-info .entry-posted {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: var(--e-global-color-dark);
  letter-spacing: 0;
}
.single-donation div.donation .entry-info .entry-category {
  font-weight: 700;
}
.single-donation div.donation .entry-info .entry-author:before {
  font-family: "wihelp2-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
  color: var(--e-global-color-lighter);
}
.single-donation div.donation .entry-info .entry-posted:before {
  font-family: "wihelp2-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
  color: var(--e-global-color-lighter);
}
.single-donation div.donation .product_title {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--e-global-color-dark);
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .single-donation div.donation .product_title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.single-donation div.donation .donation-content .content-donation-wrapper {
  padding: 40px 80px 60px;
  background-color: #FCFAF2;
  margin-bottom: 35px;
}
@media (max-width: 1024px) {
  .single-donation div.donation .donation-content .content-donation-wrapper {
    padding: 30px 30px;
  }
}
@media (max-width: 767px) {
  .single-donation div.donation .donation-content .content-donation-wrapper {
    padding: 20px 20px;
  }
}
.single-donation div.donation .donation-content .progress-wrapper {
  margin-bottom: 20px;
}
.single-donation div.donation .donation-content .progress-wrapper .progress-label {
  font-size: 20px;
  font-size: 1.25rem;
}
.single-donation div.donation .donation-content .progress-wrapper .progress-label .progress-goal-price {
  font-size: 20px;
  font-size: 1.25rem;
}
.single-donation div.donation .donation-content .progress-wrapper .fundraising-progress {
  font-size: 20px;
  font-size: 1.25rem;
}
.single-donation div.donation .donation-content .progress-wrapper .progress-time {
  font-size: 20px;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .single-donation div.donation .donation-content .progress-wrapper .progress-label {
    font-size: 16px;
    font-size: 1rem;
  }
  .single-donation div.donation .donation-content .progress-wrapper .progress-label .progress-goal-price {
    font-size: 16px;
    font-size: 1rem;
  }
  .single-donation div.donation .donation-content .progress-wrapper .fundraising-progress {
    font-size: 16px;
    font-size: 1rem;
  }
  .single-donation div.donation .donation-content .progress-wrapper .progress-time {
    font-size: 16px;
    font-size: 1rem;
  }
}
.single-donation div.donation .donation-content .woocommerce-product-details__short-description {
  display: inline-block;
}
.single-donation div.donation .donation-content .woocommerce-product-details__short-description p:last-child {
  margin: 0;
}
.single-donation div.donation .donation-content .woocommerce-additional-information,
.single-donation div.donation .donation-content .woocommerce-description {
  margin-top: 30px;
  display: inline-block;
  width: 100%;
}
.single-donation div.donation .donation-content .woocommerce-additional-information {
  border-top: 1px solid var(--e-global-color-border);
  padding-top: 30px;
}
.single-donation div.donation .donation-content .woocommerce-additional-information h2 {
  font-size: 28px;
  font-size: 1.75rem;
}
.single-donation div.donation .donation-content blockquote {
  border: none;
  padding: 0 0 0 135px;
}
@media (max-width: 768px) {
  .single-donation div.donation .donation-content blockquote {
    padding-left: 80px;
  }
}
.single-donation div.donation .donation-content blockquote:before {
  top: 0;
}

.single-donation .form-donation-wrapper {
  margin-top: 30px;
}

.form-donation-wrapper .wcdp-error-message {
  margin: 20px 0;
}
.form-donation-wrapper .wcdp_options input:checked + .wcdp-button-label {
  background-color: var(--e-global-color-accent);
  border-color: var(--e-global-color-accent);
}
.form-donation-wrapper .wcdp_options input:checked + .wcdp-button-label:after {
  content: unset;
}
.form-donation-wrapper .wcdp_options .wcdp-button-label {
  display: flex;
  height: 100%;
  padding: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--e-global-color-border);
}
.form-donation-wrapper .wcdp-step {
  display: none;
  cursor: default;
}
.form-donation-wrapper .wcdp-step.active {
  display: block;
}
.form-donation-wrapper .checkout-form {
  padding: 0 0;
  border: none;
}
.form-donation-wrapper .wcdp-order-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 25px 25px;
}
.form-donation-wrapper .wcdp-order-wrapper .donation-total {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  color: var(--e-global-color-dark);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: calc(22 / 18);
  letter-spacing: 0;
}
@media (max-width: 568px) {
  .form-donation-wrapper .wcdp-order-wrapper .donation-total {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.form-donation-wrapper .wcdp-order-wrapper .donation-total .donation-total-price {
  color: var(--e-global-color-accent);
  margin-left: 3px;
}
.form-donation-wrapper .elementor-button-wrapper .elementor-button {
  background-color: var(--e-global-color-accent);
  padding: 1.3rem 2.1rem;
  border: none;
}
.form-donation-wrapper .elementor-button-wrapper .lds-ellipsis {
  position: relative;
  flex: 1;
  height: 13px;
}
.form-donation-wrapper .elementor-button-wrapper .lds-ellipsis div {
  background-color: var(--e-global-color-accent);
}
.form-donation-wrapper .wcdp-button-back {
  color: var(--e-global-color-dark);
  padding: 2px 5px;
}
.form-donation-wrapper .wcdp-button-back .elementor-button-content-wrapper {
  gap: 10px;
}
.form-donation-wrapper .wcdp-button-back .elementor-button-content-wrapper .elementor-button-icon i {
  font-size: 17px;
  font-size: 1.0625rem;
  color: var(--e-global-color-dark);
  transition: 0.3s ease all;
}
.form-donation-wrapper .wcdp-button-back:hover .elementor-button-content-wrapper .elementor-button-icon i {
  color: #FFFFFF;
}
.form-donation-wrapper div h3, .form-donation-wrapper div .wcdp-variation-heading {
  display: block;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: calc(24 / 20);
  letter-spacing: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--e-global-color-border);
  margin-bottom: 20px;
  color: var(--e-global-color-dark);
  text-transform: capitalize;
}
.form-donation-wrapper div p {
  margin-bottom: 0;
}
.form-donation-wrapper div .order_review_heading {
  border-bottom: none;
  padding-bottom: 0;
}
.form-donation-wrapper .wcdp_variation {
  margin-bottom: 30px;
}
.form-donation-wrapper .wcdp_variation .donation-amount-wrapper {
  width: 220px;
  height: 58px;
  display: flex;
  overflow: hidden;
  position: relative;
}
@media (max-width: 568px) {
  .form-donation-wrapper .wcdp_variation .donation-amount-wrapper {
    height: 50px;
    width: 180px;
  }
}
.form-donation-wrapper .wcdp_variation .donation-amount-wrapper .donation-symbol {
  display: flex;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: calc(24 / 16);
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  position: absolute;
  color: #ffffff;
  background-color: var(--e-global-color-accent);
}
@media (max-width: 568px) {
  .form-donation-wrapper .wcdp_variation .donation-amount-wrapper .donation-symbol {
    left: 12px;
  }
}
.form-donation-wrapper .wcdp_variation .donation-amount-wrapper .wcdp-donation-amount {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  letter-spacing: 0;
  width: 100%;
  border-radius: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 15px 15px 15px 52px;
  text-align: left;
  color: var(--e-global-color-dark);
  -moz-appearance: textfield;
}
.form-donation-wrapper .wcdp_variation .donation-amount-wrapper .wcdp-donation-amount::-webkit-outer-spin-button, .form-donation-wrapper .wcdp_variation .donation-amount-wrapper .wcdp-donation-amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media (max-width: 568px) {
  .form-donation-wrapper .wcdp_variation .donation-amount-wrapper .wcdp-donation-amount {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 12px 12px 12px 45px;
  }
}
.form-donation-wrapper .wcdp_variation .wcdp-amount .amount-wrapper {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.form-donation-wrapper .wcdp_variation .wcdp-amount #wcdp-range {
  margin-top: 20px;
  appearance: none;
  cursor: pointer;
}
.form-donation-wrapper .wcdp_variation .wcdp-amount #wcdp-range::-webkit-slider-runnable-track {
  appearance: none;
  height: 5px;
  background: var(--e-global-color-border);
  background-size: var(--background-size, 0%) 100%;
  background-repeat: no-repeat;
  border-radius: 3px;
}
.form-donation-wrapper .wcdp_variation .wcdp-amount #wcdp-range::-webkit-slider-thumb {
  appearance: none;
  width: 17px;
  height: 17px;
  cursor: pointer;
  position: relative;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  background: var(--e-global-color-primary);
  border: 2px solid white;
}
.form-donation-wrapper .wcdp_variation .donation_options {
  list-style: none;
  margin: 15px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-donation-wrapper .wcdp_variation .donation_options .donation-button-amount {
  font-size: 16px;
  font-size: 1rem;
  border-radius: 3px;
  padding: 9px 20px;
  background-color: transparent;
  color: var(--e-global-color-dark);
  font-weight: 700;
  letter-spacing: 0;
  transition: 0.3s all ease;
  border: 1px solid var(--e-global-color-border);
}
@media (max-width: 568px) {
  .form-donation-wrapper .wcdp_variation .donation_options .donation-button-amount {
    padding: 7px 15px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.form-donation-wrapper .wcdp_variation .donation_options .donation-button-amount:hover, .form-donation-wrapper .wcdp_variation .donation_options .donation-button-amount.choose {
  background-color: var(--e-global-color-accent);
  border-color: var(--e-global-color-accent);
  color: #ffffff;
}
.form-donation-wrapper .woocommerce-additional-fields {
  margin-top: 30px;
}
.form-donation-wrapper .woocommerce-shipping-fields {
  margin-top: 30px;
}
.form-donation-wrapper .woocommerce-billing-fields label,
.form-donation-wrapper .woocommerce-additional-fields label,
.form-donation-wrapper .woocommerce-shipping-fields label {
  margin-bottom: 15px;
  color: var(--e-global-color-dark);
  text-transform: capitalize;
  letter-spacing: 0;
}
.form-donation-wrapper .woocommerce-billing-fields input, .form-donation-wrapper .woocommerce-billing-fields textarea, .form-donation-wrapper .woocommerce-billing-fields select,
.form-donation-wrapper .woocommerce-additional-fields input,
.form-donation-wrapper .woocommerce-additional-fields textarea,
.form-donation-wrapper .woocommerce-additional-fields select,
.form-donation-wrapper .woocommerce-shipping-fields input,
.form-donation-wrapper .woocommerce-shipping-fields textarea,
.form-donation-wrapper .woocommerce-shipping-fields select {
  background-color: #ffffff;
  color: #333333;
  transition: 0.4s all ease;
}
.form-donation-wrapper .woocommerce-billing-fields input:focus, .form-donation-wrapper .woocommerce-billing-fields textarea:focus, .form-donation-wrapper .woocommerce-billing-fields select:focus,
.form-donation-wrapper .woocommerce-additional-fields input:focus,
.form-donation-wrapper .woocommerce-additional-fields textarea:focus,
.form-donation-wrapper .woocommerce-additional-fields select:focus,
.form-donation-wrapper .woocommerce-shipping-fields input:focus,
.form-donation-wrapper .woocommerce-shipping-fields textarea:focus,
.form-donation-wrapper .woocommerce-shipping-fields select:focus {
  border-color: var(--e-global-color-primary);
}
.form-donation-wrapper .woocommerce-billing-fields .form-row,
.form-donation-wrapper .woocommerce-additional-fields .form-row,
.form-donation-wrapper .woocommerce-shipping-fields .form-row {
  margin-bottom: 20px;
}
.form-donation-wrapper .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 30px;
}
.form-donation-wrapper .button-donation-wrapper {
  margin-bottom: 20px;
}

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