﻿footer {
    position: inherit;
    width: 100%;
    background-color: #fff;
    font-size: 85%;
    border-top:1px #eee solid ;
    overflow:hidden;
}

    footer.fixedFooter {
        position: fixed;
        z-index: 91;
        bottom: 0;
        left: 0;
        width: 100vw;
    }

    footer a {
        color: #4a4a4a;
    }

        footer a:hover {
            color: #4a4a4a;
            text-decoration: none;
        }

    footer .copy {
        color: #333;
        text-align: right;
    }

    .fixedFooterPadding {
        padding-top: 220px;
    }

footer.scrolled-down {
    transform: translateY(110%);
    transition: all 0.3s ease-in-out;
}

footer.scrolled-up {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 759px) {
    footer .copy {
        text-align: right;
    }
}


/******************/
/*   footer.css   */
/******************/
.copy {
    display: none !important;
}