.inventory-item-box {
	width: 100%;
	display: flex;
	flex-flow: row;
}
.inventory-item-box .left {
	width: calc(40% - 10px);
	margin-right: 10px;
}
.inventory-item-box .right {
	width: 60%;
}
.inventory-item-box .image {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: auto;
    display: block;
    padding-bottom: 100%;
}
.inventory-item-box .image > span {
	width: 100%;
	position: absolute;
	height: 100%;
	background-position: 50%;
	background-size: cover;
}
.inventory-item-box .body {
	
}
.inventory-item-box .body h3 {
	font-size: 1.6em;
	color: #ffff5e;
	margin-bottom: 10px;
}
.inventory-item-box .body .count {
	margin: 5px 0;
	color: #a59fff;
	font-size: 1.2em;
}