/* https://codepen.io/RRoberts/pen/kXvVrR */

body{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	color: #333;
	background-color: #eee;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 200;
}

h1{
	text-align: center;
	padding-bottom: 10px;
	border-bottom: 4px solid #3399ff;
	max-width: 70%;
	margin: 20px auto;
}

h4{
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 4px solid #800080 ;
	max-width: 70%;
	margin: 20px auto;
	font-size: 2.5em;
	font-weight: bold;
}

/* CONTAINERS */

/*.container {max-width: 850px; width: 100%; margin: 0 auto;}*/
/*.four { width: 32.26%; max-width: 32.26%;}*/
.container {max-width: 100%; width: 100%; margin: 0 auto;}
.four { width: 48%; max-width: 48%;}


/* COLUMNS */

.col {
  display: block;
  float:left;
  margin: 1% 0 1% 1.6%;
}


.col:first-of-type { margin-left: 0; }

/* CLEARFIX */

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

/* FORM */

.form .plan input, .form .payment-plan input, .form .payment-type input{
	display: none;
}

.form label{
	border-radius: 10px;
	box-shadow: 2px 2px 1px grey;
	position: relative;
	color: #808080;
	background-color: #fff;
	font-size: 26px;
	text-align: center;
	height: 60px;
	line-height: 60px;
	display: block;
	cursor: pointer;
	border: 3px solid transparent;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form .plan input:checked + label, .form .payment-plan input:checked + label, .form .payment-type input:checked + label{
	border: 3px solid #1a8cff;
	background-color: #3399ff;
	color: #fff;
}
/*
Remove the circled tick from the selected button by commenting this section out.
.form .plan input:checked + label:after, form .payment-plan input:checked + label:after, .form .payment-type input:checked + label:after{
	content: "\2713";
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100%;
	border: 2px solid #333;
	background-color: #4CAF50;
	z-index: 999;
	position: absolute;
	top: -10px;
	right: -10px;
}
*/
.submit{
	padding: 15px 60px;
	display: inline-block;
	border: none;
	margin: 20px 0;
	background-color: #4CAF50;
	color: #fff;
	border: 2px solid #333;
	font-size: 18px;
	-webkit-transition: transform 0.3s ease-in-out;
	-o-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

.submit:hover{
	cursor: pointer;
	transform: rotateX(360deg);
}
*/
