.row {
    display: table;
    padding: 0px 0px 0px 0px;
    text-align: left;
    text-indent: 0px;}

.row:after {
    content: "";
    clear: both;}

.col-25, .col-50, .col-75, .col-100 {text-align: center; padding: 0 7px;}

.col-25 {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;}

.col-50 {
    -ms-flex: 50%; /* IE10 */
    flex: 50%;}

.col-75 {
    -ms-flex: 75%; /* IE10 */
    flex: 75%;}

.col-100 {
    -ms-flex: 100%; /* IE10 */
    flex: 100%;}

label {
    margin-bottom: 0px;
    display: inline-block;
}


label.donate.amount {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: slategray;
    text-align: center;
    text-indent: 0px;
    text-shadow: 0px 0px 0px ghostwhite;
    margin: 17px 7px 0px 7px;
}

::placeholder {
    text-shadow: none;
    color: silver;
    opacity: .97; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
    color: silver;
}

input.donate.amount::placeholder {
    text-shadow: none;
    color: silver;
    opacity: 1; /* Firefox */
}

input.donate.amount::-ms-input-placeholder { /* Edge 12-18 */
    color: silver;
}

input.donate {
    font-size: 1.5rem;
    font-weight: 600;
    color: silver;
    text-shadow: 0px -2px 7px goldenrod, 0px 2px 3px #007aba;
    margin: 17px auto;
}

input.donate.amount {
    display: block;
    width: 100%;
    min-width: 240px;
    max-width: 333px;
    aspect-ratio: 4/2;
    font-size: 2.5rem;
    font-weight: 600;
    color: rgb(255,255,255, 1);
    text-align: center;
    letter-spacing: .1em;
    text-shadow: 0px -2px 7px goldenrod, 0px 2px 3px silver;
    margin: 17px auto;
    border: 2px silver solid;
    border-radius: 17px;
} 

label.donate.radio {
    display: inline-block;
    background-color: rgb(0,144,222, .33);
    width: 44%;
    padding: 17px;
    font-size: 1.7rem;
    font-weight: 600;
    color: rgb(205,255,205, .97);
    text-align: center;
    text-indent: 0px;
    text-shadow: 0px -2px 7px goldenrod, 0px 2px 3px #007aba;
    margin: 17px auto;
    border: 2px silver solid;
    border-radius: 17px;
}

input.donate_button {
    color: slategray;
    width: 100%;
}

input.input-33 {
    color: red;
    width: 33%;
    margin: 0px 7px;
    
}input.input-25 {
    color: lightgray;
    width: 25%;
    margin: 0px 7px;
}

input[type=text] {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    font-size: 1.33rem;
    font-weight: 500;
    color: lightgray;
    text-shadow: 0px 0px 0px goldenrod;
    border: 2px silver solid;
    border-radius: 7px;
}
input[type=submit] {
    background-color: #33ff44;
    color: slategray;
    padding: 12px;
    margin: 10px 0;
    border: none;
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    font-size: 27px;
}

input[type="radio"] {
    background: none;
    font-size: 2rem;
    border: 0px;
    width: 33px;
    height: 33px;
    cursor: pointer;
    accent-color: #880808;
}




.icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
}

#donate-checkout {
    background-image: linear-gradient(#33ff44, #ddff44, #33ff44);
    color: darkslategray;
    padding: 12px;
    margin: 17px 0px 0px 0px;
    border: none;
    width: 100%;
    color: white;
    text-shadow: 0px -2px 7px goldenrod, 0px 2px 3px #880808;
    cursor: pointer;
    font-size: 2rem;
    border: 1px silver solid;
    border-radius: 7px;
}

.btn:hover {
    background-image: linear-gradient(#33ff44, rgb(0,144,222, .33), #33ff44);
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
    .row {
        flex-direction: column-reverse;
    }
}



