.tooltips {
  position: relative;
  top:-10px;
  display: inline;
  
}
.tooltips span {
  position: absolute;
  width:140px;
  color: #FFFFFF;
  background: #FF6E26;
  height: 30px;
  line-height: 30px;
  text-align: center;
  visibility: hidden;
  border-radius: 6px;
 
}
.tooltips span:after {
  
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-bottom: 8px solid #FF6E26;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.tooltips span {
  visibility: visible;
  opacity: 0.8;
  left: 100%;
  top: 50%;
  margin-top: -15px;
  margin-left: 15px;
  z-index: 999;
}

@media only screen and (max-width: 350px) {
.tooltips {
 position: relative;
 left:-60px;
 top:-185px;
}
.tooltips span {
  width:130px;
  height: 25px;
  line-height: 25px;
  font-size:14px;
}
.tooltips span:after {
  position: absolute;
  top: 100%;
  border-top: 8px solid #FF6E26;
  border-bottom:none;
  
}