html,body {width:100%;height:100%;margin:0;padding:0;overflow:hidden;}
#areTheyRelatedTag {
	background: #dedede;
    width: auto;
    height: auto;
    color: #000;
    position: absolute;
	right:0;
	display:none;
    top: 40%;
    border: 2px solid gray;
    border-bottom: 0;
    border-radius: 10px 10px 0px 0px;
    transform: rotate(-90deg);
    transform-origin: left top 0;
    padding: 5px;
	font-family: "Lato", sans-serif;
	cursor:pointer;
	transition:0.3s;
}
#areTheyRelatedTag:hover {
	background:#c8c8c8;
}
#areTheyRelatedPanel {
	height: 100%;
    background: #dedede;
	background:url(../img/background-gray.jpg);
    width: 200px;
    position: absolute;
    top: 0;
	right:0;
	display:none;
	transition:0.3s;
	font-family: "Lato", sans-serif;
	border-left:2px inset;
	
}
#areTheyRelatedPanel .panelTitle {
	color:#000!important;
	margin-left: 0;
    padding-left: 10px;
    padding-right: 0;
	font-size:18px;
}
#areTheyRelatedX {
	color:#000!important;
}
#areTheyRelatedNodesContainer {
	width:100%;
	text-align:center;
	height:calc(100% - 35px);
}
.areTheyRelatedNode {
	background:#fff;
	border:2px dashed #000;
	width:90%;
	height:calc(50% - 25px);
	margin:0 auto;
	margin-top:10px;
	cursor:pointer;
	transition:0.3s;
}
.areTheyRelatedNode:hover {
	background:#f7f8fa;
}
.areTheyRelatedNode img {
	width:auto;
	max-width:100%;
}
#areTheyRelatedTitle {
	height:15px;
}
#areTheyRelatedClearButtonContainer {
	width:100%;
	text-align:center;
}
.allRelatedButton {
	vertical-align:inherit;
}
#filterRadioContainer {
	color:#fff;
	font-size:12px;
	text-align:center;
}
#filterRadioContainer input {
	vertical-align:sub;
}
#filterTextContainer {
	width:100%;
	text-align:center;
}
#filterTextContainer input {
	padding: 5px;
    width: 90%;
    border-radius: 5px;
    font-size: 16px;
}
#filterResults {
	border-collapse:collapse;
    border-top: 2px solid #ccc;
	color:#fff;
	text-align:left;
}
#filterResults tr {
	cursor:pointer;
	transition:0.3s;
}
#filterResults tr:hover {
	background:gray;
}
#filterResults tr.active {
	background:#4da200;
}
#filterResults td {
	border-bottom:2px solid #ccc;
	padding-top: 5px;
    padding-bottom: 5px;
}
#filterResults td.f {
	width:25%;
	padding-right:10px;
}
#filterResults td.f img {
	width:100%;
}
#filterResults td.l {
	position:relative;
	text-align:right;
}
#filterResults td.l img {
	width:35px;
	height:35px;
	opacity:0;
	transition:0.3s;
}
#filterResults tr:hover td.l img {
	opacity:1;
}
#filterResultsContainer {
	margin-top: 125px;
	overflow-y:scroll;
	overflow-x:hidden;
	height:calc(100% - 125px);
}
.hover01 img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover01 img:hover {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
#mynetwork {
	width: 99%;
	height: 99%;
}
#mynetwork .vis-network {
	position: relative; overflow: hidden; touch-action: pan-y; user-select: none; -webkit-user-drag: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); width: 100%; height: 100%;
}
#mynetwork .vis-network canvas {
	position: relative; touch-action: none; user-select: none; -webkit-user-drag: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); width: 100%; height: 100%;
}
#nodeFilterTitle {
	font-size:20px;
	padding-left:16px;
}
.nodeRowTable {
	border-collapse:collapse;
}
.nodeRowTable td {
	border-bottom:none!important;
	transition:0.3s;
}
.nodeRowTable td.nodeSettings {
	background-image: linear-gradient(to right, white 33%, rgba(255,255,255,0) 0%);
	background-position: top;
	background-size: 5px 1px;
	background-repeat: repeat-x;
}
.nodeRowTable tr:hover {
	background:none!important;
}
.nodeSettings {
	display:none;
	font-size:12px;
}
.panelTitle {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
}
#settingsGear {
	position: fixed;
	top: 0;
	right: 0;
}
#settingsGear img {
	width:50px;height:50px;cursor:pointer;
}
.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -250px;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
	font-family: "Lato", sans-serif;
}
#sideNavTopContainer {
	position:fixed;
	width:inherit;
}
#sideNavX,#areTheyRelatedX {
	cursor:pointer;
	position: absolute;
    top: -3px;
    right: 10px;
	padding-top:0;
    font-size: 36px;
	color:#f1f1f1;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255,0,0,0.8); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.4); 
}