/*****************************
 *  TOLLTIPS
 ******************************/
.tooltip-wrapper {
  position: relative;
  display: block;
}

.tooltip-wrapper .tooltip-title {
  cursor: pointer;
  color: #0def7d;
  font-weight: 600;
}

.tooltip-wrapper:focus .tooltip-title,
.tooltip-wrapper:hover .tooltip-title {
  color: #3c6360;
}

.tooltip-wrapper .tooltip-content {
  width: calc(100% + 30px);
  visibility: hidden;
  position: absolute;
  background-color: #0faa75;
  color: #fff !important;
  padding: 5px;
  border-radius: 4px;
  word-break: normal;
  font-weight: 400;
  z-index: 10;
  transition: opacity 0.3s, visibility 0.3s;
}

.tooltip-wrapper.top .tooltip-content {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip-wrapper.bottom .tooltip-content {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip-wrapper:hover .tooltip-content {
  visibility: visible;
}
