/**
 * procparms-wc-category.css
 */

.shop-container .term-description.expandable {
	position: relative;
	max-height: 5.5em;
	overflow: hidden;
	margin-bottom: 4em;
	padding-bottom: 1.5em;
}

.shop-container .term-description.expandable:not(.expanded)::after {
	position: absolute;
	content: ' ';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, transparent 0.5em, white 3.5em);
	z-index: 10;
}

.shop-container .term-description.expandable.expanded {
	max-height: unset;
}

.shop-container .term-description.expandable .show-more-or-less {
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 20;
	font-size: 30px;
	cursor: pointer;
	transform: translateX(-50%);
}

.shop-container .term-description.expandable .show-more-or-less a {
	transition: 0.3s color;
}

.shop-container .term-description.expandable .show-more-or-less a:hover {
	color: #008bbf;
}

.shop-container .term-description.expandable:not(.expanded) a.show-less {
	display: none;
}

.shop-container .term-description.expandable.expanded a.show-more {
	display: none;
}
