.indices-container {
    display: flex;
    width: 100%;
    height: 550px;
    border-radius: 4px;
    border: 1px solid #F0F0F0;
    background: #FFF;
    box-shadow: 0 0 8px 0 rgba(213, 213, 213, 0.16);
}

.indices-container__left {
    display: flex;
    background-color: #FAFAFB;
    flex-direction: column;
    width: 215px;
    border-radius: 4px;
}

.indices-container__left div {
    padding: 15px 0px;
    border-bottom: 1px solid #E7E7E7;
    margin: 0px 15px;
    color: #888;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;
}

.indices-container__right {
    display: flex;
    flex: 1;
    padding: 25px;
    flex-direction: column;
    overflow-y: auto;
    padding-top: 5px;
}

.indices-table__header {
    display: flex;
    flex-direction: row;
}

.indices-table__header div {
    flex: 1;
    padding: 15px;
    color: #8B8B8B;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.tab_content {
    display: none;
    position: relative;
    height: 100%;
    flex-direction: row;
}

.tab_content.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.tab_content a {
    text-decoration: none;
    color: #3C3C3C;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-bottom: 1px solid #E7E7E7;
    padding: 13px 15px;
    cursor: pointer;
}

.tab_content a:nth-child(odd) {
    border-right: 1px solid #E7E7E7;
}

.tab_content a:hover {
    background: #F5F5F7;
}

#indice-category-list div.active {
    color: #424242;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
}

#indice-category-list div.active::after {
    content: url(../images/arrow.png);
    color: var(--color-accent-blue);
    margin-left: 8px;
    font-size: 15px;
    opacity: 1;
    transition: all 0.5s;
    vertical-align: middle;
}

.scroll_to_top_container {
    display: none;
}

.sector_description {
    padding-top: 10px;
}

@media (max-width: 768px) {
    .indices-container {
        flex-direction: column;
        border: none;
        height: unset;
    }

    .indices-container__left {
        display: flex;
        flex: none;
        width: unset;
        flex-direction: row;
        background-color: unset;
        margin-bottom: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
    }

    .indices-container__left::-webkit-scrollbar {
        height: 0px;
    }

    .indices-container__right {
        border: 1px solid #F0F0F0;
        box-shadow: 0 0 8px 0 rgba(213, 213, 213, 0.16);
        padding: 0px;
        border-radius: 4px;
    }

    .indices-container__left div {
        display: flex;
        align-items: center;
        margin-right: 8px;
        margin-left: 0px;
        border-radius: 4px;
        padding: 10px 12px;
        border: 1px solid #E5E7EA;
        color: #666;
        font-size: 12px;
        font-weight: 500;
    }

    #indice-category-list div.active {
        color: #4371C6;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 14px;
    }

    .tab_content {
        grid-template-columns: 1fr !important;
    }

    .tab_content a {
        flex: none;
        color: #3C3C3C;
        font-family: Inter;
        font-size: 10px;
        font-style: normal;
        font-weight: 600;
        line-height: 11px;
        position: relative;
        border-right: none !important;
        padding: 10px 15px;
    }

    .tab_content a::after {
        content: url(../images/arrow-right.png);
        color: #c7c7c7;
        margin-left: 8px;
        font-size: 15px;
        opacity: 1;
        transition: all 0.5s;
        vertical-align: middle;
        position: absolute;
        right: 10px;
    }

    #indice-category-list div.active {
        border: 1px solid #4371c6;
        color: #4371c6;
    }

    #indice-category-list div.active::after {
        content: none;
    }

    .indices-table__header div {
        color: #909090;
        font-family: Inter;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 12px;
    }

    .indices-table__header div:last-child {
        display: none;
    }

    .indices-table__header {
        border-bottom: 1px solid #E7E7E7;
    }

    .scroll_to_top_container {
        display: flex;
    }
}