/*tabs inline, column*/
.tab-panel{
    position:relative;
	height:100%;
	width:100%;
}
.tab-headers{
    display:flex;
    align-items: center;
    user-select: none;
    background: #fff;
}
.tab-headers > .item{
    flex:0 0 1;
    position: relative;
    font-size:14px;
    cursor:pointer;
    display:flex;
    align-items: center;
}
.tab-headers > .item label{
    flex:1;
    padding:0 10px;
    text-align: center;
    cursor:pointer;
}

.tab-headers > .item:hover{
    background:#e5e5e5;
}
.tab-headers > .item:active{
    background:#ccc;
}
.tab-panel > .body{
    position:relative;
	height:100%;
	width:100%;
	overflow:auto;
}

.tab-inline{
    position:absolute;
	top:0;
	left:0;
	width:100%;
    padding:40px 0 0 0;
	z-index:10;
}
.tab-inline > .tab-headers{
    position: absolute;
    top:0;
    height:40px;
    width:100%;
    border-bottom:1px solid #e5e5e5;
}
.tab-inline > .tab-headers > .item{
    height:100%;
    flex:1;
}

.tab-column {
    position:absolute;
    width:100%;
    height:100%;
    display:flex !important;
    flex-direction: row !important;
    column-gap: 16px !important;
}
.tab-column > .tab-headers {
    flex-basis:200px;
    height: 100%;
    overflow:auto;
    display:flex;
    flex-direction: column;
    align-items: left;
}
.tab-column > .tab-headers > .item {
    font-size:14px;
    width:100%;
    border:0;
}
.tab-column > .tab-headers > .item label {
    padding:6px 12px;
}

.tab-column > .body {
    flex:1;
}

/*Tabs actives*/
.tab-inline .item .tab-active{
    position:absolute;
    width:100%;
    left:0;
    bottom:0;
    height:4px;
    background:transparent;
}
.tab-inline .item-on label{ 
    color:var(--color1) !important;
}
.tab-inline .item-on .tab-active{ 
    background:var(--color1) !important;
}

.tab-column .item .tab-active{
    position:absolute;
    height:100%;
    left:0;
    width:4px;
    background:transparent;
}
.tab-column .item-on{ 
    background:var(--color1-pale) !important;
}
.tab-column .item-on label{ 
    color:var(--color1) !important;
}
.tab-column .item-on .tab-active{ 
    background:var(--color1) !important;
}

.form-panel{
	position:relative;
	height:100%;
	width:100%;
	padding:0 0 50px;
}
.form-panel > .body{
	position:relative;
	height:100%;
	width:100%;
	overflow:hidden;
	overflow-y:auto;
	padding:10px 20px;
}
.form-panel > .foot{
	position:absolute;
	display:flex;
    gap:5px;
    justify-content: right;
	bottom:0;
	left:0;
	width:100%;
	height:50px;
    padding:0 20px;
    text-align: right;
}

.page-panel{
	position:relative;
	height:100%;
	width:100%;
}
.page-panel > .content{
	position:relative;
	height:100%;
	width:100%;
	overflow:hidden;
}
.page-panel > .content > .body{
	position:relative;
	height:100%;
	width:100%;
	overflow:hidden;
	overflow-y:auto;
}

.page-panel .with-head{
	padding-top:50px;
}
.page-panel .with-head > .head{
	position:absolute;
	top:0;
	left:0;
	width:100%;
    height:50px;
}

.page-panel .with-foot{
	padding-bottom:50px;
}
.page-panel .with-foot > .foot{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
    height:50px;
}

.page-panel > .content > .head,
.page-panel > .content > .foot{
    padding:0 20px;
    display:flex;
    align-items: center;
}
.page-panel > .content > .body{
    padding:10px 20px;
}

.page-panel > .content > .head,
.page-panel > .content > .foot{
    display:flex;
    align-items: center;
}

.split-panel{
	display:flex;
    width:100%;
    height:100%;
    position:relative;
    column-gap:16px;
}
.split-panel > .body{
	flex:1;
    overflow-y: auto;
}
.split-panel > .aside {
	flex:0 0 250px;
    overflow-y: auto;
}

@media(max-width:768px){
	.split-panel{
        flex-direction: column;
    }
    .split-panel > .body{
        overflow-y:unset;
    }
    .split-panel > .aside {
        flex-basis:auto;
        overflow-y: unset;
    }
}

@media(max-width:480px){
	.menu-page > .wrapper > .items > .item .label{
        display:none;
    }
}

