﻿body, html {
	font-family: 'Segoe UI', sans-serif;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar {
	width: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
	background-color: #000000;
	border: 2px solid #555555;
}

.ToolBoxContainer {
	margin: 5px;
}

.ToolBoxButton {
	background: black;
	color: white;
	cursor: pointer;
	font-family: Segoe UI;
	font-size: 32px;
	font-weight: bold;
	padding: 2px 5px 2px 5px;
	margin: 2px 0px 2px 0px;
	border: 1px darkgray solid;
	transition: 0.5s all ease;
	float: left;
}

.ToolBoxButton:first-child {
	border-bottom-left-radius: 15px;
	border-top-left-radius: 15px;
}

.ToolBoxButton:last-child {
	border-bottom-right-radius: 15px;
	border-top-right-radius: 15px;
}

.ToolBoxButton:hover {
	background: white;
	color: black;
	transition: 0.5s all ease;
	border: 1px black solid;
}

span {
	font-style: italic;
}

#FeatureNameHeader {
	padding: 5px 5px 5px 60px;
	font: 72px tahoma;
	color: black;
}

#FeatureDescriptionLabel {
	padding: 5px 5px 5px 5px;
	font: 20px tahoma;
	color: black;
}

#Logo {
	Width: 150px;
	Height: 50px;
}

#FeatureNameLabel {
	color: black;
}

#DemoContent {
	display: flex;
}

#DemoContent:after {
	content: "";
	display: table;
	clear: both;
}

#ChartContent {
	width: 100%;
}

#ChartDemoContent {
	float: left;
	width: 100%;
}

#NavigationPanel {
	border-radius: 5px 5px 5px 5px;
	float: left;
	height: 95vh;
	overflow: auto;
	width: 400px;
}

.ChartControl {
	width: 100%;
	height: calc(100% - 300px);
	float: left;
	display: block;
	background: transparent;
}

.FeatureCategoryLogo {
	position: absolute;
	right: 2px;
	top: 5px;
	width: 48px;
	height: 48px;
}

.FeatureCategoryContainer {
	color: darkgray;
	transition: all 0.75s ease;
}

.FeatureCategoryContainer:hover {
	color: white;
	transition: all 0.75s ease;
}

.FeatureCategoryHeader {
	position: relative;
	font: 24px 'Segoe UI';
	white-space: nowrap;
	word-wrap: break-word;
	padding: 15px 100px 15px 15px;
	background: black;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom: 1px solid white;
	cursor: pointer;
}

.FeatureCategoryGroupContainer {
	padding: 0px 0px 0px 15px;
}

.FeatureGroupContainer {
	color: darkgray;
	transition: all 0.75s ease;
}

.FeatureGroupContainer:hover {
	color: white;
	transition: all 0.75s ease;
}

.FeatureGroupHeader {
	font: 18px 'Segoe UI';
	white-space: nowrap;
	word-wrap: break-word;
	padding: 5px 100px 5px 15px;
	background: black;
	border-bottom-left-radius: 10px;
	border-bottom: 1px solid white;
	border-top: 1px solid darkgray;
	cursor: pointer;
}

.FeatureGroupFeatureContainer {
	padding: 0px 0px 0px 20px;
}


.FeatureItem {
	font: 16px 'Segoe UI';
	white-space: nowrap;
	word-wrap: break-word;
	border: 1px solid black;
	background: darkblue;
	color: white;
	cursor: pointer;
	align-content: center;
	padding: 15px 50px 15px 15px;
	margin: 0px 0px 0px 0px;
	filter: grayscale(0.75);
	transition: all 0.75s ease;
}

.FeatureItem:hover {
	filter: grayscale(0);
	transition: all 0.25s ease;
}
