@media (hover:hover) and (pointer:fine) {
	#kerdoiv .magatartas-checkbox:not(:checked)+.question-answer .answer>label:hover {
		border-color: green;
		border-width: 2px;
		box-shadow: 0 0 10px 3px gray
	}

	#kerdoiv .magatartas-checkbox:checked+.question-answer .answer>label:hover {
		box-shadow: 0px 0px 8px 2px blue inset, 0px 0px 10px 3px red
	}
}

@media only screen and (max-width: 49.99em) {
	#kerdoiv #tunet {
		padding-top: 2.6em;
	}

	#kerdoiv .questions-wrap>div {
		width: 100%
	}

	#kerdoiv .questions-wrap {
		flex-direction: column;
	}

	#kerdoiv .answer {
		margin-right: 1em;
		margin-left: 0.5em
	}
}

@media only screen and (min-width:50em) {
	#kerdoiv #tunet {
		padding-top: 1.6em;
	}

	#kerdoiv .questions-wrap>div {
		width: 50%
	}
}

#kerdoiv input[type="checkbox"] {
	display: block
}

#kerdoiv .questions-wrap {
	display: flex;
}

#kerdoiv textarea {
	font-family: Arial;
	font-size: 1em;
	height: 10em;
	width: 100%;
	resize: none;
	padding: 0.2em 2em 0.2em 0.2em;
	background-color: lightgray;
	overflow: auto;
	border-width: 2px;
	border-style: solid;
	border-color: teal
}

#kerdoiv .answer {
	display: flex;
	align-items: center;
	height: 3em;
}

#kerdoiv .answer label {
	width: 1em;
	height: 1em;
	border-radius: 1em;
	margin-right: 0.5em;
	cursor: pointer;
	border: 1px solid black;
	display: block;
}

#kerdoiv .magatartas-checkbox:checked+.question-answer .answer>label {
	box-shadow: 0px 0px 8px 2px blue inset;
}

#kerdoiv .magatartas-checkbox:focus+.question-answer,
#kerdoiv .magatartas-checkbox:active+.question-answer {
	outline: 2px solid blue;
	background-color: lightcyan;
}

#kerdoiv .topic {
	font-size: 1.2em;
	font-weight: bold;
	background-color: palegoldenrod;
	border: 1px solid black;
	word-break: break-word;
	text-align: center;
	min-height: 3em;
	padding: 0.2em;
	display: flex;
	align-items: center;
	justify-content: center;
}

#kerdoiv .question-answer {
	display: flex;
	align-items: center;
	border: 1px solid black;
	background-color: white;
	min-height: 3.6em
}

#kerdoiv .question-answer>div:first-of-type {
	padding: 0.5em;
	width: 90%;
}