/**
  Usage:
  <div class="tooltipForPartner">
      <div class="tooltipForPartner-icon">i</div>
      <div class="tooltipForPartner-content">content</div>
  </div>
 */
.tooltipForPartner {
  position: relative;
  width: 100%;
}

.tooltipForPartner-icon {
  width: 20px;
  height: 20px;
  margin: auto;
  border: 1px solid #5bc0de;
  border-radius: 50px;
  font-weight: bold;
  background-color: #5bc0de;
  color: #fff;
  cursor: pointer;
}

.tooltipForPartner-content {
  display: none;
  position: absolute;
  width: 400px;
  min-height: 100px;
  padding: 5px;
  background-color: #fff;
  box-shadow: 2px 2px 5px #7993a9;
  border: 3px solid #428bca;
  border-radius: 7px;
  white-space: pre-line;
  text-align: left;
  z-index: 1;
}

.tooltipForPartner-content.topLeft {
  bottom: 0;
  right: 20px;
}

.tooltipForPartner-content.bottomLeft {
  top: 15px;
  right: 20px;
}

.tooltipForPartner-content.topRight {
  bottom: 0;
  left: 20px;
}

.tooltipForPartner-content.bottomRight {
  top: 15px;
  left: 20px;
}

.tooltipForPartner:hover > .tooltipForPartner-content {
  display: block;
}
