html, body {
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto Slab', sans-serif;
	font-size: 12px;
}
h1, h2, h3, h4, h5 {
	margin: 0px;
	padding: 0px;
	font-size: 20px;
	line-height: 28px;
}
.poll {
	width: 750px;
	height: 200px;
	margin: 0px auto;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: top center;
}
.bluePoll, .blue {
	background-image: url("img/blue_bg.png");
}
.redPoll, .red {
	background-image: url("img/red_bg.png");
}
.pollInner {
	margin: 25px 30px;
	position: relative;
}
.pollInner button {
	cursor: pointer;
}
#pollQuestion, #pollInfo, #pollResults {
	color: #18296b;
	top: 24px;
	position: inherit;
	margin: 0 auto;
}
#pollInfo, #pollResults {
	display: none;
}
/*
#pollQuestion {
	display: none;
}
#pollInfo {
	display: block;
}
*/
/*
#pollQuestion, #pollInfo {
	display: none;
}
#pollResults {
	display: block;
}
*/
#pollQuestion h1 {
	text-align: center;
	font-size: 24px;
	line-height: 32px;
	margin: 20px 0px 10px;
}
#pollQuestion #pollForm1 {
	display: flex;
	/*flex-direction: column;*/
	justify-content: space-evenly;
	flex-wrap: nowrap;
	width: 45%;
	margin: 0 auto;
	align-items: center;
}
#pollQuestion .pollButton {
	border-radius: 10px;
	padding: 10px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: bold;
	align-content: center;
	/*margin: 20px auto;*/
	border-collapse: separate;
	perspective: 1px;
	overflow: hidden;
	font-size: 22px;
	border: transparent;
	width: 100px;
}
#pollQuestion .yesButton {
	background-color: #008000;
}
#pollQuestion .noButton {
	background-color: #ff0000;
}
#pollInfo {
	text-align: center;
}
#pollInfo h2 {
	font-size: 14px;
	line-height: 22px;
}
#pollInfo h3 {
	font-size: 12px;
	line-height: 20px;
}
#pollInfo #pollForm2 {
	margin-top: 20px;
}
#pollInfo .required {
	color: #ff0000;
}
#pollInfo .disclaimer {
	font-size: 10px;
	margin-top: 20px;
}
#pollInfo input {
	margin-bottom: 20px;
	width: 25%;
	margin: 5px 20px 5px 5px;
}
#pollInfo #pollForm2 button {
	border: transparent;
	border-radius: 10px;
	color: #ffffff;
	background-color: #000000;
	font-size: 14px;
	font-weight: bold;
	padding: 10px;
}
#pollResults {
	
}
#pollResults h2 {
	text-align: center;
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 20px;
}
#pollResults .option1, #pollResults .option2 {
	width: 90%;
	margin: 0px auto 10px;
}
#pollResults .option1 .label, #pollResults .option2 .label {
	font-size: 18px;
	line-height: 36px;
	font-weight: bold;
	width: 25%;
	display: inline-block;
	float: left;
}
#pollResults .option1Results, #pollResults .option2Results {
	display: inline-block;
	width: 73%;
}
#pollResults .optionBar {
	color: #ffffff;
	text-align: right;
}
#pollResults .optionPerc {
	font-size: 18px;
	line-height: 36px;
	font-weight: bold;
	margin: 0px 5px;
}
#pollResults #option1Bar {
	background-color: #008000;
}
#pollResults #option2Bar {
	background-color: #ff0000;
}
.mobile-logo {
	display: none;
}

@media screen and (max-width: 480px) {
.mobile-logo {
	width: 25% !important;
    position: absolute !important;
    top: 3px !important;
    left: 6px !important;
    display: inline !important;
    transform: rotate(-5deg) !important;
}	
.poll {
	width: 100% !important;
    max-width: 94% !important;
    height: 105% !important;
	background-color: white !important;
}
.bluePoll, .blue, .redPoll, .red {
	background-image: none !important;
}
.poll.bluePoll, .poll.blue {
    border: 10px #18296b solid !important;
}
.poll.redPoll, .poll.red {
    border: 10px #db372c solid !important;
}
.pollInner {
    margin: 40px 10px 10px !important;
}
#pollQuestion #pollForm1 {
	width: 100% !important;
}
#pollQuestion, #pollInfo, #pollResults {
    top: 0px !important;
}
#pollInfo #pollForm2 {
    margin-top: 0px !important;
}
#pollInfo h2 {
	margin-top: 24px !important;
}
#pollInfo input {
    width: 55% !important;
}
#pollInfo .disclaimer {
    font-size: 7px !important;
    margin-top: 9px !important;
}
#pollResults h2 {
	margin: 25px 0px 10px 0px !important;
}

}
