.EquipmentFancyTreeGrid .table-view{
	height: 369px;
	overflow-y: scroll;
	overflow-x: fixed;
    display: block;
    position: relative;
    transition: height .1s linear;
}

.EquipmentFancyTreeGrid ::-webkit-scrollbar {
    width: 12px;
}
 
.EquipmentFancyTreeGrid ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
}
 
.EquipmentFancyTreeGrid ::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: radial-gradient(rgb(77,77,77), rgb(60,60,60), rgb(77,77,77));
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

.EquipmentFancyTreeGrid .table-container{
	width: 100%;
	height: 400px;
	border: solid .25px rgb(153,153,153);
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	margin-left: -.25px;
	margin-bottom: 20px;
	box-shadow: -3px 3px 11px -4px rgba(10,10,10,0.2);
}

.EquipmentFancyTreeGrid .table-tree{
	width: 100%;
	table-layout: fixed;
}

.EquipmentFancyTreeGrid th{
	text-align: left;
	padding-left: 5px;
}

.EquipmentFancyTreeGrid .table-header-item{
	display: inline-flex;
	align-items: center;
}

.EquipmentFancyTreeGrid .table-header{
	display: block;
	background: linear-gradient(rgb(77,77,77), rgb(26,26,26));
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: white;
}

.EquipmentFancyTreeGrid .table-name{
	width:50%;
}

.EquipmentFancyTreeGrid .table-created,
.EquipmentFancyTreeGrid .table-modified{
	width:20%;
}

.EquipmentFancyTreeGrid .table-size{
	/*We need to add some space for the filter icon*/
	width:calc(13% - 14px);
}

.EquipmentFancyTreeGrid th{
	background: linear-gradient(rgb(77,77,77), rgb(26,26,26));
	color: white;
}

.EquipmentFancyTreeGrid .dragEventOverTop{
	border-style: dashed!important;
}

.EquipmentFancyTreeGrid .listItem{
	padding-top: 3px;
	padding-bottom: 3px;
}

.EquipmentFancyTreeGrid thead { 
	display:none;
}

.EquipmentFancyTreeGrid .fancytree-container tbody tr td{
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
}

.EquipmentFancyTreeGrid span.fancytree-node{
    white-space: nowrap;
    overflow: hidden;
    padding-top: 2px;
    padding-bottom: 2px;
}

.EquipmentFancyTreeGrid span.fancytree-title{
    display: inline-block;
    max-width: 50%;
}

.EquipmentFancyTreeGrid a {
	max-width: 50%;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  	color: black;
  	text-decoration: none;
}

.EquipmentFancyTreeGrid a:hover {
  color: black;
  position: relative;
}

.EquipmentFancyTreeGrid .filter-icon {
	cursor: pointer;
	transition: color .2s linear;
}

.EquipmentFancyTreeGrid .filter-icon:hover {
	color: rgba(255, 255, 255, .8);
}

.EquipmentFancyTreeGrid .table-header-container {
	display: flex;
	align-items: center;
	padding: 5px;
}

.EquipmentFancyTreeGrid .table-header-sub-container {
	display: flex;
	padding-left: 5px;
	padding-right: 5px;
    align-items: center;
	overflow: hidden;
	height: 0px;
	box-sizing: border-box;
	border-top: 1px solid rgba(255, 255, 255, 0);
	transition: height .1s linear, padding .1s linear, border .1s linear;
}

.EquipmentFancyTreeGrid .table-header-sub-container.show {
	border-top: 1px solid rgba(255, 255, 255, .1);
	height: auto;
	padding: 5px; 
	display: flex; 
	flex-wrap: wrap; 
}

.EquipmentFancyTreeGrid .table-view.show-sub-header {
	height: 339px;
}

.EquipmentFancyTreeGrid .equipment-date-picker, .EquipmentFancyTreeGrid .equipment-data-type {
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	height: 15px;
	width: 150px;
	font-size: 10px;
	box-sizing: border-box;
	margin-left: 10px;
	margin-right: 10px;
	text-align: center;
}

.EquipmentFancyTreeGrid .table-header-item.refresh {
	margin: auto;
	margin-right: 10px;
}

.EquipmentFancyTreeGrid .table-header-sub-container .table-header-item {
	font-size: 12px;
}

.EquipmentFancyTreeGrid .fancytree-childcounter {
    color: white;
    margin-left: -1px;
    font-size: 10px;
}

.EquipmentFancyTreeGrid .fancytree-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Stop the fancy tree class from graying out the the parent nodes */
.EquipmentFancyTreeGrid .fancytree-ext-filter-hide tr.fancytree-submatch span.fancytree-title,
.EquipmentFancyTreeGrid .fancytree-ext-filter-hide span.fancytree-node.fancytree-submatch span.fancytree-title {
    color: black;
    font-weight: normal;
}

/*.EquipmentFancyTreeGrid .fancytree-submatch .fancytree-childcounter {
    display: none !important;
}*/

@media only screen and (max-width: 1000px) 
{
	.EquipmentFancyTreeGrid  span.fancytree-title 
	{
		max-width: 0px;
	}
}