/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	left: 588px;
	top: 32px;
	background: transparent; 
	width: 14px; 
	height: 14px; 
	text-align:center; 
	font-weight: bold; 
	color: #FFF;
/* 	text-decoration: none; */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 180px;
  bottom: 145%;
  left: 50%;
  margin-left: -90px;
  background-color: #f29930;
  color: #fff;
  text-align: center;
  padding: 6px 0px;
  border-radius: 5px;
  font-weight: normal;  
  position: absolute;
  line-height: 150%;
  z-index: 1;
  font-size: 14px;
 }

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #f29930 transparent transparent transparent;
}


/* tooltip para os botoes de apps */
	
	.tooltipModule{
    display: inline;
    position: relative;
	text-decoration: none;
}

	.tooltipModule:hover span::after{
    background: #1e2f5f;
    border-radius: 5px;
    top: -32px;
    color: #fff;
    content: attr(title);
    left: -60%;
    padding: 5px 0px;
    position: absolute;
    z-index: 98;
    width: 120px;
	text-align: center;
	font-size: 12px;

}

.tooltipModule span:hover {
    display: none;
 }

.tooltipModule:hover:before{
    border: solid;
    border-color: #1e2f5f transparent;
    border-width:  6px 6px 0px 6px ;
    top: -48px;
    content: "";
    left: 20px;
    position: absolute;
/*     z-index: 99; */
}


.tooltipModule:disabled {
   background: #000;

}





