/* ==========================================
   UTILITY STYLES - Social Buttons & Others
   ========================================== */

/* WhatsApp Button */
.wabutton {
    position: fixed;
    bottom: 180px;
    right: 14px;
    z-index: 99;
    width: 60px;
    height: 60px;
    animation: slideInUp 0.5s ease;
}

.wabutton2 {
    position: fixed;
    bottom: 205px;
    right: 14px;
    z-index: 99;
    width: 100px;
    height: 100px;
    animation: slideInUp 0.5s ease;
}

.wabutton3 {
    position: fixed;
    bottom: 120px;
    right: 14px;
    z-index: 99;
    width: 60px;
    height: 60px;
    animation: slideInUp 0.5s ease;
}

/* Facebook Button */
.fbbutton {
    position: fixed;
    bottom: 180px;
    right: 14px;
    z-index: 99;
    width: 60px;
    height: 60px;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Accessibility & NoScript Support */
noscript style {
    display: block;
}

noscript {
    background-color: #f0ad4e;
    color: #333;
    padding: 15px;
    text-align: center;
    margin: 10px 0;
}
