.text-see-more-container {

    overflow: hidden;
    max-height: var(--max-height-see-more, 700px);
    position: relative;
    transition: max-height 0.5s ease-in-out;

    &.before-see-more {

        max-height: var(--max-height-see-more, 700px);

        &::before {
            content: "";
            background: linear-gradient(to bottom, #f5f5f57a, #F3F4F4);
            width: 100%;
            height: 90px;
            position: absolute;
            bottom: 0px;
            z-index: 99;
        }
    }

    &:not(.before-see-more) {
        max-height: 100%;
    }

    .item {
        padding: 10px 0px;
        border-bottom: 1px solid var(--e-global-color-accent);

        .title {
            color: var(--e-global-color-cf9ceac);
            font-family: Caudex, sans-serif;
            font-size: var(--e-global-typography-ef420ca-font-size);
            font-weight: 400;
            line-height: 34px;
        }

        .description {
            color: var(--e-global-color-cf9ceac);
            font-family: var(--e-global-typography-3d1e545-font-family), Sans-serif;
            font-size: var(--e-global-typography-3d1e545-font-size);
            font-weight: var(--e-global-typography-3d1e545-font-weight);
            line-height: var(--e-global-typography-3d1e545-line-height);
        }

    }


}





.text-see-more-buttons-container {
    display: flex;
    z-index: 99;
    position: absolute;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;

    .see-more-less {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        background: transparent;
        border: none !important;
        text-transform: uppercase;
        font-family: var(--e-global-typography-3d1e545-font-family), Sans-serif;
        font-weight: 600;
        cursor: pointer;

        svg {

            margin-right: 10px;
            width: 22%;
            transform: rotate(0deg);
            transition: 0.55s ease-in-out;

            &.invert {
                transform: rotate(180deg);
            }

            circle {
                fill: var(--e-global-color-primary);
            }
        }
    }

    .load-less-btn {
        margin-top: 20px;
        display: none;
    }
}

.text-see-more-buttons-container{
	margin-top: 20px;
}


