ul.reasons {
    list-style-type: "✔️";
    margin-left: 0;
}

ul.reasons li {
    padding-left: 1em;
}

ul#donation_totals {
    list-style: none;
    padding-left: 0;
}

.circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 8px;
    background-color: #62bd19;
    border-radius: 50%;

    animation: pulsate 2s ease-out;
    animation-iteration-count: infinite; 
}

@keyframes pulsate {
    0% {opacity: 0.3}
    50% {opacity: 1.0;}
    100% {opacity: 0.3}
}
