﻿body {
    background-color: #fff;
    color: #707070;
    font-family: "Open Sans", "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;

    font-size: 1em; /* 18px */
    line-height: 1.45; /* 26px */
    
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
}

a {
    color: #e4002b!important;
    text-decoration: none;
}

/*
    red #e4002b
    gray #707372
    black #000
*/

input[type=text], input[type=password], select, textarea {
    background: #fff;
    border: 1px solid #848484;
    border-radius: 6px;
    box-sizing: border-box;
    color: inherit;
    font: inherit;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
input[type=text], input[type=password], select {
    height: 45px;
    padding: 0 0 0 8px;
}
textarea {
    padding: 8px;
}
textarea.short-textarea {
    height: 100px;
}
textarea.tall-textarea {
    height: 300px;
}
input[type=submit] {
    background: #e4002b;
    border: 1px solid #e4002b;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    padding: 4px 10px;
}
    input[type=submit]:hover {
        background: #707372;
        border: 1px solid #707372;
    }

    input[type=submit].disabled {
        background: #a0c0d6;
        border: 1px solid #a0c0d6;
    }



.button-bar {
    margin-top: 12px;
}

.button__blue {
    padding: 6px 12px 6px 12px;
    background: #e4002b;
    color: #fff!important;
    border-radius: 6px;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
}

    .button__blue:hover {
        background: #707372;
        color: #fff!important;
        text-decoration: none;
    }



.clearfix {
    overflow: auto;
    zoom: 1;
}




/* header */
.header {
    width: 100%;
    float: left;
    position: relative;
    padding-top: 10px;
}

.header .logo {
    float: left;
    max-width: 100%;
    height: auto;
    margin-top: 4px;
    margin-left: 20px;
}

.header .logo img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}

.header .tagline {
    font-family: Arial;
    font-size: 1.5em;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    border-left: 1px solid #ccc;
    padding-left: 20px;
    line-height: 40px;
}

.header .nav {
    float: right;
    max-width: 100%;
    height: auto;
    margin-top: 4px;
    margin-right: 20px;
}

@media (max-width: 640px) {
    .header .logo {
        float: none;
        text-align: center;
        width: 92%;
        margin: 0 auto;
    }
    .header .tagline {
        font-size: 1.2em;
        margin-left: 0;
        margin-top: 10px;
        margin-top: 10px;
        border-left: none;
        border-top: 1px solid #ccc;
        padding-left: 0;
        line-height: 40px;
    }
    .header .nav {
        float: none;
        text-align: center;
        width: 100%;
        margin-top: 10px;
        font-size: 0.9em;
    }
}



.container {
    margin: 20px auto;
    width: 96%;
    max-width: 1200px;
}

@media (max-width: 440px) {
    .container {
        width: 92%;
    }
}


.main {
    width: 100%;
    float: left;
    position: relative;
    padding: 20px 0 30px 0;
}


.main h1 {
    font-size: 29px;
    line-height: 29px;
    font-weight: bold;
    color: #e4002b;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid #c9c9c9;
}
    .main h2 {
        font-size: 24px;
        line-height: 24px;
        font-weight: bold;
        color: #e4002b;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ccc;
    }
    .main h3 {
        font-size: 18px;
        line-height: 24px;
        font-weight: bold;
        color: #e4002b;
        margin-bottom: 10px;
        text-transform: none;
    }
    .main h4 {
        font-size: 14px;
        line-height: 14px;
        color: #e4002b;
    }


.main p {
    font-size: 18px;
    line-height: 26px;
    color: #707070;
    padding-bottom: 25px;
}
.main p a {
        color: #e4002b;
}
.main p a:hover {
    text-decoration: underline;
}


.main .half-width {
    margin-bottom: 20px;
    width: 46%;
}

.main label {
    display: block;
    margin: 8px 0 2px 0;
}


label.required:after {
    content: " *";
    color: #c00;
}




.main label {
    width: 100%;
}



    .main .fixed-width-box
    {
        margin: 8px 0 24px 0;
    }
    .main .fixed-width-box input[type=text] {
        width: 200px;
        margin: 0;
    }
    .main .fixed-width-box label {
        display: inline-block;
        width: 160px;
    }












.main label input[type=checkbox] {
    margin-left: 15px;
}
.main form span.form-error, .main span.form-error {
    color: #c00;
    display: block;
    width: 100%;
}





@media (max-width: 800px) {
    .main .half-width {
        width: 100%;
    }
}
.main .right-side-bar {
    float: right;
    margin: 8px;
    width: 40%;
}
.main .right-side-bar a {
    color: #e4002b;
}





/* footer */
.footer {
    border-top: 1px solid #d2d2d2;
    color: #3e3e3e;
    float: left;
    padding: 10px 0;
    width: 100%;
}

.footer p {
    color: inherit;
    font-size: 0.7em;
    line-height: 1.7;
    text-align: center;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}



/* - not found 2018-11-26, PET (delete on new launch)
ul.buttons {
    margin: 0 0 20px 0 !important;
}
ul.buttons li {
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
}
ul.buttons li a {
    padding: 15px 13px 13px 15px;
    background: #e4002b;
    font-size: 16px;
    line-height: 19px;
    color: #fff !important;
    border-radius: 6px;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
    text-align: center;
    display: inline-block;
    width: 200px;
}
ul.buttons li a:hover {
    text-decoration: none !important;
    background: #808080;
}
*/



