.nw-tooltip-tc {
  margin-left: 7px;
  cursor: pointer;
  font-size: $font-size-xxs;
  font-weight: 600;
  color: $tooltip-default-color;
  user-select: none;
}

.nw-tooltip-hover {
  position: absolute;
  z-index: 1;
  left: -40px;
  display: none;
  margin-top: 10px;
  border-radius: 3px;
  width: 105px;
  padding: 7px;
  background: $tooltip-box-bgcolor;
  font-size: $font-size-xxs;
  font-weight: 600;
  line-height: 1.5;
  color: $tooltip-text-color;
}

.nw-tooltip-terms {
  position: relative;
  display: inline-block;

  &::before {
    content: " ";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    transform: rotate(45deg);
    margin: 5px auto;
    width: 15px;
    height: 15px;
    background: $tooltip-box-bgcolor;
  }

  &:hover {
    .nw-tooltip-hover {
      display: block;
    }

    &::before {
      display: block;
    }
  }
}
