﻿@keyframes bg-pan-tr {
    0% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 100% 0%;
    }
}

/*.d-standard-background-image,*/
.bg-pan-tr > .w-bg-layer .w-bg-layer-image,
.bg-pan-tr {
    animation: bg-pan-tr 8s ease 0s infinite normal both;
}


@keyframes bg-pan-left {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.bg-pan-left {
    animation: bg-pan-left 8s ease 0s infinite normal both;
    width: 50px;
    height: 200px;
}