/**
    Layout
    
    A stylesheet that is applied to set the basic layout of a view page.
    
    @author     sungchul.lee@primoris.co.nz
    @signature  p#10ns2&*1:sha256:43:7503db3dc8a40c99c4d4070a8b854009e958eac3027
**/
body {
    min-width: 1024px;
    min-height: 768px;
    
    overflow-x: hidden;
    
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
         user-select: none;
    
    cursor: default;
    
    font-size: 90%;
    
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;

    height: 100%;
    width: 100%;
    position: absolute;
}

body div#header {
    background-color: #414042;
    color: #fff;
    
    position: fixed;
    margin: 0;
    min-height: 40px;
    border: none;
    
    top: 0px;
    left: 0px;
    right: 0px;
    height: 40px;
    box-shadow: 0px 2px 3px 0px rgba(53, 53, 53, 0.32);
    z-index: 1000;
}

body div#padding {
    position: relative;
    
    top: 0px;
    left: 0px;
    width: 100%;
    height: 40px;
    
    z-index: 0;
}

body div#body {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    min-height: -webkit-calc(100% - 42px);
    min-height: calc(100% - 42px);
    overflow-x: visible;
    /*overflow-y: auto;*/
    z-index: 0;
}

body div#footer {
    background-color: rgba(30,30,30,0.95);
    background: url(../images/title_bg.png);
    
    position: fixed;
    
    left: 0px;
    right: 0px;
    height: 30px;
    bottom: 0px;
    box-shadow: 0px -4px 8px 0px #eee;
    
    z-index: 1000;
}

div#header a#header-logo div {
    /* background: url("/console/application/views/shared/images/SIL001_logo_RGB.svg") center no-repeat; */
    background: url("/console/application/views/shared/images/sitelantern-logo-mini-re.svg") center no-repeat;
    width: 160px;
    height: 48px;
    margin-top: -4px;
    background-size: 100% 100%;
}

a#header\:info-progress {
    cursor: default;
    pointer-events: none;
    top: 2px !important;
    padding-right: 0px;
}
