
/* reset */
.web-price-table ul,
.web-price-table li,
.web-price-table p,
.web-price-table a {
	margin: 0;
	padding: 0;
	display: block;
	line-height: normal;
	list-style: none;
	text-decoration: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* price table layout */
.web-price-table {
	margin: 0 auto;
	font-size: 1em;
	position: relative;
	z-index: 999;
	padding: 0;
	min-width: 180px;
	max-width: 1920px;
	width: 100%;
	clear: both;
	min-height: 100px;
	font-family: "OpenSans Regular";
}

/* ul tag layout */
.web-price-table ul {
	float: left;
	background: #ffffff;
	text-align: center;
	min-width: 180px;
	/*box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.10);*/
	/*-webkit-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.10);*/
	box-shadow: 0px 0px 3px 0px rgba(163,163,163,0.60);
}

/* two colums layout */
.web-price-table.two-columns {
	max-width: 600px;
}

.web-price-table.two-columns ul {
	margin: 40px 1%;				/* margin 40px top and bottom */
	width: 48%;
}

/* three colums layout */
.web-price-table.three-columns {
	max-width: 900px;
}

.web-price-table.three-columns ul {
	margin: 40px 1%;				/* margin 40px top and bottom */
	width: 31.33%;
}

/* four colums layout */
.web-price-table.four-columns {
	max-width: 1220px;
}

.web-price-table.four-columns ul {
	margin: 40px 1%;					/* margin 40px top and bottom */
	width: 23%;
}

/* margin zero layout */
.web-price-table.margin-zero ul {
	margin-left: 0;
	margin-right: 0;
}

.web-price-table.two-columns.margin-zero ul {
	width: 50%;
}

.web-price-table.three-columns.margin-zero ul {
	width: 33.33%;
}

.web-price-table.four-columns.margin-zero ul {
	width: 25%;
}

/* animation scale */
.web-price-table ul,
.web-price-table .purchase a:last-child,
.web-price-table .purchase a:first-child {
	transition: all 0.2s linear 0s;
	-moz-transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-ms-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
}

.web-price-table.animation-scale ul:hover {
	transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-webkit-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.20);
	box-shadow: 0px 0px 10px rgba(0,0,0,0.20);
	z-index: 999;
}

/* purchase class a tag hover layout */
.web-price-table .purchase a:hover:first-child {
	color: #6A97B9;
}

.web-price-table .purchase a:hover:last-child:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.05);
}

/* li tag layout */
.web-price-table ul li {
	padding: 0 10px;
}

/* title class */
.web-price-table .title {
	background: #d280f1;
	color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 1px;
	margin-bottom: -1px;
	font-size: 1.5em;
	font-family: "OpenSans Semibold";
}

/* description class */
.web-price-table .description {
	color: #FFFFFF;
	background: #d280f1;
	padding-top: 0px;
	padding-bottom: 20px;
	font-family: "OpenSans Regular";
	font-size: 0.8em;
	font-style: italic;
}

/* price class */
.web-price-table .price {
	color: #d280f1;
	font-family: "OpenSans Bold";
	font-size: 1.2em;
	padding-top: 8px;
	padding-bottom: 30px;
	display: inline-block;
}

.web-price-table .price span:nth-child(2) {
	font-size: 2.2em;
	font-weight: bold;
	top: 21px;
	display: inline-block;
	position: relative;
	top: 6px;
	font-family: "OpenSans ExtraBold";
}

.web-price-table .price span:nth-child(3) {
	font-size: 1.1em;
	position: relative;
	top: -9px;
	left: -4px;
}

.web-price-table .price span:last-child {
	position: relative;
	top: 0;
	left: 0;
}

/* purchase class */
.web-price-table .purchase {
	clear: both;
	width: 100%;
	padding: 0;
}

