.plans {
	text-align: center;
	margin: 0px auto 20px auto;
}

.pricing_table {
	width: 700px;
/* 	color: #fff;*/
	color: #333;
	font-size: 1.12em;
	line-height: 150%;
	text-align: center;
	margin: 40px auto 0 auto;
}
/*Only the direct LI child, not the .features li*/
.pricing_table>li {
/*	background: linear-gradient(#666, #333);*/
	width: 33.33%;
	float: left;
	list-style-type: none;
	/*For smooth hover effects if .active is replaced by :hover*/
	transition: all 0.2s;
}
.pricing_table>li.active {
/*	background: linear-gradient(#F9B84A, #DB7224);*/
	transform: scale(1.03);
|
}
.pricing_table h3 {
	text-transform: uppercase;
	padding: 15px 0;
	font-size: 14px;
	font-weight: bold;
}
.pricing_table .price_body {
	width: 125px;
	height: 125px;
	margin: 0 auto 15px auto;
	border: 2px solid #333;
	border-radius: 100%;
	display: table;
}
.pricing_table .price {
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	/*Lets vertically center align the price now*/
	vertical-align: middle;
	display: table-cell;
}
.pricing_table .price .price_figure {
	display: block;
}
.pricing_table .price .price_term {
	font-size: 11px;
	font-weight: normal;
}

.pricing_table .features li {
	list-style-type: none;
	padding: 5px 0;
}

.pricing_table .footer {
	padding: 10px;
	/*background: #333;*/
	margin-top: 10px;
}
.pricing_table .footer .action_button{
	color: #fff;
	font-size: .8em;
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
	background: #000;
	padding: 4px 20px;
	border-radius: 15px;
	background: linear-gradient(#666, #333);
}
.pricing_table li.active .footer .action_button {
	background: linear-gradient(#F9B84A, #DB7224);
}

.clr {clear: both;}


