.long-content-container {
	position: relative;
	overflow: hidden;
}

.long-content-container::after {
	content: '';
	display: block;
	height: 1px;
	background: transparent;
}

.long-content-container::after {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 110px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 50%);
	pointer-events: none;
}

.long-content-container-show-more-wrap {
	display: none;
	position: absolute;
	bottom: 0;
	z-index: 2;
	width: 100%;
}

.long-content-container.lcc-expansion-needed .long-content-container-show-more-wrap {
	display: flex;
	justify-content: center;
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.long-content-container.lcc-expansion-needed .long-content-container-show-more-wrap:hover {
	opacity: 0.7;
}

.long-content-container-show-more-inner {
	display: inline-block;
	margin: auto;
}

.long-content-container-show-more-default {
	display: flex;
	flex-direction: column;
	text-align: center;
	cursor: pointer;
	padding: 10px;
	font-weight: 700;
}

.long-content-container.lcc-expanded {
	max-height: none !important;
}

.long-content-container.lcc-expanded .icon-arrow-down {
	transform: rotate(180deg);
}

.long-content-container.lcc-expanded .long-content-container-show-more-wrap,
.long-content-container:not(.lcc-expansion-needed) .long-content-container-show-more-wrap,
.long-content-container.lcc-expanded::after,
.long-content-container:not(.lcc-expansion-needed)::after {
	display: none !important;
}
