#site-wrapper {
    margin: 100px auto 0 auto;
    padding: 20px 50px;
    max-width: 675px;
    /*width: 100%;*/
    width: calc(100% - 100px);
}

#error-message {
    font-family: Helvetica, Arial, sans-serif;
    display: block;
    float: left;
    margin: 90px 0 0 40px;
    padding: 0px 0 0 40px;
    border-left: 1px dotted #b2b2b2;
    font-size: 16px;
    font-style: italic;
    color: #666;
    line-height: 24px;
    height: 35px;
    width: 390px;
    max-width: 390px;
    height: auto;
}
/* Logo */
#website-logo-wrapper a:link, #website-logo-wrapper a:visited {
    display: block;
    background: url(../grfx/png/logo.png) no-repeat left;
    background-size: contain;
    width: 180px;
    height: 209px;
    text-indent: -999em;
    text-decoration: none;
    float: left;
}


@media screen and (max-width: 768px) and (min-width: 1px), screen and (max-device-width: 768px) and (orientation : portrait) {
    #site-wrapper {
        padding: 20px;
    }
    #error-message {
        width: calc(100% - 181px - 80px - 20px );
    }


}
@media screen and (max-width: 568px) and (min-width: 1px), screen and (max-device-width: 568px) and (orientation : portrait) {
    #website-logo-wrapper a:link, #website-logo-wrapper a:visited {
        float: none;
        margin: auto;
        width: 180px;
        height: 70px;
        background-size: contain;
    }
    #site-wrapper {
        width: calc(100% - 40px);
    }

    #error-message {
        width: 100%;
        float: none;
        max-width: 100%;
        margin: auto;
        padding: 0;
        border-left: none;
        text-align: center;
    }
}