* {
  padding: 0;
  margin: 0;
}
a.tooltip-top {
  position: relative;
  display: inline;
}
a.tooltip-top .icon-span {
  position: absolute;
  padding: 0px 15px;
  color: #FFFFFF;
  background: #000000;
  height: 30px;
  line-height: 30px;
  text-align: center;
  visibility: hidden;
}
a.tooltip-top .icon-span .icon-after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #000000;
  border-right: 8px solid transparent !important;
  border-left: 8px solid transparent !important;
  border-bottom: 0 !important; 
}
a:hover.tooltip-top .icon-span {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
  left: 50%;
  margin-left: -36px;
  z-index: 999;
}

/*=============Right==============*/
a.tooltip-right {
  position: relative;
  display: inline;
}
a.tooltip-right .icon-span {
  position: absolute;
  padding:0px 15px;
  color: #FFFFFF;
  background: #000000;
  height: 30px;
  line-height: 30px;
  text-align: center;
  visibility: hidden;
}
a.tooltip-right .icon-span .icon-after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -8px;
  width: 0; height: 0;
  border-right: 8px solid #000000;
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 0 !important;
}
a:hover.tooltip-right .icon-span {
  visibility: visible;
  opacity: 1;
  left: 100%;
  top: 50%;
  margin-top: -15px;
  margin-left: 15px;
  z-index: 999;
}

/*============= Bottom ==============*/
a.tooltip-bottom {
  position: relative;
  display: inline;
}
a.tooltip-bottom .icon-span {
  position: absolute;
  padding: 0 15px;
  color: #FFFFFF;
  background: #000000;
  height: 30px;
  line-height: 30px;
  text-align: center;
  visibility: hidden;
}
a.tooltip-bottom .icon-span .icon-after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-bottom: 8px solid #000000;
  border-right: 8px solid transparent !important;
  border-left: 8px solid transparent !important;
  border-top: 0 !important;
}
a:hover.tooltip-bottom .icon-span {
  visibility: visible;
  opacity: 1;
  top: 30px;
  left: 50%;
  margin-left: -30px;
  z-index: 999;
}


/*============= Left ==============*/
a.tooltip-left {
  position: relative;
  display: inline;
}
a.tooltip-left .icon-span {
  position: absolute;
  padding: 0 15px;
  color: #FFFFFF;
  background: #000000;
  height: 30px;
  line-height: 30px;
  text-align: center;
  visibility: hidden;
}
a.tooltip-left .icon-span .icon-after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -8px;
  width: 0; height: 0;
  border-left: 8px solid #000000;
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 0 !important; 
}
a:hover.tooltip-left .icon-span {
  visibility: visible;
  opacity: 1;
  right: 100%;
  top: 50%;
  margin-top: -15px;
  margin-right: 15px;
  z-index: 999;
}