/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
html {
    background: #fff;
}

body {
    max-width: 550px;
    margin: 0 auto;
}

.icon-box.featured-box.icon-box-left.text-left {
    display: flex;
    align-items: center;
}

@media (max-width: 549px) {
    .is-xlarge {
        font-size: 1.5em !important;
    }
}

@keyframes zoomAndShake {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.1) rotate(1deg);
    }

    50% {
        transform: scale(1.15) rotate(-1deg);
    }

    70% {
        transform: scale(1.1) rotate(1deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.zoom-shake {
    animation: zoomAndShake 0.6s ease-in-out infinite;
}

@media only screen and (max-width: 48em) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/


}