/*============================================================================
   #Webcms
==============================================================================*/
/* icon động */
.icon{
  position: relative; 
  width: 60px;
  height: 60px;
  margin: auto; 
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 3;
  background: red;
  box-shadow: 
    0 0 0 10px   rgba(255,255,255,.2),
    0 0 25px 2px rgba(0,0,0,.4),
inset 0 0 0 5px   rgba(255,255,155,.4);
  border-radius: 50%;
  /* border-radius: 50% has issues on some mobile browsers */
}
.tooltipp {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltipp .tooltiptext {
  visibility: hidden;
  width: 280px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 110%;
  font-size: 18px;
}

.tooltipp .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}
.tooltipp:hover .tooltiptext {
  visibility: visible;
}
.scrolltop {
  position: fixed;
  bottom: 5px;
  left: 5px;
}
body {
  position: relative;
}
.icon span {
  position: absolute;
  top: 1px;
  right: 14px;
  font-size: 36px;
  color: #fff;
}