

.pricing-table {
    line-height: 150%; 
    font-size: 12px; 
    margin: auto; 
    width: 75%; 
    max-width: 800px; 
    padding-top: 10px;
    margin-top: 100px;
}
 
.price-block {
    width: 100%; 
    color: #fff; 
    float: left; 
    list-style-type: none; 
    transition: all 0.25s; 
    position: relative; 
    box-sizing: border-box;
     
    margin-bottom: 10px; 
    border-bottom: 1px solid transparent; 
}

.pricing-table h3 {
    text-transform: uppercase; 
    padding: 5px 0; 
    background: #333; 
    margin: -10px 0 1px 0;
}

.price {
    display: table; 
    background: #444; 
    width: 100%; 
    height: 70px; 
}
.price-figure {
    font-size: 24px; 
    text-transform: uppercase; 
    vertical-align: middle; 
    display: table-cell;
}
.price-number {
    font-weight: bold; 
    display: block;
}
.price-tenure {
    font-size: 11px; 
}

.pricing-features {
  background: white;
  color: black;
  padding: 0;  
}
.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #ccc; 
    font-size: 11px; 
    list-style-type: none;
}

.price-footer {
    padding: 15px; 
    background: #009688;
}

.price-footer a {
    color: white;
}

.price-action-button {
    text-decoration: none; 
    color: #fff; 
    font-weight: bold; 
    border-radius: 5px; 
    background: linear-gradient(#666, #333); 
    padding: 5px 20px; 
    font-size: 11px; 
    text-transform: uppercase;
}

.price-block:hover {
    box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.5); 
    transform: scale(1.04) translateY(-5px); 
    z-index: 1; 
    border-bottom: 0 none;
}
.price-block:hover .price {
    background:linear-gradient(#DB7224, #F9B84A); 
    box-shadow: inset 0 0 45px 1px #DB7224;
}
.price-block:hover h3 {
    background: #222;
}
.price-block:hover .price-action-button {
    background: linear-gradient(#F9B84A, #DB7224); 
}

@media only screen and (min-width : 480px) and (max-width : 768px) {
    .price-block {width: 50%;}
    .price-block:nth-child(odd) {border-right: 1px solid transparent;}
    .price-block:nth-child(3) {clear: both;}
     
    .price-block:nth-child(odd):hover {border: 0 none;}
}
@media only screen and (min-width : 768px){
    .price-block {width: 25%;}
    .price-block {border-right: 1px solid transparent; border-bottom: 0 none;}
    .price-block:last-child {border-right: 0 none;}
     
    .price-block:hover {border: 0 none;}
}