
/*
 * -- PRICING TABLE WRAPPER --
 * This element wraps up all the pricing table elements
 */
 .pricing-tables {
    margin: auto ;
    text-align: center;
}

 .information{
   margin: 0;
 }
 .pricing-bkgrnd .pricing-tables{
    background-color: rgba(245, 195, 0, 0.7);
}

.pricing-tables {
    /*margin-bottom: 3.125em;
    margin-top: 3.125em;*/
}

/*
 * -- PRICING TABLE  --
 * Every pricing table has the .pricing-table class
 */
.pricing-table {
    border: 1px solid #ddd;
    margin: 0 0.5em 2em;
    padding: 0 0 3em;
    background-color: white;
}

/*
 * -- PRICING TABLE HEADER COLORS --
 * Choose a different color based on the type of pricing table.
 */
.pricing-table-free .pricing-table-header {
background-color: #00964d;
    color: white;
}


.pricing-table-biz .pricing-table-header {
    background: #43566a;
}

/*
 * -- PRICING TABLE HEADER --
 * By default, a header is black/white, and has some styles for its <h2> name.
 */
.pricing-table-header {
    background: #111;

}.pricing-table-header h2 {
        margin: 0em;
        padding-top: 2em;
        padding-bottom: 2em;
        font-size: 1em;
        font-weight: bold;
        color: #fff;
    }

/*
 * -- PRICING TABLE PRICE --
 * Styles for the price and the corresponding <span>per month</span>
 */
.pricing-table-price {
    font-size: 4em;
    margin: 0.2em 0 0;
    font-weight: 100;
    color: white;
}
    .pricing-table-price span {
        display: block;
        text-transform: uppercase;
        font-size: 0.2em;
        padding-bottom: 2em;
        font-weight: 400;
        color: #fff;
        color: rgba(255, 255, 255, 0.8);

    }



/*
 * -- PRICING TABLE LIST --
 * Each pricing table has a <ul> which is denoted by the .pricing-table-list class
 */
.pricing-table-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}


/*
 * -- PRICING TABLE LIST ELEMENTS --
 * Styles for the individual list elements within each pricing table
 */
.pricing-table-list li {
    margin: 0;
    padding: 0.8em 0;
    background: #f7f7f7;
    border-bottom: 1px solid #e7e7e7;
}


/*
 * -- PRICING TABLE BUTTON --
 * Styles for the "Choose" button at the bottom of a pricing table.
 * This inherits from Pure Button.
 */


.pure-button-choose {
  background-color: #00964d;
        color: white;
        border-radius: 5px;
        font-size: 120%;
        -moz-box-shadow: 0px 1px 4px #1871a7; /* FF3.5+ */
        -webkit-box-shadow: 0px 1px 4px #1871a7; /* Saf3.0+, Chrome */
        box-shadow: 0px 1px 4px #1871a7; /* Opera 10.5, IE 9.0 */
    width: 80%;
    position: relative;
    bottom: -1.5em;
        margin-top: 1em;
}



/*
 * -- TABLET MEDIA QUERIES --
 * On tablets, we want to slightly adjust the size of the banner
 * text and add some vertical space between the various pricing tables
 */
@media(max-width: 48em) {

    .pricing-table {
        margin-bottom: 0.25em;
    }

    .pricing-table-price{
      font-size: 4em;
    }

}
