.multiple-choice-question-container {
	border: 1px solid rgba(92, 92, 92, 0.6);
	border-radius: 6px;
	box-shadow: 0 0 8px rgba(92, 92, 92, 0.5);
	margin: 0 auto 10px;
	margin-top: 8px;
	max-width: 900px;
}

.multiple-choice-answer .list-group-item {
	background: orange !important;
}

.multiple-choice-answer {
	line-height: 16px !important;
	cursor: pointer;
}

.question {
	white-space: pre-line;
}

.question label {
	font-weight: 600;
	font-stretch: extra-expanded;
	color: #2e4468;
}

.multiple-choice-question-toolbar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.multiple-choice-answer-incorrect-popover {
	background-color: #f5c6cb;
	color: #721c24;
	padding: 2px;
}

.multiple-choice-answer-correct-popover {
	background-color: #c3e6cb;
	color: #155724;
	padding: 2px;
}

.multiple-choice-answer-incorrect-popover > .arrow::after {
	border-top-color: #f5c6cb;
}

.multiple-choice-answer-correct-popover > .arrow::after {
	border-top-color: #c3e6cb;
}

