.items {
	display: flex;
	margin: 1em 0;
	flex-direction: row;
	align-items: start;
	justify-content: start;
	flex-wrap: wrap;
}

.items > .item {
	position: relative;
	border-radius: 3px;
	padding: 0.2em;
	box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.6 );
	background-color: #F5F5F5;
	width: 300px;
	text-align: center;
	margin: 3em 0.5em 1em 0.5em;
	transition: all 0.2s linear;
}

.items > .item > img {
	height: 200px;
	position: relative;
	top: -2em;
}

.items > .item > .description {
	overflow: hidden;
}

.items > .item:hover {
	z-index: 1;
	transform: scale( 1.2 );
}

.items > .item > .description > .title {
	font-weight: bold;
	font-size: 1em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
}

.items > .item > .description > .height,
.items > .item > .description > .material {
	font-weight: normal;
	color: #656565;
	height: 1em;
}

.items > .item > .description > .properties {
	margin: 1em auto 1em auto;
}

.items > .item > .description > .properties th,
.items > .item > .description > .properties td {
	line-height: 1em;
}

.items > .item > .description > .properties th {
	font-weight: normal;
	color: #656565;
	text-align: right;
	padding-right: 1em;
}

.items > .item > .description > .properties td {
	color: #000000;
	text-align: left;
}

.items > .item > .description > .properties td > span {
	font-size: 0.8em;
	padding-left: 0.2em;
}

.items > .item > .description > .price {
	font-size: 1.2em;
	font-weight: bold;
	color: #D64C5E;
	margin-top: 0.8em;
}

.items > .item > .description > .price span {
	font-weight: normal;
	padding-left: 0.2em;
}

.items > .item .custom span {
	display: none !important;
}

.definition {
	font-weight: normal;
	color: #000000;
}

.definition > span {
	font-weight: bold;
	color: #6D7170;
	padding-right: 0.5em;
}
