.message-business-import-in-progress {
  display: none;
}

.message-business-import-in-progress-label {
  left: 50%;
  top: 4px;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff;
}

.message-business-import-customers-notice {
  display: none;
}

.message-business-loading {
  float: left;
  min-height: 16px;
  background: url(../img/loader.gif) no-repeat center left;
  font-style: italic;
  color: #9f9f9f;
  padding: 5px 5px 5px 30px;
}

.message-business-import-date {
  font-weight: bold;
}

/** HELP ICON TOOLTIP **/
.help-tip{
  /*position: absolute;
  top: 18px;
  right: 18px;*/
  display: inline-block;
  text-align: center;
  background-color: #00aaff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 26px;
  cursor: default;
}

.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 */
  display: none;
  text-align: left;
  background-color: #3f3f3f;
  padding: 20px;
  width: 300px;
  position: absolute;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  /*right: -4px;*/
  color: #FFF;
  font-size: 13px;
  line-height: 1.4;
}

.help-tip p:before{ /* The pointer of the tooltip */
  position: absolute;
  content: '';
  width:0;
  height: 0;
  border:6px solid transparent;
  border-bottom-color:#3f3f3f;
  left:7px;
  top:-12px;
}

.help-tip p:after{ /* Prevents the tooltip from being hidden */
  width:100%;
  height:40px;
  content:'';
  position: absolute;
  top:-40px;
  left:0;
}

/* 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%; }
}
/** END HELP ICON TOOLTIP **/