/******* Do not edit this file *******
Woody ad snippets CSS and JS
Saved: Dec 11 2019 | 19:33:20 */
.parallax {
    position: relative;
    overflow: hidden;
}

.parallax__layer:nth-of-type(1) {
    position: absolute;
    top: 10px;
    right: 10px;
	
    height: 30px;
	width: 30px;
		
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/wp-content/themes/minipolis/assets/img/snowflake.png);
	
    animation: rotate 10s infinite linear;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}