h3 {
  font-family: "Plus Jakarta Sans";
  color: #e44e56 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
  font-weight: 500;
  line-height: 1.4;
  font-size: 13px;
  color: grey;
}

.radio-wrapper {
  margin-bottom: 20px;
  display: flex;
}
.radio-wrapper input[type=radio] {
  display: none;
}
.radio-wrapper input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #e7392b;
}
.radio-wrapper .wpcf7-list-item-label {
  box-sizing: border-box;
  align-items: center;
  position: relative;
  user-select: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  gap: 15px;
}
.radio-wrapper .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 1px currentcolor;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  content: "";
}
.radio-wrapper:has(input[type=radio][value=person]:checked) ~ [data-profile=person] {
  display: flex !important;
}
.radio-wrapper:has(input[type=radio][value=company]:checked) ~ [data-profile=company] {
  display: flex !important;
}

.wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0 20px 0 0;
}

.wpcf7-list-item input {
  margin-right: 8px;
}

.row {
  margin-bottom: 15px;
  flex-wrap: wrap;
  display: flex;
  gap: 0 2%;
}
.row[data-profile] {
  display: none;
}

.col-md-1 {
  flex: 1;
}
@media screen and (max-width: 576px) {
  .col-md-1 {
    width: 100%;
  }
}

.col-md-2 {
  flex: 2;
}
@media screen and (max-width: 576px) {
  .col-md-2 {
    width: 100%;
  }
}

.col-md-3 {
  flex: 3;
}
@media screen and (max-width: 576px) {
  .col-md-3 {
    width: 100%;
  }
}

.col-md-4 {
  flex: 4;
}
@media screen and (max-width: 576px) {
  .col-md-4 {
    width: 100%;
  }
}

.col-md-5 {
  flex: 5;
}
@media screen and (max-width: 576px) {
  .col-md-5 {
    width: 100%;
  }
}

.col-md-6 {
  flex: 6;
}
@media screen and (max-width: 576px) {
  .col-md-6 {
    width: 100%;
  }
}

.col-md-7 {
  flex: 7;
}
@media screen and (max-width: 576px) {
  .col-md-7 {
    width: 100%;
  }
}

.col-md-8 {
  flex: 8;
}
@media screen and (max-width: 576px) {
  .col-md-8 {
    width: 100%;
  }
}

.col-md-9 {
  flex: 9;
}
@media screen and (max-width: 576px) {
  .col-md-9 {
    width: 100%;
  }
}

.col-md-10 {
  flex: 10;
}
@media screen and (max-width: 576px) {
  .col-md-10 {
    width: 100%;
  }
}

.col-md-11 {
  flex: 11;
}
@media screen and (max-width: 576px) {
  .col-md-11 {
    width: 100%;
  }
}

.col-md-12 {
  flex: 12;
}
@media screen and (max-width: 576px) {
  .col-md-12 {
    width: 100%;
  }
}

label {
  margin-bottom: 15px;
  display: block;
}

input[type=text],
input[type=email],
input[type=number],
input[type=tel] {
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 25px;
  padding: 10px 15px;
  width: 100%;
}

select {
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z" /></svg>');
  background-position: calc(100% - 15px) 50%;
  transition: all 0.2s ease-in-out;
  background-repeat: no-repeat;
  background-color: white;
  -webkit-appearance: none;
  border: 1px solid #ddd;
  box-sizing: border-box;
  -moz-appearance: none;
  border-radius: 25px;
  padding-right: 40px;
  appearance: none;
  padding: 10px;
  height: 40px;
  width: 100%;
}
select:focus {
  border-color: #0da96a !important;
}

.uk-input {
  position: relative;
}
.uk-input:has(+ .wpcf7-not-valid-tip) {
  border-color: #bb2619 !important;
}
.uk-input + .wpcf7-not-valid-tip {
  padding: 0 10px;
}

.privacy-checkbox {
  margin: 20px 0;
}

.amount-selector {
  margin: 20px 0 40px 0;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  padding: 0;
  gap: 20px;
}
.amount-selector > li {
  padding-bottom: 7px;
  position: relative;
  width: min-content;
}
.amount-selector > li > input[type=radio] {
  display: none;
}
.amount-selector > li > input[type=radio]:checked + label[for] {
  box-shadow: 0 0 0 0 #bb2619;
  top: 7px;
}
.amount-selector > li > label[for] {
  transition: all 0.1s ease-in-out;
  box-shadow: 0 7px 0 0 #bb2619;
  background-color: #e7392b;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 28px;
  align-items: center;
  position: relative;
  user-select: none;
  cursor: pointer;
  font-size: 24px;
  padding: 0 20px;
  color: white;
  display: flex;
  height: 56px;
  margin: 0;
  gap: 5px;
  top: 0;
}
.amount-selector > li > label[for] > .amount {
  font-weight: bold;
}
.amount-selector:has(> li > input[type=radio][value=custom]:checked) + .row[data-field=custom_amount] {
  display: flex;
}

.payment-selector {
  flex-direction: column;
  margin: 20px 0 40px 0;
  list-style: none;
  display: flex;
  padding: 0;
  gap: 10px;
}
.payment-selector > li {
  position: relative;
}
.payment-selector > li > input[type=radio] {
  display: none;
}
.payment-selector > li > input[type=radio]:checked + label[for]::before {
  background-color: #e7392b;
}
.payment-selector > li > label[for] {
  box-sizing: border-box;
  align-items: center;
  position: relative;
  user-select: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  margin: 0;
  gap: 20px;
}
.payment-selector > li > label[for]::before {
  box-shadow: 0 0 0 1px currentcolor;
  background-color: transparent;
  border: 3px solid white;
  border-radius: 50%;
  height: 14px;
  width: 14px;
  content: "";
}
.payment-selector > li > label[for] > svg {
  height: auto;
  width: 32px;
}

.row[data-field=custom_amount] {
  margin: -20px 0 40px 0;
  display: none;
}

.privacy-acceptance {
  position: relative;
}
.privacy-acceptance input[type=checkbox] {
  position: absolute;
  z-index: -1;
  left: 10px;
  top: 10px;
  height: 0;
  width: 0;
}
.privacy-acceptance input[type=checkbox]:checked + label[for]::before {
  background-color: #0da96a;
}
.privacy-acceptance label[for] {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.privacy-acceptance label[for]::before {
  box-shadow: 0 0 0 1px currentcolor;
  background-color: transparent;
  border: 3px solid white;
  translate: -50% -50%;
  border-radius: 3px;
  position: absolute;
  height: 10px;
  width: 10px;
  content: "";
  left: 10px;
  top: 13px;
}

.form-suffix {
  display: flex;
}
.form-suffix > .uk-input {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  text-align: right;
}
.form-suffix > .uk-input:focus + span {
  background-color: #0da96a !important;
  border-color: #0da96a !important;
  color: white !important;
}
.form-suffix > .uk-input + span {
  transition: all 0.2s ease-in-out;
  border-radius: 0 25px 25px 0;
  background-color: #ddd;
  border: 1px solid #ddd;
  box-sizing: border-box;
  align-items: center;
  font-size: 16px;
  display: flex;
  padding: 10px;
  height: 40px;
  width: 50px;
}

/*# sourceMappingURL=approdo-donations.css.map */
