body {
    background-color: #fff;
    color: black;
    height: fit-content;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
}

.custom-container{
    padding: 110px 30px 30px 30px;
    color: black;
}
.custom-container-np{
    padding: 0;
}

#root{
    min-height: 100%;
    min-width: 100%;
}

.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 1000000;
  bottom: 10%;
  left: 130%;
  transform: translateX(-0%);
  background: black;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.tooltip:hover::after {
  opacity: .8;
}


@media (max-width: 768px) {
  .tooltip::after {
    bottom: 120%;
    left: 0%;
    transform: translateX(-50%);
  }
}