/*------------------------------------*\

    Hide/Show Text Area - Global styling for all hide/show text

    This method is CSS heavy and light on JS, which is important for good SEO and CWV results
    Find the code snippet here: https://webfxcodelibrary.webpagefxstage.com/#intermediate_cssshowhidetext

\*------------------------------------*/

/* if you are having issues with clamping in safari, see this fix: https://app.getguru.com/card/c48ay5ri/CSS-lineclamp-in-latest-Safari- */



.read-more__content {
	position: relative;
}

.expand {
	border: none;
	position: relative;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #4B4B4B;
	letter-spacing: 0.05em;
	padding-right: 22px;
	padding-left: 0;
	background: transparent;
}

.expand::before {
	content: "\e901";
	font-family: 'fosterfuels-icon';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 12px;
	font-weight: normal;
}

.fx-untruncated .expand::before {
	content: "\e90e";
}

.read-more__content .expand {
	display: none;
}

.read-more__content.ddd-truncated .expand {
	display: inline-block;
}

.expand--less,
.fx-untruncated .expand--more {
	display: none;
}

.fx-untruncated .expand--less {
	display: inline;
}

.read-more__box {
	max-height: 220px;
	margin-bottom: 26px;
}

.read-more__box.fx-untruncated {
	max-height: 100% !important;
}

@media(min-width: 768px){
	.read-more__box {
		max-height: 200px;
	}

	.expand {
		font-size: 18px;
		padding-right: 27px;
	}

	.expand::before {
		font-size: 17px;
	}
}

