/*
Inspired by the dribble shot http://dribbble.com/shots/1285240-Freebie-Flat-Pricing-Table?list=tags&tag=pricing_table
*/

.pricing-table * {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*------ utiltity classes -----*/
.fl{ float:left; }
.fr{ float: right; }
/*its also known as clearfix*/
.group:before,
.group:after {
    content: "";
    display: table;
} 
.group:after {
    clear: both;
}
.group {
    zoom: 1;  /*For IE 6/7 (trigger hasLayout) */
}

.pricing-table {
    background: #F2F2F2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1;
    font-size: 16px;    
}

.pricing-table {
    width: 100%;
    text-align: center;
    padding: 10px;
    padding-right: 0;
}
.pricing-table .heading{
    color: #9C9E9F;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-bottom: 4rem;
}
.pricing-table .block{
	display: table-cell;
    width: 240px; 
    margin: 20px 20px 0px 0px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;    
}

.pricing-table .block .content{
	padding: 10px;
}

/*Shared properties*/
.pricing-table .title, .pricing-table .pt-footer{
    color: #FEFEFE;
    text-transform: capitalize;
    line-height: 2.5;
    position: relative;
}
.pricing-table .content{
    position: relative;
    color: #FEFEFE;
    padding: 20px 0 10px 0;
}
/*arrow creation*/
.pricing-table .content:after, .pricing-table .content:before, .pricing-table .pt-footer:before, .pricing-table .pt-footer:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.pricing-table .pt-footer:after, .pricing-table .pt-footer:before{
    top:0;
}
.pricing-table .content:after, .pricing-table .pt-footer:after {
	border-color: rgba(136, 183, 213, 0);	
	border-width: 5px;
	margin-left: -5px;
}
/*/arrow creation*/
.pricing-table .price{
    position: relative;
    display: inline-block;
    margin-bottom: 0.625rem;
}
.pricing-table .price span{    
    font-size: 6rem;
    letter-spacing: 8px;
    font-weight: bold;        
}
.pricing-table .price sup{
    font-size: 1.5rem;    
    position: absolute;    
    top: 12px;
    left: -12px;
}
.pricing-table .hint{
    font-style: italic;
    font-size: 0.9rem;
}
.pricing-table .features{
    list-style-type: none;    
    background: #FFFFFF;
    text-align: left;
    color: #9C9C9C;
    padding:30px 11%;
    font-size: 0.98rem;
}
.pricing-table .features li{
    padding:15px 0;
    width: 100%;
}
.pricing-table .features li span{
   padding-right: 0.4rem; 
   font-size: 1.2rem;
}
.pricing-table .pt-footer{
    font-size: 0.95rem;
    text-transform: capitalize;
}
/*PERSONAL*/
.pricing-table .personal .title{        
    background: #78CFBF;    
}
.pricing-table .personal .content, .pricing-table .personal .pt-footer{
    background: #82DACA;
}
.pricing-table .personal .content:after{	
	border-top-color: #82DACA;	
}
.pricing-table .personal .pt-footer:after{
    border-top-color: #FFFFFF;
}

/*SCHOOL*/
.pricing-table .school .title{        
    background: #CF78C7;    
}
.pricing-table .school .content, .pricing-table .school .pt-footer{
    background: #DF8CD4;
}
.pricing-table .school .content:after{	
	border-top-color: #DF8CD4;	
}
.pricing-table .school .pt-footer:after{
    border-top-color: #FFFFFF;
}

/*PROFESSIONAL*/
.pricing-table .professional .title{
    background: #3EC6E0;
}
.pricing-table .professional .content, .pricing-table .professional .pt-footer{
    background: #53CFE9;
}
.pricing-table .professional .content:after{	
	border-top-color: #53CFE9;	
}
.pricing-table .professional .pt-footer:after{
    border-top-color: #FFFFFF;
}

/*BUSINESS*/
.pricing-table .business .title{
    background: #E3536C;
}
.pricing-table .business .content, .pricing-table .business .pt-footer{
    background: #EB6379;
}
.pricing-table .business .content:after{	
	border-top-color: #EB6379;	
}
.pricing-table .business .pt-footer:after {	
	border-top-color: #FFFFFF;	
}

/*CATALOG*/
.pricing-table .catalog .title, .pricing-table .catalog .pt-footer{
    background: #53E38C;
}
.pricing-table .catalog .content{
    background: #4BB86D;
}
.pricing-table .catalog .content:after{	
	border-top-color: #EB6379;	
}
.pricing-table .catalog .pt-footer:after {	
	border-top-color: #FFFFFF;	
}

/*SHIPPING*/
.pricing-table .ship .title, .pricing-table .ship .pt-footer{
    background: #FFA55A;
}
.pricing-table .ship .content{
    background: #FC9138;
}
.pricing-table .ship .content:after{	
	border-top-color: #EB6379;	
}
.pricing-table .ship .pt-footer:after {	
	border-top-color: #FFFFFF;	
}

/* remove all styles of hyperlinks */
.pt-footer a {
  color: inherit; 
  text-decoration: inherit;
}