@import "../css/style-btn.css";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	display: block;
	margin: 0px;
	padding: 0px;
	float:center;
}

body {
	font-family: Open Sans;
	background-image: url(../img/bg.png);
	color: black;
	text-shadow: 1px 1px white;
}

#logo {
	width: 800px;
	margin: auto;
	text-align:center;
	height: 150px;
	background-image: url(../img/logo.png);
	line-height: 100px; 
}

#main {
	background: rgba(255,255,255,0.6);
	border-radius: 7px;
	border: 1px solid white;
	width: 800px;
	margin: 10px auto;
	padding: 10px;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.4)
}

#footer {
	width: 800px;
	margin: auto;
	text-align:center;
}

#main .plans{
	width: 100%;
	border-collapse: collapse; 
	table-layout: fixed;
	border-radius: 5px;
	border-color: #eee;
}

#main .plans th, #main .plans td{
	border: 1px solid #eee;
	padding: 5px;
}

#main .plans td{
	text-align:center;
}

#main .plans td .price{
	font-size: 25px;
}

#main .plans td .monthly{
	color: grey;
	font-size: 10px;
}

#main .plans td .save{
	color: red;
	font-weight: normal;
	font-size: 18px;
}

.fa-check-circle {
	font-size: 20px;
	color: green;
}

.fa-times {
	font-size: 20px;
	color: red;	
}

#main .plans td:nth-child(4n+1), #main .plans th:nth-child(4n+1) {
	border: none;
	text-align:right !important;
	padding-right: 20px;
}

#main .plans td:nth-child(4n+2), #main .plans th:nth-child(4n+2) {

}