.payment-group {
  width: 100%;
  margin: 0 auto;
  min-width: 35rem;
  max-width: 45rem;
}
.payment-group ::placeholder {
  color: #efcf26;
}
.payment-group .tabs {
  overflow: hidden;
  background-color: transparent;
  display: flex;
}
.payment-group .tabs > div {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4rem;
  font-size: 1.25rem;
  background-color: #3e663c;
  color: #fff;
  text-align: center;
  cursor: pointer;
  padding: 0.625rem;
  transition: background-color 0.3s;
}
.payment-group .tabs > div:hover {
  background-color: #88ce83;
}
.payment-group .tabs > div:first-child {
  border-right: 0.2rem solid #fff;
}
.payment-group .tabs > div:last-child {
  border-left: 0.2rem solid #fff;
}
.payment-group .tabs > div:not(:last-child):not(:first-child) {
  border-right: 0.2rem solid #fff;
  border-left: 0.2rem solid #fff;
}
.payment-group .tabs .active {
  background-color: #689c65;
}
.payment-group .tabs .active:hover {
  background-color: #689c65;
  cursor: default;
}
.payment-group .content-group {
  width: 100%;
  height: 39rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  background-color: #689c65;
}
.payment-group .content-group.money-counter-and-form-hidden {
  height: 25rem;
}
.payment-group .content-group.money-counter-hidden {
  height: 31rem;
}
.payment-group .content-group.form-hidden {
  height: 27rem;
}
.payment-group .content-group form {
  padding: 1rem;
}
.payment-group .content-group form input {
  height: auto;
}
.payment-group .content-group form input[type=text],
.payment-group .content-group form input[type=email] {
  color: #fff;
  width: 100%;
  max-width: none;
  background-color: transparent;
  border: 1px solid #fff;
  box-sizing: border-box;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem;
}
.payment-group .content-group form input[type=text]:focus-visible,
.payment-group .content-group form input[type=email]:focus-visible {
  outline-offset: 0px;
  outline: none;
}
.payment-group .content-group form button[type=submit] {
  max-width: 8rem;
  color: #66614f;
  background-color: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: auto 0;
}
.payment-group .content-group form button[type=submit]:hover {
  background-color: #88ce83;
}
.payment-group .content-group form .form-info {
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
}
.payment-group .content-group form .form-info span {
  color: #fff;
  font-size: 1.25rem;
}
.payment-group .content-group form .form-info.buttom {
  top: 2rem;
}
.payment-group .content-group form label a {
  color: #ffd600;
}
@media (max-width: 480px) {
  .payment-group .content-group form {
    width: 95%;
  }
  .payment-group .content-group form input[type=text],
  .payment-group .content-group form input[type=email] {
    font-size: 1rem;
  }
  .payment-group .content-group form button[type=submit] {
    padding: 0.5rem 1rem;
  }
}
.payment-group .content-group .tab-content {
  display: none;
  padding: 1.25rem;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100% - 20rem);
}
.payment-group .content-group .tab-content.money-counter-and-form-hidden {
  height: 100%;
}
.payment-group .content-group .tab-content.money-counter-hidden {
  height: calc(100% - 16rem);
}
.payment-group .content-group .tab-content.form-hidden {
  height: calc(100% - 10rem);
}
.payment-group .content-group .tab-content .content-btn {
  display: block;
  border: 1px solid #fff;
  background-color: #fff;
  padding: 1rem 1.625rem;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.payment-group .content-group .tab-content .content-btn span {
  font-weight: 600;
  text-align: center;
  color: #66614f;
  font-size: 1rem;
}
.payment-group .content-group .tab-content .content-btn:hover {
  background-color: #88ce83;
}
.payment-group .content-group .tab-content .iban-block {
  width: 27rem;
}
.payment-group .content-group .tab-content .iban-block h5 {
  text-align: center;
  font-family: "OS_regular";
  font-size: 1.125rem;
  line-height: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.payment-group .content-group .tab-content .iban-block a[href^=tel] {
  color: inherit !important;
  text-decoration: none !important;
  cursor: text;
}
.payment-group .content-group .tab-content .iban-block .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.payment-group .content-group .tab-content .iban-block .list .row {
  display: flex;
  margin: 0.625rem 0;
  font-size: 1.125rem;
}
.payment-group .content-group .tab-content .iban-block .list .row :first-child {
  flex: 0 0 30%;
}
.payment-group .content-group .tab-content .iban-block .list .row :last-child {
  flex: 0 0 70%;
}
.payment-group .content-group .tab-content .smiles {
  margin: 0;
  padding: 0;
  display: none;
  width: 100px;
  margin: 1rem auto -1rem auto;
}
.payment-group .content-group .tab-content .smilesimg {
  width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .payment-group .content-group .tab-content .smiles {
    width: 50px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .payment-group .content-group .tab-content.money-counter-and-form-hidden {
    height: 100%;
  }
  .payment-group .content-group .tab-content.money-counter-hidden {
    height: calc(100% - 20rem);
  }
  .payment-group .content-group .tab-content.form-hidden {
    height: calc(100% - 10rem);
  }
  .payment-group .content-group .tab-content .satis-pay-block img {
    width: 85%;
  }
}
.payment-group .content-group .money-counter {
  width: 100%;
  padding: 1.5rem 0;
  background-color: rgba(255, 255, 255, 0.1);
  background-color: #689c65;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.payment-group .content-group .money-counter .desc-title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.payment-group .content-group .money-counter .desc-title span {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  font-family: "ZT_regular";
  text-transform: uppercase;
}
.payment-group .content-group .money-counter .progress-bar {
  position: relative;
  margin: 0 auto;
  max-width: 80%;
}
.payment-group .content-group .money-counter .progress-bar .start-fin,
.payment-group .content-group .money-counter .progress-bar .end-fin,
.payment-group .content-group .money-counter .progress-bar .progress-sum {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.payment-group .content-group .money-counter .progress-bar .start-fin {
  float: left;
}
.payment-group .content-group .money-counter .progress-bar .end-fin {
  float: right;
}
.payment-group .content-group .money-counter .progress-bar .progress-sum {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3e663c;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  top: -0.5rem;
}
.payment-group .content-group .money-counter .progress-bar .line-wrapper {
  clear: both;
  height: 1.25rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}
.payment-group .content-group .money-counter .progress-bar .line-wrapper .full-line {
  height: 100%;
  background-color: #ffd600;
  border-radius: 0.5rem;
  transition: width 1.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
.payment-group .content-group .money-counter .progress-bar .line-wrapper .full-line .progress-hat {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0.5rem;
  height: 100%;
  background-color: #ffae00;
}
@media (max-width: 768px) {
  .payment-group .content-group .money-counter .progressBar {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .payment-group .content-group .money-counter .progressBar {
    max-width: 100%;
  }
  .payment-group .content-group .money-counter .progressBar .startFin,
  .payment-group .content-group .money-counter .progressBar .endFin,
  .payment-group .content-group .money-counter .progressBar .progressSum {
    font-size: 0.875rem;
  }
  .payment-group .content-group .money-counter .progressBar .lineWrapper {
    height: 0.75rem;
    margin-top: 1.5rem;
  }
}
.payment-group .content-group .responsive-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
.payment-group .content-group .responsive-form .input-group {
  display: flex;
  flex-direction: column;
}
.payment-group .content-group .responsive-form .input-group input,
.payment-group .content-group .responsive-form .input-group label,
.payment-group .content-group .responsive-form .input-group button {
  margin: 0.375rem 0;
}
.payment-group .content-group .responsive-form .input-group label,
.payment-group .content-group .responsive-form .input-group a {
  font-size: 0.875rem;
}
@media (max-width: 480px) {
  .payment-group .content-group .responsive-form {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
  }
}
@media (min-width: 480px) and (max-width: 1024px) {
  .payment-group .content-group .responsive-form {
    grid-template-columns: 1fr 1fr;
  }
  .payment-group .content-group .responsive-form .payment-group {
    max-width: none;
  }
}
@media (min-width: 1440px) {
  .payment-group .content-group .responsive-form {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .payment-group .content-group {
    height: 45rem;
  }
  .payment-group .content-group.money-counter-and-form-hidden {
    height: 25rem;
  }
  .payment-group .content-group.money-counter-hidden {
    height: 37rem;
  }
  .payment-group .content-group.form-hidden {
    height: 27rem;
  }
}
.payment-group .copy-button {
  font-size: 1rem;
  margin: 0.3rem;
  cursor: pointer; /* Add cursor pointer */
  position: relative; /* For positioning the tooltip */
  /* Tooltip for copy confirmation */
  /* Hide the tooltip in mobile view */
}
.payment-group .copy-button > svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #ffd600;
  transition: transform 0.2s ease, color 0.2s ease; /* Add transition for hover effect */
}
.payment-group .copy-button:hover > svg {
  transform: scale(1.2); /* Slightly enlarge on hover */
}
.payment-group .copy-button::after {
  content: "Copied!";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}
.payment-group .copy-button.copied::after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 480px) {
  .payment-group .copy-button::after {
    display: none;
  }
}
.payment-group .copy-button > svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #ffd600;
}
@media (max-width: 1024px) {
  .payment-group {
    max-width: none;
    margin: 0.5rem;
  }
}
@media (max-width: 480px) {
  .payment-group {
    width: auto;
    min-width: auto;
  }
  .payment-group .copy-button {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

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