.share {
  position: absolute;
  bottom: 0;
  right: 15px;
  transform: translate(-0%, -15%);
  padding: 8px 18px;
  width: 150px;
  height: 40px;
  font-size: 18px;
  overflow: hidden;
  background: #c1ab66;
  border-radius: 30px;
  text-shadow: 0 -1px 0 rgba(234, 42, 145, 0.1);
  transition: all .2s ease-in-out;
  cursor: default;
  user-select: none;
 }
 
.share .text {
  position: absolute;
  top: 12px;
  left: 20px;
  overflow: hidden;
  width: 75px;
  height: 25px;
  text-align: right;
  z-index: 1;
  color:#fff;
  font-family: 'LyonDisplay-Light';
}
.share .text em {
  position: absolute;
  right: 0;
  top: 0;
  transition: right .2s ease-in-out .1s;
}
.share .ico-share {
  position: absolute;
  top: 12px;
  right: 25px;
  transition: right .2s ease-in-out;
  width: 20px;
  height: 20px;
  
}
.share .ico {
  font-size: 24px;
  position: absolute;
  top: 12px;
  left: -35px;
  transition: all .2s ease-in-out;
  display: inline-block;
  z-index: 2;
  color:#fff;
}

.share:hover { box-shadow: inset 0 3px 10px rgba(255, 255, 255, 0.4);}
 
.share:hover em {
  right: -300%;
  transition-delay: 0;
}
.share:hover .fb {
  left: 32px;
  transition-delay: 0.3s;
}
.share:hover .tw {
  left: 70px;
  font-size: 25px;
  transition-delay: 0.2s;
}
.share:hover .gp {
  left: 119px;
  transition-delay: 0.1s;
}
.share:hover .ico-share {
  top: 15px;
  right: 30px;
  width: 15px;
  height: 15px;
}

/* Second */
.share:nth-child(2) {
  margin-top: 50px;
  overflow: visible;
  display: none;
}
.share:nth-child(2)::before, .share:nth-child(2)::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
   border-radius: 30px;
  transition: all .2s ease-in-out 0s;
  transition-delay: 0.35s;
}
.share:nth-child(2)::before {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.7);
  top: 0;
  width: 78%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  transition: top .17s ease-in-out;
  transition-delay: 0.35s;
  border-radius: 0 0 8px 8px;
}
.share:nth-child(2) .text,
.share:nth-child(2) .ico-share {
  z-index: 2;
}
.share:nth-child(2) .ico {
  color: #15a7fa;
  top: 10px;
  text-shadow: none;
  transition: all .17s ease-in-out;
  z-index: 1;
}
.share:nth-child(2) .fb {
  left: 48px;
  transition-delay: 0.1s;
  color: #fff;
}
.share:nth-child(2) .tw {
  left: 87px;
  transition-delay: 0.18s;
  color: #fff;
}
 
.share:nth-child(2) .ico-share {
  transition: all .17s ease-in-out .1s;
}
.share:nth-child(2):hover::after {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), inset 0 3px 10px rgba(0, 0, 0, 0.3);
   transition-delay: 0s;
}
.share:nth-child(2):hover::before {
  top: 90%;
  transition-delay: 0s;
}
.share:nth-child(2):hover .text em {
  right: 0;
}
.share:nth-child(2):hover .ico-share {
  top: 21px;
  right: 43px;
  width: 16px;
  height: 16px;
  transition-delay: 0s;
}
.share:nth-child(2):hover .ico {
  top: 75px;
}


