.sticky-sidebar {
    display: none;
    position: -webkit-sticky;
    position: sticky;
    width: calc(100vw * 0.25);
    z-index: 40;
    top: 60px;
    left: calc((100vw - 1336px) / 2);
    overflow: visible;
    height: 0px;
}

.table-content {
    display: none;
}

.table-content-title {
    font-family: Montserrat;
    font-weight: 600;
    color: #10375e;
    font-size: 1.4rem;
}

.table-content-list {
    list-style-type: none;
    padding: 0 20px;
}

.table-content-list li {
    margin: 5px 0;
}

.table-content-list li .table-content-link {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    color: var(--bobex-local-text-color);
    transition: all ease-out 0.2s;
    white-space: nowrap;
}

.table-content-list li .table-content-link i {
    color: #e13c0e;
}

.table-content-list li .table-content-link:hover,
.table-content-list li .table-content-link.active {
    font-weight: 700 !important;
}

.quotes_sidebar {
    /*background-color: var(--bobex-local-bg-color);*/
    background-color: transparent;
}

@media screen and (min-width: 992px) {
    .sticky-sidebar {
        display: block;
    }
}

@media screen and (min-width: 1336px) {
    .sticky-sidebar {
        width: calc(1320px * 0.25);
    }
}