
/* Global Selectors*/


        /*h2 a:hover {
            text-decoration: none;
        }

h3 {
    font-family: roboto, sans-serif;
    font-size: 14px;
    padding-bottom: 16px;
}*/



.map-table tbody tr:hover {
    cursor: pointer;
    background-color: rgba(5,201,133,.31);
    transition: background-color 0.5s ease;
}

.parent-row span,
.sub-parent-row span {
    position: relative;
    cursor: pointer;
}

    .parent-row span:after,
    .sub-parent-row span:after {
        content: '';
        display: block;
        position: absolute;
        right: -16px;
        top: -4px;
        height: 12px;
        width: 16px;
        background: url(/static/shell2/images/select-arrow.svg) right top no-repeat;
        transform: rotate(-90deg);
    }

.open span:after {
    transform: rotate(0deg);
    top: -3px;
    right: -24px;
}

.hidden {
    display: none;
}

.child-row td {
    padding-left: 16px;
}

.sub-child-row td {
    padding-left: 32px;
}

td {
    padding: 9px 8px;
    font-size: 14px;
    font-family: roboto, sans-serif;
    font-weight: 400;
    vertical-align: middle;
}

.table-optional {
    display: none;
}

@media only screen and (min-width: 1140px) {
    .table-optional {
        display: table-cell;
    }
}

/*.modal-btn button {
    margin: 0 10px 0px 0;
}*/

label {
    font-family: roboto, sans-serif;
    font-weight: 200;
    font-size: 17px;
    line-height: 20px;
    padding-bottom: 4px;
    display: block;
}

/*input[type='text'],
input[type='email'],
input[type='password'] {
    color: #657D95;
    font-family: roboto, sans-serif;
    background-color: #20293C;
    font-size: 12px;
    border: none;
    width: 327px;
    line-height: 20px;
    margin: 0 10px 0 0;
    padding: 9px 13px 7px 13px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: solid 1px #3E4E6C;
    height: 18px;
    border-radius: 4px;
}

    input[type='text']:after {
        content: '';
    }*/

/*input:focus {
    outline: none;
    border-color: #1F8EFA;
}*/

/*select {
    display: block;
    font-size: 12px;
    font-family: roboto, sans-serif;
    color: #fff; 
    line-height: 20px;
    padding: 7px 11px 7px 13px;
    min-width: 167px;
    margin: 0 10px 0 0;
    height: 35px;
    border: 1px solid #3E4E6C;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(/static/shell2/images/icon-dropdown-blu.svg) no-repeat #20293C;
    background-position: right 13px top 50%
}*/

.hide-in-view {
    display: none;
}

@media only screen and (min-width: 1140px) {
    .hide-in-view {
        display: block;
    }
}

/*Table Styles*/
.sort {
    cursor: pointer;
}

    .sort:after {
        content: '';
        display: inline-block;
        height: 24px;
        width: 24px;
        float: right;
        background: url(/static/shell2/images/icon-sort-rest.svg) right 0 no-repeat;
    }

.sort-descend:after {
    background-image: url(/static/shell2/images/icon-sort-descend.svg);
}

.sort-ascend:after {
    background-image: url(/static/shell2/images/icon-sort-ascend.svg);
}

.warning {
    color: #EE423D;
}

.all-good {
    color: #05C985;
}

.all-cool {
    color: #ACC1D3;
}

.table-percent {
    text-align: center;
}

.table-no {
    text-align: right;
}
/*Content Body Begin*/

.content-body {
    position: relative;
    z-index: 1;
    clear: both;
    margin-left: 21px;
    margin-right: 21px;
}

@media only screen and (min-width: 768px) {
    .content-body {
        margin-left: 155px;
    }
}

.filter-and-search {
    display: flex;
    flex-direction: column;
}

@media only screen and (min-width: 768px) {
    .filter-and-search {
        flex-direction: row;
        flex-wrap: wrap
    }
}

/* Content Grid */
.grid-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.grid-full,
.grid-half,
.grid-quarter,
.grid-third,
.grid-two-third {
    flex-basis: 100%;
    /*max-width: 100%;*/
}

