.__not-scroll{
    overflow: hidden;
}
.single-post .toc-wrapper{
    position: absolute;
    left: 120px;
    top: 40px;
    width: 288px;
    height: calc(100% - 120px);
    transition: .3s ease all;
}
#__toc-content{
    border-radius: 16px;
    box-shadow: 0 1px 12px 0 rgb(0 0 0 / 20%);
    padding: 8px;
    position: sticky;
    top: 24px;
}
#__toc-content .toc-normal{
    display: flex;
    padding: 12px 32px 12px 12px;
    background: #fc511e;
    color: #FFF;
    border-radius: 8px;
}
#__toc-content .toc-normal svg{
    width: 16px;
    height: 16px;
    margin-right: 8px;
    margin-top: 3px;
}
#__toc-content .heading{
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1b154c;
}
#__toc-content .__toc{
    padding: 0;
    list-style: none;
    margin: 12px 0 0;
    padding: 0 12px 20px;
}
#__toc-content .__toc li:not(:last-child){
    margin-bottom: 12px;
}
#__toc-content .__toc li a{
    font-size: 14px;
    line-height: 125%;
    font-weight: 700;
    color: #1b154c;
}
#__toc-content .__toc li a:hover{
    color: #fc511e;
}

#showTocMb{
    display: none;
    border-radius: 8px;
    background: #fc511e;
    padding: 12px 16px;
    line-height: 1;
    position: fixed;
    bottom: 40px;
    left: 16px;
    z-index: 100003;
    cursor: pointer;
    box-shadow: 0 1px 10px #00000063;
}
#showTocMb span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-shadow: unset;
    opacity: 1;
}
#showTocMb span svg{
    margin-right: 4px;
}
#showTocMb.active span.close svg{margin-right: 0;}
#showTocMb span.close{
    display: none;
}
#showTocMb.active span.open{
    display: none;
}
#showTocMb.active span.close{
    display: inline-flex;
}

@media (min-width: 1700px){
    .single-post .toc-wrapper{
        left: 240px;
    }
}

@media (min-width: 1024px){
    body.single-post.has-toc{
        overflow: unset;
    }
}

@media (max-width: 1330px){
    .single-post .toc-wrapper{
        left: 32px;
    }
}

@media (max-width: 1023px){
    #showTocMb{
        display: block;
    }
    .single-post .toc-wrapper{
        position: fixed;
        left: 0;
        top: 0;
        opacity: 0;
        visibility: hidden;
        height: 100%;
        z-index: 1001;
    }
    #__toc-content{
        position: relative;
        top: 0;
        background: #FFFFFF;
        height: 100%;
        border-radius: 0;
    }
    .single-post .toc-wrapper.show-mb{
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    #__toc-content{
        padding: 8px;
    }
    #__toc-content .__toc{
        margin: 18px 0 0;
        max-height: calc(100% - 160px);
        overflow-y: auto;
    }
    #__toc-content .heading{
        font-size: 18px;
    }
    #__toc-content .__toc li a{
        font-size: 14px;
    }
    #__toc-content .__toc li:not(:last-child){
        margin-bottom: 8px;
    }
}

@media (max-width: 480px){
    .single-post .toc-wrapper{
        width: 100%;
    }
}