.whatsupflexcontainer {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 10px;
    left: 10px;
    background-color: #25d366;
    font-size: 30px;
    z-index: 99;
    display: flex;
    overflow: hidden;
    transition:all .5s;
    background-color:transparent;
    flex-direction:column;
    align-items:flex-start;
    border-radius:50px;
}
.whatsupflexcontainer.shown{
    border-radius:0px;
    width: 70%;
    height:auto;
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    bottom: 50px;
    z-index: 9999;
}
.whatsuptoggler{
    position:fixed;
    width: 40px;
    height: 40px;
    bottom: 11px;
    left: 10px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.whatsupflexcontainer a{
    display:flex;
    justify-content:flex-start;
    padding:0 15px;
    align-content:center;
    align-items:center;
    line-height:30px;
    margin:10px 0;
    background-color:#25d366;
    box-shadow: 2px 2px 3px #999;
    border-radius:50px;
    color: #195924;
    flex:1 1 auto;
    text-decoration: none;
    font-weight: bold;
}
.whatsupflexcontainer a svg{
    margin:0 5px;
    transform:scale(.8) translateY(-5px)
}
.whatsupflexcontainer a p{
    margin:5px 10px;
}
@media (max-width:450px){
    .whatsupflexcontainer a{
        font-size:.6em;
    }
}