.browserSearchPanel{

}

.browserSearchPanel .searchBox{
    padding: 0;
    margin:0;
}

.browserSearchPanel .searchBox INPUT[type=text]{
    margin:0;
}

.structureTreeChildren{
    position: relative;
    background-color: #FFF;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    overflow: hidden;
    opacity: 0;
    height:1px;
    transition: all 400ms;
    width:100%;
}

.structureTreeChildren.open{
    background-color: #F2F2F2;
    margin:0;
    opacity: 1;
    height:100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}