#searchBox {
    width: 15%;
    float: left;
    margin-right: 20px;
}
#searchBox p {
    padding-bottom: 12px;
    line-height: 140%;
}

#resultsBox {
    float: left;
    width: 80%;
}
#resultsBox table {
    font-size: 0.9em;
    line-height: 1.1em;
    font-family: "Arial", sans-serif;
    width: 100%;
}
#resultsBox table th, #resultsBox table td {
    font-size: inherit;
    text-align: left;
    padding: 4px 8px;
    width: 25%;
}
#resultsBox table th {
    font-weight: bold;
}
#resultsBox table th:last-child, #resultsBox table td:last-child {
    width: 45%;
}
#resultsBox table tr:not(:first-child):hover {
    background-color: #eee;
}



.plain-blue-button {
    padding: 6px 12px 6px 12px;
    background: #e4002b;
    font-size: 16px;
    line-height: 19px;
    color: #fff !important;
    border-radius: 6px;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none !important;
    text-transform: uppercase;
}
    .plain-blue-button:hover {
        background: #707070;
    }


.error-box {
    border: 1px solid #c00;
    color: #c00;
    display: block;
    margin: 8px 0;
    padding: 8px 12px;
}
.success-box {
    border: 1px solid #448866;
    color: #448866;
    display: block;
    margin: 8px 0;
    padding: 8px 12px;
}

.message-holder--success {
    color: #fff;
    background-color: #51882f;
    padding: 18px 24px;
}

    .message-holder--success a {
        color: #fff !important;
    }

        .message-holder--success a:hover {
            color: #fff;
            text-decoration: none !important;
        }

.message-holder--error {
    color: #fff;
    font-weight: bold;
    background-color: #882f46;
    padding: 18px 24px;
}

    .message-holder--error a {
        color: inherit !important;
    }

        .message-holder--error a:hover {
            color: inherit;
            text-decoration: none !important;
        }

.message-holder--warning {
    color: #e4002b;
    font-weight: bold;
    background-color: #ffd966;
    padding: 18px 24px;
}

    .message-holder--warning a {
        color: inherit !important;
        text-decoration: underline !important;
    }

        .message-holder--warning a:hover {
            color: inherit;
            text-decoration: none !important;
        }


/* search bar */

.searchbar {
}
.searchbar .left {
    float: left;
    width: 40%
}
.searchbar .center {
    float: left;
    padding-top: 45px;
    width: 20%;
    text-align: center;
}
.searchbar .right {
    float: right;
    width: 40%
}
.searchbar .right.align {
    text-align: right;
}
.searchbar .right.align label {
    text-align: left;
}

    .searchbar a.button, .right-side-bar a.button {
        padding: 6px 12px 6px 48px;
        background: #e4002b;
        font-size: 16px;
        line-height: 19px;
        color: #fff !important;
        border-radius: 6px;
        -webkit-transition: background 0.2s ease;
        -moz-transition: background 0.2s ease;
        -o-transition: background 0.2s ease;
        transition: background 0.2s ease;
        text-align: center;
        display: inline-block;
        text-decoration: none !important;
        text-transform: uppercase;
    }
    .searchbar .right a.button, .right-side-bar a.button {
        margin-top: 40px;
        background: #e4002b url('../images/plus-sign.png') no-repeat 10px center;
        background-size: 20px 20px;
    }
    .searchbar a.button:hover, .right-side-bar a.button:hover {
        background: #707070 url('../images/plus-sign.png') no-repeat 10px center;
        background-size: 20px 20px;
    }

.blue-button {
    padding: 6px 12px 6px 48px;
    background: #e4002b url('../images/plus-sign.png') no-repeat 10px center;
    background-size: 20px 20px;
    font-size: 16px;
    line-height: 19px;
    color: #fff !important;
    border-radius: 6px;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none !important;
    text-transform: uppercase;
}
.blue-button:hover {
    background: #707070 url('../images/plus-sign.png') no-repeat 10px center;
    background-size: 20px 20px;
}


.searchbox {
}
.searchbox input[type=text] {
    float: left;
    padding-right: 60px;
}
.searchbox input[type=submit], .searchbox input[type=button] {
    height: 45px;
    width: 45px;
    background: #b3b1b1 url('../images/searchbox-button.png') no-repeat center center;
    background-size: 30px 30px;
    float: right;
    border-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid #848484;
    cursor: hand;
    cursor: pointer;
    margin: 0;
    margin-left: -45px;
}
.searchbox input[type=submit]:hover, .searchbox input[type=button]:hover {
    background: #bebcbc url('../images/searchbox-button.png') no-repeat center center;
    background-size: 30px 30px;
}
@media (max-width: 800px) {
    .searchbar .left, .searchbar .center, .searchbar .right {
        float: none;
        width: 100%
    }
    .searchbar .center {
        margin: 20px 0;
        padding-top: 0;
    }
    .searchbar .right {
        margin: 20px 0;
    }
    .searchbar .right.align {
        text-align: left;
    }
    .searchbar .right a.button {
        margin-top: 0;
    }
}




