@charset "UTF-8";
/* CSS Document */
body {
	background: #e9e9e9;
	color: #666666;
	font-family: 'RobotoDraft', 'Roboto', sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

ul {
    list-style: none;
}

h4 {
	font-weight: 600;
}

/* Pen Title */
.pen-title {
	padding: 50px 0;
	text-align: center;
	letter-spacing: 2px;
}
.pen-title h1 {
	margin: 0 0 20px;
	font-size: 48px;
	font-weight: 300;
}
.pen-title span {
	font-size: 12px;
}
.pen-title span .fa {
	color: #00a65a;
}
.pen-title span a {
	color: #00a65a;
	font-weight: 600;
	text-decoration: none;
}

/* Form Module */
.form-module {
	position: relative;
	background: #ffffff;
	max-width: 320px;
	width: 100%;
	border-top: 5px solid #00a65a;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
}
.form-module .toggle {
	cursor: pointer;
	position: absolute;
	top: -0;
	right: -0;
	background: #33b5e5;
	width: 30px;
	height: 30px;
	margin: -5px 0 0;
	color: #ffffff;
	font-size: 12px;
	line-height: 30px;
	text-align: center;
}
.form-module .toggle .tooltip {
	position: absolute;
	top: 5px;
	right: -65px;
	display: block;
	background: rgba(0, 0, 0, 0.6);
	width: auto;
	padding: 5px;
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
}
.form-module .toggle .tooltip:before {
	content: '';
	position: absolute;
	top: 5px;
	left: -5px;
	display: block;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid rgba(0, 0, 0, 0.6);
}
.form-module .form {
	padding: 40px;
}
.form-module .form:nth-child(2) {
	display: block;
}
.form-module h2 {
	margin: 0 0 20px;
	color: #00a65a;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}
.form-module input {
	outline: none;
	display: block;
	width: 100%;
	border: 1px solid #d9d9d9;
	/*margin: 0 0 20px;*/
	padding: 10px 15px;
	box-sizing: border-box;
	font-weight: 400;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.form-module input:focus {
	border: 1px solid #00a65a;
	color: #333333;
}
.form-module button {
	cursor: pointer;
	background: #00a65a;
	width: 100%;
	border: 0;
	padding: 10px 15px;
	color: #ffffff;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.form-module button:hover {
	background: #008844;
}
.form-module .cta {
	background: #f2f2f2;
	width: 100%;
	padding: 15px 40px;
	box-sizing: border-box;
	color: #666666;
	font-size: 12px;
	text-align: center;
}
.form-module .cta a {
	color: #333333;
	text-decoration: none;
}

/* Station Type Selector */
.tiles {
	margin: auto;
	text-align: center;
}
.tiles input[type="radio"] {
	display: none;
}
.tiles input[type="radio"]:checked + .box {
	background-color: #00a65a;
}
.tiles input[type="radio"]:checked + .box span {
	color: white;
	transform: translateY(30px);
}
.tiles input[type="radio"]:checked + .box span:before {
	transform: translateY(0px);
	opacity: 1;
}
.tiles .box {
	width: 160px;
	height: 130px;
	background-color: #e2e2e2;
	border: 1px solid #ccc;
	border-radius: 2px;
	transition: all 250ms ease;
	will-change: transition;
	display: inline-block;
	margin: 7px;
	text-align: center;
	cursor: pointer;
	position: relative;
	font-family: "Dax", sans-serif;
	font-weight: 900;
}
.tiles .box:active {
	transform: translateY(10px);
}
.tiles .box span {
	position: absolute;
	transform: translate(0, 20px);
	left: 0;
	right: 0;
	transition: all 300ms ease;
	font-size: 1.5em;
	user-select: none;
	color: #00a65a;
}
.tiles .box span:before {
	font-size: 1.2em;
	font-family: FontAwesome;
	display: block;
	transform: translateY(-40px);
	opacity: 0;
	transition: all 300ms ease-in-out;
	font-weight: normal;
	color: white;
}

.tiles .type-music span:before {
	content: '\f001';
}
.tiles .type-talk span:before {
	content: '\f0f4';
}
.tiles .type-musictalk span:before {
	content: '\f001\ \f0f4';
}

#type-body li {
	padding: 4px;
}