﻿/* *********** spinner START ************ */

div.div-show {
    /*display: block;*/
}

div.div-hide
{
    position: absolute;
    opacity: 0;
    top: -9999px;
    padding: 0;
}

.spinner {
    position: fixed;
    left: 45%;
    top: 45%;
    height: 50px;
    width: 50px;
    margin: 0px auto;
    -webkit-animation: rotation 1.5s infinite linear;
    -moz-animation: rotation 1.5s infinite linear;
    -o-animation: rotation 1.5s infinite linear;
    animation: rotation 1.5s infinite linear;
    border-left: 8px solid rgba(255,77,29,1);
    border-right: 8px solid rgba(255,77,29,1);
    border-bottom: 8px solid rgba(255,77,29,1);
    border-top: 8px solid rgba(255,77,29,0.5);
    border-radius: 100%;
    z-index: 999999
}

@-webkit-keyframes rotation {
    to {
        -webkit-transform: rotate(359deg);
    }

    from {
        -webkit-transform: rotate(0deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

/* *********** spinner SLUT ************ */