/* grid view */
.gv-wrapper {
    margin: 30px 0 20px 0;
}
.gv-wrapper table {
    font-size: 16px !important;
    line-height: 16px;
    width: 100%;
}
.gv-header th {
    background: #707372;
    color: #fff !important;
    height: 38px !important;
    padding: 4px 4px 4px 14px;
    vertical-align: middle;
    text-align: left;
}
.gv-header th:first-child {
    border-left: 1px solid #0166cc;
}
.gv-header th:last-child {
    border-right: 1px solid #0166cc !important;
}
.gv-header th:last-child {
    border-right: none;
}
.gv-header th.centered {
    text-align: center;
}
.gv-header a {
    color: #fff !important;
    text-decoration: none;
}
.gv-header a:hover {
    text-decoration: none !important;
}
tr.gv-row {
    height: 28px !important;
    line-height: 24px;
}
tr.grey {
    background: #f6f5f5 !important;
}
tr.gv-row-hand {
    cursor: pointer;
    cursor: hand;
}
tr.gv-row:hover {
    background: #f2ede7;
}
tr.gv-row:hover td {
    background: transparent;
}
.gv-row td {
    border: 1px solid #ccc;
    color: #515151;
    padding: 10px 10px 10px 14px;
    text-align: left;
    vertical-align: middle;
}
/*
.gv-row td:first-child {
    width: 200px;
}
*/
.gv-row td.centered {
    text-align: center;
}
.gv-row tr {
    background: #f6f5f5 !important;
    line-height: 24px;
}
.gv-row td.no-padding {
    padding: 0;
}
.gv-row tr td {
    padding: 10px 10px 10px 14px;
}
    /*
.gv-row tr td:first-child {
    border-left: none;
    text-align: right;
    vertical-align: top;
    width: 300px;
}
*/
.gv-row tr td:last-child {
    border-right: none;
}
.gv-row a {
    color: #e4002b;
    text-decoration: none;
    cursor: pointer;
    cursor: hand;
}
.gv-row a:hover {
    text-decoration: underline;
}
.gv-row .button {
    padding: 6px 12px;
    background: #0078c5;
    font-family: inherit;
    color: #fff !important;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
}
.gv-row .button:hover {
    text-decoration: none !important;
    background: #0088df;
}
.gv-row input {
    background: none;
    border: none;
}
.gv-pager {
    background-color: #fff;
}
.gv-pager table {
    border: none;
    float: right;
    margin-top: 8px;
    width: auto;
}
.gv-pager td {
    padding-right: 4px;
}
.gv-pager td:last-child {
    padding-right: 0;
}
.gv-pager table td {
    height: 22px;
    text-align: center;
    vertical-align: middle;
    width: 23px;
}
.gv-pager table td span {
    background: #eee;
    border: 1px solid #ccc;
    color: #515151;
    display: inline-block;
    height: 22px;
    padding-top: 2px;
    width: 23px;
}
.gv-pager table td a {
    background: #fff;
    border: 1px solid #ccc;
    color: #515151 !important;
    display: inline-block;
    height: 22px;
    padding-top: 2px;
    text-decoration: none;
    width: 23px;
}
.gv-pager table td a:hover {
    background: #eee;
    text-decoration: none !important;
}




.datePicker {
    background-image: url('../images/calendar-icon.png') !important;
    background-repeat: no-repeat !important;
    background-position: 98% center !important;
    width: 150px!important;
}
.text-right {
    text-align: right;
}



    /* project docs */
    table.doc-list {
        text-align: left;
        margin-bottom: 20px;
    }
    table.doc-list td {
        padding: 2px 4px;
    }
    table.doc-list .icon-link {
        display: inline-block;
        height: 16px;
        width: 16px;
        visibility: hidden;
        vertical-align: middle;
        margin-top: 2px;
    }
    table.doc-list .delete-icon {
        background: url('/app-resources/images/delete-icon.png') no-repeat;
    }
    table.doc-list tr:hover .icon-link {
        visibility: visible;
    }






a.grey-button {
    background: #707070;
    margin-top: 12px;
    padding: 6px 10px;
    font-size: 18px;
    color: #fff !important;
    display: inline-block;
    border: 1px #ccc solid;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none !important;
}
a.grey-button:hover {
    background: #808080;
}
a.disabled {
    background: #bbbbbb;
}
a.disabled:hover {
    background: #bbbbbb;
}


}
.messages-container .title-bar {
    margin-bottom: 8px;
}
.messages-container .title-bar h3 {
    display: inline-block;
    float: left;
}
.messages-container .title-bar a {
    float: right;
}
.messages-container .editor {
    margin-bottom: 20px!important;
}
.messages-container .editor .grey-button {
    margin-top: 4px;
}
.message {
    margin-top: 12px;
}
.message .title-bar2 {
}
.message .title-bar2 span {
    font-style: italic;
    display: inline-block;
    float: left;
}

    .message .title-bar2 .edit-message-icon {
        background: url('/app-resources/images/edit-icon-16x16.png') no-repeat;
        display: inline-block;
        height: 16px;
        width: 16px;
        visibility: hidden;
        vertical-align: middle;
        margin-top: 8px;
        float: right;
    }

    .message .title-bar2 .delete-message-icon {
        background: url('/app-resources/images/delete-icon.png') no-repeat;
        display: inline-block;
        height: 16px;
        width: 16px;
        visibility: hidden;
        vertical-align: middle;
        margin-top: 8px;
        float: right;
    }

.pipe-separator {
    color: #999;
    display: inline-block;
    float: right !important;
    margin: 4px 8px 0 8px;
    visibility: hidden;
}

.message .title-bar2:hover .delete-message-icon, .message .title-bar2:hover .edit-message-icon, .message .title-bar2:hover .pipe-separator {
    visibility: visible;
}

