.help-tip {
  top: 18px;
  left: 18px;
  text-align: center;
  background-color: #87ceeb;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 26px;
  cursor: default;
  margin-left: 5px;
}

.help-tip:before {
  content: '?';
  font-weight: bold;
  color: #fff;
}

.help-tip:hover p {
  display: block;
  transform-origin: 100% 0%;

  -webkit-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;
}

.help-tip p {
  /* The tooltip */
  z-index: 50;
  position: relative;
  text-indent: -12px;
  display: none;
  text-align: left;
  background-color: #9e9e9e;
  padding: 20px;
  width: 300px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  right: -4px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
}

.help-tip p:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.help-tip p:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.help-tip p:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.help-tip p:before {
  /* The pointer of the tooltip */
  content: '';
  width: 0;
  height: 0;
  border: 6px solid transparent;
  right: 10px;
  top: -12px;
}

.help-tip p:after {
  /* Prevents the tooltip from being hidden */
  width: 100%;
  height: 40px;
  content: '';
  top: -40px;
  left: 0;
}

.help-tip-warning {
  background-color: #cf2a27;
}

.help-tip-warning:before {
  content: '!';
  font-size: 16px;
}
/* CSS animation */

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  100% {
    opacity: 100%;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
