﻿:root {
    --speed-cloud: 250s;
    --speed-flash: 5s;
}

.panier-logo img {
    -webkit-filter: brightness(2);
    filter: brightness(2);
}

@keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    to {
        -webkit-transform: translate3d(5000px, 0px, 0px);
    }
}

@-webkit-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    to {
        -webkit-transform: translate3d(5000px, 0px, 0px);
    }
}

@-moz-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    to {
        -webkit-transform: translate3d(5000px, 0px, 0px);
    }
}

@-webkit-keyframes move-background {
    from {
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    to {
        -webkit-transform: translate3d(5000px, 0px, 0px);
    }
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
 }

.clouds {
    width: 12000px;
    height: 100%;
    background: transparent url(../images/anim-object/clouds_repeat_500.png) repeat;
    background-size: 1500px 800px;
    background-position: top center;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    -moz-animation: move-background var(--speed-cloud) linear infinite;
    -ms-animation: move-background var(--speed-cloud) linear infinite;
    -o-animation: move-background var(--speed-cloud) linear infinite;
    -webkit-animation: move-background var(--speed-cloud) linear infinite;
    animation: move-background var(--speed-cloud) linear infinite;
}


.twinkling {
    opacity: 0 !important;
    background: transparent url("../images/anim-object/clouds_repeat_500.png") repeat;
    width: 10000px !important;
    background-size: 1500px 1000px !important;
    background-position: -0% -0% !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    z-index: 2 !important;
    height: 100% !important;
    position: relative;
}

.flashit {
    -webkit-animation: flash ease-out var(--speed-flash) infinite;
    -moz-animation: flash ease-out var(--speed-flash) infinite;
    -o-animation: flash ease-out var(--speed-flash) infinite;
    animation: flash ease-out var(--speed-flash) infinite;
    /*animation-delay: 2s;*/
}

@-webkit-keyframes flash {
    0%,100% {
        opacity: 0;
    }

    25% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }

    93% {
        opacity: 0.1;
        filter: brightness(200%);
    }

    94% {
        opacity: 0.8;
    }

    96% {
        opacity: 0.3;
        filter: brightness(100%);
    }
}

@keyframes pulsebg {
    0%,100% {
        -webkit-filter: blur(5px);
        filter: blur(5px);
    }

    50% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

.animation-sunlight-image {
    opacity: 1;
    animation: pulsebg 5s infinite linear;
    -moz-animation: pulsebg 5s infinite linear;
    -webkit-animation: pulsebg 5s infinite linear;
}

.bgVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background: url(../images/bg-video.jpg) center no-repeat;
    background-size: cover;
    transition: 1s opacity;
    overflow: hidden
}
