body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #ffffff;
}

table {
	font-family: Verdana, Arial;
	margin: 0px;
	padding: 0px;
}

.contact-popup {
	background: rgba(0, 0, 0, 0.45);
	display: none;
	height: 100%;
	left: 0px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 100;
}

.contact-popup-content {
	background: #ffffff;
	border: 1px solid #323232;
	box-sizing: border-box;
	font-family: Verdana, Arial;
	left: 50%;
	padding: 24px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 360px;
}

.contact-popup-content h2 {
	font-size: 20px;
	font-weight: normal;
	margin: 0 0 20px;
}

.contact-popup-content label {
	display: block;
	font-size: 12px;
	margin: 10px 0 4px;
}

.contact-popup-content input,
.contact-popup-content textarea {
	border: 1px solid #999999;
	box-sizing: border-box;
	display: block;
	font: 12px Verdana, Arial;
	padding: 6px;
	width: 100%;
}

.contact-popup-content textarea {
	resize: vertical;
}

.contact-popup-close {
	background: transparent;
	border: 0;
	color: #323232;
	cursor: pointer;
	font-size: 24px;
	line-height: 20px;
	padding: 0;
	position: absolute;
	right: 12px;
	top: 10px;
}

.contact-submit {
	background: #323232;
	border: 0;
	color: #ffffff;
	cursor: pointer;
	font: 12px Verdana, Arial;
	margin-top: 16px;
	padding: 9px 14px;
}

.contact-status {
	font-size: 11px;
	margin: 12px 0 0;
}

@media screen and (max-width: 400px) {
	.contact-popup-content {
		width: calc(100% - 30px);
	}
}