@import '../base/index.scss';

.toc_widget_title{
    position: relative;
    cursor: pointer;

    
    &:before{
        content: "\e64b";
        position: absolute;
        display: block;
        font-family: 'themify';
        // color: $darkmid-clr;
        font-size: 20px;
        right: 0;
        top: -4px;
        transition: .5s;
    }
    &.active{
        &:before{
            transform: rotate(-90deg)
        }
    }
}
.table-of-contents{
    ul{
        transition: 0.5s;
        display: 0;
        overflow: hidden;
    }
    // &.collapsed{
    //     ul{
    //         min-height: 0px;
    //         overflow: hidden;
    //         display: block;
    //         height: 0;
    //         overflow: hidden;
    //     }
    // }
}