/* Start Collapsable sidebar menu
These are default as and are modifiy by JS to allow different sizes of the nav panel
*/
.navigation-pane {
	height: 100%;
	width: 380px;
	max-width: 380px;
	min-width: 380px;
	position: fixed;
	top: 83px;
	margin-top: 14px;
	right: 0;
	border: 1px solid lightgray;
	background-color: white;
}

.tk-template-navigation {
	background-color: #434343;
	border: 0px;
}

.navigation-pane-resize {
	height: 100%;
	width: 4px;
	max-width: 4px;
	min-width: 4px;
	position: fixed;
	top: 83px;
	margin-top: 14px;
	right: 0;
	background: #333333;
	cursor: col-resize;
}

.navigation-content {
	overflow-y: auto;
	height: 100%;
}

/* Navigation toolbar */
.navigation-toolbar {
	background-color: #f1f1f1;
	width: 380px;
	max-width: 380px;
	min-width: 380px;
}

.navigation-parent-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.navigation-parent-list ul li {
	margin: 0;
	padding: 0;
}

.navigation-component-section-header {
	background-color: lightsteelblue;
	padding-left: 30px;
	padding-right: 30px;
}

.navigation-component-speacial-node {
	border-top: 1px solid lightgray;
	border-bottom: 1px solid lightgray;
	border-left: none;
	border-right: none;
	color: var(--tk-orange);
}

.navigation-component-even-row {
	background-color: #f4f5f5;
	display: block;
}

.navigation-child-list {
	list-style: none;
	padding-left: 25px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	padding-bottom: 0px !important;
	padding-right: 15px;
}

/*if the component is mandatory */
.tk-red {
	color: red;
	font-weight: bold;
}

.tk-green {
	color: green;
	font-weight: bold;
}

.tk-navigation-item-left:hover {
	background-color: #dbdbdb;
	color: white;
}

.tk-navigation-flex {
	display: flex;
	padding: 0;
	margin: 0;
	justify-content: flex-start;
}

.navigation-pane a {
	padding: 8px 8px 8px 20px;
	text-decoration: none;
	font-size: 16px;
	display: block;
}

.navigation-material-icons,
.navigation-icon-text {
	vertical-align: middle;
	font-size: 11px;
	color: black;
}

/*
 *  STYLE for the navigation scrollbar will display when the max-height is reached
*/
.navigation-content::-webkit-scrollbar-track {
	border: 1px solid gray;
	background-color: #f5f5f5;
}

.navigation-content::-webkit-scrollbar {
	width: 10px;
	background-color: #f5f5f5;
}

.navigation-content::-webkit-scrollbar-thumb {
	background-color: var(--tk-orange);
}

.navigation-content:hover::-webkit-scrollbar-thumb {
	/* styles for scrollbar thumb */
	background-color: var(--tk-purple);
}

/* End Collapsable sidebar  menu*/
