﻿@charset "utf-8";
/* CSS Document */
.navigation-top {
    height: 85px;
    width: 100%;
    background: #0c7bbf;
    position: absolute;
    border-radius: 14px;
    top: 0;
    left: 0;
}

.treeview, .treeview ul {
    margin: 0;
    list-style: none;
    font-family: 'Roboto-Regular';
    padding: 0;
    width: 100%;
    float: left;
    position: relative;
}

.treeview {
    background: #fff;
    border-radius: 14px;
}

.content-left .treeview:after {
    content: '';
    background: url(../images/treeview-bg.png) no-repeat bottom center;
    min-height: 182px;
    display: block;
    margin-top: 15px;
}

.treeview ul {
    /* width:230px; */
    float: left;
}

.treeview .hitarea {
    height: 0px;
    width: 0px;
    float: left;
    cursor: pointer;
    display: none
}
/* fix for IE6 */
* html .hitarea {
    display: inline;
    float: none;
}

.treeview li {
    color: #7b7b7b;
    font-size: 16px;
    display: inline-block;
    width: 100%;
    /*padding: 22.5px 0;*/
    position: relative;

}

    .treeview li i {
        position: absolute;
        top: 54px;
        right: 41px;
        color: #a0aaba;
        font-size: 18px;
        cursor: pointer;
    }

    .treeview li.open {
        padding: 36px 18px 42px;
        background-color: var(--fillColor);
        border-radius: 0 28px 0 0;
        border-radius: 35px;
        margin-top: 10px;
    }

    .treeview li:first-child {
        /*border-radius: 0 28px 0 0;*/
    }

    .treeview li:last-child {
        border-radius: 0 0 28px 0;
    }

    .treeview li a {
        color: #9897a7;
        display: block;
        text-decoration: none;
        /*padding-left: 75px;*/
        padding-left: 50px;
        padding-right: 10px;
    }
.treeview > li.open > ul li.open
{
    padding:0;
}
.treeview > li.open > ul li.open > a {
    font-family: 'Roboto Medium';
    color: #100f27;
    background: transparent;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 27px 0 0px 32px;
    gap: 21px;
    position: relative;
}

    .treeview li > ul > li > a {
        color: #7e8ca3;
        font-size: 16px;
        line-height: 16px;
        display: flex;
        justify-content: start;
        align-items: center;
        font-family: "Roboto";
        padding: 27px 0 0px 32px;
        gap: 21px;
        position: relative;
    }

    .treeview li > ul > li > ul > li > a {
        gap: 10px;
    }

        .treeview li > ul > li > a.active {
            color: #30323a;
            font-family: "Roboto Medium";
        }
            
            

            .treeview li > ul > li:last-child > a {
                /*background:Red;*/
            }

        .treeview li > ul > li > a:before {
            content: "\f0c8";
            font-family: "Font Awesome 7";
            display: block;
            color: var(--porcitorange);
            font-size: 16px;
        }

    .treeview li.collapsable > a {
        margin-bottom: 15px;
        position: relative;
        color: #100f27;
        font-family: 'Roboto-Medium';
    }

        .treeview li.collapsable > a:before {
            content: '';
            position: absolute;
            transition: all ease .4s;
            left: 38px;
            /*left: 60px;*/
            top: 50%;
            transform: translateY(-50%);
            border: solid transparent;
            border-color: rgba(255, 255, 255, 0);
            border-left-color: #100f27;
            border-width: 5px;
        }

    .treeview li.collapsable ul li a:before {
        content: '\f061';
        position: absolute;
        transition: all ease .4s;
        left: 43px;
        /*left: 68px;*/
        top: 50%;
        transform: translateY(-50%);
        font-family: "Font Awesome 6 Free";
        color: #9897a7;
    }

    .treeview li.collapsable ul li.open a:before {
        content: '\f178';
        border: none;
        color: #133c56;
        left: 38px;
        /*left: 63px;*/
        font-size: 18px;
    }

    .treeview li.collapsable ul li {
        box-shadow: none;
    }

    .treeview li.open > a {
        transition: all ease .3s;
        font-family: "Roboto Bold";
        font-size: 18px;
        line-height: 18px;
        background-color: white;
        height: 57px;
        display: flex;
        justify-content: start;
        align-items: center;
        padding: 0 0 0 44px;
        color: var(--porcitorange);
        border-radius: 28.5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .treeview li.open a i {
        color: #a0aaba;
        font-size: 16px;
        padding-right: 43px;
    }

    .treeview li:has(a.selected) {
        /*box-shadow: -9px 2px 35px rgba(13, 15, 35, 0.1);*/
        /*box-shadow: -9px 2px 35px rgba(13, 15, 35, 0.06);*/
    }

    .treeview li:first-child:has(a.selected) {
        /*box-shadow: -10px 5px 24px rgba(13, 15, 35, 0.06)*/
    }



#treecontrol {
    margin: 1em 0;
    display: none;
}

