﻿

.grid-elements-title-bar {
    display: flex;
    align-items: center;
    width: 100%;
    background: #e6e6e6;
    height: 30px;
    border-bottom: solid 1px rgba(0,0,0,0.1);
    border-top: solid 1px rgba(0,0,0,0.1);
}

    .grid-elements-title-bar span {
        color: #3c8dbc;
        padding: 14px;
    }

        .grid-elements-title-bar span i {
            cursor: pointer;
        }

.grid-elements-container {
    background: white;
    height: calc(70% - 55px);
}

@media only screen and (max-width: 575px) {
}


.elements-tree-container {
    background: transparent;
    display: flex;
    width: 100%;
    height: 100%;
}

    .elements-tree-container .tree-list-master {
        flex-grow: 1;
        height: 100%;
        max-width: 200px;
        border-right: 1px solid #d2d6de;
    }

    .elements-tree-container .tree-list-slave {
        flex-grow: 3;
        height: 100%;
        max-width: calc(100% - 200px);
    }
