.wrapper {
	max-width: 600px;
	font-family: sans-serif;
}
.labels {
	display: flex;
	justify-content: space-between;
	font-weight: bold;
}
.bar-container {
	display: flex;
	align-items: center;
}
.bar-track {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	height: 20px;
	overflow: hidden;
	background: #ddd;
	border-radius: 20px;
	box-shadow: inset 0 0 5px #aaa;
	position: relative;
}
.bar {
	position: absolute;
	top: 0;
	height: 100%;
	transition: width .35s ease;
}
.bar-agree {
	background: linear-gradient(to right, #f44336, #e57373);
	transition: width 0.5s ease;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
}
.bar-disagree {
	background: linear-gradient(to right, #40ceff,#006fff);
	transition: width 0.5s ease;
	height: 100%;
	right: 0;
	top: 0;
	position: absolute;
}
.article-vote-buttons, .article-vote-buttons {
	text-align: center;
}
.article-vote-button, .article-vote-button {
	font-size: 16px;
	cursor: pointer;
	border-radius: 6px;
	background: #f1f5ff;
	font-weight: 600;
	cursor: pointer;
	user-select: none;
	transition: background .15s,transform .15s;
}
.article-vote-button.article-agree-btn:hover {
	background: linear-gradient(to right, #f44336, #e57373);
}
.article-vote-button.article-disagree-btn:hover {
	background: linear-gradient(to right, #40ceff,#006fff);
}
.percent-labels {
	text-align: center;
	font-size: 14px;
	color: #333;
}
