/*------------------------------------*\
    
    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 {
	position: relative;
    display: inline-block;
    color: var(--color-primary);
    font-size: 18px;
    padding: 0 0 0 0;
    border: none;
	margin: 8px 0 28px;
    background: none;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #E2F4FB 0%, #E2F4FB 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 4px 10px;
}

.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: 275px;
}

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