.web-price-table .purchase a {
	display: inline-block;
	color: #6A97B9;
	text-decoration: none;
	border-bottom: 1px dotted #6A97B9;
	font-size: 1em;
	text-align: left;
	float: left;
	margin-left: 12%;
	margin-right: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.web-price-table .purchase a:last-child {
	float: none;
	text-align: center;
	background: #d280f1;
	color: #FFFFFF;
	border-bottom: none;
	padding: 10px 15px;
	margin: 0;
	position: relative;
	top: -10px;
}

/*new*/
.web-price-table .price-details a {
	display: inline-block;
	float: none;
	text-align: center;
	color: #6A97B9;
	text-decoration: none;
	border-bottom: 1px dotted #6A97B9;
	font-size: 1em;
	text-align: left;
	
	margin-right: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 20px;
}

/*.web-price-table .purchase a:last-child {
	float: right;
	text-align: center;
	background: #d280f1;
	color: #FFFFFF;
	border-bottom: none;
	padding: 10px 15px;
	margin: 0;
	position: relative;
	top: -10px;
}*/

/* options class */
.web-price-table .options {
	margin: 0;
	padding: 0;
}

.web-price-table .options span {
	display: inline-block;
	width: 100%;
	text-align: left;
	color: #777777;
	font-size: 1em;
	border-bottom: 1px solid #F0F0F0;
	padding: 10px 20px 10px 56px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.web-price-table .options span i {
	margin-left: -20px;
	padding-right: 5px;
}

/* text class */
.web-price-table .text {
	font-size: 1em;
	color: #777777;
	padding: 34px;
}

/* features-enable class */
.web-price-table.features-enable .features {
	text-align: left;
	color: #959595;
	font-size: 0.9em;
	position: absolute;
	left: 145px;
	top: 173px;
	background: #ffffff;
	z-index: -1;
	padding: 10px;
	width: 300px !important;
	max-width: 300px;
	transition: all 0s linear 0s;
	-moz-transition: all 0s linear 0s;
	-webkit-transition: all 0s linear 0s;
	-ms-transition: all 0s linear 0s;
	-o-transition: all 0s linear 0s;
}

.web-price-table.animation-scale .features:hover {
	transform: scale(1.0, 1.0);
	-ms-transform: scale(1.0, 1.0);
	-moz-transform: scale(1.0, 1.0);
	-webkit-transform: scale(1.0, 1.0);
	-o-transform: scale(1.0, 1.0);
	box-shadow: none;
}

.web-price-table.features-enable ul:nth-child(2) {
	margin-left: 325px;
}

.web-price-table.features-enable ul {
	max-width: 23%;
	margin-left: 0;
	margin-right: 0;
}

.web-price-table.features-enable .features:before {
	content: "";
	display: block;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 40%;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
	box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
}

.web-price-table.features-enable .features li {
	padding-top: 9px;
	/*padding-bottom: 15px;*/
	margin: 1px 0;
	/*font-size: 0.8em;*/
	/*margin-top: 10px;*/
	font-size: 1em;
}

.web-price-table.features-enable .features li:first-child {
	color: #7b7b7b;
	text-transform: uppercase;
	font-size: 1.2em;
}

.web-price-table.features-enable .options span {
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
}

/******************
 color setting 
******************/

/* color 1 */
.web-price-table ul.color-1 .title,
.web-price-table ul.color-1 .description {
	background: #d280f1;
}

.web-price-table ul.color-1 .price {
	color: #d280f1;
}

.web-price-table ul.color-1 .purchase a:last-child {
	background: #d280f1;
	color: #FFFFFF;
}

.web-price-table ul.color-1 .purchase a {
	color: #6A97B9;
	border-bottom: 1px dotted #6A97B9;
}

/* color 2 */
.web-price-table ul.color-2 .title,
.web-price-table ul.color-2 .description {
	background: #6A97B9;
}

.web-price-table ul.color-2 .price {
	color: #6A97B9;
}

.web-price-table ul.color-2 .purchase a:last-child {
	background: #6A97B9;
	color: #FFFFFF;
}

.web-price-table ul.color-2 .purchase a {
	color: #6A97B9;
	border-bottom: 1px dotted #6A97B9;
}

/* color 3 */
.web-price-table ul.color-3 .title,
.web-price-table ul.color-3 .description {
	background: #6A97B9;
}

.web-price-table ul.color-3 .price {
	color: #6A97B9;
}

.web-price-table ul.color-3 .purchase a:last-child {
	background: #6A97B9;
	color: #FFFFFF;
}

.web-price-table ul.color-3 .purchase a {
	color: #6A97B9;
	border-bottom: 1px dotted #6A97B9;
}

/* color 4 */
.web-price-table ul.color-4 .title,
.web-price-table ul.color-4 .description {
	background: #C16E6E;
}

.web-price-table ul.color-4 .price {
	color: #C16E6E;
}

.web-price-table ul.color-4 .purchase a:last-child {
	background: #C16E6E;
	color: #FFFFFF;
}

.web-price-table ul.color-4 .purchase a {
	color: #6A97B9;
	border-bottom: 1px dotted #6A97B9;
}

/* color 5 */
.web-price-table ul.color-5 .title,
.web-price-table ul.color-5 .description {
	background: #a1c86b;
}

.web-price-table ul.color-5 .price {
	color: #a1c86b;
}

.web-price-table ul.color-5 .purchase a:last-child {
	background: #a1c86b;
	color: #FFFFFF;
}

.web-price-table ul.color-5 .purchase a {
	color: #6A97B9;
	border-bottom: 1px dotted #6A97B9;
}

/* color 6 */
.web-price-table ul.color-6 .title,
.web-price-table ul.color-6 .description {
	background: #fb6a01;
}

.web-price-table ul.color-6 .price {
	color: #fb6a01;
}

.web-price-table ul.color-6 .purchase a:last-child {
	background: #fb6a01;
	color: #FFFFFF;
}

.web-price-table ul.color-6 .purchase a {
	color: #6A97B9;
	border-bottom: 1px dotted #6A97B9;
}

/* color 7 */
.web-price-table ul.color-7 .title,
.web-price-table ul.color-7 .description {
	background: #f9b31f;
}

.web-price-table ul.color-7 .price {
	color: #f9b31f;
}

.web-price-table ul.color-7 .purchase a:last-child {
	background: #f9b31f;
	color: #FFFFFF;
}

.web-price-table ul.color-7 .purchase a {
	color: #6A97B9;
	border-bottom: 1px dotted #6A97B9;
}

/* color 8 */
.web-price-table ul.color-8 .title,
.web-price-table ul.color-8 .description {
	background: #e54b81;
}

.web-price-table ul.color-8 .price {
	color: #e54b81;
}

.web-price-table ul.color-8 .purchase a:last-child {
	background: #e54b81;
	color: #FFFFFF;
}

.web-price-table ul.color-8 .purchase a {
	color: #6A97B9;
	border-bottom: 1px dotted #6A97B9;
}

/* media query */
@media screen and (max-width:800px) {

/* price table layout */
.web-price-table {
	width: 100% !important;
	max-width: 100% !important;
	text-align: center;
}

/* ul tag layout */
.web-price-table.two-columns ul,
.web-price-table.three-columns ul,
.web-price-table.four-columns ul {
	width: 48%;
}

/* ul tag layout without margin */
.web-price-table.two-columns.margin-zero ul,
.web-price-table.three-columns.margin-zero ul,
.web-price-table.four-columns.margin-zero ul {
	width: 50%;
}

/* animation scale */
.web-price-table ul {
	transition: all 0s linear 0s;
	-moz-transition: all 0s linear 0s;
	-webkit-transition: all 0s linear 0s;
	-ms-transition: all 0s linear 0s;
	-o-transition: all 0s linear 0s;
}

.web-price-table.animation-scale ul:hover {
	transform: scale(1.0, 1.0);
	-ms-transform: scale(1.0, 1.0);
	-moz-transform: scale(1.0, 1.0);
	-webkit-transform: scale(1.0, 1.0);
	-o-transform: scale(1.0, 1.0);
	box-shadow: none;
}

/* features class layout */
.web-price-table.features-enable .features {
	display: none !important;
}

.web-price-table.features-enable ul {
	margin-left: 1% !important;
	margin-right: 1% !important;
	width: 48%;
	max-width: 48%;
}

.web-price-table.features-enable.margin-zero ul{
    margin-left: 0 !important;
	margin-right: 0 !important;
    width: 50%;
    max-width: 50%;
}

}

/* media query */
@media screen and (max-width:480px) {

.web-price-table.two-columns ul,
.web-price-table.three-columns ul,
.web-price-table.four-columns ul,
.web-price-table.two-columns.margin-zero ul,
.web-price-table.three-columns.margin-zero ul,
.web-price-table.four-columns.margin-zero ul,
.web-price-table.features-enable ul {
	width: 75%;
	max-width: 75%;
	display: inline-block;
	float: none;
}
}


.c-pricing-feature {
	border-bottom: 1px solid  #eee; padding-bottom: 5px;
}

.icon-ok {
	color: #009900;
}

.icon-remove {
	color: white;
}