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

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

.expand {
    display: none;
    padding: 0;
    position: relative;
    border: none;
    font-size: 16px;
    line-height: 1em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #14245F;
    background: none;
}

.expand::after {
    content: "\e906";
    font-family: 'thon';
    font-size: 15px;
    font-weight: normal;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.ddd-truncated .expand,
.fx-untruncated .expand {
	display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fx-untruncated .expand::after {
    top: 0;
    -webkit-transform: rotateZ(-180deg);
            transform: rotateZ(-180deg);
}