.page-block {
    margin-left: 25vw;
}

@media only screen AND (max-width: 1100px) {
    .toc {
        display: none;
    }

    .page-block {
        margin-left: 0 !important;
    }
}


.toc {
    position: fixed;
    left: 6vw;
    top: 12vh;
    padding: 1vw;
    min-width: 25vw;
    line-height: 3em;
    z-index: 0;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.5s ease-out;
    opacity: 0;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc ul ul {
    padding-left: 2em;
}

.toc li a {
    padding-left: 1em;
    display: inline-block;
    color: #a5c793;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

.toc li a:hover {
    text-indent: 0.3em;
}


.toc li.visible > a {
    color: #008056;
    font-family: "Kanit Regular";
    transform: translate(5px);
}

.toc-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.toc-marker path {
    transition: all 0.3s ease;
}