@charset 'UTF-8';

/* Button */
.act-btn{
background:green;
display: block;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
color: white;
font-size: 30px;
font-weight: bold;
border-radius: 50%;
-webkit-border-radius: 50%;
text-decoration: none;
transition: ease all 0.3s;
position: fixed;
right: 30px;
bottom:90px;
}
.act-btn:hover{background: blue}

/* Button */
.act-btn2{
background:green;
display: block;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
color: white;
font-size: 30px;
font-weight: bold;
border-radius: 50%;
-webkit-border-radius: 50%;
text-decoration: none;
transition: ease all 0.3s;
position: fixed;
right: 30px;
bottom:30px;
}
.act-btn2:hover{background: blue}

.phoneIcon{
	padding-top:9px;
}


/* Tool Tip */
.tooltipClick2call {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  
}

.tooltipClick2call .tooltipClick2callText {
  visibility: hidden;
  width: 250px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  opacity: 0;
  transition: opacity 1s;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: -5px;
  right: 150%;
  
  /* font tooltip */
  font-weight:normal;
  font-size:11px;
  line-height:1;
}

.tooltipClick2call:hover .tooltipClick2callText {
  visibility: visible;
  opacity: 1;
}
.tooltipClick2call .tooltipClick2callText::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%; /* To the right of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent black;
}