.poptip {
  position: relative;
  z-index: 101;
}

.poptip::before,
.poptip::after {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease 0.2s;
  box-sizing: border-box;
}

.poptip::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #30363d transparent transparent transparent;
  left: calc(50% - 8px);
  top: 0px;
  transform: translateX(0%) translateY(-12px);
}

.poptip::after {
  font-size: 14px;
  color: #fff;
  content: attr(aria-controls);
  position: absolute;
  padding: 6px 12px;
  white-space: nowrap;
  z-index: -1;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(-12px);
  background: #30363d;
  line-height: 1;
  border-radius: 2px;
}

.poptip:hover::before,
.poptip:hover::after {
  visibility: visible;
  opacity: 1;
}

.btn {
  /*min-width: 100px;*/
  line-height: 1.5;
  padding: 5px 10px;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

/*# sourceMappingURL=CueBubble.css.map */