/*-------------
 	Pricing table
	https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_pricing_table
-------------*/
/* 
* {
    box-sizing: border-box;
} */

.pricing /*This is the flex container*/{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/*align-items: center;

	padding: 125px 100px;*/
	
}

/*@media (max-width: 1000px){

	.pricing
		padding: 100px 50px;
	}
}*/

.columns {
    float: left;
    width: 33%;
    padding: 8px;
    box-sizing: border-box;
}

.price {
    list-style-type: none;
	border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

ul .plan_header {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

ul .grey_btm{
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.price .plan_header {
    background-color: #6880a0;
    color: white;
    font-size: 25px;
    padding: 18px;
}

.price li {
    border-bottom: 1px solid #eee;
    padding: 25px;
    text-align: center;  
}


.price .grey {
    background-color: #eee/*#eee*/;
    font-size: 20px;
    padding: 16px;
}

.price .grey_ft {
    background-color: #eee /*#eee*/;
    font-size: 17px;
    padding: 12px;
}

.price .grey_pck {
    background-color: #eee/*#ede6e6*/;
    font-size: 20px;
    padding: 16px;
}

.price .grey_join {
    background-color:  #eee/*#ede6e6*/;
    font-size: 20px;
    padding: 32px;
}
.price .grey_btm {
    background-color:  #eee/*#ede6e6*/;
    font-size: 20px;
}

.button {
    background-color: #2196F3/*#1e3451*/;
    border: none;
    border-radius: 6px;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
}
