what3words-address {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
}

.what3words-address {
  color: #333;
  display: inline-flex;
  text-decoration: none;
  flex-direction: column;
}

.what3words-address_container {
  display: flex;
}

.what3words-address_text {
  white-space: nowrap;
}

.what3words-tooltip-container {
  height: 0;
  width: 0;
  position: relative;
  align-self: center;
}

.what3words-tooltip {
  position: absolute;
  display: none;
  width: 160px;
  background-color: #333333;
  border-radius: 3px;
  bottom: 10px;
  left: -88px;
  font-size: 12px;
  padding: 8px;
  z-index: 1;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
}
.what3words-address:hover .what3words-tooltip, .what3words-address_tooltip .what3words-tooltip {
  display: block;
}
.what3words-tooltip:after {
  bottom: -13px;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  border: 7px solid transparent;
  margin-left: -7px;
  border-top-color: #333333;
  z-index: 1;
}
.what3words-tooltip:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: -10px;
  left: 0;
}
.what3words-tooltip a {
  color: #ffffff;
}