.item {
	transition: all 200ms;
	overflow: hidden;
	position: relative;
}

.item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

.item.active {
	width: 66.666666666666%;
}

.item-content {
	transition: all 200ms;
}

.item.inactive .item-content {
	opacity: 0;
}

.item.inactive {
	width: 16.666666666666%;
}

.item.active h2 {
	top: 70px;
}

.item h2 {
	font-size: 40px;
	position: absolute;
	top: 38%;
	color: #fff;
	padding: 0 25px;
	line-height: 1;
	transition: all 400ms;
}

.item .h-0 {
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: 200ms all;
}

.item.active .h-0 {
	height: 80px;
	opacity: 1;
}

.item.active div {
	transform: translateY(0);
}

.item-order {
	margin-top: 0.1rem;
	margin-bottom: 0.3rem;
	color: #fff;
	font-size: 1em;
	font-weight: 300;
	text-indent: 2px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	letter-spacing: 4px;
	line-height: 1;
}

.item-total {
	display: inline-block;
	position: relative;
	font-weight: 300;
}

.item-total:before {
	content: "";
	display: inline-block;
	margin: 0 1rem 0 0.5rem;
	width: 2rem;
	height: 0;
	border-top: 2px solid #fff;
	vertical-align: middle;
}
