/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Dec 12 2025 | 12:42:30 */
.scale {
    transition: all 0.3s ease-in-out;
}

.scale:hover {
    transform: scale(0.95);
}

@media only screen and (max-width: 767px) {
    scale:hover{
        transform:none;
    }
}