.treeview li a:hover {
    color: #100f27;
}

.treeview > li:not(.open) {
    margin: 10px 18px 0;
    height: 55px;
    width: calc(100% - 36px);
    border: 1px solid var(--fillColor);
    border-radius: 28.5px;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative
}
li .toggle-arrow
{
    transition:.3s ease-in-out transform;
}
li:not(.open) .toggle-arrow {
    transform: rotate(180deg);
}

    li:not(.open) > ul
    {
        
        display:none;
    }

    .treeview > li:not(.open) a {
        padding: 0 26px 0 31px;
        font-family: "Roboto";
        color: #7e8ca3;
        display: flex;
        width: 100%;
        justify-content: space-between;
        font-size: 18px;
        transition: .3s ease-in-out all;
    }

    .treeview > li:not(.open):hover a {
        color: var(--porcitorange);
    }

    .treeview > li:not(.open) i {
        top: 18px;
        right: 28px;
        color: #a0aaba;
        font-size: 16px;
    }

.treeview li .icon {
    float: left;
    width: 40px;
    height: 30px;
    margin: -5px 5px 0 0
}

    .treeview li .icon img {
        max-width: 40px;
        max-height: 30px;
    }

.treeview li.collapsable {
    position: relative;
}

    .treeview li.collapsable:after {
        content: '\f077';
        position: absolute;
        transition: all ease .4s;
        right: 25px;
        top: 27px;
        /*transform: translateY(-50%);*/
        font-family: "Font Awesome 6 Free";
        color: #100f27;
        font-size: 12px;
    }

.treeview li.expandable {
    position: relative;
}

    .treeview li.expandable:after {
        content: '\f078';
        position: absolute;
        transition: all ease .4s;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        font-family: "Font Awesome 6 Free";
        color: #100f27;
        font-size: 12px;
    }

.treeview .expandable-hitarea {
    background-position: -80px -3px;
}


.treeview li ul li a.active::before {
    color: var(--porcitorange);
}

.treeview li ul li a:before {
    content: "\f0c8";
    font-family: "Font Awesome 7";
    display: block;
    color: #dae1eb;
    font-size: 14px;
}

.treeview li > ul {
    /* padding:10px 0px; */
    /* margin-top: 5px; */
}

    .treeview li > ul > li {
        margin-bottom: 0;
        border: 0;
        /*padding-bottom: 10px;
        padding-top: 10px;*/
    }

    .treeview li > ul
    .treeview li > ul > li > ul > li {
        margin-bottom: 0;
        border: 0;
        background: none;
    }



    .treeview li > ul > li > ul > li a::before {
        content: "";
        display: block;
        width: 47px;
        height: 4px;
        background-color: var(--porcitorange);
        border-radius: 2px;
    }

.treeview li.last {
}

.treeview li.lastCollapsable, .treeview li.lastExpandable {
}

.treeview li.lastCollapsable {
}

.treeview li.lastExpandable {
}

.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea {
}

.treeview-red li {
}

    .treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable {
    }

.treeview-black li {
}

    .treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable {
    }

.treeview-gray li {
}

    .treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable {
    }

.treeview-famfamfam li {
}

    .treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable {
        background-image: url(images/treeview-famfamfam.gif);
    }

.treeview .placeholder {
    background: url(images/ajax-loader.gif) 0 0 no-repeat;
    height: 16px;
    width: 16px;
    display: block;
}

.filetree li {
    padding: 3px 0 2px 16px;
}

.filetree span.folder, .filetree span.file {
    padding: 1px 0 1px 16px;
    display: block;
}

.filetree span.folder {
    background: url(images/folder.gif) 0 0 no-repeat;
}

.filetree li.expandable span.folder {
    background: url(images/folder-closed.gif) 0 0 no-repeat;
}

.filetree span.file {
    background: url(images/file.gif) 0 0 no-repeat;
}