@media only screen and (min-width: 768px) {
    .grid-full {
        flex-basis: 100%;
        /*max-width: 100%;*/
    }

    .grid-half,
    .grid-quarter,
    .grid-third,
    .grid-two-third {
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid-half,
    .grid-override-full {
        flex-basis: 100%;
        /*max-width: 100%;*/
    }
}

@media only screen and (min-width: 1140px) {

    /* Content Grid */
    .grid-container {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .grid-full,
    .grid-half,
    .grid-third,
    .grid-two-third { /*
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;*/
    }

    .grid-full {
        flex-basis: 100%;
        /*max-width: 100%;*/
    }

    .grid-half,
    .grid-half .grid-half {
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid-quarter {
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid-third {
        flex-basis: 33.331%;
        max-width: 33.331%;
    }

    .grid-two-third {
        flex-basis: 66.661%;
        max-width: 66.661%;
    }
}

.bg {
    position: fixed;
    top: 0;
    background: url(/static/shell2/images/bkg.png) top center no-repeat;
    background-size: cover;
    height: 100%;
    min-height: 100%;
    width: 100%;
}

.nav-wrap {
    position: relative;
    padding: 32px 30px 19px 58px;
    display: flex;
    flex-direction: row;
}


.hamburger {
    margin-top: 5px;
    height: 20px;
    width: 20px;
    flex-grow: 0;
}


.nav-items {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    font-size: 13px;
    width: 100%;
    height: 100%;
    transition: width 0.25s ease;
    padding: 0 17px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: rgb(214,52,8);
    background: linear-gradient(0deg, rgba(158,34,0,1) 0%, rgba(214,52,8,1) 100%);
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    font-weight: 300;
    letter-spacing: 2px;
    overflow: auto;
}

    .nav-items a.nav-close {
        display: block;
        position: absolute;
        top: 24px;
        right: 17px;
        width: 45px;
        height: 45px;
    }

    .nav-items ul {
        padding: 17px 0;
        margin: 0;
        text-transform: uppercase;
        position: relative;
    }

        .nav-items ul.TMI {
            background: #fff;
            margin: 0 -17px;
        }

        .nav-items ul:first-child {
            border-top: none;
            text-transform: capitalize;
        }

    .nav-items li {
        overflow: hidden;
        white-space: nowrap;
        list-style: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        transition: background 0.25s ease;
        transition: opacity 0.25s ease;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
        /* This works in IE 8 & 9 too... but also 5, 6, 7 */
        filter: alpha(opacity=70); /*// IE 5-7*/
        /* Modern Browsers */
        opacity: 0.7;
    }

        .nav-items li:hover,
        .nav-items li.active {
            background: url(/static/shell2/images/select-dot.svg) -10px no-repeat;
            transition: background 0.25s ease;
            transition: opacity 0.25s ease;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            /* This works in IE 8 & 9 too... but also 5, 6, 7 */
            filter: alpha(opacity=100); /*// IE 5-7*/
            /* Modern Browsers */
            opacity: 1;
        }

        .nav-items li.icon-logo:hover,
        .nav-items li.icon-logo {
            background: none;
        }

    .nav-items ul:first-child li:hover {
        background: none;
    }

    .nav-items li:before {
        content: '';
        display: block;
        width: 70px;
        height: 45px;
        position: relative;
    }

.icon-admin:before {
    background: url('/static/shell2/images/icon-admin.png') center no-repeat;
}

.icon-as-built:before {
    background: url('/static/shell2/images/icon-as-built.svg') center no-repeat;
}

.icon-client:before {
    background: url('/static/shell2/images/icon-client.svg') center no-repeat;
}

.icon-client_details:before {
    background: url('/static/shell2/images/icon-client.svg') center no-repeat;
}

.icon-clients_admin:before {
    background: url('/static/shell2/images/icon-clients.svg') center no-repeat;
}

.icon-construction:before {
    background: url('/static/shell2/images/icon-construction.svg') center no-repeat;
}

.icon-traceability:before {
    background: url('/static/shell2/images/icon-traceability.svg') center no-repeat;
}

.icon-capital_budget:before {
    background: url('/static/shell2/images/icon-construction.svg') center no-repeat;
}

.icon-documents:before {
    background: url('/static/shell2/images/icon-docs.svg') center no-repeat;
}

.icon-line_attributes:before {
    background: url('/static/shell2/images/icon-row.svg') center no-repeat;
}

.icon-environmental:before {
    background: url('/static/shell2/images/icon-enviornmental.svg') center no-repeat;
}

.icon-forms_admin:before {
    background: url('/static/shell2/images/icon-forms.png') center no-repeat;
}

.icon-logo:before {
    background: url('/static/shell2/images/logo.svg') center no-repeat;
}

.icon-map:before {
    background: url('/static/shell2/images/icon-map.svg') center no-repeat;
}

.icon-material:before {
    background: url('/static/shell2/images/icon-inventory.svg') center no-repeat;
}

.icon-om:before {
    background: url('/static/shell2/images/icon-o-m.svg') center no-repeat;
}

.icon-project:before {
    background: url('/static/shell2/images/icon-project.svg') center no-repeat;
}

.icon-project_details:before {
    background: url('/static/shell2/images/icon-project.svg') center no-repeat;
}

.icon-management_of_change:before {
    background: url('/static/shell2/images/icon-management_of_change.svg') center no-repeat;
}

.icon-welding_and_coating:before {
    background: url('/static/shell2/images/icon-weldingandcoating.svg') center no-repeat;
}

.icon-projects:before {
    background: url('/static/shell2/images/icon-projects.svg') center no-repeat;
}

.icon-provider:before {
    background: url('/static/shell2/images/icon-providers.png') center no-repeat;
}

.icon-regulatory:before {
    background: url('/static/shell2/images/icon-regulatory.svg') center no-repeat;
}

.icon-row:before {
    background: url('/static/shell2/images/icon-row.svg') center no-repeat;
}

.icon-schedule:before {
    background: url('/static/shell2/images/icon-schedule.svg') center no-repeat;
}

.icon-survey:before {
    background: url('/static/shell2/images/icon-survey.svg') center no-repeat;
}

.icon-upload:before {
    background: url('/static/shell2/images/icon-cloud-upload.svg') center no-repeat;
}

.icon-projects_admin:before {
    background: url('/static/shell2/images/icon-projects.svg') center no-repeat;
}

.icon-providers_admin:before {
    background: url('/static/shell2/images/icon-providers.png') center no-repeat;
}

.icon-users_admin:before {
    background: url('/static/shell2/images/icon-users.png') center no-repeat;
}

.icon-system_admin:before {
    background: url('/static/shell2/images/icon-sysadmin.png') center no-repeat;
}

.nav-items a {
    color: #fff;
    width: 100%;
    height: -100px;
    text-decoration: none;
    line-height: 45px;
    padding-left: 4px;
}

.nav-items ul.whitelabel-client {
    background: #fff;
    margin: 0 -17px;
}

.whitelabel-client .icon-logo:before {
    background-size: contain;
    width: 126px;
    margin-left: 37px;
}

.nav-items ul.whitelabel-client li {
    opacity: 1.0
}

.nav-items .whitelabel-client a {
    display: block;
    text-align: center;
    color: #333;
    padding-left: 0px
}

.nav-items ul.powered-by {
    padding: 0;
    margin: 0 -14px;
}

.nav-items ul.powered-by {
    padding: 0;
    margin: 0 -14px;
}

    .nav-items ul.powered-by span {
        font-size: 8px;
        display: block;
    }

    .nav-items ul.powered-by li {
        flex-direction: column;
    }

        .nav-items ul.powered-by li:before {
            height: 0px;
        }

        .nav-items ul.powered-by li:hover {
            background: none;
        }

@media only screen and (min-width: 768px) {
    .burger-link {
        display: none;
    }

    .nav-items {
        display: block;
        position: fixed;
        z-index: 10;
        top: 11px;
        left: 20px;
        height: auto;
        font-size: 13px;
        width: 83px;
        transition: width 0.25s ease;
        padding: 0 17px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        background: rgb(214,52,8);
        background: linear-gradient(0deg, rgba(158,34,0,1) 0%, rgba(214,52,8,1) 100%);
        -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
        -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
        box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
        font-weight: 300;
        letter-spacing: 2px;
    }

        .nav-items a.nav-close {
            display: none;
        }

        .nav-items li:before {
            width: 50px;
        }

        .nav-items:hover {
            transition: width 0.25s ease;
            width: 261px;
        }

        .nav-items a {
            height: -100px;
            margin-right: -300px;
            transition: opacity 0.25s ease;
            transition: margin 0.25s ease;
            transition-delay: 32s;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
            filter: alpha(opacity=0);
            opacity: 0;
            text-decoration: none;
            line-height: 45px;
            padding-left: 4px;
        }

        .nav-items:hover a {
            height: auto;
            transition: opacity 0.25s ease;
            transition: margin 0.25s ease;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            filter: alpha(opacity=100);
            opacity: 1;
            margin-left: -45px;
            padding-left: 50px;
            z-index: 2;
        }

    .whitelabel-client .icon-logo:before {
        background-size: contain;
        width: 76px;
        margin-left: 3px;
    }

    .nav-items .whitelabel-client a {
        display: block;
        text-align: center;
        color: #333;
        padding-left: 0px
    }
}

.breadcrumb {
    width: 100%;
    font-size: 14px;
    line-height: 30px;
    padding-left: 40px;
    text-transform: uppercase;
}

    .breadcrumb a {
        text-decoration: none;
        color: #fff;
    }

        .breadcrumb a:after {
            content: '';
            display: inline-block;
            height: 11px;
            width: 17px;
            background: url(/static/shell2/images/chevron.svg) right top no-repeat;
            margin-right: 7px;
        }

.utility-nav {
    text-align: right;
    width: 220px;
    float: right;
    flex-grow: 0;
    position: relative;
}

    .utility-nav ul {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        position: absolute;
        top: 0;
        z-index: 100;
        width: 100%;
    }

    .utility-nav li {
        line-height: 30px;
        padding: 6px 7px;
    }

    .utility-nav a {
        text-decoration: none;
        font-size: 12px;
        color: #fff;
    }

li.profile {
    padding-top: 0;
    position: relative;
    display: flex; /*added*/
    flex-direction: column;
}

.profile img {
    margin-right: 6px;
    height: 30px;
    width: 30px;
    position: relative;
}

.profile img,
.profile span {
    line-height: 32px;
    display: inline-block;
    float: left;
}

.profile span {
    display: none;
}

ul.profile-list {
    display: none;
    background-color: #fff;
    width: 134px;
    text-align: left;
    top: 34px;
}

    ul.profile-list:after {
        content: '';
        clear: both;
        display: block;
    }

.profile:hover .profile-list,
.profile-list:hover {
    display: block;
}

.profile-list a {
    color: #333;
}

@media only screen and (min-width: 768px) {
    .profile span {
        display: inline-block;
    }
}

.profile span:after {
    content: '';
    background: url(/static/shell2/images/select-arrow.svg) right 5px no-repeat;
    display: block;
    height: 24px;
    width: 24px;
    float: right;
}

/* Wrapper element*/
.card {
    position: relative;
    background: #384052;
    /*background: radial-gradient(circle at top center, rgba(80,92,114,1) 0%, rgba(56,64,82,1) 100%);*/
    padding: 20px;
    -webkit-box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.5);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px; /* future proofing */
    -khtml-border-radius: 5px; /* for old Konqueror browsers */
    margin: 0 0 20px 0;
}

@media only screen and (min-width: 768px) {
    .card {
        position: relative;
        background: #384052;
        /*background: radial-gradient(circle at top center, rgba(80,92,114,1) 0%, rgba(56,64,82,1) 100%);*/
        padding: 20px;
        -webkit-box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.5);
        -moz-box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.5);
        box-shadow: 0px 2px 22px 0px rgba(0,0,0,0.5);
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px; /* future proofing */
        -khtml-border-radius: 5px; /* for old Konqueror browsers */
        margin: 0 20px 20px 0;
    }
}

/* Card Tools Used as contextual functionallity */
.card-tools {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .card-tools li {
        display: inline-block;
        font-family: roboto, sans-serif;
        color: #657D95;
        font-size: 14px;
    }

    .card-tools .link-to a,
    .card-tools .upload a {
        position: relative;
        display: block;
        height: 24px;
        width: 24px;
        margin-left: 4px;
    }

    .card-tools span {
        display: none;
    }

    .card-tools a:hover span {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        color: #fff;
        z-index: 100;
        display: inline-block;
        position: absolute;
        white-space: nowrap;
        font-weight: 500;
        font-size: 12px;
        height: 20px;
        bottom: -35px;
        padding: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        background: rgb(214,52,8);
        /*background: linear-gradient(0deg, rgba(158,34,0,1) 0%, rgba(214,52,8,1) 100%);*/
        -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
        -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
        box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.5);
    }

table .card-tools a:hover span {
    height: 24px;
    padding: 0px 4px;
    bottom: -37px;
    font-size: 14px;
}

.align-tools-left {
    position: relative;
    top: 0;
    right: 0;
}

.link-to a {
    background: url(/static/shell2/images/icon-link-to.svg) top left no-repeat;
}

    .link-to a:hover {
        background-image: url(/static/shell2/images/icon-link-to-hover.svg);
    }

.close a {
    background: url(/static/shell2/images/icon-close.svg) top left no-repeat;
}

    .close a:hover {
        background-image: url(/static/shell2/images/icon-close-hover.svg);
    }

.add a {
    background: url(/static/shell2/images/icon-add.svg) top left no-repeat;
}

    .add a:hover {
        background-image: url(/static/shell2/images/icon-add-hover.svg);
    }

.edit a {
    background: url(/static/shell2/images/icon-edit.svg) top left no-repeat;
}

    .edit a:hover {
        background-image: url(/static/shell2/images/icon-edit-hover.svg);
    }

.pdf a {
    background: url(/static/shell2/images/icon-pdf.svg) top left no-repeat;
}

    .pdf a:hover {
        background-image: url(/static/shell2/images/icon-pdf-hover.svg);
    }

.xls a {
    background: url(/static/shell2/images/icon-xls.svg) top left no-repeat;
}

    .xls a:hover {
        background-image: url(/static/shell2/images/icon-xls-hover.svg);
    }

.upload a {
    background: url(/static/shell2/images/icon-upload.svg) top left no-repeat;
}

    .upload a:hover {
        background-image: url(/static/shell2/images/icon-upload-hover.svg);
    }

.download a {
    background: url(/static/shell2/images/icon-download.svg) top left no-repeat;
}

    .download a:hover {
        background-image: url(/static/shell2/images/icon-download-hover.svg);
    }

.materials a {
    background: url(/static/shell2/images/icon-materials-shade.svg) top left no-repeat;
}

    .materials a:hover {
        background-image: url(/static/shell2/images/icon-materials.svg);
    }

.search-el {
    position: relative;
    margin-bottom: 24px;
    margin-right: 8px;
}

    .search-el input {
        width: calc(100% - 28px);
    }

.filter-and-search button
.filter-and-search .btn,
.filter-and-search select {
    margin-bottom: 8px;
    margin-right: 0;
}

.search-el:after {
    content: '';
    background: url(/static/shell2/images/icon-search.svg) top left no-repeat;
    display: block;
    position: absolute;
    height: 24px;
    width: 24px;
    top: 6px;
    right: 16px;
    z-index: 30;
}

@media only screen and (min-width: 768px) {
    .filter-and-search button,
    .filter-and-search .btn,
    .filter-and-search select {
        margin-right: 10px;
    }

    .search-el input {
        width: 327px;
    }
}

/* Segmented Control Selectors */
.segmented-control {
    padding-bottom: 15px;
    text-align: center;
}

    .segmented-control ul {
        background-color: #242E42;
        display: inline-block;
        padding: 3px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px; /* future proofing */
        -khtml-border-radius: 4px; /* for old Konqueror browsers */
    }

    .segmented-control li {
        display: inline-block;
        padding: 3px;
    }

    .segmented-control a {
        font-family: roboto, sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #657D95;
        text-transform: uppercase;
        text-decoration: none;
        display: inline-block;
        line-height: 22px;
        padding: 7px 12px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px; /* future proofing */
        -khtml-border-radius: 3px; /* for old Konqueror browsers */
        transition: background 0.25s ease;
    }

        .segmented-control a:hover,
        .segmented-control a.active {
            background-color: #1F8EFA;
            transition: background 0.25s ease;
            color: #fff;
        }

.section-title {
    padding: 20px 0;
    position: relative;
}

    .section-title:first-child {
        padding: 0 0 20px 0;
    }

    .section-title h2 {
        color: #fff;
        font-weight: 500;
        font-family: roboto, sans-serif;
        font-size: 17px;
        padding-bottom: 15px;
        display: block;
        border-bottom: solid 1px #98A7B9;
        text-transform: capitalize;
        max-width: calc( 100% - 20px);
        width: 100%;
        padding-right: 0;
    }

    .section-title span {
        color: #98A7B9;
    }

.status {
    width: 100%;
    display: flex;
    flex-direction: row
}

.sub-content {
    padding: 13px 16px 0 16px;
    flex-grow: 3;
}

    .sub-content h3 {
        font-size: 12px;
        font-family: roboto, sans-serif;
        padding-bottom: 5px;
    }

    .sub-content p {
        color: #869AAC;
        font-size: 10px;
        padding-bottom: 3px;
        font-family: roboto, sans-serif;
        display: flex;
        justify-content: space-between;
    }

    .sub-content span {
        display: block;
    }

/* Map Styles */
.map iframe {
    width: 100%;
}

/*Chips*/
.module-chips {
    display: flex;
    flex-wrap: wrap;
}

.section-title .module-chips {
    position: absolute;
    right: 0;
    /*top: 0;*/
    margin-top: -30px;
}

.module-chips li {
    margin-right: 16px;
    padding-bottom: 8px;
}

.module-chips a {
    position: relative;
    color: #fff;
    font-size: 12px;
    line-height: 23px;
    padding-top: 5px;
    font-weight: 500;
    padding-left: 30px;
}

    .module-chips a:before {
        content: '';
        display: inline-block;
        height: 25px;
        width: 25px;
        position: absolute;
        left: 0;
        top: 0;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
        border-radius: 13px; /* future proofing */
        -khtml-border-radius: 13px; /* for old Konqueror browsers */
        transition: all 0.25s ease;
    }

.module-chips .as-built a:before {
    background: #D63408 url('/static/shell2/images/icon-as-built.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .construction a:before {
    background: #D63408 url('/static/shell2/images/icon-construction.svg') center no-repeat;
    background-size: 17px 17px;
}
.module-chips .traceability a:before {
    background: #D63408 url('/static/shell2/images/icon-traceability.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .management_of_change a:before {
    background: #D63408 url('/static/shell2/images/icon-management_of_change.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .welding_and_coating a:before {
    background: #D63408 url('/static/shell2/images/icon-weldingandcoating.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .documents a:before {
    background: #D63408 url('/static/shell2/images/icon-docs.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .environmental a:before {
    background: #D63408 url('/static/shell2/images/icon-enviornmental.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .map a:before {
    background: #D63408 url('/static/shell2/images/icon-map.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .lineattributes a:before {
    background: #D63408 url('/static/shell2/images/icon-row.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .material a:before {
    background: #D63408 url('/static/shell2/images/icon-inventory.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .om a:before {
    background: #D63408 url('/static/shell2/images/icon-o-m.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .regulatory a:before {
    background: #D63408 url('/static/shell2/images/icon-regulatory.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .row a:before {
    background: #D63408 url('/static/shell2/images/icon-row.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .row_summary a:before {
    background: #D63408 url('/static/shell2/images/icon-row.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips .schedule a:before {
    background: #D63408 url('/static/shell2/images/icon-schedule.svg') center no-repeat;
    background-size: 19px 19px;
}

.module-chips .survey a:before {
    background: #D63408 url('/static/shell2/images/icon-survey.svg') center no-repeat;
    background-size: 17px 17px;
}

.module-chips a:hover:before {
    background-color: #1F8EFA;
    transition: all 0.25s ease;
}
/* Graph & Charts CSS */


/* Used to alter the text color in the gantt chart use on the executive manager screen */
svg g:nth-child(3) text,
svg g:nth-child(9) text {
    fill: #fff !important;
}

.circle-graph {
    margin-top: 6px;
    height: 60px;
    width: 60px;
    flex-shrink: 0;
    position: relative;
}

.graph-box {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle-graph svg {
    transform: rotate(-90deg);
}

.status-lg-format .circle-graph {
    margin-right: 23px;
    height: 150px;
    width: 150px;
    flex-shrink: 0;
    overflow: visible;
}

.status-lg-format .line-graph {
}



.percent {
    position: absolute;
    margin-left: -2px;
    width: 100%;
    font-weight: 200;
    font-size: 19px;
    line-height: 60px;
    text-align: center;
    letter-spacing: -0.8px;
}

    .percent span {
        display: none;
    }

.status-lg-format .percent {
    padding-top: 46px;
    padding-bottom: 3px;
    line-height: 44px;
    width: 150px;
    font-size: 38px;
}

.status-lg-format {
    display: flex;
    align-items: center;
}

    .status-lg-format .percent span {
        display: block;
        color: #98A7B9;
        font-size: 12px;
        font-weight: 400;
        line-height: 14px;
        letter-spacing: 0px;
    }

    .status-lg-format .spend p {
        font-size: 18px;
        padding-bottom: 13px;
        font-family: roboto, sans-serif;
    }

    .status-lg-format .spend span {
        display: block;
        font-size: 14px;
        color: #869AAC;
        padding-bottom: 5px;
    }

.complete-est {
    margin: 50px 0 42px 0;
}

    .complete-est p {
        text-align: center;
        font-size: 24px;
    }

    .complete-est span {
        display: block;
        text-align: center;
        font-size: 10px;
        padding-bottom: 13px;
        color: #869AAC;
    }

.line-graph {
    margin-left: 16px;
    padding: 4px;
    height: 68px;
    width: 85px;
    background: rgb(80,92,114);
    /*background: radial-gradient(circle at top center, rgba(42,53,74,1) 0%, rgba(32,41,60,1) 100%);*/
}

    .line-graph svg {
        height: 100%;
        width: 100%;
    }

.status-lg-format .line-graph {
    height: 200px;
    width: 100%;
    margin-left: 0;
    padding: 0;
    position: relative;
}

.line-graph ul {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    height: 174px;
    width: 100%;
}

    .line-graph ul:before {
        content: '';
        display: block;
        position: absolute;
        z-index: 10;
        top: 10px;
        left: 16px;
        height: 100%;
    }

.line-graph li {
    position: relative;
    display: block;
    color: #869AAC;
    font-size: 10px;
    font-weight: 300;
    width: 32px;
    text-align: center;
    height: 100%;
    bottom: 3px;
    display: flex;
}

    .line-graph li span {
        position: absolute;
        line-height: 12px;
        bottom: -13px;
        width: 100%
    }

    .line-graph li:before {
        content: '';
        display: block;
        top: 0;
        position: absolute;
        height: calc(100% - 32px);
        width: 1px;
        border-left: dashed 1px #869AAC;
        margin: 16px 0 0 16px;
    }

.line-wrap {
    padding: 8px;
    height: 162px;
}

.line-graph svg {
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 19px 0 15px 0;
    height: 42px;
}

    .timeline:before {
        content: '';
        display: block;
        position: absolute;
        z-index: 10;
        top: 10px;
        left: 16px;
        height: 13px;
        width: calc( 0% - 32px );
    }

    .timeline li {
        position: relative;
        display: block;
        color: #869AAC;
        font-size: 10px;
        font-weight: 300;
        width: 32px;
        text-align: center;
        padding-top: 31px;
        height: 11px;
    }

        .timeline li:before {
            content: '';
            display: block;
            position: absolute;
            height: 25px;
            width: 1px;
            border-left: dashed 1px #242E42;
            margin: -31px 0 0 16px;
        }
/* bar graph */
.bar-graph {
    position: relative;
}

    .bar-graph:after {
        content: "";
        display: table;
        clear: both;
        margin: 16px 0;
    }

    .bar-graph ul {
        position: absolute;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 0 0 0 30%;
        height: 100%;
        width: 70%;
    }

        .bar-graph ul:before {
            content: '';
            display: block;
            position: absolute;
            z-index: 10;
            top: 10px;
            left: 16px;
            height: 100%;
        }

    .bar-graph li {
        position: relative;
        display: block;
        color: #869AAC;
        font-size: 10px;
        font-weight: 300;
        width: 32px;
        text-align: center;
        height: 100%;
        bottom: 0;
        display: flex;
    }

        .bar-graph li span {
            position: absolute;
            bottom: 0;
            width: 100%
        }

        .bar-graph li:before {
            content: '';
            display: block;
            top: 0;
            position: absolute;
            height: calc(100% - 18px);
            width: 1px;
            border-left: dashed 1px #242E42;
            margin: 0 0 0 16px;
        }

.bar-set {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 15px;
    width: 100%;
    padding: 17px 0 4px 0;
}

    .bar-set p {
        padding: 8px 0 8px 0;
        display: flex;
        flex-direction: row;
    }

.bar-label {
    display: inline-block;
    width: 30%;
}

.bar-val {
    display: inline-block;
    width: calc(70% - 32px);
    margin-left: 16px;
}

.bar-set .bar-val:before {
    content: '';
    width: 0;
    transition: width 0.25s ease;
    height: 15px;
    display: inline-block;
    margin: 0 8px 0 0;
}

.ready .bar-val:before {
    transition: width 1.5s ease;
}

.graph-sub-title {
    margin-left: 30%;
    width: 70%;
    text-align: center;
    color: #869AAC;
    font-size: 10px;
    font-weight: 300;
    padding-bottom: 16px;
}


/* Pagination */
.pagination-module {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 7px 0;
    font-size: 12px;
    color: #75899B;
}

    .pagination-module ul {
        display: flex;
    }

    .pagination-module li {
        border-right: solid 1px #75899B;
    }

        .pagination-module li:last-child {
            border: none;
        }

    .pagination-module a {
        color: #fff;
        padding: 0 7px;
        display: block;
    }

    .pagination-module .active a,
    .pagination-module .disabled a {
        cursor: default;
        color: #75899B
    }

        .pagination-module .disabled a:hover {
            text-decoration: none;
        }

    .pagination-module .active a {
        text-decoration: underline;
    }
/* Widgets */
/* Project Overview Card */

.co-name {
    color: #FFAB4F;
    font-size: 14px;
    text-transform: none;
}

.start-end {
    display: flex;
    font-family: roboto, sans-serif;
    text-align: center;
}

    .start-end li {
        width: 50%;
        font-size: 18px;
        line-height: 29px;
        padding-bottom: 15px
    }

    .start-end span {
        line-height: 16px;
        display: block;
        color: #869AAC;
        font-size: 14px;
        padding-bottom: 5px;
    }

.inspector {
    text-align: center;
    font-size: 14px;
    font-family: roboto, sans-serif;
}


/* Weekly Total Card */
p.weekly-total {
    color: #05C985;
    font-size: 28px;
    letter-spacing: 0.56px;
    line-height: 30px;
}

/* Cost To Date */
.cost-to-date p {
    font-size: 12px;
    padding-bottom: 14px;
}

    .cost-to-date p span {
        font-size: 14px;
        color: #05C985;
    }


/* UQR widget */

.uqr-content {
    position: relative;
}

    .uqr-content .card-tools {
        top: 6px;
        right: 0px;
    }

    .uqr-content select {
        width: calc(100% - 66px);
    }

/* Completion Status */
li.title-percent {
    color: #05C985;
    font-size: 17px;
}

/* Documents Widget */
/*.documents {
    margin-top: 20px;
}*/

/*.documents-table {
    margin-top: 12px;
}*/

.dir {
    position: relative;
    padding: 9px 0 4px 20px;
    font-size: 14px;
    font-family: roboto, sans-serif;
    font-weight: 400;
}

    .dir p,
    .dir ul {
        display: inline-block;
        padding-bottom: 8px;
        cursor: pointer;
    }

    .dir .card-tools {
        top: 5px;
        right: 8px;
    }

table .align-tools-left {
    left: 2px;
    right: auto;
}
/* Tract Status Widget */

.tract-status-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.status-node .circle-graph {
    margin: 0 auto;
}

.status-node {
    width: 33%;
    padding: 0 0 27px 0;
}

.node-title {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #75899B;
    padding-top: 10px;
}

    .node-title span {
        display: block;
        padding-top: 15px;
        color: #fff;
        font-size: 31px;
    }

/* Materials Screen */
.card-form {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

    .card-form select {
        width: calc(100% - 22px);
        margin-right: 20px;
        margin-bottom: 16px;
    }
    
.copy {
    font-size: 10px;
    margin: 50px 0 22px 0;
    text-align: center;
    color: #ACACAC;
}

.cb-label {
    display: block;
    margin-top: -4px;
    height: 24px;
    width: 24px;
    cursor: pointer;
}

    .cb-label input[type=checkbox] {
        display: none;
    }

    .cb-label .cb-container {
        display: block;
        height: 24px;
        width: 24px;
        background: url(/static/shell2/images/checkbox.svg) bottom left no-repeat;
    }

    .cb-label input:checked ~ .cb-container {
        background: url(/static/shell2/images/checkbox-checked.svg) bottom left no-repeat;
    }

.error-message {
    font-size: 16px;
    font-family: roboto, sans-serif;
    height: 20px;
    width: 327px;
    margin: 0 auto;
    padding-left: 36px;
    position: relative;
}

    .error-message:before {
        left: 0px;
        position: absolute;
        content: '';
        display: inline-block;
        height: 20px;
        width: 20px;
        background: url(/static/shell2/images/icon-error.svg) top left no-repeat;
    }

@media only screen and (min-width: 1140px) {
    .sign-view {
        height: 100%;
        min-height: 100%;
        padding-top: 60px;
    }

        .sign-view .grid-container {
            height: calc(100% - 90px);
        }

        .sign-view .grid-half {
            height: 100%
        }

    .sign-cta {
        height: 100%;
        padding: 40px;
        background: #20293C;
    }

    .sign-cta-logo {
        display: bl background: url('/static/shell2/images/logo.svg') top left no-repeat;
        background-size: contain;
        height: 70px;
        width: 140px;
    }

    .sign-cta-content {
        font-size: 50px;
        margin: 20px;
        font-weight: 300;
        line-height: 82px;
    }

    .sign-cta-vid {
        display: flex;
        align-items: center;
    }

        .sign-cta-vid span {
            display: inline-block;
            font-size: 12px;
            line-height: 37px;
            padding-left: 21px;
            color: #1F8EFA;
        }

        .sign-cta-vid:before {
            content: '';
            display: inline-block;
            height: 37px;
            width: 37px;
            background: url(/static/shell2/images/icon-play.svg) top left no-repeat;
        }

    .sign-form-logo {
        display: block;
    }
}

/*.modal-cover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    background: rgba(32,41,60,0.44);
    display: flex;
    align-items: center;
}

.modal {
    background: linear-gradient(0deg, rgba(32,41,60,1) 0%, rgba(53,61,77,1) 100%);
    height: auto;
    padding: 14px 20px 24px 20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 5px 3px 19px 0px rgba(0,0,0,0.44);
    -moz-box-shadow: 5px 3px 19px 0px rgba(0,0,0,0.44);
    box-shadow: 5px 3px 19px 0px rgba(0,0,0,0.44);
    width: 653px;
    margin: 0 auto;
    position: relative;
}
    .modal h2 {
        margin-top: 6px;
    }

    .modal p {
        font-family: roboto, sans-serif;
        font-size: 14px;
        font-weight: 400;
        padding-bottom: 8px;
    }

    .modal span {
        color: #ACC1D3;
    }*/

.thumbs {
    display: flex;
    flex-direction: row;
}

.card-form {
    position: relative;
}

    .card-form .card-tools {
        top: -2px;
    }

/*.modal-btn {
    display: flex;
    justify-content: center;
}*/
