/* App Styles test*/

* {
    /* This is a super important property for PDFjs in webkit browers, and the result of 4 hours of debugging... Thank you font nerdiness!*/
    -webkit-font-smoothing: antialiased !important;
}

body{
    background-color: #F6F8FA;
    color:#333;
    font-family: Helvetica, Arial, sans-serif;
}

.blue{color:#2A6DB7}
.orange{color:#f79533}
.yellow{color:#ecda37}
.gray{color:#828282;}
.lightgray{color:#A0A09E;}
.size12 { font-size:12px; }
.size13{ font-size:13px; }
.size14{ font-size:14px; }
.size15{ font-size:15px; }
.size16{ font-size:16px; }

.floatLeft{float:left}
.floatRight{float:right}

.bold{font-weight:bold;}
.notBold{font-weight:normal;}

.alignMiddle{vertical-align: middle;}
.alignCenter{text-align:center;}
.alignRight{text-align:right;}


a.tab:hover,
a.tab.active:hover{
    color:#ffffff;
}

a.tab.active {
    color: #C3D6D2;
}
a{
    color:#2A6DB7
}

#loading{
    background-color:#FFFFFF;
    position:fixed;
    z-index: 99999;
    font-size:10px;
    padding-top:20px;
    text-transform: uppercase;
    top: 85px;
    left:50%;
    width: 300px;
    margin-left:-150px;
    -moz-border-radius: 6px; /* Firefox */
    -webkit-border-radius: 6px; /* Safari, Chrome */
    border-radius: 6px; /* CSS3 */
    border: solid #DCDCDC 1px;
    margin-bottom:15px;
    text-align: center;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.jqmOverlay { background-color: #000; }



br.clear{
    clear:both;
}

.btn {
    cursor: pointer;
    display: inline-block;
    background-color: #FFF;
    padding: 8px 7px 9px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    color: #333;
    font-size: 13px;
    text-decoration: none;
    line-height: normal;
    border: 1px solid #bbb;
    font-weight: normal;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-transition: 0.1s linear all;
    -moz-transition: 0.1s linear all;
    -ms-transition: 0.1s linear all;
    -o-transition: 0.1s linear all;
    transition: 0.1s linear all;
}

.btn.submit{
    font-size:1.2em;
}

.btn:hover, .btn:focus {
    background-position: 0 -15px;
    color: #2A6DB7;
    border-color: #2A6DB7;
    text-decoration: none;
}

#publicBox{
    max-width: 1200px;
    margin:70px auto 40px auto;
    background-color: #FFFFFF;
    border: 1px solid #C4C4C4;
    border-bottom-color: #C4C4C4;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 960px) {
    #publicBox {
        width: 80%;
        min-width: 800px;
    }
}
#publicBoxContainer.submission {
    max-width: 1600px;
    position: absolute;
    right: 0;
    left: 0;
}

#publicMenu{
    border-top-left-radius:6px;
    border-top-right-radius:6px;
    -moz-border-radius-topleft:6px;
    -moz-border-radius-topright:6px;
    -webkit-border-top-left-radius:6px;
    -webkit-border-top-right-radius:6px;
    background-color: #e9e9e9;
    width:745px;
    height:25px;
    font-size:12px;
    font-weight:bold;
    padding-left:5px;
}

#publicMenu img{
    float:left;
    padding-right:4px;
    padding-top:4px;
}

#publicMenu p a{
    float:left;
    padding-top:7px;
    color:#BEBEBE;
    text-decoration: none;
}

.boldHeading1 {
    font-size: 21px;
    font-weight: bold;
    color: #333;
    line-height: 1.2em;
}
#publicContent{
    padding:8px;
}
@media only screen and (min-width: 600px) {
    #publicContent {
        padding:20px;
    }
}

    #publicHeader #publicTitle{
        flex-basis: 70%;
    }
    #publicHeader #publicTitle h1{
        font-size:27px;
        font-weight:bold;
        color:#2A6DB7;
        line-height:1.2em;
    }

    #publicHeader #publicTitle p{
        font-size:18px;
    }

    #publicHeader img{
        max-height: 50px;
        max-width: 100%;
        padding-top: 2px;
    }

    #publicHeader{
        display: flex;
        justify-content: space-between;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #EFEFEF;
    }


#publicList table.all{
    border: 1px solid #e5e5e5;
    font-size:13px;
    width:100%;

}

