@charset "utf-8";
/* CSS Document */
/*
  Emerald Computer Sales Ltd.
  Author: Chris Kovalcik	
  Date:   May 21, 2023

  Filename: form.css
  Contains styles used by the contact page.
*/

td {
	white-space: nowrap;
	height: 25px;
}
#requests {
	margin-top: 4px;
}
.ValCheckImage {
	display: none;
}
input:focus {
	background: aliceblue;
}
textarea:focus {
	background: aliceblue;
}
legend {
	margin-top: 20px;
	font-weight: bold;
}
.bodytextcontact {
	z-index: 1;
	position: relative;
}
.maincontact {
	overflow: auto;
	padding: 10px;
	position: relative;
	/*background: linear-gradient(to left, white 98%, #04403d);*/
	height: 100%;
	flex-grow: 1;
	align-content: center;
	max-width: 1000px; /* Keep it from getting too wide */
	margin: auto;
	z-index: 0;
}
.maincontact::after { /* Expand Div */
	clear: both;
	content: "";
	display: table;
}
.maincontact::before { /* Dynamically load background and show paritally transparent */
	content: "";
	background-image: url("../images/contactbackground.jpg");
	background-size: cover;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	opacity: 0.1;
}
.contactrow {
	display: block;
	clear: both;
	margin: 10px;
}
.contactcol {
	display: inline-block;
	float: left;
	margin: 5px;
	width: 40%;
}
#requests {
	width: 90%;
	height: 100px;
}
@media screen and (max-width: 720px) {
	.contactcol {
		display: block;
		margin: 5px;
		width: 40%;
		clear: both;
	}
}