.santa-top .santa-bg{
	z-index:10000;
    background-image: url('city-skiline.png');
    background-position: bottom center;
    background-repeat: repeat-x;
    width: 100%;
    height: 150px;
    left: 0;
    bottom: 0px;
	position: fixed;
}
.santa-top .truck{
    background-image: url('santa.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 168px;
    height: 141px;
    right: 0;
    bottom: -5px;
    animation: running-anim 20s linear infinite;
}
.santa-top .truck-2 {
    background-image: url('snow.webp');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 100px;
    height: 100px;
    right: 30%;
    bottom: -5px;
    animation: running-anim 30s linear infinite;
}

.santa-top .truck-3 {
    background-image: url('dog.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 155px;
    height: 155px;
    right: 70%;
    bottom: -5px;
    animation: running-anim-left 35s linear infinite;
}

@-moz-keyframes running-anim {
    0% {
        right: -30%
    }
    100% {
        right: 100%
    }
}

@-webkit-keyframes running-anim {
    0% {
        right: -30%
    }
    100% {
        right: 100%
    }
}

@keyframes running-anim {
    0% {
        right: -30%
    }
    100% {
        right: 100%
    }
}

@-moz-keyframes running-anim-left {
    0% {
        left: -30%
    }
    100% {
        left: 100%
    }
}

@-webkit-keyframes running-anim-left {
    0% {
        left: -30%
    }
    100% {
        left: 100%
    }
}

@keyframes running-anim-left {
    0% {
        left: -30%
    }
    100% {
        left: 100%
    }
}
