
/**
 * @fileOverview: Global bottom Footer Specific Definitions
 * @author: Steven Britton
 * @date:   2015-03-27
 * @todo:
 */

footer{
    position: absolute;
    bottom: 0;
    width: 100%;

    .footer-label{
        margin: 10px auto 0px 75px;
        color: $gray;
        font-family: $font-header-three;
        font-weight: 700;
        font-size: 18px;
        width: 800px;
    }

    &.home{
        @include box-shadow(0px, 5px, 20px, 8px, rgba(0, 0, 0, 0.6));
        height: 50px;
        background: $red;

        .footer-label{
            color: $white;
            text-align: center;
            margin: 15px auto 0px 95px;
        }
    }
    &.page{
        .footer-label{
            margin-top:-65px;
        }
    }
}