#publicList table.all tr td{
    padding:10px;
    font-size:12px;
}

#publicList table.all tr.odd{
    background-color:#f6f6f6;
}

#publicList table.all tr.project td{
    border:1px solid #E8E8E8;
    line-height:1.3em;
}

#publicList table.all tr.project td.projectName a{
    font-size:1.3em;
}

#publicList table.all thead tr.head{
    background: rgb(255,255,255); /* Old browsers */
    border:1px solid #dddddd !important;
    font-weight: bold;
    font-size: 16px;
    padding:10px;
    padding-top:13px;
    line-height:1.2em;
    border:1px solid #dddddd !important;
}


#publicList table.all thead tr.head th{
    font-weight:bold;
    font-size:14px;
    vertical-align:middle;
    background: rgb(255,255,255); /* Old browsers */
    border:1px solid #dddddd;
    padding: 7px;
}



#publicList table.all tr.titlebar{
    background: rgb(251,253,254); /* Old browsers */
}

#publicList table.all tr.titlebar td {
    vertical-align: middle;
}


#publicList table.all tr.titlebar td h2, h2{
    font-size:23px;
    font-weight:bold;
    color:#2A6DB7;
}

#publicList table.grouped {
    margin-left: 15px;
    border-left: medium solid #cfcfcf;
}

#publicList h3 {
    font-size:16px;
    font-weight:bold;
    line-height:1;
}

#publicList h4 {
    font-size:14px;
    font-weight:bold;
    line-height:1;
}

#publicList .groupHeading {
    margin-top: 20px;
}

#publicFooter{
    padding-top:20px;
    width:100%;
}
#portalIndexTabs h2 {
    font-size: 16px;
    color: inherit;
    font-weight: bold;
}

.publicFooterItem{
    padding:0 10px;
    font-size:12px;
    width:140px;
}

.publicFooterItemLeft{
    padding:0 10px 0 0;
    font-size:12px;
    display: flex;
    flex-wrap: wrap;
}

.publicFooterItem img{
    width:80px;
    height:auto;
    float:right;
}

.publicFooterItem #publicFooterPoweredBy{
    float:right;


    color:#333333;
    font-size:10px;
}

.badgeDaysLeft{
    padding:5px;
    background-color:#E4EFE0;
    color:#0C7C2E;
    width:20px;
    margin:0 auto;
    font-weight:bold;
}

.badgeDaysLeft.warning{
    background-color:#FFB56B;
    color:#694000;
}

a.back{
    font-size:13px;
}

div.head, h2.head{
    background: rgb(255,255,255); /* Old browsers */
    border:1px solid #dddddd;
    font-weight: bold;
    font-size: 16px;
    padding:10px;
    padding-top:13px;
    line-height:1.2em;
    color: #333;
}

#publicList div.head.invite{
    cursor:default;
}

#publicList .tabs-content div.content {
    padding: 0 !important;
    border-left: none !important;
    border-right: none !important;
}

#publicList div.content{
    border-left:1px solid #dddddd;
    border-right:1px solid #dddddd;
    font-size: 14px;
    padding:0 8px;
    line-height:1.5em;
}

@media only screen and (min-width: 600px) {
    #publicList div.content {
        padding:0 20px;
    }
}

#publicList div.content.last{
    border-bottom:1px solid #dddddd;

}


#publicList #buttons{
    position:relative;
    bottom:55px;
    left:20px;
}

#publicList div.content #meta{
    float: left;
    padding-right: 320px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding-top: 20px;
}

#calendarDetails{
    width: 300px;
    right: 0;
    position: absolute;
}

#calendar, #submissionInstructions{
    float:right;
    width: 300px;
    padding-bottom: 10px
}

    table.criteria{
        color:#333;
        font-size:12px;
        width:100%;
    }

    table.criteria tr{
        border-bottom: 1px solid #ebebeb;
    }

    table.criteria td{
        padding:7px;

    }

    table.criteria tr.odd{
        background-color:#fff;
    }

    table.criteria tr.done{
        background-color:#ebfeeb;
    }

    table.criteria tr.head{
        font-weight:bold;
        border-bottom: 2px solid #ebebeb;
    }



.head img{
    margin-top:-1px;
    float:left;
    padding-right:10px;
}

div.title{
    float:left;

}

#publicList .badgeDaysLeft{
    padding:3px;
}

