.info-tooltip {
  text-transform: none;
  display: inline-block;
  position: relative;
}
.info-tooltip .info-tooltip-handle {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 50%;
  border: #aaa 1px solid ;
  background: #ccc;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 10px;
  cursor: pointer;
  vertical-align: super;
  color: #000;
}
.info-tooltip .info-tooltip-wrapper {
  opacity: 1;
  display: none;
  position: absolute;
  z-index: 1100;
  top: 100%;
  left: -20px;
  margin-top: 7px;
  padding: 20px;
  background: rgba(50, 50, 50, 0.9);
}
.info-tooltip .info-tooltip-wrapper:before {
  position: absolute;
  left: 17px;
  top: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 8px 10px;
  border-color: transparent transparent rgba(50, 50, 50, 0.9) transparent;
  content: '';
}
.info-tooltip .info-tooltip-content {
  color: #ffffff;
  font-size: 12px;
  min-width: 300px;
  max-width: 450px;
}
.info-tooltip .info-tooltip-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.info-tooltip .info-tooltip-close:before,
.info-tooltip .info-tooltip-close:after {
  content: '';
  width: 15px;
  height: 1px;
  background: #999999;
  position: absolute;
  top: 50%;
  left: 0;
}
.info-tooltip .info-tooltip-close:before {
  transform: rotate(45deg);
}
.info-tooltip .info-tooltip-close:after {
  transform: rotate(-45deg);
}

