﻿.Closepop {
    z-index: 999;
    position: fixed;
    background: #000000;
    background: rgba(0,0,0,2);
    width: 100%;
    height: 100%;
    display: none;
    top: 0px;
    left: 0px;
    opacity: 0.5;
    clear: both;
}
.fixed-top {
    z-index: 999;
}
#ChromeDiv {
    z-index: 998;
    float: left;
    position: fixed;
    bottom: 50%;
    display: none;
    width: 126px;
    height: 230px;
    margin: 20px;
    animation: mover 2s infinite alternate;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#FFDiv {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 998;
    bottom: 50%;
    position: fixed;
    right: 20px;
    display: none;
    width: 126px;
    height: 230px;
    animation: mover 2s infinite alternate;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#EdgeDiv {
    z-index: 998;
    float: left;
    position: fixed;
    bottom: 50%;
    display: none;
    width: 126px;
    height: 230px;
    margin: 20px;
    animation: mover 2s infinite alternate;
    left: 62%;
}


@-webkit-keyframes moverUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(35px);
    }
}

@keyframes moverUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(35px);
    }
}


@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-35px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-35px);
    }
}

@media screen and (max-width:766px) {

    #ChromeDiv, #FFDiv, #EdgeDiv {
        display: none !important;
    }
}
