.product-item-container.hover {
	border-color: transparent;
}
.product-item-container {
	position: relative;
	height: 100%;
	border: 1px solid #CDCDCD;
}
.product-item {
	height: 100%;
}
@keyframes product-hover {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
	100% {
		box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .19);
	}
}
.product-item-container:hover {
	border-color: transparent;
	animation: product-hover 300ms 1 ease;
	animation-fill-mode: both;
}
.product-item-info-container {
	margin-bottom: 0;
}
.product-item-container:hover .product-item-info-container.product-item-hidden {
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translate(-50%, 0);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: calc(100% + 2px);
	height: 30px;
	background-color: #fff;
	opacity: 1;
	box-shadow: 0 4px 4px -1px rgba(0, 0, 0, 0.2);
}