/* donation.css
   Donation popup widget. Standalone since this appears on nearly every
   page, not just wherever else new.css happened to also be linked.
   Pulled out of new.css.
*/

.donation {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 300px;
  padding: 16px;
  background-color: black;
  color: white;
  border: 2px solid darkorange;
  border-radius: 25px;
  font-family: Verdana, Geneva, Arial, sans-serif;
  font-size: 12px;
  z-index: 1000;
  line-height: 1.5;
}

.donation a:link,
.donation a:visited {
  color: white;
  text-decoration: none;
}

.donation a:hover {
  color: darkorange;
  text-decoration: underline;
}

.donation button {
  background: none;
  border: 1px solid white;
  color: white;
  padding: 4px 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  border-radius: 4px;
}

.donation button:hover {
  border-color: darkorange;
  color: darkorange;
}

.donation .donate-button {
  display: inline-block;
  padding: 4px 8px;
  margin-right: 10px;
  background-color: darkorange;
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  font-family: verdana, Geneva, Arial;
  font-size: 12px;
}

.donation .donate-button:hover {
  background-color: white;
  color: darkorange;
}
