.familyTree {
  transform-origin: 50% 0;
  user-select: none;
  --webkit-user-select: none;
}

.personLine {
  width: 150px;
}

.person note {
  display: none;
}

.clickable {
  cursor: pointer;
}

.clickable:hover {
  text-decoration: underline;
}

.vertical .generation {
  display: block;
  position: relative;
  margin: 1rem;
  background: #f0f0f0;
  text-align: center;
}
.vertical .union {
  display: inline-block;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
  border-bottom: 4px solid black;
}
.vertical .children {
  display: inline-block;
  text-align: center;
  position: relative;
  display: inline-block;
  position: relative;
  border-radius: 10px;
  border: 1px solid #4488ff;
}
.vertical .person {
  display: inline-block;
  position: relative;
  max-width: 250px;
  margin: 0 1rem;
}

.scrollWrapper {
  width: 97vw;
  height: 50vh;
  overflow: scroll;
  position: relative;
  background: #9b9b9b;
}
.scrollWrapper .horizontal .union {
  background: white;
}

.fullScreen .scrollWrapper {
  width: 100vw !important;
  height: 100vh !important;
  position: absolute;
  top: 0;
  z-index: 10;
  left: 0;
}
.fullScreen .treeToolbar {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.wrappedTree.uiModi .personLine,
.wrappedTree.uiModi .connectorLine,
.wrappedTree.uiModi .unionLine {
  background: black;
}

.wrappedTree .treeToolbar {
  width: 97vw;
  box-shadow: none !important;
  text-align: right;
}

.horizontalTree {
  scrollbar-color: rgb(0, 149, 255) rgb(229, 229, 229);
  scrollbar-width: revert;
  user-select: none;
}

html.horizontalTree {
  scroll-behavior: auto !important;
}

.horizontal {
  position: relative;
}
.horizontal .generation {
  top: 0;
  position: absolute;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: none;
  text-align: left;
}
.horizontal .connectors {
  top: 0;
  box-sizing: border-box;
  position: absolute;
  height: 100%;
}
.horizontal .connectorLine {
  box-sizing: content-box;
  transform-origin: 0 0;
  transform: rotate(90deg);
}
.horizontal .union {
  position: relative;
  box-sizing: border-box;
  z-index: 10;
  display: block;
}
.horizontal .union .knot {
  display: block;
  position: relative;
}
.horizontal .children {
  position: absolute;
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.horizontal .person {
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  display: block;
  overflow: visible;
}
.horizontal .personLine {
  box-sizing: border-box;
  position: absolute;
  top: 10px;
}
.horizontal .unionLine {
  box-sizing: border-box;
  position: absolute;
}
.horizontal .bg {
  position: absolute;
  z-index: 1;
  width: 100%;
}
.horizontal .ancestral .line1 {
  margin-top: 200px;
}
.horizontal .ancestral .line1 + .line1 {
  margin-top: 0;
}

.namesInfoMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: rgba(0, 0, 0, 0.25);
}

.namesInfoMask.hidden {
  display: none;
}

.namesInfoBox {
  background: white;
  box-sizing: border-box;
  position: absolute;
  width: 350px;
  z-index: 400;
}
.namesInfoBox .content {
  padding: 2rem;
}
.namesInfoBox .closeButton {
  border: none;
  position: absolute;
  font-size: 16px;
  right: 10px;
  top: 10px;
}

.namesInfoBox.hidden {
  display: none;
}

.treeInfo {
  max-width: 500px;
  padding: 2rem 2rem 4rem 2rem;
  box-sizing: border-box;
}

.treeInfo h1 {
  margin-top: 0;
}

.treeToolbar {
  box-sizing: border-box;
  padding: 20px;
}
.treeToolbar button {
  background-color: white;
  border: none;
  background-size: cover;
  width: 44px;
  height: 44px;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 5px;
}
.treeToolbar button + button {
  margin-left: 1rem;
}
.treeToolbar .zoomIn {
  background-image: url(../images/zoomin.svg);
}
.treeToolbar .zoomOut {
  background-image: url(../images/zoomout.svg);
}
.treeToolbar .fullScreen {
  background-image: url(../images/fullscreen.svg);
}

/*# sourceMappingURL=tree.css.map */
