/* application */
.application {
	padding-bottom: 30px;
	overflow: hidden;
	background: rgba(247, 247, 247, 1);
}

.application .product_list-item {
	position: relative;
	margin-bottom: 25px;
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

.application .product_list-item hr.line {
	width: 40px;
	height: 2px;
	background: #fff;
	margin-top: 25px;
	margin-bottom: 50px;
}

.application .product-item-info {
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 9;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
	padding-right: 30px;
	background: #286bb4b0;
	height: 52px;
	color: #333;
	font-size: 18px;
	overflow: hidden;
	transition: all 0.5s ease 0s;
}

.application .product_list-item:hover .product-item-info {
	height: 0;
	background: linear-gradient(0deg,
			var(--primary-color) 0,
			var(--primary-color-linear) 100%);
	transition: all 0.5s ease 0s;
	color: #fff;
}

.application .product_list-item .img_wrapper {
	overflow: hidden;
}

.application .product_list-item .img_wrapper img {
	transition: all 0.5s ease 0s;
}

.application .product_list-item:hover .img_wrapper img {
	transform: scale(1.2);
}

.application .product_list-item hr.line {
	width: 40px;
	background: #fff;
}

.application .product_list-item .wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.application .product_list-item .product-item-info p {
	color: #fff;
}