@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*End of Myers Reset*/
* {
	box-sizing:border-box;
}
body {
	background-color:#2a2a2a;
	font-family: montserrat, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size:62.5%;
	line-height:1.25;	
}
strong {
	font-weight: 900;
}
em {
	font-style: italic;
}
a {
	text-decoration:none;
}
#top-bar {
	color:#fff;
	background-color:#ef3e43;
	text-align:center;
	padding:1rem;
	text-transform:uppercase;
	letter-spacing:2px;
}
#top-bar p {
	font-size:10px !important;
}
header {
	display:flex;
	text-align:center;
	padding:2rem;
	border-bottom:4px solid #ef3e43;
	align-items:center;
	background-color:#0a59a4;
}
header img {
	flex:1;
}
header div {
	flex:5;
	text-transform:uppercase;
	letter-spacing:2px;		
}
header h1 {
	font-size:48px;
	color:#fff;
	font-weight:900;
}
header p {
	color:#fff;
	margin-bottom:.5rem;
	font-size:16px;
}
#container {
	align-items:center;
	text-align:center;
	width:80%;
	max-width:1200px;
	background-color:#fff;
	margin:0 auto;
}
#container form {
	display:block;
	width:100%;
	color:#3a3a3a;
}
#container p {
	font-size:16px;
}
#form-hold {
	padding:4rem 2rem 2rem 2rem;
	color:#3a3a3a;
}
#form-hold p {
	margin-bottom:1rem;
}
#form-hold h3 {
	font-size:24px;
	color:#0a59a4;
	font-weight:900;
	margin-bottom:1rem;
}
#form-hold h4 {
	margin-bottom:1rem;
}
#form-hold a {
	font-weight:900;
	color:#ef3e43;
}
.pin-hold {
	width:50%;
	margin:0 auto;
	padding-bottom:2rem;
}
input[type="number"] {
	display:block;
	width:100%;
	padding:1rem;
	margin-bottom:.5rem;
	border-radius:0;
	border:1px solid #ddd;
}
input[type="submit"], .go-back {
	display:block;
	width:100%;
	padding:1rem;
	margin-bottom:1rem;
	border-radius:0;
	border:0;
	font-family: poppins, sans-serif;
	font-weight: 700;
	font-style: normal;
	color:#fff;
	font-size:16px;
	cursor:pointer;
}
input[type="submit"] {
	background-color:#34b44a;
}
.go-back {
	background-color:#ef3e43;
}
input[type="number"]::placeholder {
    text-align:center;
	font-size:16px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.info-hold {
	display:block;
	padding:2rem;
}
.ballot-style {
	display:block;
	text-align:left;
	color:#fff;
	border:1px solid #ddd;
	padding:2rem 2rem 1rem 2rem;
	font-size:16px;
}
.ballot-style label {
	display:block;
	width:100%;
	margin-bottom:.5rem;
}
fieldset {
	padding-bottom:2rem;
	margin-bottom:2rem;
	border-bottom:1px solid #eee;
}
fieldset s, fieldset u {
	color:#ef3e43;
}
.options-hold {
	padding:1rem;
	background-color:#eee;
}
footer {
	color:#fff;
	background-color:#0a59a4;
	padding:1rem;
}
.mob-show {
	display:none;
}
@media only screen and (max-width: 750px) {
	.poof {
		display:none;
	}
	.mob-show {
		display:inline-block;
	}
	#top-bar {
		font-size:12px !important;
	}
	#container {
		width:100%;
		max-width:100%;
		min-width:100%;
	}
	#container p {
		font-size:16px;
	}
	header {
		padding:1rem;
	}
	header div {
		letter-spacing:0;
	}
	header div p {
		font-size:12px !important;
		margin-bottom:0;
	}
	header div h1 {
		font-size:24px;
	}
	#form-hold {
		padding:3rem 1rem 1rem 1rem;
	}
	#form-hold p {
		font-size:16px;
		margin-bottom:1rem;
	}
	.pin-hold {
		width:100%;
	}	
	input[type="number"] {
		font-size:16px;
	}
	input[type="submit"] {
		font-size:16px;
	}	
	.info-hold p {
		font-size:18px !important;
	}
	footer {
		font-size:12px !important;
	}
}