/*------------------------------------*\
    
    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 {
    position: relative;
    display: inline-block;
    color: #070B97;
    text-transform: capitalize;
    font-size: 18px;
    padding: 0 26px 0 0;
    border: none;
    margin-top: 30px;
    margin-bottom: 20px;
    background: none;
    font-weight: 600;
    letter-spacing: 0.02em;
}

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

.expand::after {
    content: "\e901";
    font-family: 'icomoon';
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 13px;
    font-weight: normal;
}

.expand.is-expanded::after {
    content: "\e904";
}

.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: 350px;
}
*/

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


