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

.expand {
	border: none;
	position: relative;
	margin-top: 20px;
	color: var(--color-primary);
    background: transparent !important;
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 8px 8px;
	text-transform: capitalize;
}

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

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

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

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

.read-more__box {
	max-height: 130px;
}
.expand--more,
.expand--less{
	padding-right: 25px;
}
.expand--more::after{
	content: '\e90a';
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    font-size: 20px;
    right: 0px;
    text-align: center;
    transform: translate(0, -50%);
}
.expand--less::after {
	content: '\e92c';
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    font-size: 20px;
    right: 0px;
    text-align: center;
    transform: translate(0, -50%);
}

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

.expand:hover{
	color: var(--color-dark);
}