table.form_row{
    width:95%;
}

table.form_row tr td.label{
    width:155px;
    text-align:right;
}

table.form_row tr td.field{
    width:250px;
    text-align:left;
}

table.form_row tr td.field input{
    width:95%;
    text-align:left;
}

#calendar .portalButtons{
    padding-top:15px;
/*  text-align:center; */
}

.error{
    width:649px;
    padding:10px;
    background:#f79533;
    color:#FFFFFF;
    font-size:16px;
    text-align:left;
    line-height: 1.3em;
}

.error ul li{
    padding-left:15px;
    list-style: disc inside;
}

div.statusTag{
    -moz-border-radius: 4px; /* Firefox */
    -webkit-border-radius: 4px; /* Safari, Chrome */
    border-radius: 4px; /* CSS3 */
    color:#ffffff;
    padding:4px 6px 4px 6px;
    font-size:12px;
    text-transform: uppercase;
    background-color:#1C7DB7;
    font-weight:bold;
    margin:0 auto;
    text-align: center;
}

div.statusOpen {background-color:#FFB56B; color:#694000;}
div.statusReopened {background-color:#FFB56B; color:#694000}
div.statusClosed {background-color:#6E6E6C;}
div.statusAwarded {background-color:#018A27;}
div.statusLive {background-color: #018A27;}
div.statusPending {background-color: #ecda37;}
div.statusCancelled {background-color: #DD0000;}

div.contractStatusPending {background-color:#e2ce10;}
div.contractStatusActive {background-color:#1C7DB7;}
div.contractStatusExpired {background-color:#6E6E6C;}
div.contractStatusTerminated {background-color:#DD0000;}
div.contractStatusTermExpired {background-color:#FFB56B; color:#694000;}

div.sysReqContainer{
    height:auto;
    overflow:visible;
}

div.sysReq{
    float:left;
    padding:10px;
}

div.sysReq.caution{
    background-color:#f79533;
    color:#FFFFFF;
}

div.sysReq.caution a{
    color:#FFFFFF;
}

div.sysReq div.sysReqMessage{
    width:90%;
    margin: auto;
    font-size: 14px;
    line-height: 1.5em;
}

div#sysReq-submissionPrep {
    padding: 20px;
}

input, textarea, select, .uneditable-input {
    display: inline-block;
    padding: 6px;
    font-size: 13px;
    line-height: normal;
    color: #333;
    border: 1px solid #ccc;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
select {
    background-color: #fff;
}

div.submit{
    float:left;
    height:380px;
}

div.submitStep1{
    float:left;
    width:390px;
}

    div.submitStep1 div.formItem{
        float:left;
        width:50%;
        text-align:left;
        margin-top:20px;
    }

    div.submitStep1 div.formItem.full{
        width:98%;
    }

    div.submitStep1 div.formItem input{
        width:90%;
    }

    div.submitStep1 div.formItem.full input{
        width:98%;
    }

    div.submitStep1 div.formItem label{
        font-size:80%;
        text-transform: uppercase;
        font-weight:bold;
    }

    div.submitStep1 div.formItem p.warning{
        font-size:90%;
        background-color: #f79533;
        color:#FFFFFF;
        padding:2px 3px;
        width:90%;
        margin-top:3px;
        display:none;
        font-weight:bold;
    }

div.submitToggleCreate,
div.submitToggleLogin{
    float:right;
    padding: 0 0 0 20px;
    width:280px;
    border-left:1px solid #dddddd;
    height:370px;
}

div.submitToggleCreate p,
div.submitToggleLogin p{
    padding:0 10px 0 20px;
}

ul.wordingSlots, ul.publicDocs{
    margin-left:20px;
    list-style-type: disc;

}

ul.wordingSlots li, ul.publicDocs li {
    line-height:1.3em;
}

ul.publicDocs li {
  padding-bottom:15px;
}

ul.publicDocs li:last-child
{
  padding-bottom:0px;
}

.publicFooterItemLeft ul li{
    display: inline-block;
    list-style-type: none;
    padding-right: 20px;
    white-space: nowrap;
    padding-top: 5px;
}

/* Prepare Submission */

.prepareSubmissionOptionGroup {
    border: 1px dotted #333; padding: 20px 10px;
}

.prepareSubmissionOptionGroup input,
.prepareSubmissionOptionGroup select,
.prepareSubmissionOptionGroup .placeHolder {
    width:250px;
    box-sizing: border-box;
}

.prepareSubmissionOptionGroup input[type="text"],
.prepareSubmissionOptionGroup select,
.prepareSubmissionOptionGroup .placeHolder {
    height: 30px;
}

.prepareSubmissionOptionGroup .btn {
    margin:0;
}

.prepareSubmissionContent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

#createUserFormContainer {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #efefef;
    font-size: 14px;
}

#createUserFormContainer *,
#createUserFormContainer *:before,
#createUserFormContainer *:after {
    box-sizing: inherit;
}

#createUserForm {
    width: 400px;
    margin: 0 auto;
    padding: 20px 0;
}

#createUserForm .notificationBar {
    margin: 0 0 20px;
}

#createUserForm label {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
}

#createUserForm input {
    width: 400px;
}

#createUserForm input[readonly] {
    background-color: #ddd;
}

#createUserForm .createUserFormRow {
    margin-bottom: 20px;
}

.readmore {
    overflow: auto;
    line-height: 1.35em;
    max-height: 1.35em;
}

#modal_WelcomeReviewers{
    width: 800px;
    margin-left:-400px;
}

.warning-link {
    color: #FFFFFF;
}

.warning-notice, .success-notice, .info-notice {
    color:#FFFFFF;
    padding:10px 0;
    font-size:14px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    line-height: 1.5em;
    padding: 15px;
}

.warning-notice {
    background-color: #FFB56B;
    color: #694000;
}

.success-notice {
    background-color: #018A27;
}

.info-notice {
    background: #E4EDF6;
    color: #2A4372;
}

.title_count {
    font-weight: normal;
    color: #2A6DB7;
}

#signedOpportunityNonDisclosureAgreementForm .declaration-container {
    height: 350px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
}

.declaration-container ol,
.declaration-container ul {
    margin-left: 1.4rem;
}

.declaration-container blockquote{
    line-height: 1.6;
    color: #9c9c9c;
    font-size: 13px;
}

#signedOpportunityNonDisclosureAgreementForm label.reset.text-input {
    display: inline-block;
    margin-bottom: 3px;
}

#signedOpportunityNonDisclosureAgreementForm .full-width {
    width: 100%;
}

