.sidebar {
	min-width: 280px;
	width: 280px;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	overflow-y: auto;
	overflow-x: hidden;
	border: none;
	background-color: #123056;
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition: all .3s;
	z-index: 999;
}
.wrapper.off .sidebar {
	left: -280px;
}
.nav {
	padding-left: 0;
    margin-bottom: 0;
	list-style: none;
}
.nav-item {
	width: 100%;
	display: block;
	color: #f9f9f9;
	background: none;
	transition: background .3s ease-in;
}
.nav-item-link {
	width: 100%;
	display: block;
	padding: 10px 15px;
	font-size: 20px;
}
.nav-item .icon {
	margin-right: 10px;
}
.nav-item.active, .nav-item:hover {
	background: #234067;
}
.logo {
	display: block;
	font-size: 28px;
	padding: 15px;
}
.main {
	margin-left: 280px;
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	transition: all .3s;
}
.wrapper.off .main {
	margin-left: 0;
}
.menu {
	border-bottom: 2px solid #eee;
}
.instructions {
	background: #cdf3ef;
	padding: 20px;
	font-size: 16px;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
}
.ticket-details {
	background: #2782c3;
	padding: 20px;
	font-size: 16px;
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	color: #fff;
}
.btn .icon {
	margin-right: 5px;
}
/* Normalize */
a, a:hover, a:focus {
	text-decoration: none;
	color: inherit;
}

/* Questions */
.question-item {
	padding: 7px 10px 0 5px;
	background: #fafafe;
	position: relative;
}
.question-item:nth-child(even) {
	background: #f1f1f1;
}
.question-item .question-item__label {
	font-family: Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
}
@media (min-width: 992px) {
	.question-item:nth-child(1) {
		margin-top: 1.5em;
	}
	.question-item:nth-child(1) .question-item__label {
		display: inline-block !important;
		position: absolute;
		top: -1.8em;
	}
}
.question-item__status {
	display: flex;
	width: 100%;
	height: 100%;
	background-color: #ddd;
	color: #000;
	font-weight: bold;
}
.question-item__status--backlog {
	background-color: #eded09;
}
.question-item__status--assigned {
	background-color: #fad082;
}
.question-item__status--complete {
	background-color: #47d1ff;
}
.update-progress-bar {
	margin-top: 5px;
	background-color: #007bff;
	height: 2px;
	width: 0;
}
.update-progress-bar.process {
	width: 100%;
	transition: width 2s;
}
.update-progress-bar.success {
	width: 100%;
	background-color: #28a745;
}
.update-progress-bar.fail {
	width: 100%;
	background-color: #dc3545;
}
.form-text {
	margin: 0 0 .25em 0;
}

@media (max-width: 991px) {
	.main {
		width: 100%;
		margin-left: 0;
	}
	.sidebar {
		left: -280px;
	}
	.wrapper.on .sidebar {
		left: 0;
	}
	.wrapper.on .main {
		margin-left: 280px;
	}
}
.text-mono {
	font-family: monospace;
}
.text-right {
	text-align: right;
}
.math_step {
	display: block;
	padding: 15px;
	margin-bottom: 1em;
}
.math_step:before {
	display: inline-block;
	content: 'Step ';
	margin-right: 5px;
}
.highlight {
	background: #e3f9fe;
}