#investment_platforms_title {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 37px;
    letter-spacing: 0em;
    text-align: left;
    color: black;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.tree-dd {
    position: relative;
}

.tree-dd__btn {
    width: 100%;
    text-align: left;
    padding: 5px 17px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: gray;
    font-weight: 300;
}

.tree-dd__btn::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #555;

    transform: translateY(-30%);
    pointer-events: none;
}

.tree-dd.open .tree-dd__btn::after {
    border-top: 0;
    border-bottom: 6px solid #555;
    transform: translateY(-70%);
}

.tree-dd__panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 320px;
    overflow: auto;
    z-index: 9999;
    padding: 6px;
}

.tree-dd.open .tree-dd__panel {
    display: block;
}

.tree-node {
    margin-left: 0;
}

.tree-folder > .tree-title {
    cursor: pointer;
    font-weight: 600;
    padding: 4px 6px;
}

.tree-folder > .tree-children {
    margin-left: 14px;
    display: none;
}

.tree-folder.open > .tree-children {
    display: block;
}

.tree-leaf {
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 3px;
}

.tree-leaf:hover {
    background: #f2f2f2;
}

.tree-title {
    position: relative;
    cursor: pointer;
    user-select: none;
    padding: 4px 6px;
}

.tree-arrow {
    position: absolute;
    left: 6px;
    top: 50%;
    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #555;

    transform: translateY(-30%);
    transition: 0.15s ease;
}

.tree-text {
    display: inline-block;
    margin-left: 18px;
}

.tree-folder.open > .tree-title .tree-arrow {
    border-top: 0;
    border-bottom: 6px solid #555;
    transform: translateY(-70%);
}

#filter_items {
    padding: 1rem 1rem 0;
}

.ag-lo-search-title {
    margin: 30px 15px 0 15px;

    font-weight: 700;
}

#search-form-toggle-icon {
    cursor: pointer;
}

#search-form-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circle-toggle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f5f6f2;
    border: 1px solid #dcded9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}

.circle-toggle::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(135deg);
    transition: 0.2s;
}

.circle-toggle.collapsed::before {
    transform: rotate(-45deg);
}

#search-form-header.header-collapsed {
    margin-bottom: 30px;
}

.ag-lo-filter-btns-container{
    margin-bottom: 32px;
    margin-top: 16px;
}

#total-records-count-text {
    font-size: 15px;
    font-weight: normal;
}

#total-records-count {
    margin-top: 2rem;
    margin-bottom: 2rem;
}