.infoWrapper {
  position: absolute;
  top: -3px;
  right: 3px;
  display: inline-block;
}
@media only screen and (max-width: 1614px) {
  .infoWrapper {
    top: -3px;
    right: 3px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .infoWrapper {
    top: 0px;
    right: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .infoWrapper {
    top: 0px;
    right: 3px;
  }
}
@media only screen and (max-width: 390px) {
  .infoWrapper {
    top: 0px;
    right: 3px;
  }
}

.infoIcon {
  cursor: help;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  font-size: 12px;
}
@media only screen and (max-width: 1614px) {
  .infoIcon {
    width: 16px;
    height: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .infoIcon {
    width: 15px;
    height: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .infoIcon {
    width: 15px;
    height: 15px;
  }
}
@media only screen and (max-width: 390px) {
  .infoIcon {
    width: 15px;
    height: 15px;
  }
}

.tooltipContent {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  z-index: 10;
  white-space: normal;
  max-width: 200px;
  display: none;
}

.tooltipContent.visible {
  display: block;
}