@charset "utf-8";
/* CSS Document */


#question-image {
	position: relative;
	margin-top:20px;
	margin-bottom:20px;
	cursor:pointer;
	box-shadow:0px 0px 10px 4px rgba(0,0,0,0.2);
	
}

#question-image:hover {
	box-shadow:0px 0px 10px 4px rgba(100,100,100,0.5);
}

#question-choices {

}

.choice-btn-outer {
	padding:2px;
	box-sizing:padding-box;
}
.choice-btn {
	text-align:center;
	background:#ddd;
	padding:10px;
	overflow:hidden;
	display:flex;
	align-items: center;
	justify-content: center;
	min-height:85px;
	position: relative;
	opacity:0;
	cursor:pointer;
	box-sizing:content-box;

}


.choice-btn.small {
	font-size:13px;
	line-height:18px;
	padding:5px;

}

.choice-btn:hover {
	background:#C4DFF3
		
}

.choice-btn.select {
	background:#9FBCD1;
}


.choice-btn.missed:after, .choice-btn.correct:after {
	content:"\2714";
	position:absolute;
	bottom:-5px;
	right:2px;
	font-size:1.8em;
}


.choice-btn.small.missed:after, .choice-btn.small.correct:after {
	bottom:2px;
	font-size:1.8em;
}

.choice-btn.missed {
/*	background:#97EFB2*/
}

.choice-btn.select.correct, .feedback-item table ul li.correct {
	background:#97EFB2;
}

.choice-btn.select.incorrect, .feedback-item table ul li.incorrect {
	background:#ff6565;
}

.choice-btn.incorrect:after {
	content:"\2718";
	position:absolute;
	bottom:-5px;
	right:2px;
	font-size:1.8em;
}
.choice-btn.small.incorrect:after {
	bottom:2px;
	font-size:1.8em;
}


#questionNumber {
	float:left;
	height:40px;
	width:40px;
	border-radius:100%;
	border:solid;
	text-align:center;
	font-weight:bold
}

#questionNumber > span {
	
	display:block;
	line-height:30px;
	height:30px;
}


/*Feedback*/


.feedback-item table ul {
	margin:0;
	padding:0;
	list-style:none;
	display:flex;
	flex-direction:column;
}

.feedback-item table ul li{
	flex:1 1 80px;
	margin-bottom:2px;
	padding:5px;
	box-sizing:content-box;
}

.dropdown-item {
	display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-decoration: none;
}

.dropdown-item:hover, .dropdown-item:focus {
	color: #16181b;
    text-decoration: none;
    background-color: rgba(105, 129, 175,0.25)
}

div[contenteditable] {
	margin:10px auto;
	border:solid 1px #333;
	width:100%;
	min-height:300px;
	padding:10px 15px;
	background:#FFF;
}

#menuPopup .modal-body {
	text-align:left;
}


#link-list {
	list-style:none;
	margin:0;
	padding:0;
}

#link-list li {
	
 display:flex;
 flex-direction;
 align-content:center;
 margin:1px auto;
}

#link-list li a {
	display:flex;
	flex:1 1 auto;
	justify-content: space-between;
	padding:10px 15px;
}

#link-list li a:hover {
	background:#6981af;
	color:#eee;
}

