.payment-providers-list-title {
    text-align: center;
}
.payment-providers-list {
    display: flex;
    flex-wrap: wrap;
    align-content: space-evenly;
    margin-bottom:40px;
}
.payment-providers-list > form {
    margin: 10px;
    max-width: 145px;
}
@media screen and (max-width:500px) {
    .payment-providers-list > form {
        max-width: 100px;
    }
}
.payment-providers-list > form img {
    display: block;
    width: 100%;
    height: auto;
}
.payment-providers-list > form button {
    cursor: pointer;
}

/* Donation */
.btn-donation-custom,
.btn-donation {
  display: block;
  text-align: center;
  border: 2px solid #394786;
  padding: 25px 0;
  margin: 10px 0;
  border-radius: 4px;
  font-size: 1.1em;
  font-weight: 700;
  outline: none;
  color: #394786;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; 
}

.btn-donation-custom:hover,
.btn-donation:hover,
.btn-donation.active,
.btn-donation-custom.active {
  background: #394786;
  color: #fff; 
}

.btn-submit-donation {
    font-size: 1.2em;
    font-weight: 700;
    padding: 20px 0;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    min-width: 225px;
}

body .custom-amount {
    display: none;
}
body .custom-amount.active {
    display:block;
}
.custom-amount {
    background: #f9f9f9;
    padding: 5px 25px 25px;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#donation-amount {
    width: 150px;
    float: left;
}

.lahjoitus-tiedot {
    padding: 40px 0;
}

.donate-form-error {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
    display: none;
}

.donate-form-error.visible {
    display: block;
}