.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 38px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    z-index: 2;
}

.whatsapp-float .ripple {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.6);
    border-radius: 50%;
    animation: ripple 3s infinite;
    z-index: 1;
}

.whatsapp-float .ripple:nth-child(2) {
    animation-delay: 2s;
}

.whatsapp-float .ripple:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
    }
}




/* Desktop */
/* body.wp-singular.single.single-post > #page .site-content {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
} */
#page .site-content {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}
/* Tablet */
@media (max-width: 1024px) {
 #page .site-content {
        margin-top: 60px !important;
		 margin-bottom: 60px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
  #page .site-content {
        margin-top: 40px !important;
		 margin-bottom: 40px !important;
    }
}









/* -------------------------------------- */


