@charset "utf-8";

._tabs {
	display: flex;
	flex: 1;
    justify-content: space-between;
    align-items: center;
	
    width: 100%;
    height: var(--tab-height);
   
   	font-size: 1.5rem;

    color: var(--gray-500);
    
    background: var(--gray-200);
    
    border-color: var(--gray-400);
    border-style: solid;
    border-width: 1px 0 0 0;
    
    /*border-bottom: 1px solid #EDEFEF;*/
    /* vertical-align: middle; */
}

._tabs ._tab {
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;

	height: 100%;
	
	border-color: var(--gray-400);
    border-style: solid;
    border-width: 0 1px 1px 0;
    
    cursor: pointer;
}
._tabs ._tab:last-child {
	border-right-width: 0;
}
._tabs ._tab * {
	pointer-events: none;
}

._tabs ._tab.-active {
	
	font-weight: 500;
	
	color: var(--color-700);
	
	background: #ffffff;
	
	border-bottom-color: #ffffff;
}




.sub_tabs {
	display: flex;
	flex: 1;
    justify-content: space-between;
    align-items: center;
	
	margin: 12px 0;
	
    /*width: 100%;*/
    height: var(--sub-tab-height);
   
   	font-size: 1.4rem;

    color: var(--gray-500);
    
    /*background: var(--gray-200);*/
    
    border: 1px solid var(--gray-400);
    
    /*
    border-color: var(--gray-400);
    border-style: solid;
    border-width: 1px 0 0 0;
	*/
}

.sub_tabs ._tab {
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;

	height: 100%;
	
	border-right: 1px solid var(--gray-400);
	
	/*
	border-color: var(--gray-400);
    border-style: solid;
    border-width: 0 1px 1px 0;
    */
    
    cursor: pointer;
}
.sub_tabs ._tab:last-child {
	border-right-width: 0;
}
.sub_tabs ._tab * {
	pointer-events: none;
}

.sub_tabs ._tab.-active {
	
	font-weight: 500;
	
	color: #ffffff;
	
	/*color: var(--color-700);*/
	
	background: var(--color-500);
	
	/*border-bottom-color: #ffffff;*/
}
