/* TABLE OF CONTENT STYLE */
@media screen {
    .toc-sub-item {margin-left:10px;}
        .toc-content {
            border-width: 1px;
            border-style: solid;
            display: flex;
            flex-direction: column;
        }
        .toc-content .toc-accordion-title {
            cursor: pointer;
            color: #fff;
            font-size: 20px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            flex-wrap: nowrap;
            align-items: center;
            padding: 15px;
            width: 100%;
            transition: all 0.4s;
            margin-bottom: 0;
        }
        .toc-content .toc-accordion-title:hover,
        .toc-content .toc-accordion-title.active {
            transition: all 0.4s;
        }
        .toc-content .toc-accordion-title.active svg {
            transform: rotate(180deg);
        }
        .toc-content .toc-accordion-title svg {
            font-size: 25px;
        }
        .toc-list-wrapper {
            margin-top: 20px;
            padding-left: 35px;
        }
        .toc-list-wrapper .toc-item:before {
            display: inline-block;
            vertical-align: middle;
        }
        .toc-list-wrapper .toc-item a,
        .toc-list-wrapper .toc-subitem {
            color: #212529;
            display: inline-block;
            vertical-align: middle;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.4s;
            width: 85%;
            line-height: normal;
        }
        .toc-list-wrapper .toc-item,
        .toc-subitem {
            margin-bottom: 15px;
            position: relative;
        }
        .toc-subitem {
            display: block;
            position: relative;
            margin-left: 20px;
        }
        .toc-item::before {
            content: '';
            height: 6px;
            width: 6px;
            background-color: #df5d3d;
            position: absolute;
            left: -17px;
            border-radius: 50%;
            top: 15px;
        }
        .toc-subitem::before {
            content: '';
            height: 6px;
            width: 6px;
            background-color: #df5d3d;
            position: absolute;
            left: -17px;
            border-radius: 50%;
            top: 7px;
        }
        .toc-list-wrapper .toc-item a:hover,
        .toc-list-wrapper .toc-subitem:hover {
            transition: all 0.4s;
            color: #ecab2d;
        }
        .toc-content {
            margin-bottom: 25px;
        }
        .table .thead-dark th {
            background-color: #16254d;
            border-color: #16254d;
        }
    }

    @media (min-width: 768px) {
        .toc-content .toc-accordion-title {
            padding: 15px;
            font-size: 25px;
        }
        .toc-list-wrapper {
            margin-top: 20px;
        }
        .toc-content {
            margin-bottom: 35px;
        }
        .toc-list-wrapper .toc-item a {
            width: auto;
        }
    }

.back-to-top {
    position: fixed;
    bottom: 16px;
    left: 10px;
    z-index: 1000;
    width: fit-content;
    height: fit-content;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s all linear;
}
.back-to-top svg {
    width: 30px!important;
    height: 30px!important;
    padding: 0;
    margin: 0;
    color: #fff;
    transform: rotate(180deg);
    transition: .4s all linear;
}
.back-to-top:hover {
    border-radius: 50%;
}
.back-to-top:hover svg{
    color: #1a313f;
}
.toc-main {
    margin-top: unset!important;
    padding-top: 15px!important;
    flex: 1 1 100%;
}