/*--- Pricing Table ---*/

.main-pricing-table .card{
	border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
	background-color: transparent;
}
.pricingTable{
    padding: 10px 0 30px;
    text-align: center;
	box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
}
.pricingTable .pricingTable-header{
    padding-top: 20px;
    color: #333;
}
.pricingTable i{
    display: block;
    font-size: 40px;
}
.pricingTable .title{
    padding-top: 15px;
    font-size: 25px;
    margin-bottom: 0px;
}
.pricingTable .price-value{
    padding: 20px;
    margin: 23px -10px 23px;
    background: #eee;
    color: #333;
    position: relative;
	border-radius: 3px;
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(0,0,0,.4);
    transition: all 0.3s ease-in-out 0s;
}
.pricingTable:hover .price-value{
    background: #fcaf17;
}

.pricingTable:hover .amount{
    color: #fff;
}
.pricingTable .amount{
    display: inline-block;
    font-size: 35px;
    top: 2px;
	color: #ff0000;
    position: relative;
	font-weight: 800;
}

.pricingTable .pricing-content{
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 30px;
}
.pricingTable .pricing-content li{
    font-size: 15px;
    padding-top: 8px;
    line-height: 1.8;
}
.pricingTable .pricing-content li .unchecked-icon{
    font-size: 20px;
    color: #ff0000;
}

.pricingTable .pricing-content li .checked-icon{
    font-size: 20px;
    color: #fcaf17;
}
.pricingTable .pricingTable-signup{
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color:  #fcaf17;
	background-color:#fff;
    text-transform: uppercase;
    border-top: 1px solid #fcaf17;
    border-bottom: 1px solid #fcaf17;
    transition: all 0.5s ease 0s;
}
.pricingTable:hover .pricingTable-signup{
	text-decoration: none;
    background: #fcaf17;
    border-top: 1px solid  #fcaf17;
    border-bottom: 1px solid #fcaf17;
    color: #fff;
	box-shadow: 0 14px 26px -12px rgba(252, 175, 23, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(249, 25, 66, 0.2);
}
@media only screen and (max-width: 990px){
    .pricingTable{ margin-bottom: 30px; }
}

.pri-title{
	position: relative;
}
.pri-title h3{
	color: #fcaf17;
	position: relative;
	z-index: 2;
}
.pri-title span{
	font-size: 38px;
	font-weight: 500;
	z-index: 1;
	margin: auto;
	position: absolute;
	top: -17px;
	left: 0;
	bottom: 0;
	right: 0;
	color: #e1e1e1;
}

.pricingTable.hover-table .price-value {
    background: #fcaf17;
}
.pricingTable.hover-table .price-value .amount {
    color: #fff;
}
.pricingTable.hover-table .pricingTable-signup {
    background: #fcaf17;
    border-top: 1px solid #fcaf17;
    border-bottom: 1px solid rgb(252, 175, 23);
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(252, 175, 23, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(252, 175, 23, 0.2);
}