﻿/* 400 */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

#notfound {
    position: relative;
    height: 100vh;
}

    #notfound .notfound {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.notfound {
    max-width: 920px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

    .notfound .notfound-404 {
        position: absolute;
        height: 100px;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: -1;
    }

        .notfound .notfound-404 h1 {
            font-family: 'Maven Pro', sans-serif;
            color: #ececec;
            font-weight: 900;
            font-size: 276px;
            margin: 0px;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .notfound h2 {
        font-family: 'Maven Pro', sans-serif;
        font-size: 46px;
        color: #000;
        font-weight: 900;
        /*text-transform: uppercase;*/
        margin: 0px;
    }

    .notfound p {
        font-family: 'Maven Pro', sans-serif;
        font-size: 16px;
        color: #000;
        font-weight: 400;
        /*text-transform: uppercase;*/
        margin-top: 15px;
    }

    .notfound a {
        font-family: 'Maven Pro', sans-serif;
        font-size: 14px;
        text-decoration: none;
        /*text-transform: uppercase;*/
        background: #189cf0;
        display: inline-block;
        padding: 16px 38px;
        border: 2px solid transparent;
        border-radius: 40px;
        color: #fff;
        font-weight: 400;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .notfound a:hover {
            background-color: #003679;
            border-color: #189cf0;
        }

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 h1 {
        font-size: 162px;
    }

    .notfound h2 {
        font-size: 26px;
    }
}


/* 500 */
.clearfix:before,
.clearfix:after {
    display: table;
    content: ' ';
}

.clearfix:after {
    clear: both;
}

body {
    background: #f0f0f0 !important;
}

.page-500 .outer {
    position: absolute;
    top: 0;
    display: table;
    width: 100%;
    height: 100%;
}

    .page-500 .outer .middle {
        display: table-cell;
        vertical-align: middle;
    }

        .page-500 .outer .middle .inner {
            width: 300px;
            margin-right: auto;
            margin-left: auto;
        }

            .page-500 .outer .middle .inner .inner-circle {
                height: 300px;
                border-radius: 50%;
                background-color: #ffffff;
            }

                .page-500 .outer .middle .inner .inner-circle:hover i {
                    color: #39bbdb !important;
                    background-color: #f5f5f5;
                    box-shadow: 0 0 0 15px #39bbdb;
                }

                .page-500 .outer .middle .inner .inner-circle:hover span {
                    color: #39bbdb;
                }

                .page-500 .outer .middle .inner .inner-circle i {
                    font-size: 5em;
                    line-height: 1em;
                    float: right;
                    width: 1.6em;
                    height: 1.6em;
                    margin-top: -.7em;
                    margin-right: -.5em;
                    padding: 20px;
                    /*-webkit-transition: all .4s;
                    transition: all .4s;*/
                    text-align: center;
                    color: #f5f5f5 !important;
                    border-radius: 50%;
                    background-color: #39bbdb;
                    box-shadow: 0 0 0 15px #f0f0f0;
                }

                .page-500 .outer .middle .inner .inner-circle span {
                    font-size: 8em;
                    font-weight: 700;
                    line-height: 1.2em;
                    display: block;
                    /*-webkit-transition: all .4s;
                    transition: all .4s;*/
                    text-align: center;
                    color: #e0e0e0;
                    padding: 60px;
                }

            .page-500 .outer .middle .inner .inner-status {
                font-size: 20px;
                font-weight: 800;
                display: block;
                margin-top: 20px;
                margin-bottom: 5px;
                text-align: center;
                color: #39bbdb;
            }

                .page-500 .outer .middle .inner .inner-status a {
                    font-family: 'Nunito', sans-serif;
                    display: inline-block;
                    font-weight: 700;
                    border-radius: 40px;
                    text-decoration: none;
                    color: #388dbc;
                }

            .page-500 .outer .middle .inner .inner-detail {
                line-height: 1.4em;
                display: block;
                margin-bottom: 10px;
                text-align: center;
                color: #999999;
            }