body{
  font-family: Rajdhani;
  background: lightgrey;
}

.whats-float {
    position: fixed;
    transform:translate(108px,0px);
    top:90%;
    right:0;
    width:155px;
    overflow: hidden;
    background-color: #1B6CEF;
    color: #FFF;
    border-radius: 10px 0 0 10px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float i {
    font-size: 45px;
    color: white;
    line-height: 40px;
    padding: 5px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align:center;

}

.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}

.whats-float:hover i  {
    transform:rotate(360deg);
}