.paragraph-html.paragraph-html-view{
  position: relative;
  z-index: 1;
}

.paragraph-html.paragraph-html-view:hover{
  z-index: 2;
}

.tooltiphs {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-decoration-color: #621a28;
  cursor: pointer;
}

.tooltiphs .tooltiptexths {
  visibility: hidden;
  font-weight: 500;
  background-color: #621a28;
  color: #fff;
  width: 80vw;
  max-width: 400px;
  border-radius: 16px;
  padding: 24px;
  font-size: 14px;
  position: absolute;
  top: 1.5em;
  left: 50%;
  transform: translateX(-50%);
  @media only screen and (min-width: 800px) {
    width: 25vw;
  }
}

.tooltiphs:hover {
  text-decoration-color: #000;
  z-index: 2;
}

.tooltiphs:hover .tooltiptexths {
  visibility: visible;
  z-index: 3;
}
