/* CSS Document */
/*------------------------------------------------*/
.pulsating-circle {
  position: absolute;
  /*left:50%; top:50%;*/
  left: 0;
  top: 0;
  transform: translateX(-50%) translateY(-50%);
  width: 16px;
  height: 16px;
}
.pulsating-circle::before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background-color: #01a4e9;
  -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}  
.pulsating-circle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.8);
  }
}
/*------------------------------------------------*/
.tooltip {
   /* position: relative;*/
    position: absolute;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
	top:0
}

.tooltip .tooltiptext {
    visibility: hidden;
    max-width: 250px;
	min-width: 150px;
	width: auto;
    background-color: #ebf3ecde;
    color: #23657e;
    text-align: center;
    padding: 5px 7px;
    border-radius: 6px;
 
    position: absolute;
    z-index: 1;
	margin-top: 20px;
	font-size: 12px;
	 opacity: 100;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%;
    left: 3%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #ebf3ecde transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
.tooltip-div-in {
   /* inserito da M;*/
    position: absolute;
    height: 15px;
	width: 15px;
	cursor:pointer;
	z-index:201;
}
