#content .estate_table {
	width: 100%;
	border-spacing: 0px;
	border: 2px solid var(--black-color);
}

#content .estate_table caption {
	font-size: calc(22px * var(--font-size));
	padding-bottom: 20px;
}

#content .estate_table td {
	border: 1px solid var(--black-color);
	padding: 6px;
}

#content .estate_table th {
	border: 1px solid var(--black-color);
	padding: 6px;
	background-color: dimgray;
	color: white;
}

#content .estate_table tr th {
	width: 10%;
	max-width: 70px;
}

#content .estate_table tr td:nth-of-type(1) {
	width: 70%;
}

#content .estate_table tr td:nth-of-type(2) {
	width: 20%;
}
@media (min-width: 400px) {
	#content .estate_table tr td:nth-of-type(2) {
		min-width: 150px;
	}
}

#content .estate_table tr:hover {
	background-color: gray;
	opacity: 0.7;
	color: var(--white-color);
}

@media (max-width: 500px) {
	#content .estate_table {
		font-size: calc(12px * var(--font-size));
	}
	#content .estate_table td {
		padding: 2px;
	}
	#content .estate_table tr td:nth-of-type(3) {
		min-width: 125px;
	}
}