.scene-dot {
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

BODY .scene-tooltip-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  jusctify-content: center;
  font-size: 16px;
  line-height: 24px;
  font-family: sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
  background-color: #000000cc;
  text-align: center;
  padding: 10px 18px;
  margin: 4px;
  border-radius: 4px;
  width: fit-content;
  white-space: nowrap;
  transition: all .18s ease-out .18s;
}

.scene-tooltip-content span {
	color: #ffffff;
}

.scene-container:hover .scene-tooltip {
/*   display: flex; */
/*   transition: all .18s ease-out .18s; */
}

.scene-tooltip-two {
  position: relative;
  display: block;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #696a6c;
  background: #fff;
  padding: 10px 18px;
  margin: 4px;
  border-radius: 4px;
  width: fit-content;
  overflow: visible;
  transition: all .18s ease-out .18s;
}

[data-tooltip][data-tooltip-location="down"]:after {
  content: attr(data-tooltip);
  position: absolute;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  background-color: #000000cc;
  text-align: center;
  padding: 10px 18px;
  margin: 4px 0;
  border-radius: 4px;
  width: fit-content;
  white-space: nowrap;
  pointer-events: none;
  /* align center */
  left: 50%;
  transform: translate(-50%, 0);
  /* align left */
/*   left: 0;  */
  /* align right */
/*   right: 0; */
  margin-top: 10px;
  top: 100%;
  visibility: visible; /* always visible */
  opacity: 1; /* always visible */
}