#whatsapp-btn-chat-container {
    position: fixed;
    z-index: 5000;
    bottom: 95px;
    right: 15px;
}

#whatsapp-btn-chat-container a {
    display: block;
    background: #25D366;
    background-image: linear-gradient(0deg, #29d869, #21c45d);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
    color: #ffffff;
    height:60px;
    width: 60px;
    line-height: 60px;
    font-size: 40px;
    text-align: center;
    border-radius: 50px;
    transition: ease-in-out all .1s;
    &:hover {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1200px) {
    #whatsapp-btn-chat-container a {
        height: 60px;
        width: 60px;
        line-height: 60px;
        font-size: 35px;
    }
}
@media screen and (max-width: 700px) {
    #whatsapp-btn-chat-container{
        right: auto;
        left: 20px;
        bottom: 50px;
    }
}
@media screen and (max-width: 400px) {
    #whatsapp-btn-chat-container{
        left: 20px;
        bottom: 50px;

    }
    #whatsapp-btn-chat-container  a {
        height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 30px;
    }

}