/*** Write your CSS structure here. ***/
.whatsapp-fixed {
    display: table;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    transition: 0.3s;
    transform: scale(1);
}
.whatsapp-fixed img {
    max-width: 100%;
}
.whatsapp-fixed:hover {
    transform: scale(1.1);
}

@media (max-width: 575px) {
	.whatsapp-fixed {
        width: 60px;
        height: 60px;
        bottom: 35px;
    }
    
}