
.ResultTable {
	width: 100%;
	margin: 2rem 0;
}

.ResultTable tr:nth-child(odd) {
	background-color: var(--Grey8);
}

.ResultTable tr:nth-child(even) {
	background-color: var(--Grey9);
}

.ResultTable td {
	padding: 5px 10px;
	border: 1px solid white;
	text-align: left;
	background-color: inherit;
}

.ResultTable td.Right {
	min-width: 50%;
	word-break: break-all;
}

.Block {
	margin: 2rem 0;
	padding: 1rem 20px;
	background: var(--Grey9);
	text-align: left;
}

.Block div {
	margin: 1rem 0;
}

input[type='text'] {
	width: 75%;
}

input[type='submit'], .ButtonText {
	color: white;
	background-color: black;
}

.Block textarea {
	width: 75%;
	height: 4em;
}

.Block input[type="radio"], .Block input[type="checkbox"] {
	display: none;
}

.Block label {
	display: inline-block;
	width: 2em;
	height: 2em;
	margin: 0 10px;
	font-size: 1rem;
	line-height: 2em;
	background: var(--Grey);
	text-align: center;
	cursor: pointer;
}

.Block input[type="radio"] + label {
	border-radius: 1em;
}

.Block input[type="checkbox"] + label {
	border-radius: 0.25em;
}

.Block input:checked + label {
	background: var(--Red);
	color: white;
}