/****** css combine: 1 total files ******/

/****** css file includes/plugins/tips/aitips.css last modified 1544632726 ******/
/*
	Tooltip may be within or beside the class with the tooltip
	
	Ex 1: child tooltip
	<span class='has_aiqtip'>My base hover text<span class='aictip'>Tool tip to be displayed</span>
	
	Ex 2: sibling tooltip
	<span class='has_aiqtip'>My base hover text</span> <div class='aictip'>Tool tip to be displayed</div>
*/




/* Main tooltip content  */
.has_aitip, .has_aiqtip, .has_aictip {
  position: relative;
  display: inline-block;
}




/* SUPPORT CHILD TOOLTIPS LIKE : 
	Ex 1: child tooltip
	<span class='has_aiqtip'>My base hover text<span class='aictip'>Tool tip to be displayed</span>
*/

/* Tooltip inner text (For child tooltip spans/divs) */
.has_aitip .aitip, .has_aiqtip .aiqtip, .has_aictip  .aictip {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.has_aitip:hover .aitip, .has_aiqtip:hover .aiqtip, .has_aictip:hover .aictip {
  visibility: visible;
}




/* ALSO SUPPORT SIBLING TOOLTIPS LIKE : 
	Ex 2: sibling tooltip
	<span class='has_aiqtip'>My base hover text</span> <div class='aictip'>Tool tip to be displayed</div>
*/

/* Tooltip text (For adjacent/sibling spans/divs) */
.has_aitip + .aitip, .has_aiqtip + .aiqtip, .has_aictip + .aictip {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.has_aitip:hover + .aitip, .has_aiqtip:hover + .aiqtip, .has_aictip:hover + .aictip {
  visibility: visible;
}

/****** end css file includes/plugins/tips/aitips.css ******/
