#above-funnel {
	height: calc(100% - 75px);
	justify-content: center;
	align-items: center;
}
.floater {
	margin-bottom: 20px;
	padding: 20px 20px 45px 20px;
	text-align: center;
	color: #fff;
}
.cta-headline {
	font-size: 36px;
	margin: 0 0 8px 0;
}
.cta-subhead {
	display: none;
}

.form-box { /* overwriting styles.css */
	max-width: 320px;
}
.form-box h2 {font-size: 24px;}

.slidecontainer {
	width: 100%;
}
.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 25px;
	margin: 0 auto 30px auto;
	background: #d3d3d3;
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
}
.slider:hover {
	opacity: 1;
}
.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	background: #4CAF50;
	cursor: pointer;
}
.slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: #4CAF50;
	cursor: pointer;
}
#readout {font-size: 48px; line-height: 1.0;}

.input-text {
	width: 100%;
	margin-bottom: 10px;
	padding: 8px 20px;
	text-align: center;
	font-size: 24px;
}

/* media query by height */
@media screen and (min-height: 640px) {
	.cta-subhead {display: block;}
}

/* media query by width */
@media screen and (min-width: 768px) {
	#above-funnel {align-items: flex-start;}
	.cta-headline {margin: .67em 0;}
}

