@charset "UTF-8";
body.no-scroll {
  overflow: hidden !important;
  height: 100dvh;
}
.donation-form-wrapper {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 999999;
}
.donation-form-wrapper.active {
  display: flex !important;
}
body.admin-bar .donation-form-wrapper {
  padding-top: 18rem;
}
body:not(.admin-bar) .donation-form-wrapper {
  padding-top: 15rem;
}
.donation-form-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 25, 0.85);
  backdrop-filter: blur(0.3rem);
  z-index: 1;
}
.donation-form-container {
  position: relative;
  z-index: 2;
  background: #fff;
  /*padding: 3rem;*/
  border-radius: 1.6rem;
  width: 95%;
  max-width: 119.6rem;
  box-sizing: border-box;
  /* doar înălțimea max */
  max-height: calc(100dvh - 18rem);
  /* FĂRĂ overflow aici */
  overflow: hidden;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
}
/* ===========================
   6. SCROLL INTERIOR — DOAR AICI
   =========================== */
.donation-form-scroll {
  max-height: calc(100dvh - 24rem);
  overflow: hidden;
  overflow-y: auto;
}
/* ===========================
   7. POPUP CONTENT STYLE
   =========================== */
.popup-content-shop {
  background: #fff;
  width: 100%;
}
.popup-layout {
  display: flex;
  width: 100%;
  gap: 0;
}
.popup-layout .popup-item-title {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  color: #000;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.popup-item-description {
  /*font-weight:bold;*/
  margin-bottom: 1rem;
}
.popup-item-description-secondary, .popup-item-description {
  color: #8F8F8F;
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  /*margin-bottom:2.1rem;*/
}
.popup-item-description-secondary:last-child, .popup-item-description:last-child {
  margin-bottom: 0rem;
}
.popup-left-price {
  display: flex;
  padding-top: 2.7rem;
}
.popup-price-value {
  background-color: #001141;
  padding: 1rem 1.6rem;
  box-sizing: border-box;
  font-family: "Outfit", Arial;
  font-size: 3.6rem;
  line-height: 1;
  border-radius: 5rem;
  /* min-width: 11.3rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
/* LEFT COLUMN */
.popup-col-left {
  /*width: 40%;*/
  background-color: #FBFBFB;
  max-width: 37.8rem;
  width: 100%;
  padding: 3rem 3.6rem;
  box-sizing: border-box;
}
.popup-left-image-wrapper {
  position: relative;
  width: 30.9rem;
  height: 23.8rem;
  border-radius: 2rem;
  background-size: cover;
  background-position: center center;
  margin-bottom: 3.7rem;
}
.popup-left-image-main {
  width: 100%;
  height: 100%;
  max-width: 100%;
  background-size: cover;
  border-radius: 2rem;
  background-position: center center;
}
.popup-left-image-absolute {
  position: absolute;
  width: 13.3rem;
  height: 9.6rem;
  left: -1rem;
  bottom: -3rem;
}
/* RIGHT COLUMN */
.popup-col-right {
  max-width: calc(100% - 37.8rem);
  width: 100%;
  background: #F2F2F2;
  padding: 2.8rem;
  padding-bottom: 5.2rem;
  box-sizing: border-box;
  padding-left: 10rem;
  display: flex;
  flex-direction: column;
}
/* header */
.popup-right-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.9rem;
}
/* stepper */
.popup-stepper {
  display: flex;
  gap: 0.8rem;
}
.popup-step {
  width: 1.5rem;
  height: 0.4rem;
  border-radius: 2rem;
  background: #DBDBDB;
  transition: all 0.25s ease-in-out;
}
.popup-step.active {
  width: 5.4rem;
  background: #FDA400;
}
.popup-step.completed {
  background: #CA9748;
}
.popup-right-steps {
  flex: 1;
  /* ocupă tot spațiul rămas */
  display: flex;
  flex-direction: column;
}
/* steps content */
.popup-right-steps .popup-step-content {
  display: none;
}
.popup-step-content.active {
  display: flex;
  /* important! */
}
.popup-step-content {
  flex: 1;
  /* ocupă toată înălțimea disponibilă */
  display: none;
  /* ascuns default */
  flex-direction: column;
  /* pentru a împinge butonul la final */
  justify-content: flex-start;
}
/* generic form elements */
.popup-form-group {
  margin-bottom: 2rem;
}
.popup-input {
  width: 100%;
  padding: 1rem;
  border-radius: 0.8rem;
  border: 0.1rem solid #ccc;
}
.popup-btn-next {
  margin-top: auto;
  width: 100%;
  padding: 1.2rem;
  border-radius: 1rem;
  background: #fda400;
  font-weight: bold;
  cursor: pointer;
}
.popup-left-header-close a.popup-close-btn, .popup-right-header-close a.popup-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-left-header-close a.popup-close-btn .href_text, .popup-right-header-close a.popup-close-btn .href_text {
  font-size: 1.6rem;
  font-family: "Open Sans", Arial;
  line-height: 1;
  font-weight: 700;
  padding: 0.9rem 1.3rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  border-radius: 5rem;
  transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  min-height: 4rem;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  color: #fbfbfb;
  background-color: #011339;
}
.popup-left-header-close a.popup-close-btn .donate_ico, .popup-right-header-close a.popup-close-btn .donate_ico {
  width: 4rem;
  height: 4rem;
  font-size: 2.2rem;
  font-weight: 400;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  border-radius: 5rem;
  transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  background-color: #011339;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  color: #fbfbfb;
}
.popup-left-header-close a.popup-close-btn:hover .donate_ico, .popup-right-header-close a.popup-close-btn:hover .donate_ico, .popup-left-header-close a.popup-close-btn:hover .href_text, .popup-right-header-close a.popup-close-btn:hover .href_text {
  color: #011339;
  background-color: #fff;
}
.popup-right-header-close a.popup-close-btn:focus .donate_ico, .popup-left-header-close a.popup-close-btn:focus .donate_ico, .popup-left-header-close a.popup-close-btn:focus .href_text, .popup-right-header-close a.popup-close-btn:focus .href_text {
  color: #011339;
  background-color: #fff;
}
.popup-left-header-close, .popup-right-header-close {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 0.6rem;
}
.popup-step-title {
  font-weight: 400;
  font-size: 6rem;
  color: #000d23;
  font-family: "Caveat Brush", Arial;
  margin-bottom: 1.2rem;
}
.popup-step-body {
  margin-bottom: 1.9rem;
  max-width: 54.5rem;
  width: 100%;
}
.popup-step-body p {
  color: #000D23;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 2.4rem;
  margin-bottom: 1.6rem;
}
.popup-step-body p b, .popup-step-body p strong {
  font-weight: bold;
}
.popup-step-body p:last-of-type {
  margin-bottom: 0rem;
}
.popup-left-header-close {
  display: none;
}
.popup-col-right .dropdown {
  display: flex;
  align-items: center;
  background: #fff;
  border: 0.1rem solid #D7DAE3;
  border-radius: 1.6rem;
  cursor: pointer;
  padding: 0.4rem 1.1rem;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.popup-col-right .dropdown.active .toggle_drp {
  transform: rotate(180deg);
}
.popup-col-right .dropdown .toggle_drp {
  margin-left: auto;
  flex-grow: 0;
  padding-right: 0.5rem;
  transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
}
.popup-col-right .dropdown img {
  width: 2.8rem;
  height: 2.8rem;
  margin-right: 0.9rem;
  display: none !important;
}
.popup-col-right .dropdown span {
  flex-grow: 1;
  font-size: 2rem;
}
.popup-col-right .dropdown #selected-country {
  font-size: 1.4rem;
  color: #565966;
  line-height: 2.1rem;
}
.popup-col-right .widget_input_row.more_margin_bottom {
  margin-bottom: 1.5rem;
}
.popup-col-right .widget_input_row {
  margin-bottom: 0.5rem;
  position: relative;
}
.popup-col-right .dropdown-list {
  display: none;
  position: absolute;
  background: white;
  /*    top: 4.6rem;*/
  width: calc(100% - 0.2rem);
  border: 0.1rem solid #D7DAE3;
  border-top: none;
  max-height: 20rem;
  overflow-y: auto;
  border-radius: 0 0 0.8rem 0.8rem;
  z-index: 100;
  top: calc(100% - 1.2rem);
}
.popup-col-right .dropdown-list.open {
  display: block;
}
.popup-col-right .dropdown-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-col-right .dropdown-item:hover {
  background: #f0f0f0;
}
.popup-col-right .dropdown-item img {
  width: 2.8rem;
  height: 2.8rem;
  margin-right: 0.9rem;
  /*display:none !important;*/
}
.popup-col-right .dropdown-item span {
  font-size: 1.4rem;
  color: #565966;
  line-height: 2.1rem;
}
.popup-step-content.step-1 .popup-form-groups {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 54.5rem;
  width: 100%;
}
.popup-step-content .popup-form-groups_wrp {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}
.popup-step-content.step-1 .popup-form-groups .popup-form-groups_wrp {
  max-width: calc(50% - 3rem);
  width: 100%;
}
.popup-step-content .popup-form-groups_wrp .row_label {
  color: #000D23;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Open Sans", Arial;
  line-height: 1.3;
  margin-bottom: 0.9rem;
}
.popup-step-content .popup-form-groups_wrp .widget_input_row {
  max-width: 100%;
  width: 100%;
}
.popup-step-content .popup-error {
  color: #CC0F0F;
  font-family: "Open Sans", Arial;
  font-size: 1.4rem;
  line-height: 2.1rem;
  /*padding-top:1.4rem;*/
}
.popup-step-content .popup-form-groups_wrp .widget_input_row .dropdown-selected {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Open Sans";
  color: #666;
}
.popup-footer-continue {
  position: relative;
  max-width: 60rem;
  width: 100%;
  margin-top: auto;
}
.popup-footer-continue .popup_jar_icon {
  position: absolute;
  left: 0rem;
  bottom: 1.4rem;
  width: 9.4rem;
  height: 11rem;
}
.popup-footer-continue .popup_jar_icon img {
  max-width: 100%;
  height: auto;
}
.popup-footer-continue .popup_light_icon {
  position: absolute;
  left: -6.5rem;
  bottom: 0rem;
  width: 21.7rem;
  height: 13.7rem;
}
.popup-footer-continue .popup_light_icon img {
  max-width: 100%;
  height: auto;
}
.popup-footer-continue .popup_star_gray_icon {
  position: absolute;
  right: -3.4rem;
  bottom: 9.6rem;
  width: 25.4rem;
  height: 15.7rem;
}
.popup-footer-continue .popup_star_gray_icon img {
  max-width: 100%;
  height: auto;
}
.popup-footer-continue .popup-btn-next {
  max-width: 19.1rem;
  width: 100%;
  border: 0rem;
  font-size: 1.3rem;
  line-height: 1;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: inherit;
}
.popup-btn-next:disabled {
  background: #FFD477;
}
.popup-btn-next {
  transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
}
.popup-btn-next:hover {
  opacity: 0.8;
}
.step2-choice-wrapper {
  background: #001034;
  border-radius: 5rem;
  padding: 0.4rem;
  display: inline-flex;
  gap: 0.4rem;
}
.step2-choice {
  padding: 0.9rem 2.4rem;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  border-radius: 5rem;
  background: #001034;
  color: #B5D1DF;
  /* gri-albastru */
  cursor: inherit;
  transition: all 0.25s ease-in-out;
  user-select: none;
}
.step2-choice.active {
  background: #FDA400;
  /* galben */
  color: #fff;
}
.popup-form-groups.country_phone {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.popup-form-groups.country_phone .popup-form-groups_wrp.country_div {
  max-width: 11rem;
  width: 100%;
}
.popup-form-groups.country_phone .popup-form-groups_wrp.country_div .dropdown-flag {
  display: none;
}
.popup-form-groups.country_phone .popup-form-groups_wrp.phone_div {
  max-width: calc(100% - 12rem - 1.4rem);
  width: 100%;
}
.popup-step-content .widget_input_row .row_input input.phone {
  margin-top: 0;
}
.popup-step-content .widget_input_row .row_input input {
  border: 0.1rem solid #D7DAE3;
  padding: 1.3rem 1.6rem;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  font-size: 1.4rem !important;
  font-weight: 600;
  -webkit-border-radius: 1.6rem;
  -moz-border-radius: 1.6rem;
  border-radius: 1.6rem;
  color: #000 !important;
}
.popup-step-content .widget_input_row .row_input {
  display: flex;
}
.popup-step-content .widget_input_row .row_input input::placeholder {
  font-size: 1.4rem !important;
  font-weight: 400;
  color: #666 !important;
}
.popup-step-content .list-item .radio_wrp .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
  background-color: #ede6e5;
  border: 0.1rem solid #666;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  border-radius: 0.4rem;
}
.popup-step-content .list-item .radio_wrp:hover input ~ .checkmark {
  background-color: #ccc;
}
.popup-step-content .list-item .radio_wrp input:checked ~ .checkmark {
  background-color: #fda400;
  border-color: #fda400;
}
.popup-step-content .list-item .radio_wrp .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.popup-step-content .list-item .radio_wrp input:checked ~ .checkmark:after {
  display: block;
}
.popup-step-content .list-item .radio_wrp .checkmark:after {
  left: 0.6rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1rem;
  border: solid white;
  border-width: 0 0.2rem 0.2rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popup-step-content .widget_input_row.donation_type {
  padding-top: 2rem;
}
.popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp {
  flex-direction: column;
}
.popup-step-content .widget_input_row .donation_type_wrp {
  display: flex;
}
.popup-step-content .widget_input_row .donation_type_wrp .list-item {
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}
.popup-step-content .widget_input_row .donation_type_wrp .list-item label {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  width: 100%;
}
.popup-step-content .widget_input_row .donation_type_wrp .list-item .radio_wrp {
  display: block;
  position: relative;
  width: 2rem;
  height: 2rem;
  margin-top: 0.2rem;
  cursor: pointer;
  font-size: 2.2rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.popup-step-content .widget_input_row .donation_type_wrp .list-item label .list-item-label {
  max-width: calc(100% - 3rem);
  width: 100%;
  margin-left: auto;
}
.popup-step-content .widget_input_row .donation_type_wrp .list-item.disabled .checkmark, .popup-step-content .widget_input_row .donation_type_wrp .list-item.disabled:hover .checkmark {
  background-color: #ccc;
}
.popup-step-content .widget_input_row .donation_type_wrp .list-item.disabled .radio_wrp:hover input ~ .checkmark {
  background-color: #ccc;
}
.popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item {
  margin-bottom: 1.2rem;
  position: relative;
}
.popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item:last-child {
  margin-bottom: 0rem;
}
.popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item label .list-item-label {
  font-weight: 400;
  font-size: 1.4rem;
  padding-top: 0.2rem;
  color: #666;
}
.popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item label .list-item-label a {
  text-decoration: underline !important;
  color: #FDA400;
  font-size: 1.4rem;
}
.popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item label .list-item-label a:hover {
  color: #FDA400;
}
.popup-step-content .popup_step_3_groups {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.popup-step-content .popup_step_3_groups .popup_fn_group {
  max-width: calc(50% - 1.4rem);
  width: 100%;
}
.popup-step-content .popup_step_3_groups .popup_phn_group {
  max-width: calc(50% - 1.4rem);
  width: 100%;
}
.popup-step-content .popup_step_3_groups .popup_ln_group {
  max-width: calc(50% - 1.4rem);
  width: 100%;
}
.popup-step-content .popup_step_3_groups .popup_email_group {
  max-width: calc(50% - 1.4rem);
  width: 100%;
}
.prices_usd_lb {
  position: absolute;
  left: 0rem;
  bottom: 0rem;
  color: #666666;
  font-size: 1.4rem;
  font-family: "Open Sans", Arial;
}
.prices_usd_us_lb {
  position: absolute;
  left: 0rem;
  bottom: -3.4rem;
  color: #666666;
  font-size: 1.1rem;
  font-family: "Open Sans", Arial;
  line-height: 1.2;
}
.prices_usd_us_lb a {
  text-decoration: underline !important;
  color: #FDA400;
  font-size: inherit;
}
.input-error {
  border-color: #ff4d4d !important;
}
.popup-step-content .step_4_boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.popup-step-content .step_4_boxes .donate_box {
  padding: 1.6rem;
  box-sizing: border-box;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  max-width: calc(50% - 0.8rem);
  width: 100%;
  min-height: 18rem;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.popup-step-content .step_4_boxes .donate_box .box_download_link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-step-content .step_4_boxes .donate_box .box_download_link a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-step-content .step_4_boxes .donate_box .box_download_link a .href_text {
  font-size: 1.6rem;
  font-family: "Open Sans", Arial;
  line-height: 1;
  font-weight: 700;
  padding: 0.9rem 2rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  border-radius: 5rem;
  transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  min-height: 4rem;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  background-color: #fff;
}
.popup-step-content .step_4_boxes .donate_box .box_download_link a .download_ico {
  width: 4rem;
  height: 4rem;
  font-size: 1.8rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  border-radius: 5rem;
  transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.popup-step-content .step_4_boxes .donate_box .box_download_desc {
  margin-top: auto;
}
.popup-step-content .step_4_boxes .donate_box .box_download_desc h3 {
  font-size: 2.4rem;
  font-family: "Open Sans";
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}
.popup-step-content .step_4_boxes .donate_box .box_download_desc h3 span {
  color: #1E1E1E;
  font-size: inherit;
  font-weight: inherit;
}
.popup-step-content .step_4_boxes .donate_box.box_download {
  background-color: #FF8B07;
}
.popup-step-content .step_4_boxes .donate_box.box_download .box_download_link a .download_ico {
  transform: rotate(-90deg);
}
.popup-step-content .step_4_boxes .donate_box.box_download .box_download_link a .href_text, .popup-step-content .step_4_boxes .donate_box.box_download .box_download_link a .download_ico {
  color: #FF8B07;
}
.popup-step-content .step_4_boxes .donate_box.box_light_a_path {
  background-color: #FDA400;
}
.popup-step-content .step_4_boxes .donate_box.box_light_a_path .box_download_link a .download_ico {
  transform: rotate(130deg);
}
.popup-step-content .step_4_boxes .donate_box.box_light_a_path .box_download_link a .download_ico, .popup-step-content .step_4_boxes .donate_box.box_light_a_path .box_download_link a .href_text {
  color: #FDA400;
}
.popup-step-content .step_4_boxes .donate_box.box_share {
  background-color: #728CB8;
}
.popup-step-content .step_4_boxes .donate_box.box_share .box_download_link a .download_ico {
  transform: rotate(130deg);
}
.popup-step-content .step_4_boxes .donate_box.box_share .box_download_link a .download_ico, .popup-step-content .step_4_boxes .donate_box.box_share .box_download_link a .href_text {
  color: #728CB8;
}
.popup-step-content .step_4_boxes .donate_box.box_about {
  background-color: #FA4616;
}
.popup-step-content .step_4_boxes .donate_box.box_about .box_download_link a .download_ico {
  transform: rotate(130deg);
}
.popup-step-content .step_4_boxes .donate_box.box_about .box_download_link a .download_ico, .popup-step-content .step_4_boxes .donate_box.box_about .box_download_link a .href_text {
  color: #FA4616;
}
.popup-step-content .step_4_boxes .donate_box .box_download_link a:hover {
  opacity: 0.8;
}
.popup-step-content .step_4_boxes .donate_box.box_download {
  background-image: url(popup_rocket.png);
  background-repeat: no-repeat;
  background-position: right top;
}
.popup-step-content .step_4_boxes .donate_box.box_light_a_path {
  background-image: url(popup_star_yellow.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 1.2rem) 2.2rem;
}
.popup-step-content .step_4_boxes .donate_box.box_share {
  background-image: url(popup_love.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 2.9rem) 2.9rem;
}
.popup-step-content .step_4_boxes .donate_box.box_about {
  background-image: url(popup_pens.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 2rem) 3rem;
}
body.scaled-fix {
  transform: scale(var(--win-fix));
  transform-origin: top left;
}
body.scaled-fix {
  width: calc(100% / var(--win-fix));
  height: calc(100% / var(--win-fix));
  overflow-x: hidden;
}
@media (max-width: 144rem) {
  .device-tablet body.admin-bar .donation-form-wrapper, .device-phone body.admin-bar .donation-form-wrapper {
    padding-top: 13rem;
  }
  body.device-tablet:not(.admin-bar) .donation-form-wrapper, body.device-phone:not(.admin-bar) .donation-form-wrapper {
    padding-top: 13rem;
  }
  .device-phone .donation-form-container, .device-tablet .donation-form-container {
    max-height: calc(100dvh - 13rem);
  }
  .device-phone .donation-form-scroll, .device-tablet .donation-form-scroll {
    max-height: calc(100dvh - 18rem);
  }
  .device-phone .popup-left-image-wrapper, .device-tablet .popup-left-image-wrapper {
    height: 15rem;
    margin-bottom: 1.5rem;
  }
  .device-phone .popup-price-value, .device-tablet .popup-price-value {
    font-size: 1.9rem;
  }
  .device-tablet .popup-step-title, .device-phone .popup-step-title {
    font-size: 3.5rem;
  }
  .device-phone .popup-step-content .popup-form-groups_wrp .widget_input_row .dropdown-selected, .device-tablet .popup-step-content .popup-form-groups_wrp .widget_input_row .dropdown-selected {
    font-size: 1.2rem;
  }
  .device-phone .popup-col-right .dropdown .toggle_drp, .device-tablet .popup-col-right .dropdown .toggle_drp {
    font-size: 1.5rem;
  }
  .device-tablet .popup-col-right .dropdown-item, .device-phone .popup-col-right .dropdown-item {
    padding: 0.5rem 1.1rem;
  }
  .device-phone .popup-col-right .dropdown-item span, .device-tablet .popup-col-right .dropdown-item span {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .device-phone .popup-footer-continue .popup_light_icon, .device-tablet .popup-footer-continue .popup_light_icon {
    width: 15rem;
    height: auto;
  }
  .device-phone .step2-choice, .device-tablet .step2-choice {
    padding: 0.5rem 1.2rem;
    font-weight: 400;
  }
  .device-phone .popup-step-content .widget_input_row .row_input input, .device-tablet .popup-step-content .widget_input_row .row_input input {
    padding: 0.6rem 1.2rem;
  }
  .device-phone .popup-step-content .popup-form-groups_wrp .row_label, .device-tablet .popup-step-content .popup-form-groups_wrp .row_label {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .device-phone .popup-step-content .widget_input_row.donation_type, .device-tablet .popup-step-content .widget_input_row.donation_type {
    padding-top: 0rem;
  }
  .device-tablet .popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item, .device-phone .popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item {
    margin-bottom: 0.6rem;
  }
  .device-phone .popup-step-content .widget_input_row .donation_type_wrp .list-item .radio_wrp, .device-tablet .popup-step-content .widget_input_row .donation_type_wrp .list-item .radio_wrp {
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .device-phone .popup-step-content .list-item .radio_wrp .checkmark, .device-tablet .popup-step-content .list-item .radio_wrp .checkmark {
    width: 1.5rem;
    height: 1.5rem;
  }
  .device-phone .popup-step-content .list-item .radio_wrp .checkmark:after, .device-tablet .popup-step-content .list-item .radio_wrp .checkmark:after {
    top: 0rem;
    left: 0.4rem;
  }
  .device-phone .popup-step-content .widget_input_row .row_input input, .device-tablet .popup-step-content .widget_input_row .row_input input {
    font-size: 1.2rem;
  }
  .device-phone .popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item label .list-item-label, .device-tablet .popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item label .list-item-label {
    line-height: 1.2;
    font-size: 1.2rem;
  }
  .device-phone .popup-step-content .step_4_boxes, .device-tablet .popup-step-content .step_4_boxes {
    max-width: 60rem;
  }
  .device-phone .popup-step-content .step_4_boxes .donate_box, .device-tablet .popup-step-content .step_4_boxes .donate_box {
    min-height: 12.2rem;
  }
  .device-phone .popup-step-content .step_4_boxes .donate_box .box_download_link a .href_text, .device-tablet .popup-step-content .step_4_boxes .donate_box .box_download_link a .href_text {
    min-height: 2.5rem;
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }
  .device-tablet .popup-step-content .step_4_boxes .donate_box .box_download_link a .download_ico, .device-phone .popup-step-content .step_4_boxes .donate_box .box_download_link a .download_ico {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.3rem;
  }
  .device-phone .popup-step-content .step_4_boxes .donate_box .box_download_desc h3, .device-tablet .popup-step-content .step_4_boxes .donate_box .box_download_desc h3 {
    font-size: 1.4rem;
  }
  .device-phone .popup-step-content .step_4_boxes .donate_box.box_download, .device-tablet .popup-step-content .step_4_boxes .donate_box.box_download {
    background-size: 9rem;
  }
  .device-tablet .popup-step-content .step_4_boxes .donate_box.box_light_a_path, .device-phone .popup-step-content .step_4_boxes .donate_box.box_light_a_path {
    background-size: 6.4rem;
  }
  .device-phone .popup-step-content .step_4_boxes .donate_box.box_share, .device-tablet .popup-step-content .step_4_boxes .donate_box.box_share {
    background-size: 7.3rem;
  }
  .device-tablet .popup-step-content .step_4_boxes .donate_box.box_about, .device-phone .popup-step-content .step_4_boxes .donate_box.box_about {
    background-size: 10rem;
  }
}
@media (max-width: 100rem) {
  .device-phone .donation-form-wrapper, .device-tablet .donation-form-wrapper {
    position: relative;
  }
  body.device-phone.no-scroll.popup-shop-opened, body.device-tablet.no-scroll.popup-shop-opened {
    overflow: auto !important;
    height: auto;
  }
  .device-tablet.popup-shop-opened .main_footer, .device-phone.popup-shop-opened .main_footer, .device-tablet.popup-shop-opened .entry-content.wp-block-post-content, .device-phone.popup-shop-opened .entry-content.wp-block-post-content {
    display: none;
  }
  .device-tablet .donation-form-container, .device-phone .donation-form-container {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
  }
  .device-phone .donation-form-scroll, .device-tablet .donation-form-scroll {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
  }
  .device-phone .popup-layout, .device-tablet .popup-layout {
    flex-direction: column;
  }
  .device-phone .popup-col-left, .device-tablet .popup-col-left {
    max-width: 100%;
    width: 100%;
    padding: 2.5rem;
    box-sizing: border-box;
    background-color: #fbfbfb;
  }
  .device-phone .popup-col-right, .device-tablet .popup-col-right {
    max-width: 100%;
    width: 100%;
  }
  .device-phone .popup-left-image-wrapper, .device-tablet .popup-left-image-wrapper {
    height: 23.8rem;
    margin-bottom: 1.5rem;
    max-width: 30rem;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
  .device-phone .popup-layout .popup-item-title, .device-tablet .popup-layout .popup-item-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .device-phone .popup-item-description-secondary, .popup-item-description, .device-tablet .popup-item-description-secondary {
    color: #8f8f8f;
    font-size: 1.4rem;
    margin-bottom: 2.1rem;
  }
  .device-phone .popup-left-price, .device-tablet .popup-left-price {
    padding-top: 2.1rem;
  }
  .device-phone .popup-price-value, .device-tablet .popup-price-value {
    font-size: 3.6rem;
    padding: 1.4rem;
  }
  .device-tablet .popup-col-right .popup-right-header-close, .device-phone .popup-col-right .popup-right-header-close {
    display: none;
  }
  .device-phone .popup-col-right .popup-right-header, .device-tablet .popup-col-right .popup-right-header {
    display: none;
  }
  .device-phone .popup-right-steps .popup-step-content, .device-tablet .popup-right-steps .popup-step-content {
    display: flex;
  }
  .device-phone .popup-left-header-close, .device-tablet .popup-left-header-close {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
  }
  .device-tablet .popup-col-right, .device-phone .popup-col-right {
    padding: 4.3rem 2.8rem;
  }
  .device-phone .popup-step-title, .device-tablet .popup-step-title {
    font-size: 4rem;
  }
  .device-tablet .popup-step-content.step-1 .popup-step-title, .device-phone .popup-step-content.step-1 .popup-step-title {
    order: 1;
  }
  .device-phone .popup-step-content.step-1 .popup-form-groups, .device-tablet .popup-step-content.step-1 .popup-form-groups {
    order: 3;
    margin-bottom: 3.7rem;
    flex-direction: column;
    max-width: 100%;
  }
  .device-tablet .popup-step-content.step-1 .popup-step-body, .device-phone .popup-step-content.step-1 .popup-step-body {
    order: 2;
  }
  .device-phone .popup-step-content.step-1 .popup-form-groups .popup-form-groups_wrp, .device-tablet .popup-step-content.step-1 .popup-form-groups .popup-form-groups_wrp {
    max-width: 100%;
  }
  .device-tablet .popup-step-content.step-1 .popup-form-groups .popup-form-groups_wrp:first-of-type, .device-phone .popup-step-content.step-1 .popup-form-groups .popup-form-groups_wrp:first-of-type {
    margin-bottom: 1.5rem;
  }
  .device-phone .popup-footer-continue .popup_jar_icon, .device-tablet .popup-footer-continue .popup_jar_icon {
    position: relative;
  }
  .device-phone .popup-step-content.step-1 .popup-footer-continue, .device-tablet .popup-step-content.step-1 .popup-footer-continue {
    order: 4;
    margin-top: 4rem;
    max-width: 100%;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    padding-bottom: 2rem;
  }
  .device-tablet .popup-step-content.step-1 .popup-footer-continue .popup-btn-next, .device-phone .popup-step-content.step-1 .popup-footer-continue .popup-btn-next {
    display: none;
  }
  .device-phone .popup-step-content .popup-form-groups_wrp .row_label, .device-tablet .popup-step-content .popup-form-groups_wrp .row_label {
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
  }
  .device-tablet .popup-step-content .popup-form-groups_wrp .widget_input_row .dropdown-selected, .device-phone .popup-step-content .popup-form-groups_wrp .widget_input_row .dropdown-selected {
    font-size: 1.6rem;
  }
  .device-phone .popup-step-body p, .device-tablet .popup-step-body p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 1.6rem;
  }
  .device-phone .popup-step-content.step-2 .popup-step-title, .device-tablet .popup-step-content.step-2 .popup-step-title {
    order: 1;
  }
  .device-phone .popup-step-content.step-2 .popup-form-groups, .device-tablet .popup-step-content.step-2 .popup-form-groups {
    order: 3;
    margin-bottom: 3.7rem;
    padding-top: 3.8rem;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .device-phone .popup-step-content.step-2 .popup-step-body, .device-tablet .popup-step-content.step-2 .popup-step-body {
    order: 2;
  }
  .device-phone .popup-step-content.step-2 .popup-footer-continue, .device-tablet .popup-step-content.step-2 .popup-footer-continue {
    max-width: 100%;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    order: 4;
  }
  .device-phone .popup-step-content.step-2 .popup-footer-continue .popup-btn-next, .device-tablet .popup-step-content.step-2 .popup-footer-continue .popup-btn-next {
    display: none;
  }
  .device-phone .popup-footer-continue .popup_light_icon, .device-tablet .popup-footer-continue .popup_light_icon {
    display: none;
  }
  .popup-footer-continue .popup_star_gray_icon {
    position: relative;
    left: 50%;
    bottom: 0;
    margin-left: -12.1rem;
  }
  .device-phone .popup-footer-continue, .device-tablet .popup-footer-continue {
    max-width: 100%;
  }
  .device-phone .step2-choice, .device-tablet .step2-choice {
    padding: 0.9rem 2.4rem;
    font-weight: 800;
  }
  .device-phone .popup-step-content .widget_input_row .row_input input, .device-tablet .popup-step-content .widget_input_row .row_input input {
    padding: 1.3rem 1.6rem;
  }
  .device-phone .popup-step-content.step-3 .popup-step-title, .device-tablet .popup-step-content.step-3 .popup-step-title {
    order: 1;
  }
  .device-phone .popup-step-content.step-3 .popup_acc, .device-tablet .popup-step-content.step-3 .popup_acc {
    order: 4;
  }
  .device-phone .popup-step-content.step-3 .popup_step_3_groups, .device-tablet .popup-step-content.step-3 .popup_step_3_groups {
    order: 3;
    margin-bottom: 4rem;
  }
  .device-tablet .popup-step-content.step-3 .popup-step-body, .device-phone .popup-step-content.step-3 .popup-step-body {
    order: 2;
  }
  .device-phone .popup-step-content.step-3 .popup-footer-continue, .device-tablet .popup-step-content.step-3 .popup-footer-continue {
    order: 5;
    margin-top: 4rem;
    max-width: 100%;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    padding-bottom: 2rem;
  }
  .device-phone .popup-step-content.step-3 .popup_step_3_groups, .device-tablet .popup-step-content.step-3 .popup_step_3_groups {
    flex-direction: column;
  }
  .device-phone .popup_ln_group, .device-tablet .popup_ln_group, .device-phone .popup_fn_group, .device-tablet .popup_fn_group {
    margin-bottom: 4rem;
  }
  .device-phone .popup_phn_group, .device-tablet .popup_phn_group {
    margin-bottom: 4rem;
  }
  .device-phone .popup-step-content .popup_step_3_groups .popup_email_group, .device-tablet .popup-step-content .popup_step_3_groups .popup_email_group, .device-phone .popup-step-content .popup_step_3_groups .popup_ln_group, .device-tablet .popup-step-content .popup_step_3_groups .popup_ln_group, .device-phone .popup-step-content .popup_step_3_groups .popup_phn_group, .device-tablet .popup-step-content .popup_step_3_groups .popup_phn_group, .device-phone .popup-step-content .popup_step_3_groups .popup_fn_group, .device-tablet .popup-step-content .popup_step_3_groups .popup_fn_group {
    max-width: 100%;
  }
  .device-phone .popup-col-right .step-3 .country_div .dropdown, .device-tablet .popup-col-right .step-3 .country_div .dropdown {
    padding: 0.8rem 1.1rem;
  }
  .device-phone .popup-step-content.step-3 .popup_step_3_groups:nth-of-type(2), .device-tablet .popup-step-content.step-3 .popup_step_3_groups:nth-of-type(2) {
    margin-bottom: 0rem;
  }
  .device-phone .popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item, .device-tablet .popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item {
    margin-bottom: 1.2rem;
  }
  .device-phone .popup-step-content .widget_input_row .donation_type_wrp .list-item .radio_wrp, .device-tablet .popup-step-content .widget_input_row .donation_type_wrp .list-item .radio_wrp {
    font-size: 1.4rem;
    height: 2rem;
    width: 2rem;
  }
  .device-phone .popup-step-content .list-item .radio_wrp .checkmark, .device-tablet .popup-step-content .list-item .radio_wrp .checkmark {
    width: 2rem;
    height: 2rem;
  }
  .device-phone .popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item label .list-item-label, .device-tablet .popup-step-content .widget_input_row.donation_type.checkbox_type .donation_type_wrp .list-item label .list-item-label {
    font-size: 1.4rem;
    line-height: inherit;
  }
  .device-tablet .popup-step-content .list-item .radio_wrp .checkmark:after, .device-phone .popup-step-content .list-item .radio_wrp .checkmark:after {
    top: 0.2rem;
    left: 0.6rem;
  }
  .device-phone .popup-right-steps .popup-step-content.step-3 .popup-footer-continue, .device-tablet .popup-right-steps .popup-step-content.step-3 .popup-footer-continue {
    display: flex;
    flex-direction: column;
  }
  .device-tablet .popup-right-steps .popup-step-content.step-3 .popup-btn-next {
    order: 1;
    margin-top: 3.7rem;
    margin-bottom: 2.4rem;
    margin-left: auto;
    margin-right: auto;
  }
  .device-phone .prices_usd_lb, .device-tablet .prices_usd_lb {
    position: relative;
    order: 2;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #666;
  }
  .device-phone .prices_usd_us_lb, .device-tablet .prices_usd_us_lb {
    order: 3;
    position: relative;
    bottom: 0rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #666;
  }
  .device-phone .popup-step-content.step-4, .device-tablet .popup-step-content.step-4 {
    display: none;
  }
  .device-phone .from_netopia .popup-step-content, .device-tablet .from_netopia .popup-step-content {
    display: none !important;
  }
  .device-tablet .from_netopia .popup-content-shop .popup-col-left, .device-phone .from_netopia .popup-content-shop .popup-col-left {
    padding-bottom: 0rem;
  }
  .device-tablet .from_netopia .popup-content-shop .popup-col-right, .device-phone .from_netopia .popup-content-shop .popup-col-right, .device-tablet .from_netopia .popup-content-shop .popup-col-left, .device-phone .from_netopia .popup-content-shop .popup-col-left {
    background-color: #fbfbfb;
  }
  .device-tablet .from_netopia .popup-content-shop .popup-left-header-close, .device-phone .from_netopia .popup-content-shop .popup-left-header-close {
    margin-bottom: 0rem;
  }
  .device-tablet .from_netopia .popup-content-shop .popup-col-left .popup-left-text, .device-phone .from_netopia .popup-content-shop .popup-col-left .popup-left-text, .device-tablet .from_netopia .popup-content-shop .popup-col-left .popup-left-image-wrapper, .device-phone .from_netopia .popup-content-shop .popup-col-left .popup-left-image-wrapper {
    display: none;
  }
  .device-tablet .from_netopia .popup-step-content.step-4, .device-phone .from_netopia .popup-step-content.step-4 {
    display: flex !important;
  }
}
@media (max-width: 50rem) {
  .device-phone .popup-step-content .step_4_boxes .donate_box, .device-tablet .popup-step-content .step_4_boxes .donate_box {
    max-width: 30rem;
  }
  .device-phone .popup-step-content .step_4_boxes .donate_box, .device-tablet .popup-step-content .step_4_boxes .donate_box {
    min-height: 15.5rem;
  }
  .device-phone .popup-step-content .step_4_boxes .donate_box .box_download_desc h3, .device-tablet .popup-step-content .step_4_boxes .donate_box .box_download_desc h3 {
    font-size: 2.4rem;
  }
  .device-phone .popup-step-content .step_4_boxes .donate_box .box_download_link a .href_text, .device-tablet .popup-step-content .step_4_boxes .donate_box .box_download_link a .href_text {
    font-size: 1.6rem;
    min-height: 4rem;
  }
  .device-phone .popup-step-content .step_4_boxes .donate_box .box_download_link a .download_ico, .device-tablet .popup-step-content .step_4_boxes .donate_box .box_download_link a .download_ico {
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
  }
  .device-phone .popup-step-content .step_4_boxes, .device-tablet .popup-step-content .step_4_boxes {
    justify-content: center;
  }
}
.dropdown-search {
  /*padding: 0.4rem;*/
  box-sizing: border-box;
  border-bottom: 0.1rem solid #d8d8d8;
  background: #fff;
}
.country_div .dropdown-list {
  padding-top: 4.5rem;
}
.dropdown-search-input {
  width: 100%;
  max-width: calc(100% - 1rem);
  box-sizing: border-box;
  padding: 0.8rem 0.8rem;
  border: 0.1rem solid #ccc;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  position: absolute;
  top: 0rem;
  left: 0;
  margin: 0.5rem;
}
/*.dropdown-list .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
*/
/*.dropdown-list .dropdown-item img.dropdown-flag {
    width: 2rem;
    height: 1.4rem;
    object-fit: cover;
}
*/
.donate_box.box_share {
  position: relative;
}
.donate_box.box_share .share_this_pop {
  position: absolute;
  right: 0rem;
  top: 0rem;
  z-index: 0;
  background: rgba(10, 20, 40, 0.05);
  border: 0.1rem solid rgba(255, 255, 255, 0.25);
  border-radius: 2.9rem;
  padding: 2.1rem;
  backdrop-filter: blur(1.2rem) saturate(140%);
  -webkit-backdrop-filter: blur(1.2rem) saturate(140%);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.25), inset 0 0.1rem 0 rgba(255, 255, 255, 0.2);
  will-change: transform, opacity, filter;
  transform: translateZ(0);
  contain: layout paint;
  max-width: 13rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.donate_box.box_share .share_this_pop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.donate_box.box_share .share_item a {
  padding: 0.8rem;
  box-sizing: border-box;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donate_box.box_share .share_item a img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}
