/* From Uiverse.io by Gaurang7717 */ 
#social-buttons-container{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

#btnWsp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}

#btnWsp .sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#btnWsp .sign svg {
  width: 40px;
}

#btnWsp .sign svg path {
  fill: white;
}

#btnWsp .text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.4em;
  font-weight: bold;
  transition-duration: 0.3s;
}

#btnWsp:hover {
  width: 180px;
  border-radius: 40px;
  transition-duration: 0.3s;
  transform: none;
}

#btnWsp:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 1rem;
}

#btnWsp:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 1rem;
}
#btnWsp:active {
  transform: translate(2px, 2px);
}
