/*
    version 1.0.0
 */
.block-more-content-cont {}
.block-more-content-cont .block-content {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}
.block-more-content-cont .block-content:after {
    background: rgb(250 250 250);
    background: linear-gradient(0deg, rgb(238 238 238) 0%, rgba(238,238,238,0) 100%);
    content: "";
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.block-more-content-cont .block-content.open {
    max-height: inherit;
    overflow: inherit;
}
.block-more-content-cont .block-content.open:after {
    display: none;
}
.block-more-content-cont .btn-more-content {
    background-color: transparent;
    border: medium none;
    color: var(--fifth);
    font-size: var(--fs-12);
    padding: 0;
}