/* SVG styles */

#svg {
  display: block;
  width: 100%;
  /*height: 100%;*/
  /*min-height: 800px;*/
  height: calc(100vh - 100px);
}
.nodes circle {
  pointer-events: all;
}
.nodes rect {
  pointer-events: all;
}
.labels {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.graph {
  width: 100%;
  height: 100%;
  background-color: #fff;
  /*display:none;*/

}
#InfoNode {
  position: absolute;
  border: 2px solid black;
  background-color: white;
  /*padding: 20px;*/
  /*padding-top: 30px;*/
  font-size: 12px;
}
.info-label {
  color: #7F7F7F;
}
.info-table {
  width: 630px;
  border-collapse: collapse;
  table-layout: fixed;
}
.info-table tr td {
  padding: 10px;
}
.t-links {
  border-collapse: collapse;
  width: auto;
}
.t-links tr td {
  padding: 0;
}
.f-part {
  border-collapse: collapse;
  width: auto;
}
.f-part tr td {
  padding: 0;
}
.rel-table {
  border-collapse: collapse;
  width: auto;
}
.rel-table tr td {
  padding: 0;
  padding-right: 10px;
}
.centr-table {
  border-collapse: collapse;
  width: auto;
}
.centr-table tr td {
  padding: 0;
  padding-right: 10px;
}
.small-font {
  font-size: 9px;
}
/* Hide scrollbar for Chrome, Safari and Opera */

.hide-scroll::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */

.hide-scroll {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */

}
