﻿/* CATEGORY TREE */
.CategoryTreeWrapper h3
{
    display: none;
}

.CategoryTree
{
    float: left;
    width: 100%;
}

    .CategoryTree ul
    {
        float: left;
        padding-left: 0em;
        margin-bottom: 10px;
    }

        .CategoryTree ul li
        {
            padding: 5px;
            clear: left;
            text-transform: uppercase;
            padding-left: 20px;
        }

            .CategoryTree ul li:before
            {
                content: "\f105";
                font-family: 'fontawesome5';
                padding-right: 5px;
                font-weight: bold;
                color: #444;
                font-size: 24px;
                position: absolute;
                margin-left: -20px;
                z-index:-1;
            }

            .CategoryTree ul li.Children.Selected:before
            {
                content: "\f107";
                font-family: 'fontawesome5';
                padding-right: 5px;
                font-weight: bold;
            }

            .CategoryTree ul li a
            {
                color: #023144;
                text-decoration: none;
                font-size:0.8rem;
            }

                .CategoryTree ul li a:hover
                {
                    text-decoration: underline;
                }

                .CategoryTree ul li a.Selected
                {
                    font-weight: bold;
                }

            .CategoryTree ul li > ul
            {
                padding-left: 1em;
                display: none;
                margin-top: 5px;
                margin-bottom: 10px;
                
            }
            

            .CategoryTree ul li.Selected > ul
            {
                display: block;
                width: 100%;
                box-sizing:border-box;
            }

            .CategoryTree ul li li > a
            {
                text-transform:capitalize;
            }
