.family-tree-node {
  min-width: 116px;
  width: 116px;
  height: 168px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.15);
  background-color: #00222F;
  border: 2px solid #314B55;
  border-radius: 24px;
}
.family-tree-node .memorial-tile-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 50, 60, 0) 25%, rgba(26, 50, 60, 0.9) 85%);
  z-index: 1;
}
.family-tree-node.owner-node {
  border: 2px solid #004A67;
  background-color: #001B26;
  box-shadow: 0px 0px 16px 0px rgba(185, 235, 255, 0.2);
}
.family-tree-node.memorial-node {
  border: none;
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  justify-content: end !important;
  gap: 8px !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0px 0px 8px 0px rgb(255, 255, 255) !important;
}
.family-tree-node.memorial-node .node-name {
  display: flex;
  flex-direction: column;
  z-index: 1;
  color: var(--Gray-White, #FFF);
  text-align: center;
  font-family: Bitter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.family-tree-node.memorial-node .node-relation {
  z-index: 1;
  color: var(--Slate-300, #92B3C0);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  line-height: 100%; /* 12px */
}
.family-tree-node.proxy-default-node {
  justify-content: center;
  border: 2px dashed #314B55 !important;
  color: var(--Gray-White, #FFF);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 18px */
}
.family-tree-node.proxy-user-node {
  border: 2px dashed #314B55 !important;
}
.family-tree-node.proxy-memorial-node {
  border: 2px solid #FFFFFF !important;
  box-shadow: 0px 0px 8px 0px rgb(255, 255, 255) !important;
}
.family-tree-node.initial-node {
  justify-content: center;
}
.family-tree-node.initial-node .node-name {
  color: white;
  font-size: 14px;
  font-family: Bitter;
  font-weight: 600;
  word-wrap: break-word;
  text-align: center;
}
.family-tree-node .node-name {
  color: white;
  font-size: 14px;
  font-family: Bitter;
  font-weight: 600;
  word-wrap: break-word;
  text-align: center;
}
.family-tree-node .node-relation {
  color: #92B3C0;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  line-height: 100%; /* 12px */
}
.family-tree-node img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
}
.family-tree-node img.memorial {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 0;
  border-radius: 24px;
}
.family-tree-node .connection {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 16px;
  width: 16px;
}
.family-tree-node .connection.unconnected {
  border-radius: 50%;
  border: 2px solid var(--Slate-800, #314B55);
}

.available-connections-wrapper {
  display: flex;
  gap: 16px;
  width: 100vw;
  padding: 16px;
  overflow-x: auto;
  z-index: 9;
  -ms-overflow-style: none !important; /* IE and Edge */
  scrollbar-width: none !important; /* Firefox */
}

.selected-tile-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--Slate-800, #314B55);
}
.selected-tile-wrapper .background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Playfair Display";
  font-size: 190px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 228px */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 100%, rgba(255, 255, 255, 0.04) 0%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.selected-tile-link {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--Slate-800, #314B55);
}
.selected-tile-link p {
  color: var(--Gray-White, #FFF);
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}

.selected-tile-bottom-pills {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: end;
  align-items: center;
}
.selected-tile-bottom-pills .selected-tile-pill {
  border-radius: 999px;
  background: var(--Dove-1000, #001B26);
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  white-space: nowrap;
}
.selected-tile-bottom-pills .selected-tile-pill.edit p {
  color: var(--Dove-200, #B9EBFF) !important;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
}
.selected-tile-bottom-pills .selected-tile-pill.remove p {
  color: var(--Red-200, #F1AEB5) !important;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
}

.selected-tile {
  position: relative;
  width: 174px;
  height: 252px;
}
.selected-tile img {
  height: 84px;
  width: 84px;
}
.selected-tile .tile-name {
  font-size: 21px !important;
}
.selected-tile .tile-relation {
  font-size: 18px !important;
}

.family-tree-ext {
  position: absolute;
}
.family-tree-ext.top {
  left: 50%;
  transform: translate(-50%);
  top: -50px;
}
.family-tree-ext.top.t-2 {
  left: 0 !important;
  transform: rotate(0) !important;
}
.family-tree-ext.top.t-2 div {
  transform: rotate(0) !important;
}
.family-tree-ext.top.active {
  background-image: url("/images/family-tree-add-link.svg") !important;
  height: 136px !important;
  top: -138px !important;
  width: 100px !important;
}
.family-tree-ext.right {
  transform: translate(50%) rotate(90deg);
  right: -25px;
}
.family-tree-ext.right.active {
  background-image: url("/images/family-tree-add-link-h.svg") !important;
  height: 136px !important;
  right: -69px !important;
  width: 100px !important;
}
.family-tree-ext.right.active div {
  transform: rotate(-90deg);
}
.family-tree-ext.left {
  transform: translate(-50%) rotate(-90deg);
  left: -25px;
}
.family-tree-ext.left.active {
  background-image: url("/images/family-tree-add-link-h.svg") !important;
  height: 136px !important;
  left: -69px !important;
  width: 100px !important;
}
.family-tree-ext.left.active div {
  transform: rotate(90deg);
}

.add-relative-popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 34, 47, 0.6);
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
.add-relative-popup-bg .add-relative-popup {
  border-radius: 32px 32px 0 0;
  padding: 0 24px 24px;
  background: var(--Slate-900, #1A323C);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.add-relative-popup-bg .add-relative-popup .popup-close {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 1rem;
}
.add-relative-popup-bg .add-relative-popup .popup-close > div {
  height: 4px;
  width: 50px;
  border-radius: 999px;
  background: var(--Slate-300, #92B3C0);
}
.add-relative-popup-bg .add-relative-popup p.add-relative-txt {
  color: var(--Slate-200, #B2C4CB);
  font-family: "Noto Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.add-relative-popup-bg .add-relative-popup p.add-relative-txt span {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.add-relative-popup-bg .add-relative-popup .select-relation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.add-relative-popup-bg .add-relative-popup .select-relation .select-relative-row {
  display: flex;
  gap: 1rem;
}
.add-relative-popup-bg .add-relative-popup .select-relation .select-relative-row .select-relative-pill {
  position: relative;
  border-radius: 1rem;
  border: 2px dashed var(--Slate-800, #314B55);
  background: var(--Dove-1000, #001B26);
  padding: 1rem;
  width: 100%;
  min-width: 67px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--Gray-White, #FFF);
  font-family: "Noto Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.add-relative-popup-bg .add-relative-popup .select-relation .select-relative-row .select-relative-pill .btn-end {
  position: absolute;
  right: 16px;
  transform: translate(0 -50%);
}

.modal-add-relative {
  background: rgba(0, 34, 47, 0.6) !important;
}
.modal-add-relative .modal-dialog {
  position: fixed;
  bottom: 0;
  width: 100%;
  margin: 0;
}
.modal-add-relative .modal-content {
  border: none;
  background-color: transparent !important;
}
.modal-add-relative .modal-body {
  padding: 0 !important;
  background-color: transparent !important;
}
.modal-add-relative .add-relative-popup {
  border-radius: 32px 32px 0 0;
  padding: 0 24px 24px;
  background: var(--Slate-900, #1A323C);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.modal-add-relative .add-relative-popup .popup-close {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 1rem;
}
.modal-add-relative .add-relative-popup .popup-close > div {
  height: 4px;
  width: 50px;
  border-radius: 999px;
  background: var(--Slate-300, #92B3C0);
}
.modal-add-relative .add-relative-popup p.add-relative-txt {
  color: var(--Slate-200, #B2C4CB);
  font-family: "Noto Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.modal-add-relative .add-relative-popup p.add-relative-txt span {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.modal-add-relative .add-relative-popup .select-relation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.modal-add-relative .add-relative-popup .select-relation .select-relative-row {
  display: flex;
  gap: 1rem;
}
.modal-add-relative .add-relative-popup .select-relation .select-relative-row .select-relative-pill {
  position: relative;
  border-radius: 1rem;
  border: 2px dashed var(--Slate-800, #314B55);
  background: var(--Dove-1000, #001B26);
  padding: 1rem;
  width: 100%;
  min-width: 67px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--Gray-White, #FFF);
  font-family: "Noto Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.modal-add-relative .add-relative-popup .select-relation .select-relative-row .select-relative-pill .btn-end {
  position: absolute;
  right: 16px;
  transform: translate(0 -50%);
}

.family-tree-tile-view {
  z-index: 11;
  background: linear-gradient(180deg, rgba(48, 149, 128, 0.2) 0%, rgba(0, 34, 47, 0.2) 35.34%), #00222F;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.tree-join-y {
  width: 2px;
  background: var(--Slate-900, #1A323C);
}
.tree-join-y.short {
  height: 24px;
}
.tree-join-y.long {
  height: 109px;
}

.tree-join-x {
  height: 2px;
  background: var(--Slate-900, #1A323C);
}
.tree-join-x.short {
  width: 24px;
}
.tree-join-x.long {
  width: 109px;
}

.add-deceased-relative-popup-txt p:first-child {
  color: #FFF;
  font-family: "Playfair Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.add-deceased-relative-popup-txt p:last-child {
  color: var(--Slate-200, #B2C4CB);
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.family-tree-extension {
  position: absolute;
  top: -8px;
  right: -8px;
  border: 2px solid #004A67;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  background-color: #001B26;
  border-radius: 50%;
}
.family-tree-extension.memorial {
  border: 2px solid #FFFFFF;
}
.family-tree-extension.proxy-memorial {
  border: 2px solid #FFFFFF;
}
.family-tree-extension.user {
  border: 2px solid #314B55;
}
.family-tree-extension.proxy-user {
  border: 2px solid #314B55;
}

.family-tree-of-user {
  position: absolute;
  top: -8px;
  right: -8px;
  border: 2px solid #79DFC1;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  background-color: #001B26;
  border-radius: 50%;
}
.family-tree-of-user.owner {
  top: 30px;
}

.react-flow__handle {
  visibility: hidden !important;
}

.family-tree-search-input {
  width: calc(100% - 56px) !important;
  border: none !important;
  border-top-left-radius: 999px !important;
  border-bottom-left-radius: 999px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 12px 16px !important;
  color: var(--Gray-500, #ADB5BD);
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.search-icon-wrapper {
  border: none !important;
  border-top-right-radius: 999px !important;
  border-bottom-right-radius: 999px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin: 0 !important;
}

.family-tree-search-item {
  border-radius: 16px;
  border: 2px solid var(--Slate-800, #314B55);
  background: rgba(255, 255, 255, 0.0509803922);
  padding: 16px;
  display: flex;
  justify-content: space-between;
}
.family-tree-search-item.selected {
  border: 2px solid var(--Gray-White, #FFFFFF) !important;
}
.family-tree-search-item .search-item-content {
  display: flex;
  gap: 16px;
}
.family-tree-search-item .search-item-content img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.family-tree-search-item .search-item-content .search-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.family-tree-search-item .search-item-content .search-item-text p:first-child {
  color: var(--Gray-White, #FFF);
  font-family: "Playfair Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
}
.family-tree-search-item .search-item-content .search-item-text p:last-child {
  color: var(--Gray-White, #FFF);
  font-family: "Noto Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}
.family-tree-search-item .search-item-radio {
  width: 24px;
  height: 24px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.family-tree-search-item .search-item-radio .radio-selected {
  background-color: #FFFFFF;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  opacity: 0;
}
.family-tree-search-item .search-item-radio.selected .radio-selected {
  opacity: 1;
}

.react-flow__edge-path {
  stroke: #40626F !important;
}

.react-flow__edge-path:hover {
  stroke: white !important;
}

.edit-relationship-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding-bottom: 1.5rem;
}
.edit-relationship-text p:first-child {
  color: #FFF;
  font-family: Bitter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.edit-relationship-text p:last-child {
  color: #FFF;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}/*# sourceMappingURL=familyTree.css.map */