.property-list {
	width: 100%;
	min-width: var(--list-min-width);
	text-align: center;
	white-space: nowrap;
	font-weight: var(--font-weight-book);
}

.property-list tr {
	background-color: var(--color-background);
	transition: background-color 0.3s ease;
}

.property-list thead tr {
	border-top: 1px solid var(--color-foreground);
	border-bottom: 1px solid var(--color-foreground);
}

.property-list tbody tr:last-of-type {
	border-bottom: 1px solid var(--color-foreground);
}

.property-list tbody tr:hover {
	background-color: var(--color-brown);
}

.property-list tbody tr:hover:before, .property-list tbody tr:hover:after {
	opacity: 1;
}

.property-list th, .property-list td {
	-webkit-user-drag: none;
}

.property-list th, .property-list th a {
	font-family: var(--font-family-inter);
	font-size: var(--font-size-base);
	color: var(--color-foreground);
	text-decoration: none;
}

.property-list th i {
	display: block;
	font-size: var(--font-size-s-2);
}

.property-list .active span {
	position: relative;
}

.property-list .active span:after {
	content: "";
	position: absolute;
	display: block;
	font-size: 1rem;
	top: -0.74em;
	left: 50%;
	transform: translateX(-50%);
	width: 16px;
	height: 8px;
	background-image: url("../../../img/arrow-sort.svg");
}

.property-list .active.desc span:after {
	transform: translateX(-50%) rotate(180deg);
}

.property-list a {
	display: block;
	color: var(--color-foreground);
	text-decoration: none;
	padding: 14px 0;
	white-space: nowrap;
}

.property-list th a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 48px;
	padding: 13px 0;
}

.property-list a:hover, .property-list th a:hover {
	color: var(--color-foreground);
}

.favorite-mark {
	width: 27px;
	height: auto;
}

.property-list .status-cell {
	width: 10em;
}

.property-list .detail {
	padding-right: 1em;
}

.property-list .detail img {
	max-width: 30px;
}

.property-list .favorite {
	padding-left: 1em;
}

.property-list .status {
	text-transform: uppercase;
}

.property-list .not-found {
	font-size: var(--font-size-b);
	padding: 1em;
	text-align: center;
}

.acc-marker {
	display: inline-block;
	color: var(--color-foreground);
	background-color: var(--color-brown);
	width: 1.875em;
	aspect-ratio: 1 / 1;
	line-height: 1.875em;
	transition: background-color 0.3s ease;
}

.property-list tbody tr:hover .acc-marker {
	background-color: var(--color-background);
}

@media screen and (max-width: 1540px) {
	.property-list, .property-list th, .property-list th a {
		font-size: var(--font-size-s-2);
	}
}
