/*
Inspired by the dribble shot http://dribbble.com/shots/1285240-Freebie-Flat-Pricing-Table?list=tags&tag=pricing_table
*/

/*--------- Font ------------*/
@import url(http://fonts.googleapis.com/css?family=Droid+Sans);
@import url(http://weloveiconfonts.com/api/?family=fontawesome);
/* fontawesome */
[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}
* {
    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 {
    margin: 20px auto 50px auto;
    padding: 10px 0 0;
    text-align: center;
    width: 100%;
}
.pricing-table .heading{
    color: #9C9E9F;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-bottom: 4rem;
}
.priceblock{
    width: 24%;    
    margin: 0 5px;
    overflow: hidden;
	border: 1px solid #bfbfbf;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;   
/*    border: 1px solid red;*/
}

.priceblock:hover {
	cursor: pointer;
    box-shadow: 0px 0px 50px #272727;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.2);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.2);   
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.2);
    transition: all 200ms ease-in;
    transform: scale(1.2);
}

/*Shared properties*/
.title,.pt-footer{
    color: #FEFEFE;
    text-transform: capitalize;
    line-height: 2.5;
    position: relative;
}
.content{
    position: relative;
    color: #FEFEFE;
    padding: 20px 0 10px 0;
}
/*arrow creation*/
.content:after, .content:before,.pt-footer:before,.pt-footer:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.pt-footer:after,.pt-footer:before{
    top:0;
}
.content:after,.pt-footer:after {
	border-color: rgba(136, 183, 213, 0);	
	border-width: 5px;
	margin-left: -5px;
}
/*/arrow creation*/
.price{
    position: relative;
    display: inline-block;
    margin-bottom: 0.625rem;
}
.price span{    
    font-size: 4.2rem;
    letter-spacing: 2px;
    font-weight: bold;        
}
.price sup{
    font-size: 1.5rem;    
    position: absolute;    
    top: 12px;
    left: -12px;
}
.hint{
    font-style: italic;
    font-size: 0.9rem;
}
.features{
    list-style-type: none;    
    background: #FFFFFF;
    text-align: left;
    color: #9C9C9C;
    padding:10px 0;
    font-size: 0.9rem;
}
.features li{
    color: #272727;
    padding: 8px 10px;
    width: 100%;
}
.features li:hover{
    font-weight: bold;
}
.features li span{
   font-weight: bold;
   color: #ff0000;
}
.features li:nth-child(even){
    background-color: #EAEAEA;
}

.features li:nth-child(odd){
    background-color: #ffffff;
}
.pt-footer{
    font-size: 0.95rem;
    text-transform: capitalize;
}
/*BASIC*/
.basic .title{        
    background: #59AE55;    
}
.basic .content,.basic .pt-footer{
    background: #61BA5D;
}
.basic .content:after{	
	border-top-color: #61BA5D;	
}
.basic .pt-footer:after{
    border-top-color: #FFFFFF;
}
/*STARTER*/
.starter .title{
    background: #E27F28;
}
.starter .content,.starter .pt-footer{
    background: #F79238;
}
.starter .content:after{	
	border-top-color: #F79238;	
}
.starter .pt-footer:after{
    border-top-color: #FFFFFF;
}
/*STANDARD*/
.standard .title{
    background: #3892C3;
}
.standard .content,.standard .pt-footer{
    background: #3CA2D7;
}
.standard .content:after{	
	border-top-color: #3CA2D7;	
}
.standard .pt-footer:after{
    border-top-color: #FFFFFF;
}
/*ADVANCED*/
.advanced .title{
    background: #B64141;
}
.advanced .content,.advanced .pt-footer{
    background: #C34545;
}
.advanced .content:after{	
	border-top-color: #C34545;	
}
.advanced .pt-footer:after {	
	border-top-color: #FFFFFF;	
}