/*------------------------------------*\
    
    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

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

.read-more__content {
	position: relative;
	margin-bottom: 15px;
}

.expand {
	color: var(--navy);
	border: none;
	background: none;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.20em;
	text-transform: uppercase;
	margin-top: 5px;
	position: relative;
	padding-right: 22px;
	padding-left: 0;
	text-decoration: none;
}

.read-more__box:not(.ddd-truncated) .expand {
	display: none;
}

.read-more__box.fx-untruncated .expand {
	display: inline-block;
}

.expand::after {
	content: '\e908';
	font-family: 'ettinger-icon';
	position: absolute;
	font-weight: normal;
	font-size: 0.875rem;
	line-height: 1em;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	/* display: none; */
}

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

.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: 130px; */
	/* overflow-y: hidden; */
}

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

.bg-navy-blue .expand {
	color: #fff;
}