.poll-choices {
	list-style: none;
	margin: 0;
	padding: 0;
}

.poll-winners {
	list-style: none;
	margin: 0;
	padding: 0;
}

.choice-card {
	transition: 50ms ease-in-out;
	border: 1px solid rgba(255, 255, 255, 0.25);
	text-align: left;
	list-style: none;
	overflow: hidden;
	max-width: 239px;
	min-width: 144px;
	width: 40vw;
	display: inline-block;
	background-color: #001;
	vertical-align: top;
	margin: 1rem 0.5rem 1rem 0.5rem;
}

.choice-card.hidden {
	display: none;
}

.choice-card img {
	transition: 50ms ease-in-out;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.choice-card .card-body h3 {
	font-size: 1.25em;
	margin-top: 0;
	margin-bottom: 0;
}

.choice-card .card-body h4 {
	font-size: 1em;
	margin-top: 4px;
	margin-bottom: 0;
}

.choice-card .selection-number {
	display: none;
	width: 180px;
	height: 180px;
	top: 80px;
	text-align: center;
	position: absolute;
	z-index: 2;
	font-size: 128px;
	color: white;
	background-color: #001;
	border-radius: 90px;
	left: calc(50% - 90px);
	line-height: 180px;
	vertical-align: middle;
}

.choice-card.selectable:hover {
	transition: 50ms ease-in-out;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background-color: #112;
	cursor: pointer;
}

.choice-card.selectable:hover img {
	transition: 50ms ease-in-out;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.choice-card.selectable.selected {
	transition: 50ms ease-in-out;
	border: 3px solid #0acb6a;
	background-color: #0acb6a;
	color: #001;
}

.choice-card.selectable.selected .secondary {
	transition: 50ms ease-in-out;
	color: #001;
	opacity: 0.7;
}

.choice-card.selectable.selected img {
	transition: 50ms ease-in-out;
	border-bottom: 3px solid #0acb6a;
	opacity: 0.6;
}

.choice-card.selectable.selected .selection-number {
	display: block;
}

.vote-filter {
	width: 100%;
	height: 64px;
	padding: 0.5em 1em 0.5em 1em;
	border: none;
	border-radius: 28px;
	background-color: #eef;
	font-size: 20px;
	color: #001;

    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.vote-filter::placeholder {
	color: #889;
}

@media (max-width: 1200px) {
	.choice-card .selection-number {
		width: 140px;
		height: 140px;
		top: 90px;
		font-size: 100px;
		border-radius: 70px;
		left: calc(50% - 70px);
		line-height: 140px;
	}
}

@media (max-width: 900px) {
	.choice-card .selection-number {
		width: 100px;
		height: 100px;
		top: 100px;
		font-size: 70px;
		border-radius: 50px;
		left: calc(50% - 50px);
		line-height: 100px;
	}
}
