.donate_form .form-row{
    display: flex;
    column-gap: 15px;
}
.donate_form .form-col-12{
    width: 100%;
}
.donate_form .form-col-6{
    width: 50%;
}
.donate_form .form-control{
    width: 100%;
    border: 1px solid #0E24271A;
    height: 52px;
}
.donate_form .form-group{
    margin-bottom: 25px;
}
.donate_form h4{
    color: #0E2427 !important;
    font-size: 24px;
    line-height: 28px;
    font-weight: 800;
    margin: 10px 0;
		background-position-y: center;
}
.donate_form input[type="radio"].donate-chkbox + span {
        color: #0E2427;
    border: 1px solid #0E242733;
    background-color: #ffffff;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    height: 52px;
    line-height: 52px;
    display: block;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
}
.donate_form input[type="radio"].donate-chkbox {
    display: none;
}
.donate_form label{
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: auto;
    display: block;
    margin-bottom: 24px;
}
.donate_form input[type="radio"].donate-chkbox:checked + span {
    background-color: #517837;
    color: #ffffff;
    border-color: #517837;
}
.donate_form button{
    background-color: #EC571E;
    border: none;
    color: white;
    padding: 13px 26px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    margin-top: 20px;
    font-weight: 500;
}
.donate_form .amount-row{
    margin-bottom: 15px;
}
@media only screen and (max-width: 510px) {
	.donate_form .amount-row{
		flex-direction:column;
	}
	.donate_form .amount-row .form-col-6{
		width:100% !important;
	}
}