.test-page {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	align-items: center;
}

.test-progress-container {
	width: 100%;
	height: 10px;
	background-color: black;
	display: flex;
	flex-direction: row;
}

.test-progress-bar {
	width: 0%;
	background-color: cornflowerblue;
	height: 100%;
}

.test-word-container {
	position: relative;
	width: 100%;
	min-height: calc(40% - 10px);
	background-color: rgb(253,94,83);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 6px lightgrey;
	padding-bottom: 10px;
    box-sizing: border-box;
}

.test-top-bar {
	position: absolute;
	top: 0px;
	left: 0px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	padding-top: 15px;
}

.test-home-button {
	background-image: url(./img/home.svg);
	background-size: auto;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,0);
	border-width: 0px;
	height: 20px;
	width: 20px;
	cursor: pointer;
	margin-left: 15px;
}

.test-feedback-bar {
	display: flex;
	flex-direction: row;
}

.test-feedback-icon {
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
	height: 20px;
	width: 20px;
}

.test-feedback-text {
	font-family: hand;
	font-size: 18px;
	margin: 0px;
	padding: 0px 15px 0px 5px;
}

.test-word {
	font-family: hand-bold;
	font-size: 64px;
	color: whitesmoke;
	margin: 0px;
	margin-top: 10vh;
	margin-bottom: 2vh;
	text-shadow: 1px 1px 2px grey;
	text-align: center;
}

.test-type-container {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.test-type {
	font-family: hand;
	font-size: 16px;
	background-color: whitesmoke;
	color: darkslategrey;
	border-width: 0px;
	border-radius: 3px;
	margin: 0px;
    padding: 3px 5px;
    box-shadow: 1px 1px 4px grey;
}

.test-input-container {
	max-height: 60%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
}

.test-input-wrapper {
  width: 100%;
}

.test-input {
	width: 100%;
	font-family: hand;
	font-size: 24px;
	border-radius: 0px;
	border-width: 0px;
	border-color: grey;
	border-bottom-width: 1px;
	box-shadow: 0px 0px 6px lightgrey;
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
}

.test-input:focus {
	outline: none;
}

.test-toolbar-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.test-toolbar-button {
	position: relative;
	width: 30%;
	height: 30px;
	background-size: auto 60%;
	background-repeat: no-repeat;
	background-position: center;
	margin: 10px;
	background-color: #e3e3e3;
	cursor: pointer;
	box-shadow: 2px 2px 6px lightgrey;
	border-width: 0px;
	font-family: hand-bold;
	font-size: 16px;
	color: black;
}

.test-message {
	position: absolute;
	top: 120%;
	left: 50%;
	background-color: grey;
	color: white;
	cursor: auto;
	padding: 10px;
	font-family: hand;
	font-size: 16px;
	transform: translate(-50%, 0px);
	transition: all 1s ease-out;
	box-shadow: 2px 2px 6px lightgrey;
}

.test-message:before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: -7px;
	left: 50%;
	margin-left: -8px;
	border-style: solid;
	border-width: 0 8px 8px 8px;
	border-color: rgba(0,0,0,0) rgba(0,0,0,0) grey rgba(0,0,0,0);
	box-sizing: border-box;
}

.test-context-container {
	width: 80%;
	max-width: 700px;
	align-self: center;
	display: none;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	margin-top: 10px;
	flex-wrap: wrap;
	gap: 0px 20px;
}

.test-page-hidden-input {
    height: 1px;
    width: 1px;
    box-sizing: border-box;
    border-style: none;
    padding: 0px;
    opacity: 0;
}