.wp-ttglossary {
  color: rgba(0, 0, 0, 0.8) !important;
  cursor: help;
  text-decoration: none !important;
  border-bottom: 1px dotted;
  position: relative;
}

.wp-ttglossary::before {
  content: attr(data-g);
  z-index: 1;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: .75em;
  line-height: 1.5;
  position: absolute;
  left: 0;
  top: 150%;
  display: table;
  min-width: 10em;
  max-width: 20em;
  padding: .5em 1em;
  margin-top: -.5em;
  border-radius: .3em;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.wp-ttglossary:hover::before {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}

.wp-ttglossary-btns {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.wp-ttglossary-btns li {
  cursor: pointer;
  width: 9%;
  margin: 0 1% 1% 0;
  display: block;
  border-radius: 5px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.8);
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  line-height: 2;
}

.wp-ttglossary-btns li:hover, .wp-ttglossary-btns li.is-active {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}
/*# sourceMappingURL=frontend.css.map */