/* progress-bar */
.progress-wrap{
  background:#333;
  border-radius:8px;
  overflow:hidden;
  width:100%;
  max-width:500px;
  height:22px;
  margin:25px 0 5px;
}
.progress-bar{
  background:#2ecc71;
  height:100%;
  transition:width .6s;
}

/* список донатов */
.donor-list{
  list-style:none;
  padding:0;
  margin:15px 0 0;
}
.donor-list li{
  margin:4px 0;
  font-size:.95em;
}

/* форма */
.donate-form{
  max-width:500px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.donate-form label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-weight:600;
}
.donate-form input{
  padding:10px;
  border:none;
  border-radius:8px;
  font-size:1em;
}
.pay-type{
  border:1px solid #444;
  border-radius:10px;
  padding:12px 16px;
}
.pay-type legend{padding:0 6px;font-size:.9em}
.pay-type label{font-weight:400;font-size:.9em}
