/**
 * Product CSS
 */
.gd-product-row{
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	border: 1px solid #dee2e6;
	border-bottom: none;
	color: #000000;

	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.gd-product-row:last-child{
	border-bottom: 1px solid #dee2e6;
}
.gd-product-row:hover{
	background-color: #f7f7f7;
}
.gd-product-row .gpr-left{
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	border-right: 1px solid #dee2e6;
}
.gd-product-row .gpr-title{
	position: relative;
	padding: 20px 20px 5px 40px;
	font-weight: 400;
}
.gd-product-row .gpr-title::before{
	content: "";
	position: absolute;
	top: 27px;
	left: 20px;
	width: 10px;
	height: 14px;
	background-image: url( ../images/caret-right.svg );
	background-repeat: no-repeat;
	background-size: cover;

	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.gd-product-row.open .gpr-title::before{
	transform: rotate(90deg);
}
.gd-product-row .gpr-desc{
	color: #8e8e8e;
	display: none;
	margin: 10px 0;
	padding: 0 20px;
}
.gd-product-row .gpr-right{
	width: 135px;
	padding: 20px;
}