.div{
    position: fixed;
    bottom: 60px;
    left: 20px;
    z-index:1000;
}
.sticky {
    background-color:#239dcc;
    color: white;
    z-index:1;
    text-decoration: none;
    border-radius: 60px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    overflow:hidden;
    width: auto;
    max-width: 45px; /** I'm animating max-width because width needs to be auto, and auto can't be animated **/
    -webkit-transition: max-width 0.5s;
    transition: max-width 0.5s;
    margin:5px;
    /* border:solid 1px #FFC451; */
  }
  
  .sticky:hover {
    max-width: 300px;
    color: #fff;
  }
  
  .icon {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    margin-right: 15px;
    padding:14px;
    display: flex;
    align-items: center;
  }
  
  .text {
    white-space: nowrap;
    padding-right: 15px;
  }
  
/* .sticky {
  position: fixed;
  bottom: 60px;
}
.sticky ul {
  padding: 0px;
  -webkit-transform: translate(-270px, 0);
  -moz-transform: translate(-270px, 0);
  -ms-transform: translate(-270px, 0);
  -o-transform: translate(-270px, 0);
  transform: translate(-270px, 0);
}
.sticky ul li {
  display: block;
  margin: 5px;
  background: #128ab7;
  width: 320px;
  text-align: right;
  padding: 10px;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  border-radius: 0 30px 30px 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.sticky ul li:hover {
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background: rgba(255, 255, 255, 1);
  border: solid 1px #FFcc00;
}
.sticky ul li:hover a {
  color: #000;
}
.sticky ul li:hover i {
  color: #fff;
  background:#FFC451;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.sticky ul li i {
  margin-left: 1px;
  color: #000;
  background: #fff;
  padding: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: #ffffff;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
} */