.message .message-content {
    margin: 8px 0 8px 12px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #eee;
}
.message-attachments-container {
    margin: 4px 0 20px 12px;
}
.message-attachments-container-add {
    margin-bottom: 8px;
}
.message-attachment {
    margin-top: 4px;
}
.message-attachment .delete-message-attachment-icon {
    background: url('/app-resources/images/delete-icon.png') no-repeat;
    display: inline-block;
    height: 16px;
    width: 16px;
    visibility: hidden;
    vertical-align: middle;
    margin-top: 4px;
    margin-left: 8px;
}
.message-attachment:hover .delete-message-attachment-icon {
    visibility: visible;
}
a.message-attachment-icon {
    background: #707070 url('/app-resources/images/attachment-icon.png') center center no-repeat;
    margin-top: -4px;
    display: inline-block;
    border: 1px #ccc solid;
    border-radius: 5px;
    cursor: pointer;
    width: 36px;
    height: 32px;
    text-decoration: none !important;
    vertical-align: middle;
}
a.message-attachment-icon:hover {
    background: #808080 url('/app-resources/images/attachment-icon.png') center center no-repeat;
}


input.paste-icon2 {
    background-color: #707070 !important;
    color: transparent !important;
    width: 36px !important;
    height: 34px !important;
    cursor: pointer !important;
    background-image: url('/app-resources/images/paste-icon.png') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}
input.paste-icon2:hover {
    background-color: #808080 !important;
}



.home-button {
    width: 200px;
    float: left;
    margin-right: 20px;
}
.home-button img {
    width: 100%;
    height: auto;
}





.pageTitle {
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    color: #e4002b;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}





.icon-link {
    display: inline-block;
    height: 16px;
    width: 16px;
    visibility: hidden;
}
.delete-icon {
    background: url('/app-resources/images/delete-icon.png') no-repeat;
}
tr:hover .icon-link {
    visibility: visible;
}
.icon-button {
    border: 1px solid #e4002b;
    border-radius: 6px;
    cursor: hand;
    cursor: pointer;
    display: inline-block;
    height: 36px;
    width: 36px;
    vertical-align: top;
    margin: 0;
    padding: 0;
}
    .icon-button:hover {
        background-color: #707372 !important;
    }


/* project-details2.aspx - this will be needed */
/* see C:\Users\ptrau\AppWare\Clients\Group G Direct\Projects\Bradford White\Applications\Web\bwportal\TEMP\PRS Project Detail Views 2021-01-22 of Uncertain Goals */
input[type=button].browse-button {
    background: #e4002b url('/app-resources/images/magnifying-glass-icon.png') no-repeat center center;
}


input.paste-icon {
    background: #e4002b url('/app-resources/images/paste-icon.png') no-repeat center center;
    color: transparent;
    height: 36px;
    width: 36px;
}




/* project documents */
.doc-wrapper {
}
.doc-title-bar {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.doc-title-bar h2 {
    border: none;
    color: #e4002b;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    float: left;
    margin-top: 8px;
}
.doc-title-bar div {
    float: right;
}
.doc-message-bar {
    display: none;
    margin-bottom: 8px;
}


table.doc-list {
    width: 100%;
}
table.doc-list td {
    padding: 2px 4px;
}
table.doc-list td:first-child {
    width: 50px;
}
table.doc-list td:last-child {
    text-align: center;
    vertical-align: middle;
    padding-top: 0;
    width: 20px;
}
table.doc-list a:hover {
    text-decoration: underline;
}

table.doc-list tr:hover {
    background: #f2ede7;
}
table.doc-list tr:hover td {
    background: transparent;
}


.doc-message-bar {
    display: none;
    margin-bottom: 8px;
}



.file-upload-hider {
    height: 0;
    overflow: hidden;
    width: 0;
}



label.wide-label {
    width: 150%;
    margin: 0 0 12px 0;
}


/* project search */
table.project-search, table.filter-search {
    width: 530px;
}
    table.project-search td, table.filter-search td {
        padding: 8px 4px;
    }
        table.project-search td:first-child, table.filter-search td:first-child {
            width: 30px;
        }
        table.project-search td:nth-child(2), table.filter-search td:nth-child(2) {
            width: 170px;
        }
    table.project-search table, table.filter-search table {
        margin-top: 8px;
    }
        table.project-search table td:last-child, table.filter-search table td:last-child {
            text-align: right;
        }
    table.project-search tr.err-msg span, table.filter-search tr.err-msg span {
        color: #c00;
    }

#filterPicker {
    position: absolute;
    background: #fff;
    border: 1px solid #e4002b;
    width: 160px;
    display: none;
    z-index: 100;
}
#filterPicker a {
    color: #e4002b;
    display: block;
    padding: 4px 8px;
    text-decoration: none;
}
#filterPicker a:hover {
    color: #fff!important;
    background: #e4002b;
}

.circle {
    border: 1px solid #e4002b;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px; /* hack */
}
.circle.plus:before, .circle.plus:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e4002b;
}
.circle.plus:before {
    width: 2px;
    margin: 3px auto;
}
.circle.plus:after {
    margin: auto 3px;
    height: 2px;
}
.circle.minus:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e4002b;
    margin: auto 4px;
    height: 2px;
}









