.stats_Cont {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	height: 100%;
}
.stats_Main {
    width: calc(100% - 305px);
    padding-right: 10px;
    font-size: var(--font-size-medium);
}
.statsContainer {
    width: 100%;
}
.statsContainer_Row {
    display: flex; 
	flex-wrap: wrap;
}
.statsContainer_Row:last-child {
    margin-bottom: 5px;
}
.statsContainer_Row:hover > div {
	background: var(--lighter-grey-color);
}
.statsContainer_Row > div {
	padding: 10px;
    box-sizing: border-box;
    vertical-align: middle;
	background: var(--background-color);
    border-radius: 5px;
	margin-bottom: 5px;
	height: inherit;
}
.statsContainer_Row > div:first-child {
    flex: 1; 
	text-align: left; 
	padding-left: 10px;
	min-width: 150px;
}
.statsContainer_Row > div:not(:first-child) {
    text-align: right;
	padding-right: 10px;
	font-weight: bold;
	margin-left: 5px;
	align-items: center;
}
.statsContainer_Row .top:first-child {
	flex: none;
	min-width: 70px;
}
.statsContainer_Row .top:last-child {
	flex: none;
	min-width: 80px;
	text-align: right;
}
.statsContainer_Row .top:nth-child(2) {
    flex: 1;
    min-width: 150px;
}
.statsContainer_Row .top {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	font-weight: bold;
	align-items: center;
	height: 50px;
	box-sizing: border-box;
}
.statsContainer_Row .top img {
	margin-right: 10px;
}

/* NEWEST FURNI CSS */
.stats_Newest {
	height: 900px;
}
.stats_Newest .cont {
	overflow-y: scroll;
	height: 100%;
}
.newest-item {
    padding: 0px 0px 0px 0px;
    border-radius: 3px;
    margin: 0px 10px 10px 0px; 
    display: flex; 
    align-items: top; 
    flex-wrap: wrap;
    box-sizing: border-box;
    position: relative;
    background: var(--background-color);
    flex-grow: 1;
	width: 280px;
	max-width: 280px;
	height: 50px;
	overflow: hidden;
}
.newest-item:hover {
	background: var(--lighter-grey-color);
}
.newest-item img.furni-icon {
    max-width: 100%;
    max-height: 100%; 
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    image-rendering: pixelated;
    
    transform: scale(1);
    transform-origin: center;
}
.stats-furni-icon-div {
    margin: 0px 10px 0px 0px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}
.stats-furni-header-div {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: middle;
}