/* 
 * Error Page
 */

.error-page-wrapper {
    background: rgba(70,70,70,0.85);
    text-align: center;
}

.error-page {
    width: 100%;
    padding: 1rem 0;
}

.error-page h2 {
    margin: 0;
    padding: 0;
    font-size: 3.5rem;
    color: #f4c64d
}

.error-page p {
    margin: 1rem 0 1rem 0;
    padding: 0;
    font-size: 2.5rem;
    font-weight: 600;
    color: #EEE;
}

.error-page a {
    margin: 0;
    padding: 0.25rem;
    font-size: 2rem;
    color: #f4c64d;
}

.error-page a:hover {
    margin: 0;
    font-size: 2rem;
    color: #c4a61d;
}

.error-page-logo {
    width: 100%;
}

.error-page-logo > img{
    width: 200px;
}

.error-page-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 700px;
    background-image: url('/images/feralScan/page-elements/AusOutback-crop.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 1;
}

.error-page-background-glow {
    position: absolute;
    width: 100%;
    height: 35%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%,#E5763E 70%);
    z-index: 3;
}