.argo-treeview-item-row-main
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    min-width:100%;
    width: 100%;
    max-width: 100%;
    min-height:var(--resgui-1row);
    height: var(--resgui-1row);
    max-height: var(--resgui-1row);
    background-color: var(--group-row-background);
}
.argo-treeview-item-row-main:hover
{
    background-color: var(--button-application-hover);
    transition: background-color 0.3s linear;
    cursor: pointer;
}

.argo-treeview-item-row-main-content 
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    min-width: 95%;
    width: 95%;
    max-width: 95%;
    min-height: var(--resgui-halfcolumn);
    height: var(--resgui-halfcolumn);
    max-height: var(--resgui-halfcolumn);
    background-color: var(--group-row-background);
    border-bottom-left-radius:1vh;
    border-top-left-radius:1vh;
}
.argo-treeview-item-row-main-content:hover
{
    background-color: var(--button-application-hover);
    transition: background-color 0.3s linear;
    cursor: pointer;
}

.argo-treeview-item-row-children
{
    display: flex;
    justify-content: flex-end;
    min-width:100%;
    width: 100%;
    max-width: 100%;
    min-height:var(--resgui-1row);
    height: var(--resgui-1row);
    max-height: var(--resgui-1row);
    align-items: center;
}

.argo-treeview-draw-vertival
{
    display: flex;
    width: var(--resgui-1row);
    min-width: var(--resgui-1row);
    max-width: var(--resgui-1row);
    height: 100%;
    max-height: 100%;
    min-height: 100%;
}
.argo-treeview-draw-vertival::before
{
    content: "";
    width: 0;
    height: calc(100% - var(--resgui-halfrow));
    border-left: 1px solid;
    padding-right: 2%;
}

.argo-treeview-draw{
    display: flex;
    min-height:var(--resgui-1row);
    height: var(--resgui-1row);
    max-height: var(--resgui-1row);
    min-width:var(--resgui-halfcolumn);
    width: var(--resgui-halfcolumn);
    max-width: var(--resgui-halfcolumn);
    align-items: center;
}
.argo-treeview-draw::before{
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-top: 1px solid;
    margin-top: -1px;
  }
/*.argo-treeview-draw::after{
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-top: 1px solid;
    margin-top: -1px;
  }*/
  

.argo-container-main{
    display: flex;
    align-items: center;
    min-width:100%;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
}

.argo-container{
    display: flex;
    align-items: flex-end;
    min-width:100%;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    /*justify-content: flex-start;*/
}

.RowArgo
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: var(--three-quarter-row);
    height: var(--three-quarter-row);
    max-height: var(--three-quarter-row);
    background-color: var(--group-row-background);
    border-bottom: 1px solid var(--decor-border-light-color);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.RowArgoHover
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: var(--three-quarter-row);
    height: var(--three-quarter-row);
    max-height: var(--three-quarter-row);
    background-color: var(--group-row-background);
    border-bottom: 1px solid var(--decor-border-light-color);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.RowArgoHover:hover
{ 
    background-color:var(--button-application-hover); 
    transition: background-color 0.3s linear; 
    cursor:pointer;
}