/* Custom DRAG AND DROP css
--------------------------------------------------
MID GREY    #999999
LIGHT GREY  #E6E6E6
DARK GREEN  #4f959b
MID GREEN   #9dced2
LIGHT GREEN #AFE5EA
LIGHT BLUE  #38C0CB
RED         #C8374E
ORANGE      #CB4938


 */
.choice-item img {
	width: 100%;
	height: auto;
}
.choice-item img:hover {
	cursor: pointer;
	box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5)
}
.choice-item {
	position: relative;
	line-height: 1.5em;
}
.choice-item:after {
	font-weight: 700;
	font-size: 36px;
	position: relative;
	top: -50px;
	color: #FFF;
	content: attr(data-choice);
}

#game-screen{
	display: none;
	position: relative;

}

#feedback {
	display: none
}
.useranswer-feedback{
	border-left: 1px dashed #000;
	border-right: 1px dashed #000;
}
.statement-icon-feedback{
	text-align: center;
}

/* ----------- Large Display ----------- */
@media screen and (max-width:1920px) and (max-height:1080px) {

	/* Styles */
}

/* ----------- Laptop HiDPI screen ----------- */
@media screen and (max-width:1440px) and (max-height:900px) {

	/* Styles */
}

/* ----------- Laptop ----------- */
@media screen and (max-width:1366px) and (max-height:768px) {

	/* Styles */
}

/* ----------- Laptop MDPI screen ----------- */
@media screen and (max-width:1280px) and (max-height:800px) {

	/* Styles */
}

/* ----------- iPad ----------- */
@media only screen and (max-device-width:1024px) and (max-device-height:768px) {

	/* Styles */
	#activity {
		font-size: 1em;
	}
}

/* ----------- iPhone 5 ----------- */
@media only screen and (max-device-width:568px) and (max-device-height:320px) {

	/* Styles */
}
@media print {
	#question-holder {
		display: none
	}
	.btn {
		display: none
	}
	footer {
		display: none
	}
	#intro {
		display: none
	}
	#activity {
		text-align: left;
		border: none !important;
	}
	#feedback .question-item {
		margin-bottom: 12px
	}
	#replayBtn, #resetBtn{
		display: none;
	}
	#feedback-header p{
		display: none;
	}
}