/* ------------------------------

      Layered Logo Files

-------------------------------*/

/* Header Logo
-------------------------------*/

#header #top-logo {
    width: 160px;
    height: 60px;
    position: fixed;
    top: 20px;
    left: 20px;
    overflow: hidden;
    display: block;
}

    #header #top-logo img {
        width: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }



/* Home Page Logo Transitions
-------------------------------*/

.transition-logo-container {
    opacity: 0;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.transition-logo-container.active {
    opacity: 1;
}

#layered-logo {
    width: 200px;
    height: 200px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    overflow: hidden;
    z-index: 10000000;
    border-radius: 50%;
}

    .inner-layer {
        width: 200px;
        height: 200px;
        position: relative;
    }

    #layered-logo img {
        width: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }


.idle-spin {
    -webkit-animation: rotation 6s infinite linear;
    left: 5% !important;
    top: 5% !important;
}

.idle-spin-reverse {
    -webkit-animation: reverse-rotation 8s infinite linear;
    left: 5% !important;
    top: 5% !important;
}

#loader-logo {
    width: 200px;
    height: 200px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
}

    #loader-logo img {
        width: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        opacity: 1;
    }

#footer-logo {
    display: block;
    width: 100%;
    max-width: 210px;
    height: 100px;
    overflow: hidden;
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
}

    #footer-logo img {
        width: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

/* Layered Logo States
---------------------------------*/

#project-0 .inner-layer {
    background: transparent;
    background: red;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

@-webkit-keyframes reverse-rotation {
    from {
        -webkit-transform: rotate(359deg);
    }
    to {
        -webkit-transform: rotate(0deg);
    }
}