.dotted-border-bottom-black{
    border-bottom: 1px dotted #333338;
}

.fit-content{
    max-width: fit-content;
}

.tooltip-text {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.5rem;
    background-color: #333338;
    color: white;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
    padding: 12px;
    border-radius: 8px;
    left: 52%;
    transform: translateX(-50%);
    bottom: calc(100% + 10px);
    z-index: 4;
    width: 200px;
}

.tooltip-text::before {
  content: "";
  width: 8px;
  margin-top: -4px;
  margin-left: -4px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: rotate(45deg);
  background-color: inherit;
  display: block;
  height: 8px;
}