﻿.loading {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101000 !important;
    background-color: black;
    /* Fallback for web browsers that doesn't support RGBa */
    background: black;
    /* RGBa with 0.6 opacity */
    background: rgba(0, 0, 0, 0.2);
    /* For IE 5.5 - 7*/
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

.loading > div.flower {
    background-image: url(/images/flower.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 160px;
    height: 186px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -110px 0 0 -93px;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loading > div.stem {
    background-image: url(/images/stem.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 160px;
    height: 186px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -93px;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
