/*
* Vocab 03 - Type the word
* @author gcapper
*/
input.unit01::selection {
	background: #ff9aca;
	color: #000;
}

input.unit02::selection {
	background: #7fd8d6;
	color: #000;
}

input.unit03::selection {
	background: #ec9d80;
	color: #000;
}

input.unit01::-moz-selection {
	background: #ff9aca;
	color: #000;
}

input.unit02::-moz-selection {
	background: #7fd8d6;
	color: #000;
}

input.unit03::-moz-selection {
	background: #ec9d80;
	color: #000;
}

#inputTextBox {
	width: 100%;
}

div.ui-tooltip {
	position: absolute;
	color: #000;
	border: 4px solid #FEBE65;
	border-radius: 5px;
	padding: 0;
	opacity: 1;
	width: 230px;
	height: 30px;
}

.ui-tooltip-content {
	position: relative;
	padding: 5px 15px 10px 15px;
	width: 200px;
	background: #FEBE65;
}

div.ui-tooltip-content::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-width: 20px;
	border-style: solid;
	border-color: transparent transparent #FEBE65 transparent;
	top: -43px;
	left: 100px;
}

#startButton {
	margin-top: 0;
}

#question.unit01 {
	background-color: #EE519B;
}

#question.unit02 {
	background-color: #00B2AD;
}

#question.unit03 {
	background-color: #E05D2C;
}

#questionArea,
#checkAnswerButton,
#timeCounter {
	display: none;
}

input[type="button"] {
	margin: 5px 0;
}

#controls {
	min-height: 93px;
}

@media only screen and (max-width:767px) {
	#startButton {
		margin-top: 50px;
	}

}