#invited-auctions-table span.auction-status {
    text-transform: uppercase;
    font-size: 1.0em;
    font-weight: bold;
    color: #FFFFFF;
    padding: 2px 4px;
    border-radius: 4px;
}

#invited-auctions-table span.auction-status.live {
    background-color: green;
}

#invited-auctions-table span.auction-status.complete {
    background-color: gray;
}

#invited-auctions-table span.auction-status.pending {
    background-color: yellow;
}

.statusBadgeSmall1,
.statusBadgeSmall2,
.statusBadgeSmall3,
.statusBadgeSmall4,
.statusBadgeSmall5,
.statusBadgeSmall6,
.statusBadgeSmall7,
.statusBadgeSmallAwarded,
.statusBadgeDone,
.statusBadgeBad,
.commodityCodeBadge,
.statusBadgeSmallDraft
{
    display: inline;
    width: auto;
    text-transform: uppercase;
    font-size:0.8em;
    color:#FFFFFF;
    background-color:grey;
    padding:3px 4px;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight:bold;
}

.statusBadgeSmall7, .projectStatus7 { background-color: #DD0000; }
.statusBadgeSmallAwarded, .projectStatus6 { background-color: #018A27; }
.statusBadgeSmall6, .projectStatus6 { background-color: #FFB56B; color: #694000; }
.statusBadgeSmall5, .projectStatus5 { background-color: #6E6E6C; }
.statusBadgeSmall4, .projectStatus4 { background-color: #6E6E6C; }
.statusBadgeSmall3, .projectStatus3 { background-color: #1C7DB7; }
.statusBadgeSmall2, .projectStatus2 { background-color: #FFB56B; color: #694000; }
.statusBadgeSmall1, .projectStatus1 { background-color: #e2ce10; }
.commodityCodeBadge { background-color: #1C7DB7; }
.statusBadgeSmallDraft { background-color: #673494; }

/*-------------------------------------------------------------------------------------*/



/* Always at end of file */
strong, b, strong *, b * { font-weight: bold !important; }
em, i, em *, i * { font-style: italic !important; }
.clear { clear: both !important; }

.sectionRowContent {
    padding-top: 20px;
}
