/*
Theme Name: Happysmile Child
Description: Child Theme for happysmile Theme
Author: zozothemes
Version: 1.0
Template: happysmile
Tags: one-column, two-columns, right-sidebar, flexible-header, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
Text Domain: zozothemes
*/

/*Custom Style Code Right Here */

.horizontal-teeth {
    -webkit-animation: horizontal-teeth 3s linear;
    animation: horizontal-teeth 3s linear infinite;
}

@-webkit-keyframes horizontal-teeth {

0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
}

100% {
    -webkit-transform: perspective(1000px) rotateY(360deg);
    transform: perspective(1000px) rotateY(360deg);
}
}
@keyframes horizontal-teeth {
    0% {
        -webkit-transform: perspective(1000px) rotateY(0deg);
        transform: perspective(1000px) rotateY(0deg);
    }
    
    100% {
        -webkit-transform: perspective(1000px) rotateY(360deg);
        transform: perspective(1000px) rotateY(360deg);
    }
}