/* New Talk styles for LT2 */

#facetspinner {
	float: left;
	position: fixed;
	left: calc(var(--lt-sidebar-width-left) - 15px);
	top: 70px;
	right: unset;
	z-index: 49;
	background: #fff;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	line-height: 0;
	margin: 0;
	xpadding: 8px 6px;
	border: 1px solid #0005;
	display:none;
	box-shadow: 0 2px 5px -1px #0005;
}

#facetspinner.hidden {
	display:none;
}

#facetspinner > i {
	xanimation: spin 4s linear infinite;
	xtransform-origin: 8px 7px;
	margin: 6px 0 0 6px;
	color: var(--lt-badge-color);
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform:rotate(360deg);
	}
}




/* talk topic */
.continuation
{
	font-weight: bold;
	color: #333;
	margin: 15px 0 20px 0;
}

@keyframes spin {
	to { transform: rotate(.5turn); }
}

@keyframes bg {
	50% { background: #655; }
}

.pie::before {
	content: '';
	display: block;
	margin-left: 50%;
	height: 100%;
	border-radius: 0 100% 100% 0 / 50%;
	background-color: inherit;
	transform-origin: left;
	animation: spin 3s linear infinite,
	bg 6s step-end infinite;
}


@media (max-width: 767px) {
	#facetspinner {
		left: -10px;
		top: -57px;
	}
}


#div#mg7961075 img {
	max-width: 800px;
}

#msgs {
	margin-top: 0;
	padding-top: 0;
}

@container lt2_content_interior (width < 576px) {
	#msgs {
		padding:0 0 var(--lt-padding) 0;
	}
	.mh,
	.mh.mR {
		border-radius: 0;
		border-left: none;
		border-right: none;
		padding-left: 20px;
		padding-right: 20px;
		margin-right:0;
		margin-left:0;
	}

	.mT {
		padding: var(--lt-padding-quarter) var(--lt-padding);
		word-break: break-word;
	}

	.lt2 .talkpostformbox {
		min-width: unset;
		margin-left: calc(var(--lt-padding-quarter-neg) + var(--lt-padding-half-neg));
		width: calc(100vw - var(--lt-padding-half));
		padding: var(--lt-padding-quarter);
	}
	.talkpostform {
		padding: var(--lt-padding-half);
	}

	.review_placeholder,
	.lt2 .talkpostte {
		width: 100%;
	}

	.previewBox {
		margin-left: -15px;
		width: calc(100vw - 10px);
	}
}

/* Poll form styles */
.poll_creator .poll_question,
.poll_creator .poll_option {
	margin: 0.5em 0 1em 0;
}

.poll_creator label {
	margin: 0.5em 0;
	display: block;
}

.poll_creator .poll_actions {
	margin-top: 2em;
}

/* Poll display styles */
.poll_display {
	border: 2px dashed #4a90e2;
	border-radius: 8px;
	padding: 1em;
	margin: 1em 0;
	background-color: #f0f8ff;
	max-width: 600px;
}

.poll_display h4 {
	margin-top: 0;
	margin-bottom: 0.5em;
	color: #333;
	float: right;
}

.poll_display .poll_question {
	font-weight: bold;
	margin-bottom: 1em;
	color: #555;
}

.poll_display .poll_option {
	margin: 0.5em 0;
}

.poll_display .poll_option input[type="radio"],
.poll_display .poll_option input[type="checkbox"] {
	margin-right: 0.5em;
}

.poll_display .poll_option label {
	cursor: pointer;
	font-weight: normal;
}

.poll_display .poll_actions {
	margin-top: 1em;
}

@keyframes throb {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

/* Poll Results Styles */
.poll_results {
	background-color: #f0f8ff;
	border-color: #4a90e2;
}

.poll_results h4 {
	color: #2c5aa0;
}

.poll_results_options {
	margin-top: 1em;
}

.poll_result_option {
	margin: 0.5em 0;
	background-color: #ffffff;
	border: 1px solid #ddd;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}

.poll_result_option.user_voted {
	/* border: 2px solid #000000; */
}

.poll_results:not(.poll_closed) .poll_result_option.user_voted:hover {
	background-color: #cce7ff !important;
	transition: background-color 0.2s ease;
}

.poll_results:not(.poll_closed) .poll_result_option.user_voted:hover .poll_option_text {
	background-color: #cce7ff !important;
}

.poll_option_text {
	padding: 0.5em;
	font-weight: normal;
	position: relative;
	z-index: 2;
}

.poll_option_progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #87ceeb;
	z-index: 1;
	transition: width 0.3s ease;
}

.poll_option_progress.winner {
	background-color: #90ee90;
}

.poll_option_stats {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	z-index: 3;
	text-align: right;
}

.poll_option_percent {
	font-weight: bold;
	color: #333;
	font-size: 0.9em;
}

.poll_total_votes {
	margin-top: 1em;
	text-align: left;
	font-size: 0.9em;
	color: #555;
	font-style: normal;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.poll_votes_left {
	/* Left side content */
	flex: 1;
}

.poll_time_right {
	/* Right side content */
	color: #555;
	text-align: right;
	flex-shrink: 0;
}