table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}

table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(images/icon_warn.gif);
}

input[type="checkbox"] {
	width: 12px;
	height: 12px;
	display: inline-block;
	accent-color: #EA2839;
}

.section-fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.fields-block-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.fields-block-bottom input {
	width: 45%;
}

.fields-block-bottom .button {
	width: 50%;
	height: 40px;
}

#send_message:disabled {
	background-color: grey;
	pointer-events: none;
	cursor: not-allowed;
}

.checkbox-personal {
	display: block;
}

@media(max-width: 768px) {
	.section-fields {
		grid-template-columns: 1fr;
		box-sizing: border-box;
		display: block;
	}

	.fields-block-bottom {
		flex-direction: column;
	}

	.fields-block-bottom input,
	.fields-block-bottom .button {
		width: 100%;
	}
}

.form__product-type {
	display: none;
}