
:root {
		--vote-body-background:					#caccd1;
		--vote-font-family:						Arial, sans-serif;
		--vote-font-size:						12px;
		--vote-font-color:						#252935;
		--vote-font-weight:						normal;
		--vote-font-style:						normal;

		--vote-thumbs-background:				#e8e9eb;
		--vote-thumbs-background-hover:			#ced0d5;
		--vote-thumbs-border-color:				#c0c2c8;
		--vote-thumbs-border-color-hover:		#b5b7be;
		--vote-thumbs-color:					#252935;
		--vote-thumbs-up-color-hover:			#000;
		--vote-thumbs-down-color-hover:			#000;

		--already-voted-background:				#ced0d5;
		--already-voted-color-boder:			#b5b7be;
		--already-voted-thumbs-color:			#252935;
		--already-voted-thumbs-color-hover:		#252935;

		--vote-good-color:						#252935;
		--vote-bad-color:						#f52929;
		--vote-results-section-background:		#fff;
		--vote-results-section-font-size:		16px;
		--vote-results-section-font-weight:		bold;
}

body{margin:0;background-color:var(--vote-body-background);font-family:var(--vote-font-family);font-size:var(--vote-font-size);color:var(--vote-font-color);font-weight:var(--vote-font-weight);font-style:var(--vote-font-style);display:flex;align-items:stretch;justify-content:center;line-height:1}.container{max-width:978px;width:100%;background-color:inherit;padding:5px 10px;display:flex;align-items:center;box-shadow:none;height:44px}.vote-section{display:flex;align-items:center;margin-right:20px}.vote-section button{display:inline-block;background-color:var(--vote-thumbs-background);border:1px solid var(--vote-thumbs-border-color);border-radius:5px;padding:4px;margin-right:10px;transition:background-color 0.3s;cursor:pointer}.vote-section button:hover{background-color:var(--vote-thumbs-background-hover);border-color:var(--vote-thumbs-border-color-hover)}.vote-section button[disabled]{cursor:default}.vote-section button:last-child{margin-right:0}.vote-section button.already-voted,.vote-section button.already-voted:hover{background-color:var(--already-voted-background);border-color:var(--already-voted-color-boder)}.vote-section button.already-voted .svg-icon{fill:var(--already-voted-thumbs-color)}.vote-section button.already-voted:hover .svg-icon{fill:var(--already-voted-thumbs-color-hover)}.vote-section button .svg-icon .st0{fill-rule:evenodd;clip-rule:evenodd}.vote-section button .svg-icon{width:26px;height:auto;fill:var(--vote-thumbs-color);transition:fill 0.3s;vertical-align:middle}.vote-section button:hover .thumbs-up{fill:var(--vote-thumbs-up-color-hover)}.vote-section button:hover .thumbs-down{fill:var(--vote-thumbs-down-color-hover)}.good,.bad{display:inline-block;height:14px;border-right:2px solid;width:0%}.good{background-color:var(--vote-good-color);border-color:var(--vote-good-color);vertical-align:top}.bad{background-color:var(--vote-bad-color);border-color:var(--vote-bad-color);vertical-align:bottom}.results-section{display:flex;align-items:center;justify-content:center;background-color:var(--vote-results-section-background);padding:10px;border-radius:0;min-width:50px;height:14px}.results-section p{font-size:var(--vote-results-section-font-size);font-weight:var(--vote-results-section-font-weight);margin:0}table{border-collapse:collapse;margin:0;padding:0}table td{margin:0;padding:2px 10px 2px 0}table td:nth-child(1){width:50px}table td:nth-child(2){width:auto}table td:nth-child(3){text-align:right;min-width:0;white-space:nowrap;overflow:hidden}