* {
	font-family: 'Roboto'!important;
}
.card {
	position: relative;
	pointer-events: all;
	text-align: left;
	background: #FFF;
	max-width: 350px;
	margin: 0 auto;
	margin-top: 50px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.card .content {
	padding: 30px;
}

.backdrop {
	color: white;
	padding: 5px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: #4ECDC4;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.card h2 {
	display: inline-block;
	margin: 0;
	position: relative!important;
	font-size: 28px;
	font-weight: 300;
	margin: 0;
}
.card h3 {
	display: inline-block;
	margin: 0;
	position: relative!important;
	font-size: 18px;
	font-weight: 300;
	margin: 0;
	margin-bottom: 10px;
}
.card input,select,textarea {
	display: block;
	padding: 5px 0px;
	width: 100%;
	max-width: 100%;
	font-size: 20px;
	border: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	border: 1px solid #EEE;
	border-radius: 0;
	color: #000;
}

.card input {
	text-align: center;
}

.card label {
	display: block;
	margin-top: 20px;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 400;
}

.card button {
	cursor: pointer;
	display: block;
	min-width: 100%;
	margin: 20px 0;
	padding: 10px 0;

	text-transform: uppercase;
	font-size: 18px;
	font-weight: bolder;
	color: #000;

	background: #EEE;
	border: none;

	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.card button:hover {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.card .results {
	background: #EEE;
	height: 0;
	overflow: hidden;

	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.card .results.show {
	padding: 15px 20px;
	height: auto;
}

.card #copy {
	background: #4ECDC4;
	color: white;
	margin-bottom: 10px;
}