.IPD__DonationForm__InputBox {
  display: block;
  margin: 20px 0;
  padding: 0;
}
.IPD__DonationForm__InputBox label {
  display: block;
  margin: 0 0 4px 0;
  padding: 0;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.IPD__DonationForm__InputBox label.--required:after {
  display: inline-block;
  content: "*";
  vertical-align: top;
  color: red;
  margin: -2px 0 0 4px;
}
.IPD__DonationForm__InputBox > input[type=text], .IPD__DonationForm__InputBox > input[type=email], .IPD__DonationForm__InputBox > input[type=address], .IPD__DonationForm__InputBox > input[type=tel], .IPD__DonationForm__InputBox > input[type=search], .IPD__DonationForm__InputBox > input[type=number], .IPD__DonationForm__InputBox > input[type=date], .IPD__DonationForm__InputBox > textarea, .IPD__DonationForm__InputBox > select {
  display: block;
  width: 100%;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 15px;
  margin: 0;
  border-radius: 6px;
  border: 1px solid #fff;
  -webkit-appearance: none;
  color: inherit;
}
.IPD__DonationForm__InputBox.--error > input, .IPD__DonationForm__InputBox.--error > textarea, .IPD__DonationForm__InputBox.--error > select {
  border: solid 1px #f00 !important;
}
.IPD__DonationForm__Button {
  display: inline-block;
  background: #f0af24;
  color: #fff;
  border: 0;
  margin: 20px 0;
  padding: 13px 29px;
  font-size: 14px;
  letter-spacing: normal;
  cursor: pointer;
  transition-duration: 0.2s;
}
.IPD__DonationForm__Button:hover {
  background: #3b3d42;
}
.IPD__DonationForm__LoadingSpinner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.IPD__DonationForm__LoadingSpinner:after {
  content: "";
  width: 28px;
  height: 28px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #3498db;
  border-radius: 50%;
  animation: loadingSpinnerAnimation 1s linear infinite;
}
.IPD__DonationForm__Message {
  display: block;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  margin: 6px auto;
  text-align: center;
}
.IPD__DonationForm__Message.--error {
  background: #ff4a4a;
}
.IPD__DonationForm__Message.--success {
  background: #60aa26;
}

.IPD__DonationHistory {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.IPD__DonationHistory__Position {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10px auto;
  padding: 0;
  width: 100%;
}
.IPD__DonationHistory__Position:after {
  display: block;
  content: "";
  height: 1px;
  width: 80%;
  background: rgba(0, 0, 0, 0.2);
  margin: 10px auto 0 auto;
  order: 4;
}
.IPD__DonationHistory__Position__Name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: rgb(239, 176, 34);
  order: 1;
}
.IPD__DonationHistory__Position__Amount {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: rgb(0, 159, 159);
  order: 2;
}
.IPD__DonationHistory__Position__Time {
  display: block;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  order: 3;
  color: #686868;
}

@keyframes loadingSpinnerAnimation {
  to {
    transform: rotate(360deg);
  }
}

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