

.action {
  position: fixed;
  bottom: 25px;
  right: 10px;
  width: 40px;
  height: 40px;
  opacity: 60%;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 5px rgba(0,0,0,0.1);
  z-index: 999999 !important;
}

.action button {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  border-radius: 50%;
  font-size: 50px;
  color: #f0edf1;
  background: linear-gradient(#ff5d10, #efc346);
  transition: 0.3s ease-in-out;
  outline: none;
  cursor: pointer;
  z-index: 999999 !important;
}

.action.active button {
  transform: rotate(135deg);
}

.action ul {
  position: absolute;
  display: grid;
  list-style-type: none;
  margin: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999 !important;
}

.action.active ul {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  bottom: 65px;
}

.socialWrap {
	text-align:center;
}
.socialWrap a {
	display:inline-block;
	width:50px;
	height:50px;
	font-size:0;
	text-indent:-10000px;
  padding:10px;
  background:url(../images/social.png) 0 0 no-repeat;
	/* Fallback for web browsers that don't support RGBa */
    background-color: rgb(255, 255, 255);
	/* RGBa with 0.6 opacity */
    background-color: rgba(255, 255, 255, 0.54);
	/* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	border-radius:100px;
	transition: background 0.5s;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
}
.socialWrap a.last {
	margin-right:-6px;
}
.socialWrap a:hover {
	background-position:-4px 100%;
}
.socialWrap a.fb {
	background-position:-63px 0;
}
.socialWrap a.fb:hover {
	background-position:-63px 100%;
}
.socialWrap a.gp {
	background-position:-120px -3px;
}
.socialWrap a.gp:hover {
	background-position:-120px 100%;
}
.socialWrap a.pin {
	background-position:-178px -5px;
}
.socialWrap a.pin:hover {
	background-position:-178px 100%;
}
.socialWrap a.glb {
	background-position:-236px -6px;
}
.socialWrap a.glb:hover {
	background-position:-236px 100%;
}
.socialWrap a.wa {
	background-position:-294px -5px;
}
.socialWrap a.wa:hover {
	background-position:-294px 100%;
}
.socialWrap a.in {
	background-position:-350px -9px;
}
.socialWrap a.in:hover {
	background-position:-348px 100%;
}
.socialWrap a.cb {
	background-position:-400px -5px;
}
.socialWrap a.cb:hover {
	background-position:-400px 100%;
}



.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* For devices with width up to 600px (mobile devices) */
@media only screen and (max-width: 600px) {
  /* Styles for mobile screens */
  .action {
    position: fixed;
    bottom: 200px;
    right: 10px;
    width: 40px;
    height: 40px;
    opacity: 60%;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
    z-index: 999999 !important;
  }
}