@charset "utf-8";
.contactform_container table tr th {
	position: relative;
}
.err_message   {
	color: #FF0004;
	position: absolute;
	top: 60px;
}
label:has(#confirmed) {
	cursor: pointer;
}

#submit {
	opacity: 0.3;
	pointer-events: none;
	cursor: default;
	transition: opacity 0.2s;
}

#submit.active {
	opacity: 1;
	pointer-events: auto;
	cursor: pointer;
}

#submit.active:hover {
	opacity: 0.8;
}
