/*------------------------------------*\
    
    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;
	margin-top: 5px;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--secondary);
	text-transform: uppercase;
	line-height: 1.5em;
	letter-spacing: 0.2em;
	background: transparent;
	border: none;
	padding-right: 22px;
	padding-left: 0;
	cursor: pointer;
}

.expand::after {
	content: '\e902';
	font-family: 'cabinet-systems-icon';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	font-weight: normal;
	font-size: 13px;
}

.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;
}

.fx-untruncated .expand::after {
	content: '\e90e';
}

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

@media (min-width: 1200px) {
	.expand:hover {
		color: var(--dark-gray);

	}
}