table.whats-new {
}
table.whats-new td {
    border-bottom: 1px solid #ccc;
    padding: 2px 4px;
}
table.whats-new td:first-child {
    width: 120px;
}





.control-wrapper {
    margin-bottom: 20px;
}
.control-wrapper h3 {
    border-bottom: 1px solid #ccc;
    margin-bottom: 8px;
    padding-bottom: 6px;
}



.checkbox-wrapper {
    float: left;
    margin-right: 8px;
}
.checkbox-wrapper input[type='checkbox'] {
    margin-right: 6px;
}

.project-type-checkbox-wrapper {
    margin-bottom: 4px;
    margin-right: 20px;
}

.project-type-checkbox-wrapper input[type='checkbox'] {
    margin: 4px 6px 0 2px;
}

.project-type-checkbox-wrapper span {
    padding-bottom: 2px;
}

.team-member-checkbox-wrapper {
    width: 160px;
}




.small-blue-button {
    background: #e4002b;
    border: 1px solid #e4002b;
    border-radius: 6px;
    color: #fff!important;
    cursor: pointer;
    display: inline-block;
    font: inherit;
    padding: 4px 0;
    text-align: center;
    text-decoration: none;
    width: 100px;
}
    .small-blue-button:hover {
        background: #707372;
        border: 1px solid #707372;
        color: #fff !important;
        text-decoration: none;
    }
.small-blue-button-disabled {
    background: #707372 !important;
    border: 1px solid #707372 !important;
}




.italic {
    font-style: italic;
}



.badge {
    height: 28px;
    width: 28px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    background: #e4002b;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    line-height: 16px;
    text-decoration: none;
}
.badge:hover {
    background: #204b72;
    color: #fff;
}

.small-badge {
    height: 22px;
    width: 22px;
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
}




    .project-general-editor {
    }

    .project-general-editor div:nth-child(1) {
        float: left;
        margin-right: 30px;
        width: 420px;
    }

    .project-general-editor div:nth-child(2) {
        float: left;
        margin-right: 30px;
        width: 600px;
    }

    .project-general-editor div:nth-child(3) {
        float: right;
        text-align: right;
        width: 110px;
    }

    .project-general-editor li {
        margin-bottom: 10px;
    }

    @media (max-width: 1260px) {
        .project-general-editor div:nth-child(1) {
            float: left;
            margin-right: 30px;
            width: 35%;
        }

        .project-general-editor div:nth-child(2) {
            float: left;
            margin-right: 0;
            width: 60%;
        }

        .project-general-editor div:nth-child(3) {
            float: none;
            margin-top: 12px;
            text-align: left;
            width: 100%;
        }

        .project-general-editor li {
            display: inline-block;
            margin-bottom: 0;
            margin-right: 4px;
        }

    }

    @media (max-width: 800px) {
        .project-general-editor div:nth-child(1) {
            float: none;
            margin-right: 0;
            width: 100%;
        }

        .project-general-editor div:nth-child(2) {
            float: none;
            margin-right: 0;
            margin-top: 12px;
            width: 100%;
        }

    }




.popup-container {
    background: #fff;
    border: 1px solid #e4002b;
    border-radius: 4px;
    display: none;
    left: 50%;
    padding: 20px 30px;
    position: absolute;
    top: 0;
    transform: translate(-50%, 0);
    z-index: 100;
}

#page-overlay {
    background: #eee;
    filter: alpha(opacity=30);
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

#docLibraryPopup {
    width: 1000px;
}

@media (max-width: 1100px) {
    #docLibraryPopup {
        left: 0;
        margin: 0 20px;
        right: 0;
        transform: translate(0, 0);
        width: auto;
    }
}

#crmEntriesPopup {
    width: 600px;
}

#crmEntriesPopup td:first-child {
    width: 140px;
}


@media (max-width: 1100px) {
    #crmEntriesPopup {
        left: 0;
        margin: 0 20px;
        right: 0;
        transform: translate(0, 0);
        width: auto;
    }
}



.bold {
    font-weight: bold;
}
.blue {
    color: #e4002b;
}
.red {
    color: #c00;
}


td.top-align {
    vertical-align: top;
}

td.lit-request-brand-icon {
    padding: 12px 2px 0 2px;
    text-align: center;
    width: 16px!important;
}

