.list-item {
	display: flex;
	max-width: 750px;
	padding-top: 10px;
	padding-bottom: 10px;
	align-items: center;
	height: 73px;
}

.list-item:has(.list-content:hover) {
	background-color: #f9fafb;
}

.list-content {
	flex: 1;
    transition: 0.15s;
	height: 100%;
	padding: 12px;
}

.list-divider {
	width: 100%;
	background-color: #d1d5db;
	height: 1px;
	max-height: 1px;
}

.list-name {
	color: #1f2937;
	font-size: 16px;
}

.list-type {
	color: #374151;
	font-size: 10px;
    margin-top: 4px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.icon-button {
	max-width: 45px;
	width: 55px;
	color: #374151;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
    transition: 0.15s;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.icon-button article:nth-of-type(2) {
	font-size: 10px;
}

/* text-overflow ellipsis */
.list-content {
    overflow: hidden;
}

.list-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.list-item:hover .list-name {
    white-space: normal;
}
/* end text-overflow ellipsis */

.list-item {
	padding: 0 !important;
}