.full-text-container {
    position: relative;

    -moz-transition: height .5s;
    -ms-transition: height .5s;
    -o-transition: height .5s;
    -webkit-transition: height .5s;
    transition: height .5s;
    overflow: hidden;

    .full-text-content {
        &.collapsed {
            &::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 100px;
                background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 70%, #ffffff 100%)
            }
        }

        &.expanded {
            padding-bottom: 20px;
        }
    }

    .expand-icon-container {
        position: absolute;

        cursor: pointer;

        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;

        width: 100%;
        height: 50px;
        
        transition: all 2s ease;

        bottom: 20px;
        left: 0;
        right: 0;


        svg {
            width: 50px;
            height: 50px;
            transition: transform 0.3s ease;
            animation: bounce 0.7s infinite alternate;

            color: var(--color-main-darker);
        }


    }
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-5px);
    }
}