td.lit-request-product {
    max-width: 200px;
    min-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

td.lit-request-doc-url {
    max-width: 300px;
    min-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



img.project-priority-icon {
    margin-right: 8px;
}


sup {
    font-size: small;
    vertical-align: top;
}


/* overlay and popup */
.overlay-container {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 100000; /* 2147483647; */
}

.overlay-backdrop {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background: rgba(0,0,0,0);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

.overlay-fade-in {
    -o-transition: background .5s ease-out;
    -moz-transition: background .5s ease-out;
    -webkit-transition: background .5s ease-out;
    background: rgba(0,0,0,.75);
    transition: background .5s ease-out;
}

.overlay-fade-out {
    -o-transition: background .5s ease-out;
    -moz-transition: background .5s ease-out;
    -webkit-transition: background .5s ease-out;
    background: rgba(0,0,0,0);
    transition: background .5s ease-out;
}

.overlay-popup {
    background: #fff;
    color: #000;
    float: left;
    font-size: 0.8em;
    height: 100%;
    left: -1000px;
    min-width: 300px;
    max-width: 600px;
    position: absolute;
    top: 0;
    z-index: 2000000;
}

@media (max-width: 800px) {
    .overlay-popup {
        width: 100%;
    }
}

.popup-wrapper {
    height: inherit;
    margin: 10px 20px;
}

.popup-header {
    clear: both;
}

.popup-header h1 {
    color: #e4002b;
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
}

.popup-header a.close {
    color: #e4002b;
    float: right;
    font-size: 1.4em;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}

.popup-header a.close:hover {
    color: #98afcc;
}

.popup-content {
    height: inherit;
    margin-top: 10px;
}

body.noscroll {
    overflow: hidden;
}





.please-wait {
    background: #4d7aa5 !important;
    border: 1px solid #4d7aa5 !important;
    cursor: progress !important;
}

.std-button {
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    -webkit-transition: background 0.2s ease;
    background: #e4002b;
    border: 1px solid #e4002b;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font: inherit;
    padding: 4px 12px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.std-button:hover {
    background: #4d7aa5;
    border: 1px solid #4d7aa5;
}

.err-text {
    color: #c00;
}




/* project activity popup */
#projectActivityPopup {
}

#noProjectActivityMessage {
    display: none;
}

#projectActivityGetErrorMessage {
    display: none;
}

#projectActivityItemsWrapper {
    height: 85%;
    margin-bottom: 20px;
    overflow: auto;
}

#projectActivityItemsWrapper table {
    width: 100%;
}

#projectActivityItemsWrapper table td {
    border-bottom: 1px solid #ccc;
    padding: 8px 6px 8px 2px;
    overflow-wrap: break-all;
    word-break: break-word;
}

#projectActivityItemsWrapper table td:first-child {
    text-align: right;
    width: 135px;
}

#exportProjectActivityButton {
}




/* summernote wysiwyg editor */
.note-insert {
    display: none;
}

.note-statusbar {
    display: none;
}

.note-editable {
    height: 200px;
}

.note-editable i {
    font-style: italic;
}

.note-editable p, .message p {
    padding: 2px 0;
}

.note-editable ul, .message ul {
    list-style: disc;
    margin: 2px 0 2px 12px;
}

.note-editable ol, .message ol {
    list-style: decimal;
    margin: 2px 0 2px 12px;
}

.modal-dialog label {
    padding-left: 0 !important;
}

.modal-dialog input[type=checkbox] {
    margin-left: 0 !important;
    margin-right: 4px;
    position: relative !important;
}






    .prs-edit {
    }

    .prs-edit .col1 {
        float: left;
        width: 320px;
    }

    .prs-edit .col2 {
        float: left;
        margin: 0 24px;
        width: 650px;
    }

    .prs-edit .col3 {
        float: left;
        width: 90px;
    }

    .prs-edit ul.button-list {
    }

    .prs-edit ul.button-list li {
        margin-bottom: 10px;
    }

    .prs-edit .note-editable {
        height: 350px;
    }

    .prs-description-box {
        border: 1px solid #ccc;
        border-radius: 6px;
        max-height: 350px;
        overflow: auto;
        padding: 12px 8px;
    }

    .prs-edit .note-editable p, .prs-description-box p {
        color: #000;
        font-size: 14px;
        line-height: 16px;
        margin: 0;
        padding: 0 0 10px 0;
    }

    .prs-description-box ol, ul {
        margin: 6px 0;
        padding: 4px 0 4px 18px;
    }

    .prs-description-box ol {
        list-style: decimal;
    }

    .prs-description-box ul {
        list-style: disc;
    }



    .user-notices {
        background: #d0dbe8;
        padding: 8px 16px;
    }

    .user-notice {
        color: #000;
        font-size: 0.8em;
        font-weight: bold;
    }

    .user-notice a {
        color: #fff;
        background: #e4002b;
        border-radius: 6px;
        font-size: smaller;
        display: inline-block;
        margin-left: 10px;
        padding: 0 8px;
        -webkit-transition: background 0.2s ease;
        -moz-transition: background 0.2s ease;
        -o-transition: background 0.2s ease;
        transition: background 0.2s ease;
    }

    .user-notice a:hover {
        background: #4d7aa5;
    }



.backToTop {
    position: fixed;
    bottom: 15px;
    right: 20px;
    background: url(/app-resources/images/backToTopArrow.png) left top no-repeat;
    width: 25px;
    height: 23px;
}

.backToTop a {
    text-indent: -9999px;
    display: block;
}


.link-button {
    background: #e4002b;
    border-radius: 6px;
    color: #fff!important;
    font-size: 18px;
    padding: 4px 12px;
    text-decoration: none;
}
    .link-button:hover {
        background: #707372;
        color: #fff !important;
        text-decoration: none;
    }

.disabled-link-button, .disabled-link-button:hover {
    background: #bbbbbb !important;
    color: #fff !important;
    cursor: not-allowed;
    text-decoration: none !important;
}

a.blue-button {
    background:#e4002b;
    border-radius:6px;
    color:#fff;
    padding:6px 18px;
    text-decoration:none;
    text-transform:none;
}

    a.blue-button:hover {
        background:#4d7aa5;
    }



#calProjectCategoriesWrapper {
    height:90%;
    margin-bottom:20px;
    margin-top:10px;
    overflow:auto;
}

ul.no-bullets {
    list-style-type:none;
    padding:2px 0;
    margin:0;
}

ul.indent {
    padding-left:18px;
}

li {
    padding:2px 0;
}



input[type=checkbox].cal-cat-filter {
    margin-right:8px;
}

