/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 04 2026 | 07:05:19 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.love-spin img{
    display: inline-block;
    margin-bottom: -3px;
    animation: spin-2 1s ease-in-out 0.1s forwards infinite alternate;
    -webkit-animation: spin-2 2500ms forwards infinite alternate;
    -moz-animation: spin-2 2500ms forwards infinite alternate;
    -ms-animation: spin-2 2500ms forwards infinite alternate;
    -o-animation: spin-2 2500ms forwards infinite alternate;
    animation: spin-2 2500ms forwards infinite alternate;
    transform-origin: bottom left;
}
@keyframes spin-2 {
    0% {
        transform: rotate(20deg);
    }
    100% {
        transform: rotate(-20deg);
    }
}