.donation-feed-card {
	background: #fff;
	border-radius: 10px;
	display: inline-block;
	height: 700px;
	margin: 0 1rem;
	position: relative;
	width: 100%;
	/*box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);*/
	padding: 15px;
	overflow-y: auto;
}

.donation-feed-card::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.donation-feed-card::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

.donation-feed-card::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

.donation-feed-card h4 {
	margin-top: 0px;
	margin-bottom: 20px;
	font-weight: normal;
	color: #01a1dd;
	font-size: 26px;
	text-align: center;
}

.donation-feed-card .donationContainer {
	border-bottom: 1px solid #d8d8d8;
	margin-bottom: 10px;
}

.donation-feed-card .donationContainer span.donatorName {
	float: left;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
}

.donation-feed-card .donationContainer span.donationAmt {
	color: #264885;
	font-size: 2rem;
	line-height: 1.2;
	float: right;
}

.donation-feed-card .donationContainer p.donationMsg {
	font-size: 1.4rem;
	line-height: 1.3;
	clear: both;
	padding-top: 10px;
	font-style: italic;
}

.donation-total-feed-card {
	background: #fff;
	border-radius: 10px;
	display: inline-block;
	height: 125px;
	margin: 0 1rem;
	position: relative;
	width: 100%;
	/*box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);*/
	padding: 15px;
}

.donation-total-feed-card h4 {
	margin-top: 0px;
	margin-bottom: 10px;
	font-weight: normal;
	color: #01a1dd;
	font-size: 28px;
	text-align: center;
}

.donation-total-feed-card p.donationTotal {
	font-size: 28px;
	text-align: center;
}

/* Donation Meter CSS */

.cfmm-meter { 
	height: 30px;  
	position: relative;
	/*background: #555;*/
	border: 1px #000 solid;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	/*box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);*/
}

.cfmm-meter > span {
  display: block;
  height: 100%;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: red;
  background-image: linear-gradient(
    center bottom,
    rgb(43,194,83) 37%,
    rgb(84,240,84) 69%
  );
/*  box-shadow: 
    inset 0 2px 9px  rgba(255,255,255,0.3),
    inset 0 -2px 6px rgba(0,0,0,0.4);*/
  position: relative;
  overflow: hidden;
}

p.cfmm-meter-top-total {
	text-align: center;
	padding-bottom: 0px;
	color: red;
	font-weight: 500;
}

p.cfmm-meter-btm-goal {
	text-align: right;
	padding-top: 25px;
}