a.cal-cat-accordian {
    font-weight:bold;
    text-decoration:none;
}

a.larger {
    font-size:1.1em;
}

a.cal-cat-accordian:hover {
}

div.cal-cat-container {
    float:left;
    margin-right:14px;
}

div.cal-cat-container ul:first-of-type li a {
 //   font-size:1.1em;
}

div.cal-cat-container li span {
    color:#777;
}


/*div.cal-cat-container:first-child {
    margin-left:0;
}*/


.overlay-popup-no-max-width {
    background: #fff;
    color: #000;
    float: left;
    font-size: 0.8em;
    height: 100%;
    left: -1000px;
    min-width: 300px;
    position: absolute;
    top: 0;
    z-index: 2000000;
}

@media (max-width: 800px) {
    .overlay-popup-no-max-width {
        width: 100%;
    }
}


.dark-blue-button {
    padding: 6px 18px 6px 18px;
    background: #e4002b;
    font-size: 16px;
    line-height: 19px;
    color: #fff !important;
    border-radius: 6px;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none !important;
}

    .dark-blue-button:hover {
        background: #707372;
    }



.cal-project-cat {
    cursor: pointer;
    line-height: 14px;
    padding: 2px 6px;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .cal-project-cat:hover {
        background: #ccffcc;
    }

.cal-project-cat-projects {
    border:1px solid #e4002b;
}

.cal-project-cat-communications {
    border:1px solid #4d7aa5;
}

.cal-project-cat-events {
    border:1px solid #98afcc;
}

.cal-project-label {
    color:#000;
    font-size:12px;
    font-weight:normal!important;
    padding:0;
}

a.cal-cat-filter-toggle {
    font-size:14px;
    font-weight:normal;
    text-decoration:underline;
}
a.cal-cat-filter-toggle:hover {
    text-decoration:none;
}





.cal-item {
    background-color: #fff;
}

    .cal-item:hover {
        background-color: #f1f1f1;
    }

.cal-item-open {
    background-color: #c5f0c5;
}

    .cal-item-open:hover {
        background-color: #dcf5dc;
    }

.cal-item-complete {
    background-color: #f6f6f6;
}

    .cal-item-complete:hover {
        background-color: #fcfcfc;
    }

.cal-item-canceled {
    background-color: #f0c5cb;
}

    .cal-item-canceled:hover {
        background-color: #f5dce0;
    }

.cal-item-paused {
    background-color: #f0edc5;
}

    .cal-item-paused:hover {
        background-color: #f5f5dc;
    }



div.cat-container {
    float: left;
    margin-right: 14px;
}

    div.cat-container li span {
        color: #777;
        vertical-align: 1px;
    }

a.cat-accordian {
    color: #e4002b;
    font-weight: bold;
    text-decoration: none;
}

    a.cat-accordian:hover {
        text-decoration: none;
    }

a.cat-accordian-larger {
    font-size: 1.1em;
}

input[type=radio].cat-picker {
    margin-right: 8px;
}


.prs-cats {
    margin: 24px 0;
    width: 800px;
}

.prs-cat-box {
    color: #777;
    float: left;
    margin-right: 40px;
    margin-top: 6px;
    width: 220px;
}

    .prs-cat-box h4 {
        color: #e4002b;
        font-size:1.1em;
        font-weight: bold;
        margin: 2px 0 8px 0;
    }

    .prs-cat-box a {
        color: #777;
        font-weight: bold;
        text-decoration: none;
    }

        .prs-cat-box a:hover {
            text-decoration: none;
        }

    .prs-cat-box ul {
        margin: 2px 0 2px 0;
        padding: 2px 0 2px 14px;
    }

    .prs-cat-box ul li {
        padding: 0;
    }

.prs-cat-box ul li.collapsed {
    display: none;
}

.prs-cat-box input[type="radio"] {
    margin-right: 8px;
}

.prs-cat-box li span {
    vertical-align: 1px;
}



table.commList {
    width: 100%;
}

    table.commList tr:hover {
        background-color: #ededed;
    }

table.commList th {
    font-weight:bold;
    padding:2px 4px;
}

table.commList td {
    padding: 2px 4px;
}

.center {
    text-align:center;
}

.right {
    text-align:right;
}

.note-icon {
    background-image:url('../images/note-icon-16x16.png');
    background-repeat:no-repeat;
    background-position:center, center;
    height:16px;
    width:16px;
}



.delete-icon {
    background-image:url('../images/delete-icon.png');
    background-repeat:no-repeat;
    background-position:center, center;
    display:inline-block;
    height:16px;
    vertical-align:middle;
    width:16px;
}

table.commList .delete-icon {
    visibility:hidden;
}

table.commList tr:hover .delete-icon {
    visibility:visible;
}




.title-bar {
    border-bottom: 1px solid #ccc;
    color: #e4002b;
    font-size: x-large;
    font-weight: bold;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-bottom: 6px;
    padding-top: 6px;
}

.title-bar__left {
    float: left;
}

.title-bar__right {
    float: right;
}

.clear-fix {
    overflow: auto;
    zoom: 1;
}

.warning--red {
    color: #ff0033;
}


.field-section {
    padding: 4px 0;
}

.text-container {
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    margin: 4px 0 0 0;
    max-height: 150px;
    overflow: auto;
    padding: 4px 6px;
}

.text-container p {
    color: #000;
    font-size: 1em;
    line-height: 1.45;
    padding-bottom: 0;
}

.split-page-column {
    margin-right: 20px;
    margin-top: 4px;
}

.split-page-column:last-child {
    margin-right: 0;
}

.split-page-column__left {
    float: left;
    width: 48%;
}

.split-page-column__right {
    float: right;
    width: 48%;
}


.message-wrapper {
    margin-bottom: 10px;
    margin-top: 6px;
}

.message-wrapper__left {
    float: left;
}

.message-wrapper__right {
    float: right;
}

.message-byline {
    color: #e4002b;
    font-style: italic;
    padding-left: 12px;
}

.message-textarea {
    background: #e9e9e9;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    margin: 4px 0 0 0;
    max-height: 150px;
    overflow: auto;
    padding: 4px 6px;
    width: 450px;
}

.message-textarea p {
    color: #000;
    font-size: 1em;
    line-height: 1.45;
    padding-bottom: 0;
}

.message-textarea a {
    color: #000;
    text-decoration: underline;
}

.message-textarea a:hover {
    text-decoration: none;
}

.message-textarea__lightblue {
    background: #707372;
    color: #fff;
}

.message-textarea__lightblue p {
    color: #fff;
}

.message-textarea__lightblue a {
    color: #fff!important;
    text-decoration: underline;
}

.message-textarea__lightblue a:hover {
    text-decoration: none;
}

a.doc-link {
    display: block;
    margin-top: 4px;
    text-decoration: underline;
}

a.doc-link:hover {
    text-decoration: none;
}



    .dot-menu {
        cursor: pointer;
    }

    .dot-menu:after {
        content: '\2807';
        color: #ccc;
        font-size: 20px;
        padding-left: 8px;
        -webkit-transition: color 250ms linear;
        -ms-transition: color 250ms linear;
        transition: color 250ms linear;
    }

    .dot-menu:hover:after {
        color: #999;
        -webkit-transition: color 250ms linear;
        -ms-transition: color 250ms linear;
        transition: color 250ms linear;
    }

    .context-menu {
        background: #fff;
        border: 1px solid #999;
        position: absolute;
        z-index: 1000;
    }

    .context-menu a {
        font-size: medium;
        display: block;
        padding: 4px 8px;
        text-decoration: none!important;
        white-space: nowrap;
    }

    .context-menu a:hover {
        background-color: #eee;
    }

    .message-holder--info {
        color: #fff;
        background-color: #4d7aa5;
        padding: 18px 24px;
    }

    .message-holder--info a {
        color: #fff !important;
        text-decoration: underline !important;
    }

    .message-holder--info a:hover {
        color: #fff;
        text-decoration: none !important;
    }


.ggweb-progress-bar {
    height: 6px;
}


.light-gray {
    color:#666;
}

.font-weight-normal {
    font-weight:normal!important;
}




.countdown-small__green {
    background: #44813f;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-weight: normal !important;
    padding: 4px 8px;
}

.countdown-small__orange {
    background: #d68139;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-weight: normal !important;
    padding: 4px 8px;
}

.countdown-small__red {
    background: #c13633;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-weight: normal !important;
    padding: 4px 8px;
}

.align-centered {
    text-align:center!important;
}



.error-message, .success-message, .info-message {
    color: white;
    padding: 18px 24px;
}

    .error-message a.close-btn, .success-message a.close-btn, .info-message a.close-btn {
        background: #f28121;
        color: white;
        display: inline-block;
        padding: 4px 16px;
        text-decoration: none;
    }

        .error-message a.close-btn:hover, .success-message a.close-btn:hover, .info-message a.close-btn:hover {
            background: #f2750b;
        }

.error-message {
    background: #882f46;
}

.success-message {
    background: #51882f;
}

.info-message {
    background: #0073bb;
}


.float-left {
    float: left;
}

.float-right {
    float: right;
}



.mc-status__green, .mc-status__orange, .mc-status__red {
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-weight: normal !important;
    padding: 2px 4px;
}

.mc-status__green {
    background: #44813f;
}

.mc-status__orange {
    background: #d68139;
}

.mc-status__red {
    background: #c13633;
}



#hero {
    width: 100%;
    height: auto;
}

.hero {
    line-height: 0;
    text-align: center;
}

    .hero img {
        width: 100%;
        height: auto;
    }



.text-btn {
    background: #e4002b;
    border: none;
    border-radius: 4px;
    color: #fff!important;
    cursor: pointer;
    font: inherit;
    font-size: 1em;
    padding: 8px 16px;
    margin-left: 16px;
    display: inline-block;
    transition: background 250ms ease-in-out;
}

    .text-btn:hover {
        background: #707372;
    }

    .text-btn:first-child {
        margin-left: 0;
    }

    .text-btn.selected {
        background: #707372;
        color: #fff!important;
    }

.text-link {
    font: inherit;
    font-size: 1em;
    text-decoration: underline;
}

    .text-link:hover {
        text-decoration: none;
    }

.icon-btn {
    display: inline-block;
}

.excel-icon__32x32 {
    background: url('/app-resources/images/icons/ms-excel-icon-32x32.png') no-repeat;
    vertical-align: middle;
    height: 32px;
    width: 32px;
}

input[type=checkbox] {
    margin-left: 16px;
}

    input[type=checkbox]:first-child {
        margin-left: 0;
    }


input[type=checkbox], input[type=radio] {
    accent-color: #e4002b;
}