:root {
	--color-black: #000000;
	--color-gray: #888888;
	--color-blue: #0056FF;
	--color-red: #F41112;
}
.daily-polls {
	/*
	padding: 10px;
	border: 1px solid #b3bfc4;
	*/
}
.daily-polls-question {
	margin: 0 0 30px;
}
.daily-polls-question:last-child {
	margin: 0;
	border-top: 1px solid #88888880;
	padding-top: 30px;
}
.daily-polls-question div {
	margin: 0 0 10px;
}
.daily-polls-question .daily-polls-question-txt {
	color: var(--color-black);
	font-size: 15px;
	font-weight: 500;
}
.daily-polls-question .daily-polls-question-txt.daily-polls-question-txt-2 {
	color: var(--color-gray);
}
.daily-polls-question-answers-block, .right-col div.daily-polls-question-answers-block {
	display: none;
}

/* Customize the label (the container) */
.daily-polls-container {
	font-size: 14px;
	line-height: 28px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 5px 15px;
	margin-right: 8px;
	border-radius: 50px;
}

/* Hide the browser's default radio button */

.daily-polls-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
/* Create a custom radio button */
.daily-polls-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
	display: none;
}
/* On mouse-over, add a grey background color */
.daily-polls-container:hover input ~ .daily-polls-checkmark {
	background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.daily-polls-container input:checked ~ .daily-polls-checkmark {
	background-color: #2196F3;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.daily-polls-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
/* Show the indicator (dot/circle) when checked */
.daily-polls-container input:checked ~ .daily-polls-checkmark:after {
	display: block;
}
/* Style the indicator (dot/circle) */
.daily-polls-container .daily-polls-checkmark:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

.daily-polls-question div.daily-polls-question-answers-block-action {
	color: #FFFFFF;
	font-size: 14px;
	line-height: 28px;
	display: inline-block;
	padding: 5px 15px;
	margin-right: 8px;
	border-radius: 50px;
}
.daily-polls-question-answers-block-action span {
	/*
	color: #270204;
	font-size: 12px;
	background: #FFFFFF;
	border-radius: 2px;
	padding: 2px;
	margin-top: -1px;
	display: inline-block;
	float: right;
	*/
}
.daily-polls-question-answers-block-action.daily-polls-question-answers-block-0 {
	background-color: #F41112;
}
.daily-polls-question-answers-block-action.daily-polls-question-answers-block-1 {
	background-color: #000000;
}
.daily-polls-question-answers-block-action.daily-polls-question-answers-block-2 {
	background-color: #00C11F;
}
.sidebar-area {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px;
}

@media only screen and (max-width: 576px){
	.daily-polls {
		max-width: 100% !important;
	}
}

.daily-polls-question-answers {
	display: flex;
}
.daily-polls-question-answers .daily-polls-container.daily-polls-container-buy {
	color: #008B16;
	background-color: #00C11F1A;
}
.daily-polls-question-answers .daily-polls-container.daily-polls-container-sell {
	color: #C32420;
	background-color: #F411121A;
}
.daily-polls-question-answers .daily-polls-container.daily-polls-container-hold {
	color: #000000;
	background-color: #0000000D;
}