/* infobox */
.info-inline {
  display: inline-block !important;
  height: 15px;
  top: 1px;
  position: relative;
  margin-left: 5px;
}

.info-html .data-info-icon:after {
  display: none;
}

.info-html-content {
  position: fixed;
  width: 400px;
  background: var(--clr-white);
  text-align: left;
  padding: var(--sp3);
  margin-bottom: 10px;
  opacity: 0;
  border-radius: 5px;
  pointer-events: none;
  border: 1px solid #e6e6e6;
  max-width: calc(100% - 60px);
}

.info-html-content.is-show {
  pointer-events: unset;
}

.info-w-md {
  width: 300px;
}

@media only screen and (max-width: 767px) {
  .info-html-content {
    max-width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 480px) {
  .info-html-content {
    left: 0 !important;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
