
table.LayoutMainTable {
	margin-top: 70px;
}
td.LayoutCell > table.SearchFormTABLE {
	max-width: 760px;
	margin: 24px 0;
	padding: 32px 40px;
	background: #fff;
	font-family: rival-sans, sans-serif;
	color: #002958;
}

td.LayoutCell > table.SearchFormTABLE .SearchFormTABLE {
	margin: 0;
}

td.LayoutCell > table.SearchFormTABLE td {
	padding: 0;
}

td.LayoutCell > table.SearchFormTABLE > tbody > tr:first-child,
td.LayoutCell > table.SearchFormTABLE > tbody > tr:nth-child(3) {
	display: none;
}

td.LayoutCell .DataFormLabelHeader {
	display: none !important;
}

td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE {
	background: transparent;
	width: 100% !important;

	tbody {
		display: flex;
	}
}

td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE .SearchFormTR {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	flex: 1 1 calc(50% - 10px);
	margin: 0;
}

td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE .SearchFormTD:nth-child(2) {
	display: none;
}

td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE .SearchFormTD {
	width: 100%;
	padding: 0;
}

td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE .SearchFormTD:first-child .DataFormLabel {
	font-weight: 600;
	font-size: 16px;
	text-transform: capitalize;
}

td.LayoutCell .DataFormTextBox {
	width: 100%;
	padding: 18px;
	border: 1px solid #BACECE;
	border-radius: 0;
	background-color: #fff;
	color: #002958;
	font-family: inherit;
	font-size: 16px;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

td.LayoutCell .DataFormTextBox:focus {
	outline: none;
	border-color: #00677F;
	box-shadow: 0 0 0 2px rgba(0, 103, 127, 0.1);
}

td.LayoutCell .DataFormTextBox::placeholder {
	color: #6F7F7F;
}

td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE .SearchFormTD:first-child .DataFormLabel {
	display: block;
	margin: 0;
	font-family: rival-sans, sans-serif;
	line-height: 24px;
	color: #002958;
}

td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE .SearchFormTD:last-child {
	flex: 1 1 auto;
}

td.LayoutCell .DataFormButton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 24px;
	padding: 14px 32px;
	background: #CEDC00;
	color: #002958;
	font-family: quincy-cf, serif;
	font-weight: 700;
	font-size: 16px;
	text-transform: capitalize;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease;
	float: left;
}

.SearchFormTABLE input[type="submit"].DataFormButton {
	float: left !important;
}

td.LayoutCell .DataFormButton:hover {
	background: #00677F;
	color: #fff;
}

td.LayoutCell .DataFormLabelErrorMessage {
	display: block;
	margin-top: 24px;
	font-size: 16px;
	color: #BD0000;
	background: transparent;
}

@media (max-width: 768px) {
	td.LayoutCell > table.SearchFormTABLE {
		margin-top: 16px;
		padding: 24px 20px;
		width: 97vw;
	}

	td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE {
		flex-direction: column;

		tbody {
			flex-direction: column;
			gap: 20px;
		}
	}

	td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE .SearchFormTR {
		flex: 1 1 100%;
	}

	td.LayoutCell .DataFormButton {
		width: 100%;
	}

	td.LayoutCell .DataFormTextBox {
		width: 100% !important;
		max-width: 100% !important;
	}

	td.LayoutCell > table.SearchFormTABLE table.SearchFormTABLE .SearchFormTD:last-child {
		padding-right: 15px !important;
	}
}