
/*** PRELOADER ***/

@keyframes APreloaderRotation {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

.CSite_PreloaderContainer
{
    position: fixed;

    display: block;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    transition: opacity 0.5s;

    pointer-events: none;
}

.CSite_PreloaderContainerHidden
{
    opacity: 0;
}

#m_cSitePreloader
{
    z-index: 500;
}

.CSite_Preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    width: 100px;
    height: 100px;
    opacity: 1;

    transition: opacity 0.5s;
}

.CSite_PreloaderCircleContainer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    overflow: hidden;

    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: APreloaderRotation;
    animation-duration: 2.0s;
    animation-delay: 0.0s;
}

.CSite_PreloaderCircle {
    position: absolute;
    left: 1px;
    top: 1px;
    width: 98px;
    height: 98px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.CSite_PreloaderBarColor {
    background-color: #ff1243;
}

.CSite_PreloaderBarBGColor {
    background-color: #ffffff;
}

.CSite_PreloaderBar {
    position: absolute;

    animation-fill-mode: forwards;

    left: 50%;
    top: 0px;
    width: 50%;
    height: 100%;

    transform-origin: 0% 50%;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-name: APreloaderRotation;
    animation-duration: 2.0s;
    animation-delay: 0.0s;
}

#m_cSite_PreloaderBar2, #m_cModel_PreloaderBar2 {
    left: 0%;
    transform-origin: 100% 50%;
    animation-delay: 0.0s;
    animation-timing-function: ease-out;
}

#m_cSite_PreloaderCircleTop {
    left: 5px;
    top: 5px;
    width: 90px;
    height: 90px;
}

/*** PRELOADER ***/