/* Set padding to keep content from hitting the edges */
.body-content {
    padding: 0px 15px 0px 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*max-width: 280px;*/
}

:root {
    --nav-bg-color: white;
    --nav-text-color: #00688f;
    --nav-highlight-color: #fac61b;
    --body-button-color: #009a68;
    --body-text-color: #212529;
}

.mainDiv {
    max-width: 100%;
}

.marginsBody {
    margin-left: 3%;
    margin-right: 3%;
}

body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: var(--body-text-color);
}

label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

.DocumentSetTitle {
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
    margin-bottom: 8px;
}

.MOCFrame {
    width: calc( 100% + 50px);
    margin-left: -35px;
    height: 800px;
    overflow: auto;
    border: none;
}

.btn-primary {
    color: #ffffff !important;
    background-color: var(--body-button-color) !important;
    border-color: var(--body-button-color) !important;
}

.CurrentNav {
    font-weight: bold;
    font-size: 18px;
}

.CurrentNavDropDown > a {
    font-weight: bold !important;
    font-size: 14px;
}

.HiddenOption {
    display: none;
}

#SubmissionsForm {
    display: flex;
}

.DocumentSetSelector {
    height: 26px;
    margin-left: 15px;
    align-self: center;
    width: max-content;
}

.SubmissionControl {
    margin-top: 10px;
}

.SelectedSubmissionStatus {
    margin-left: 20px;
    height: 26px;
    display: flex;
    flex-direction: row;
}

.SelectedSubmissionStatusLabel {
    font-weight: bolder;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.SelectedSubmissionStatusValue {
    margin-left: 5px;
    border-radius: 3px;
    background-color: aliceblue;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 4px;
    padding-left: 4px;
    border: 1px solid gray;
}

/*Nav Bar Styling*/
.NavUserInfo {
    border-left: 2px solid var(--nav-text-color);
    height: 50px;
    flex-flow: nowrap;
    justify-content: center;
}

.NavFloatRight {
    display: flex;
    flex-direction: row;
    margin-left: auto;
}

.NavHelpLink {
    height: 50px;
    flex-flow: nowrap;
    justify-content: center;
    margin-right: 10px;
}

.HelpLink {
    background: transparent;
    height: 50px;
    width: 50px;
}

    .HelpLink svg {
        fill: var(--nav-text-color);
        height: 100%;
        width: auto;
    }

        .HelpLink :hover {
            fill: var(--nav-highlight-color);
        }

.NavUserName {
    color: var(--nav-text-color) !important;
    margin: 10px;
    height: 50px;
}

.NavSignOut {
    height: 50px;
    align-self: center;
    white-space: nowrap;
    padding-top: 10px;
}

    .NavSignOut > a {
        font-size: 14px !important;
        font-weight: normal;
        color: var(--nav-text-color) !important;
    }

        .NavSignOut > a:hover {
            background-color: var(--nav-bg-color);
        }

.NavSignIn {
    margin-left: 10px;
    align-self: center;
    white-space: nowrap;
}

.NavSignIn > a {
    font-size: 14px !important;
    font-weight: normal;
    color: var(--nav-text-color) !important;
}

    .NavSignIn > a:hover {
        background-color: var(--nav-bg-color);
    }

.navbar-nav > li > a {
    /*padding-top: 15px;*/
    background-color: var(--nav-bg-color);
}

    .navbar-nav > li > a:hover {
        background-color: var(--nav-bg-color);
    }

.showMyItemsCheckbox > span > input {
    margin: 0px;
    height: 16px;
    width: 16px;
}

button, html input[type="button"], input[type="reset"], input[type="submit"], a {
    cursor: pointer;
    -webkit-appearance: button;
}

.btn {
    border-radius: 10px;
    text-transform: none;
    font-weight: bold;
    font-size: 12px !important;
    /*margin: 1px;*/
}

.row {
    padding-bottom: 5px;
}

.AandCTitle {
    font-size: 25px;
    margin-bottom: 7px;
}

.AandCSection {
    border-top: solid;
    border-width: 2px;
    border-color: gray;
    margin-bottom: 10px;
}

.AandCFrame {
    width: calc( 100% + 50px);
    margin-left: -35px;
    height: 1000px;
    overflow: auto;
    border: none;
}

.AandCSectionDescription {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.AandCContentRow {
    margin-top: 7px;
    margin-bottom: 7px;
    margin-left: 15px;
}


.ACTextArea {
    height: 250px;
    width: 500px;
}

.HiddenOption {
    display: none;
}

.NothingToReport {
}

    .NothingToReport #vendor {
        pointer-events: none;
    }

/* C# Modals */
.vertical-alignment-helper {
    display: table;
    height: 100%;
    width: 100%;
    pointer-events: none; /* This makes sure that we can still click outside of the modal to close it */
}

.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events: none;
}

.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width: inherit;
    max-width: inherit; /* For Bootstrap 4 - to avoid the modal window stretching full width */
    height: inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events: all;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.modal-body {
    width: 100%;
}

#ajaxLoaderDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2000%;
    z-index: 9998;
    display: none;
    background-color: rgba(0,0,0,0.5); /*dim the background*/
}

#ajaxGif {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

#EnableEditCheckbox-input {
    margin: 0px;
    height: 16px;
    width: 16px;
}

#showMyItemsCheckbox-input {
    margin: 0px !important;
    height: 16px !important;
    width: 16px !important;
}

.box-shadow {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px 0px;
}

.ifNotInResults {
    background-color: #cacaca;
    color: #818181;
}

