/* Copyright 2013 Soundarapandian
 * Pricing table built on Twitter Bootstrap.
 */

body {
    /* Below styles are used only for pricing table demo purpose.
   * and these styles are not required to integrate the pricing table
   * into your application */
    padding-bottom: 50px;
    background-image: url('../images/background.png');
}

/*
 * =================== Start pricing table =====================*/

.pricing-table .plan {
    width: 180px;
    float: left;
    margin-right: 8px;
    border-radius: 5px;
    text-align: center;
    background-color: #f3f3f3;
    -moz-box-shadow: 0 0 6px 2px #b0b2ab;
    -webkit-box-shadow: 0 0 6px 2px #b0b2ab;
    box-shadow: 0 0 6px 2px #b0b2ab;
}

    .pricing-table .plan:hover {
        background-color: #fff;
        -moz-box-shadow: 0 0 12px 3px #b0b2ab;
        -webkit-box-shadow: 0 0 12px 3px #b0b2ab;
        box-shadow: 0 0 12px 3px #b0b2ab;
    }

    .pricing-table .plan .plan-name {
        padding: 10px;  
        color: #fff;
        background-color: #5e5f59;
        -moz-border-radius: 5px 5px 0 0;
        -webkit-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
    }

        .pricing-table .plan .plan-name h2 {
            color: #fff;
        }

        .pricing-table .plan .plan-name span {
            font-size: 20px;
        }

    .pricing-table .plan ul {
        list-style: none;
        margin: 0;
        -moz-border-radius: 0 0 5px 5px;
        -webkit-border-radius: 0 0 5px 5px;
        border-radius: 0 0 5px 5px;
    }

        .pricing-table .plan ul li.plan-feature {
            padding: 10px 10px;
            border-top: 1px solid #c5c8c0;
        }

.pricing-three-column {
    margin: 0 auto;
    width: 80%;
}

.pricing-variable-height .plan {
    float: none;
    margin-left: 2%;
    vertical-align: bottom;
    display: inline-block;
    /* Support for inline-block in IE7 */
    zoom: 1;
    *display: inline;
}

.plan-mouseover .plan-name {
    background-color: #4e9a06 !important;
}

.btn-plan-select {
    padding: 8px 25px;
    font-size: 18px;
}

/*
 * =================== End pricing table =====================*/
