/**********************************************************************
global CSS classes that affect all elements

colors:
333333 - darkest gray used for headings
4a4a4f - dark gray used for text
666666 - medium-dark gray used for page links
A6A6A6 - medium gray used for borders
D3D3D3 - light gray used for grid borders
F5F5F5 - lightest gray used for various backgrounds

0668d6 - medium blue used for links
397588 - medium blue/green for portal content
719CC7 - light blue used for titles/headings

B89B63 - dark gold/wheat color
CC0000 - red used for errors
FFFF99 - yellow used in notices/errors.
BA0102 - NCI red from banner

8BA17B - army green from DCP site
BA7953 - rust color from DCP site
6094A1 - oceany blue from DCP site
887D8B - purple from DCP site
***********************************************************************/

html {
   position: relative; /* needed for sticky footer*/
   min-height: 100%; /* needed for sticky footer*/
}
BODY {
   background-color: #fff;
   margin: 0;
   margin-bottom: 110px; /* same as footer height, for sticky footer */
}

/* maybe later we'll change the font size */
/* body {
  font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1600 - 300)));
  line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1600 - 300)));
} */

BODY, P, LI, TD, TH  {
   color: #343438;
   /* font-family: 'Segoe UI', sans-serif; */
   font-family: 'Open Sans', sans-serif;
   font-size: 12px;
}

H1, H2, H3, H4, H5 {
   color: #4e4f53;
}
H1 { font-size: 16px; }
H2 { font-size: 14px; }
H3, H4, H5 { font-size: 12px; }

a {
   font-size: inherit;
   color: #2368a2;
}
a:hover {
	color: #0f3859;
}
a img {
	text-decoration: none;
}


IMG {
   border-style: none;
   vertical-align: bottom;
}

label, span.label, td.label, th.label, div.label {
   font-size: 10px;
   color: #68696e;
   font-weight: bold;
   line-height: 18px;
}

.big-label {
   font-size: 14px;
   color: #68696e;
   font-weight: bold;
   line-height: 18px;
}

INPUT[type="button"] {
   font-size: 11px;
}

INPUT[type="text"], SELECT {
   font-size: 12px;
   background-color: #ffffff;
   border: 1px solid #e1e1e5;
   box-shadow: inset 0 2px 4px 0 hsla(0, 0%, 0%, 0.08);
   padding: 5px 5px;
   min-width: 120px;
   height: 28px;
   box-sizing: border-box;
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
}

TEXTAREA{
   font-size: 12px;
   background-color: #ffffff;
   border: 1px solid #e1e1e5;
   box-shadow: inset 0 2px 4px 0 hsla(0, 0%, 0%, 0.08);
   padding: 5px 5px;
   min-width: 120px;
   box-sizing: border-box;
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
}

INPUT[type="text"]:hover, TEXTAREA:hover, SELECT:hover {
    border-color: #2368a2;
}
INPUT[type="text"]:focus, TEXTAREA:focus, SELECT:focus {
	border-color: #2368a2;
}

INPUT[type="image"] {
   border-style: none;
}

INPUT[type="file"] {
   color: #343438;
}

FIELDSET {
  border: 1px dotted #cacbcf;
  color: #343438;
  margin: 0 0 4px 0;
  padding-left: 5px;
}

BUTTON {
   padding: 5px 10px;
   height: auto;
   overflow: auto;
   box-shadow: 0 2px 3px hsla(0, 0%, 0%, 0.2);
   /* margin: 0 0.4em; */
   background: #fff;
   border: 1px solid #cacbcf;
   color: #343438;
   border-radius: 5px;
   overflow: visible; /* IE7 padding fix */
   cursor: pointer;
}

BUTTON:hover, BUTTON:focus {
   background-color: #fff;
   cursor: pointer;
   box-shadow: 0 3px 3px 2px hsla(0, 0%, 0%, 0.3);
}

BUTTON i{
   margin-right: 0.4em;
}

BUTTON:disabled {
   background-color: #e1e1e5;
   cursor: default;
   opacity: 0.7;
   box-shadow: none;
}

BUTTON > * { /* This aligns the contents of the button vertically.*/
   vertical-align: middle;
}

BUTTON.green_button {
	background-color: #cbebc5;
}

BUTTON.red_button {
	background-color: #fcdedc;
}

ABBR {
  cursor: help;
}

PRE {
   background-color: #e1e1e5;
}

FORM { /* removes excessive spacing bug in ie7 */
	margin: 0;
	padding: 0;
}

/* jQuery UI overrides by emr */
.ui-button {
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cacbcf;
	box-shadow: 0 2px 3px hsla(0, 0%, 0%, 0.2);
   padding: 5px 10px;
}

.ui-button:hover, .ui-button:focus {
   background-color: #fff;
   cursor: pointer;
   box-shadow: 0 3px 3px 2px hsla(0, 0%, 0%, 0.3);
}

.btn, .btn:hover, .btn:focus{
   background: #fff;
}

.btn-primary-blue, .btn-primary-blue:hover, .btn-primary-blue:focus{
   background: #2368a2;
   color: #fff;
}

.btn-secondary-blue{
   border-color: #2368a2;
   color: #2368a2;
}

.btn-secondary-blue:hover, .btn-secondary-blue:focus{
   background: #2368a2;
   color: #fff;
}

.btn-tertiary-blue{
   color: #2368a2;
   border: none;
   box-shadow: none;
}

.btn-tertiary-blue:hover, .btn-tertiary-blue:focus{
   color: #2368a2;
   border: none;
   box-shadow: none;
   text-decoration: underline;
}

.btn-primary-green, .btn-primary-green:hover, .btn-primary-green:focus{
   background: #3b852c;
   color: #fff;
}

.btn-secondary-green{
   border-color: #3b852c;
   color: #3b852c;
}

.btn-secondary-green:hover, .btn-secondary-green:focus{
   background: #3b852c;
   color: #fff;
}

.btn-tertiary-green{
   color: #3b852c;
   border: none;
   box-shadow: none;
}

.btn-tertiary-green:hover, .btn-tertiary-green:focus{
   color: #3b852c;
   border: none;
   box-shadow: none;
   text-decoration: underline;
}

.btn-primary-red, .btn-primary-red:hover, .btn-primary-red:focus{
   background: #db3a2c;
   color: #fff;
}

.btn-secondary-red{
   border-color: #db3a2c;
   color: #db3a2c;
}

.btn-secondary-red:hover, .btn-secondary-red:focus{
   background: #db3a2c;
   color: #fff;
}

.btn-tertiary-red{
   color: #db3a2c;
   border: none;
   box-shadow: none;
}

.btn-tertiary-red:hover, .btn-tertiary-red:focus{
   color: #db3a2c;
   text-decoration: underline;
   box-shadow: none;
   border: none;
}

.btn-primary-yellow, .btn-primary-yellow:hover, .btn-primary-yellow:focus{
   background: #ffd34e;
}

.btn-secondary-yellow{
   border-color: #856813;
   color: #856813;
}

.btn-secondary-yellow:hover, .btn-secondary-yellow:focus{
   background: #ffd34e;
   color: #343438;
   border-color: #ffd34e;
}

.btn-tertiary-yellow{
   color: #856813;
   border: none;
   box-shadow: none;
}

.btn-tertiary-yellow:hover, .btn-tertiary-yellow:focus{
   color: #856813;
   border: none;
   box-shadow: none;
   text-decoration: underline;
}


.segmented-buttons button{
   float: left;
   border: 1px solid #e1e1e5;
   border-radius: 0;
   box-shadow: none;
   padding: 5px 5px;
   height: 28px;
   background: #fff;
}

.segmented-buttons button:hover{
   background: #e1e1e5;
}

.segmented-buttons button.segmented-button-active{
   background: #e1e1e5;
}


.red-text{
   color: #db3a2c;
}

.green-text{
   color: #63bd51;
}

.yellow-text{
   color: #ffd34e;
}

.blue-text{
   color: #2368a2;
}

.multiselect{
   height: auto;
}



/****************************************************************************
Headers at top of every page
*****************************************************************************/
#skip a, #skip a:hover, #skip a:visited  {
    position:absolute;
    left:0px;
    top:-500px;
    width:1px;
    height:1px;
    overflow:hidden;
}
#skip a:active, #skip a:focus {
    position:static;
    display: block;
    width:auto;
    height:auto;
}

span.site-title {
    position: absolute;
    left: -2000px;
}

.sitebanner {
   margin: 23px;
   padding: 0;
   position: relative;
}

.sitebanner a {
   text-decoration: none;
}

.sitebanner .environment {
   line-height: 54px;
   font-size: 54px;
   text-align: center;
   font-weight: bold;
   letter-spacing: 0.25em;
}

.related-sites {
   position: absolute;
   right: 0;
   top: 0;
   padding: 11px 10px;
}

.related-sites a {
   color: #68696e;
   font-size: 12px;
   text-align: right;
   display: block;
   padding: 2px;
}
.related-sites a:hover {
   color: #343438;
}
.localbanner {
   position: relative;
   /* background-color: #2368A2; */
   background-color: #2368a2;
   color: #fff;
   line-height: 45px;
   /*padding: .2em 10px;*/
   zoom: 1; /* ie7 fix */
}
.localbanner h2 {
   font-size: 1.7em;
   margin: 0;
   float: left;
}
.localbanner h2 a {
   text-decoration: none;
   color: #fff;
}

.nci-logo {
   max-height: 54px;
   min-height: 23px;
   max-width: 335px;
}

#bodywrapper {
   margin-top: 1em;
   margin-bottom: 0;
}

/* this is a div with the CCOP banner used in popup windows */
#popupbanner {
   width: 100%;
   background: #ffffff url("../images/montage_background_sm.gif")left;
   height: 35px; /*this is the height of the background image; */
   position: relative;
   margin-bottom: 15px;
}
#popupbanner h1 {
   color:#3776ab;
   font-size:20px;
   font-weight:normal;
   margin:0;
   padding:4px 5px;
}


/****************************************************************************
LinkList class is for breadcrumbs at top of the screen
*****************************************************************************/
p.LinkList {
   margin-top: 0;
   margin-left: 0.5em;
   padding: 0 9em 0 0;
}
.LinkList, .LinkListNoLink {
   font-size:12px;
   font-weight: bold;
   padding: 0 0.5em 0 0.5em;
}
.LinkList {
   color: #68696e;
   text-decoration: none;
}
.LinkListNoLink {
   color: #2368a2;
}
a.LinkList:hover {
    text-decoration: underline;
}

/****************************************************************************
message classes are for different types of message at the tops of the pages
typically shown immediately after form submission
*****************************************************************************/
/* no top margin on the first flash message */
.flash-message:first-of-type{
   margin: 0em 0em 1em 0em;
}

.flash-message{
   padding: 1em;
   border-width: 1px;
   border-style: solid;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   margin: 1em 0em;
}

.message {
   background-color: #f2f9ff;
   border-color: #b1cde5;
   color: #0f3859;
}

.messageG {
   background-color: #cbebc5;
   border-color: #aedfa5;
   color: #2e731b;
}
.messageY {
   background-color: #fff3db;
   border-color: #ffedb8;
   color: #856813;
}
.messageR {
   background-color: #fcdedc;
   border-color: #f4b1ac;
   color: #991308;
}

.messageClearLink {
   float: right;
   font-weight: bold;
   text-decoration: none;
}

.messageClearLink{
   color: #343438;
}

.messageClearLink:hover {
   text-decoration: none;
   color: #343438;
}

/****************************************************************************
Footer
*****************************************************************************/

#footer {
    background-color: #68696e;
    color: #fff;
    /* font-size: 0.85em; */
    text-align: center;
    padding: 0;
    overflow: hidden;
}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 110px;
}


#footer p {
   color: #fff;
}
#footer a {
    color: #fff;
    padding: 0.2em 0.5em;
    text-decoration: none;
}
#footer a:hover {
   text-decoration: underline;
}

.flinks{
   margin: 1.5em 0 1em 0;
}

.divisions{
   margin: 1em 0 1em 0;
}

.flinks span{
   color: #fff;
}

.flinks a {
    margin-left: 0.8em;
    margin-right: 0.8em;
}

.divisions a {
    margin: 0 0.7em;
}
.divisions span {
    color: #fff;
}

/****************************************************************************
PageLinks - large link shown on coptrg/ccop/rb home pages
*****************************************************************************/
DL.PageLinks {
   padding-bottom:  1em;
   margin: 0;
}
.PageLinks DT {
   display: list-item;
   list-style: none;
   margin-left: 0;
}
.PageLinks DT,
.PageLinks DT A {
   font-size: 18px;
   font-weight: bold;
   color: #4e4f53;
}
.PageLinks DD {
   margin-left: 0;
   margin-bottom: 10px;
}
.PageLinks DD .SubPages {
   list-style-type: none;
   padding-left: 15px;
   margin-left: 0;
   margin-top: 0;
}
.PageLinks DD ul.SubPages ul {
   list-style-type: none;
   padding-left: 2em;
   
}

.PageLinks DT A,
.PageLinks DD A {
   text-decoration: none;
}
.PageLinks DT A:hover,
.PageLinks DD A:hover {
   text-decoration: underline;
}


/**********************************************************************
Pending Requests table - used on home page
***********************************************************************/
.HomeAlertsBlock {
   border-bottom: 2px solid #e1e1e5;
   padding: 2rem 1rem;
   width: 100%;
   margin-left: 2em;
   float: right;
}

.HomeAlertsBlock:first-of-type{
   padding: 0 1rem 2rem 1rem;
}

.HomeAlertsBlock:last-of-type{
   border: none;
}

.HomeAlertsBlock h3 {
    font-size: 18px;
    margin-top: 0;
}

.HomeAlertsBlock h3 span {
   background-color: #fff;
   padding-right: .5em;
}

/**********************************************************************
progress indicator boxes - used in the roster session wizards
***********************************************************************/
.progressComplete,
.progressCurrent,
.progressIncomplete {
   float: left;
   width: 15em;
   padding: .2em;
   margin-right: .2em;
}

.progressComplete {
   background-color: #e1e1e5;
   color: #343438;
}
.progressCurrent {
   background-color: #fff;
   color: #343438;
   border-bottom: 2px solid #2368a2;
   font-size: 1.1em;
}
.progressIncomplete {
   background-color: #e1e1e5;
   color: #343438;
}


/**********************************************************************
Grid table - this is generally used to display cross-tabs
***********************************************************************/
table.grid {
   border: 1px solid #e1e1e5;
   border-collapse:collapse;
   width: 100%;
}

table.grid-auto-width {
   border: 1px solid #e1e1e5;
   border-collapse:collapse;
}

table.grid th, table.grid td {
   border: 1px solid #e1e1e5;
   padding: 3px 3px 3px 3px;
}

table.grid tr {
   vertical-align: top;
}

table.grid th, table.grid thead td {
   /* color: #2368a2; */
   /* table headers will default to normal text color, but if they are inside a link
      then they will become blue */
   color: #343438;
   background-color: #f7f8fa; /* light gray */
   padding: 8px;
}

table.grid td {
   background-color: inherit; /* white */
   padding: 8px;
}

table.grid td.Disabled { /* overridden by .Disabled? - don't use?*/
   background-color: #e1e1e5;
}

table.grid td.ShadowCell {
   background-color: #e1e1e5;
   box-shadow: 1px 2px 2px #838489 inset;
}

table.grid td.Green {
   background-color: #cbebc5;
}

table.grid td.Red {
   background-color: #fcdedc;
}

table.grid tr.listOdd {
   background-color: #f7f8fa;
}

table.grid td.paddedHorizontal {
   padding-left: 1em;
   padding-right: 1em;
}

table.grid tr.doubleBorder td {
   border-bottom: 5px double #e1e1e5;
}

table.grid-hover tr:hover{
   background-color: #e1e1e5 !important;
}

/* Dialog's background color is already grey, which dulls the effect of grid-zebra
   So set every other row to white if a grid-zebra table lies inside a Dialog */
.Dialog table.grid-zebra tbody tr:nth-child(even){
   background-color: #fff;
}

table.grid-zebra tbody tr:nth-child(even){
   background-color: #f7f8fa; 
}


table.grid-space td, table.grid-space th{
   padding: 8px;
}

table.grid-small-text td, table.grid-small-text th{
   font-size: 10px;
}

table.grid-flush{
   border: none !important;
}

table.grid-flush td, table.grid-flush th{
   border: none !important;
   border-bottom: 1px solid #e1e1e5 !important;
}

table.grid-flush tr:last-of-type td{
   border: none !important;
}

table.grid thead.sticky{
   position: sticky;
   top: 0px;
}

table.grid thead.sticky th{
   background-clip: padding-box;
}



table.rb_grid tr {
   vertical-align: middle;
}

table.smallfont TH,
table.smallfont TD {
   font-size: 10px;
}

table.compare TD.conflict {
   background: url('../images/icons/error.png') #fff3db no-repeat;
   padding-left: 20px;
}

/**********************************************************************
Presentation table - this is used in the slides and strategic planning
***********************************************************************/
TABLE.presentation {
    border: 2px solid #2368a2;
   border-collapse:collapse;
   margin-bottom: 20px;
}
TABLE.presentation TR {
   vertical-align: top;
}
TABLE.presentation TH, TABLE.presentation TD {
   border: 1px solid #e1e1e5;
   padding: 3px 3px 3px 3px;
}
TABLE.presentation TH {
   color: #2368a2;
   background-color: #f7f8fa; /* light gray */
   padding: 5px 5px 5px 5px;
}
TABLE.presentation TD {
   background-color: inherit; /* white */
}
TABLE.presentation TD.noWrap {
   white-space: nowrap;
}
TABLE.presentation TD H2,
TABLE.presentation TD H3,
TABLE.presentation TD H4,
TABLE.presentation TD H5 {
   margin-top: 0;
}
TABLE.presentation TD H5 {
   font-style: italic;
}
TABLE.presentation TR.listOdd {
   background-color: #f7f8fa;
}
TABLE.presentation CAPTION {
   color: #2368a2;
   font-size: larger;
   font-weight: bold;
   text-align: left;
}
TABLE.presentation OL, TABLE.presentation UL {
  list-style-position: outside;
  margin-left: 25px;
  padding-left: 0px;
}
TABLE.presentation LI {
  padding-bottom: 5px;
}
TABLE.presentation A {
   white-space: nowrap;
}

/**********************************************************************
Info Card table - used for each CCOP/RB on CCOP and RB summary reports
***********************************************************************/
TABLE.infoCardContainer {
	width: 700px;
}
TABLE.infoCard {
	width: 600px;
}
TABLE.infoCard, TABLE.infoCard TH, TABLE.infoCard TD {
   background-color: inherit;
   border: none;
   vertical-align: top;
}
TABLE.infoCard .label {
   font-size: 12px;
   font-weight: normal;
   color: #2368a2;
   line-height: inherit;
}

/**********************************************************************
Legend table - used on accrual/progress reports
***********************************************************************/
TABLE.Legend {
   border: thin #e1e1e5 solid;
   border-width: 2px;

}
TABLE.Legend TD {
   font-size: 11px;
   color: #343438;
   padding:5px 5px 5px 5px;
}


/**********************************************************************
Spacy table - more spacious table
***********************************************************************/
table.spacy-table td{
  padding: 1em;
  text-align: left;
  vertical-align: middle;
}


/****************************************************************************
content views for TAB layout (borrowed from Plone and modified)
*****************************************************************************/
.contentViews {
   background-color: transparent;
   padding-left: 10px;
   padding-top: 3px;
   line-height: normal;
   margin: 0;
   margin-bottom: -1px;
   list-style: none;
   width: 900px;  /*this matches the witdh of the dialog box */
}
.contentViews li {
   display: inline;
   padding-top: 2px;
}
.contentViews li a {
   background-color: transparent;
   height: auto;
   margin-right: 5px;
   padding: 0px 10px;
   line-height: normal;
   text-decoration: none;
   border-bottom-width: 0px;
   z-index: 1;
}
.contentViews .Selected a {   /*selected tabs*/
   background-color: #fff;
   border: 2px solid #e1e1e5;
   border-bottom: 2px solid #fff;
}
.contentViews .Errors a {
   background-color: #fcdedc;
}
.contentViews .Plain a {  /*non-selected tabs*/
   background-color: #e1e1e5;
}
.contentViews li a:hover,
.contentViews li a:focus {  /*mouse-over tabs*/
   background-color: #e1e1e5;
}

.contentViews .Selected a:hover,
.contentViews .Selected a:focus{
   background-color: #fff;
}

/****************************************************************************
FilterBar Layout - grey bar containing input used for filtering
*****************************************************************************/
.FilterBar {
   padding: 5px;
   margin-bottom: 1em;
   background: #f7f8fa;
   border: 1px solid #e1e1e5;
}
.FilterBar div.Input {
   margin-right: 5px;
}
.FilterBar label {
    color: #68696e;
}
.FilterBar .MultiRow TD{
   padding-bottom: 5px;
   border-bottom: solid 1px #1e5c91;
}
.FilterBar div.Export{
  float: right;
  /* display: inline-block; */
  position: relative;
  top: 10px;
  padding-bottom: 15px;
  /*height: 100%;*/
}

button.export {
   width: 100px;
   height: 20px;
   padding: 0px;
   border-width: 0px;
   background-color:transparent;
   border-color:transparent;
}
button:active {
   border-width: 1px !important;
}

/****************************************************************************
ActionBar Layout -  bar used for action buttons like save and cancel, preferably within a dialog
*****************************************************************************/
.ActionBar {
   margin-top: 20px;
   background-color: #f7f8fa;
   padding: 8px;
   font-weight: bold;
   vertical-align: 50%;
   color: #2368a2;
}
.ActionBar a {
   border: none;
}

/****************************************************************************
Rank Bar - small box used in CTEP search results to estimate result relevance
*****************************************************************************/
div.rank_bar_container {
    margin: 2px;
    width: 60px;
    border: 1px solid #9e9fa4;
}
div.rank_bar { /* dynamic width to indicate rank */
    background-color: #2368a2;
    height: 1em;
}

/****************************************************************************
Classes for displaying numbers
*****************************************************************************/
.Number {
   text-align:right;
}
.NumberDis {
   background-color: #e1e1e5 !important;
   font-weight:inherit;
   color: #343438;
   text-align:right;
   border:none;
}
.NumberChanged {
   text-align:right;
   background-color: #ffd34e;
   font-weight:inherit;
   color: #343438;
}
.NumberError {
   text-align:right;
   background-color: #fff3db;
}

/****************************************************************************
Text Alignment classes
*****************************************************************************/
.textCenter {
   text-align: center;
}
.textRight {
   text-align: right;
}
.textLeft {
   text-align: left;
}
.textNoWrap {
   white-space: nowrap;
}

/****************************************************************************
Image Alignment
*****************************************************************************/
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/****************************************************************************
Float Management classes
*****************************************************************************/
.floatRight, .fltrt {
   float: right;
}
.floatLeft, .fltlt {
   float: left;
}
.clearFloat, .clearfloat {
   clear: both;
   height: 1px;
}
.displayNone {
   display: none;
}
.display-none{
	display: none;
}

/****************************************************************************
The following classes affect general content
*****************************************************************************/
a#maincontent {
   width: 0; height: 0; margin: 0; padding: 0;
}
.MainContent { /* everything after the LinkedList and before footer */
   margin: 0 1em 0 1em;
   padding-bottom: 1px;
}

.Title {  /* use for help page titles */
   font-size:14px;
   font-weight: bold;
   color: #343438;
   padding-bottom:5px;
}

.BackupNotice {   /* Backup baudget notice */
   border: 2px solid #ba2517;
   padding: 2px 2px 2px 2px;
   line-height:16px;
   font-size:14px;
}

.Error, .Notice {
   /* background-color: #fff3db; */
   padding: 2px 2px 2px 2px;
   line-height:16px;
   font-size:12px;
}

.Error {
  color: #db3a2c;
}

.ErrorNotice {
   background-color: #fcdedc;
   color: #991308;
}

.FootNote {
   font-size: 11px;
   color: #68696e;
   margin: 15px 0;
}

.Image {
   border-style: none;
   vertical-align: bottom;
}

.Notice {
   background-color: #fff3db;
   color: #343438;
}

.Notice * {
   color: inherit;
}

.Disabled {
   background-color: #e1e1e5 !important;
   font-weight:inherit;
   color: #343438;
}

.Required { /* for the required indicator */
   color: #db3a2c;
   font-size: 12px;
   font-weight: normal;
}
.Highlight {
   background-color: #fff3db;
}
.highlight {
   background-color: #fff3db;
}

/* todo - this isn't 508 compliant */
.Dim,
.Dim > label,
.Dim > label > .Required {
   background-color: #e1e1e5;
   color: #838489;
}



.ValidationError {
   line-height:16px;
   margin: 6px 0px 10px 0px;
}

/* TODO apparently this class isn't found anywhere, but I didn't believe it */
.InputError {
/*   background-color: #fff3db;  */
   background-color: #db3a2c !important;
   color: #fff;
}

.SiteError { /* used in generic error page. very generic - replace? */
   color: #cb2f21;
}

SPAN.ValidationError{
   background-color: #fcdedc;
   border: 1px solid #f4b1ac;
   color: #991308;
   padding: 1em;
   display: inline-block;
}

.ValidationError IMG {
   vertical-align: baseline;
}

.ReportTitle {  /* used to indicate that a field is required */
   font-size:14px;
   font-weight: bold;
   color: #2368a2; /* color: #719CC7; */
}

.ReportTitleBy {  /* used to indicate that a field is required */
   font-size:14px;
   font-style: italic;
   color: #2368a2;  /* color: #719CC7; */
}

.ReportSubtitle {  /* used to indicate that a field is required */
   font-size:13px;
   font-weight: bold;
}

.text_with_help { /* for links where there is additional (hidden) help information. */
   cursor: help;
   text-decoration: none;
   border-bottom: dotted 1px #838489;
}
.help_info_hidden {  /* help information that is hidden by default, and shown via jQuery hover action */
   display: none;
   z-index: 2;
   padding: 0.5em;
   background-color: #e1e1e5;
   border: 2px solid #fff;
   position: absolute;
   top: 2em;
   left: 4em;
   font-size: 12px;
   font-weight: normal;
   font-style: italic;
   color: #4e4f53;
   min-width: 20em;
   box-shadow: 4px 4px 4px #4e4f53;
}
.help_tab { /* should be included within a div (.Dialog) that uses relative position (posRelative) */
   background-color: #cacbcf;
   border: 2px solid #e1e1e5;
   border-radius: 0 0.5em 0.5em 0;
   padding: 5px;
   position: absolute;
   right: -30px;
   top: 0.5em;
}

div.impersonating, 
div.impersonating select {
   background-color: #fcdedc; 
   color: #991308;
}


a.plain_link {
   text-decoration: none;
}
.cursorPointer {
   cursor: pointer;
}
.cursor-pointer{
	cursor: pointer;
}

.pointer{
  cursor: pointer;
}

ul.withSpace > li,
ol.withSpace > li  {
   padding-bottom: .5em;
}


/****************************************************************************
Dialog Layout
*****************************************************************************/
.Dialog_Header_Wrapper { /* Dialog_Header must be wrapped in this. its width may vary but its max width must equal Dialog */
   padding: 0;
   margin: 0;
   width: 1100px;  /*720 is necessary to keep the dialog box fit in a 600x800 window WITH scrollbars, padding, etc. ARS */
}

.Dialog, .Dialog_Header {
   background-color: #fff;
   border: 2px solid #e1e1e5;
   padding: 1em;
}

.Dialog {
   width: 1100px;
   box-sizing: border-box; /* width includes padding and borders, IE8+*/
}

.Dialog .Title {
   font-size: 14px;
   font-weight: bold;
   color: #343438;
   padding-bottom: 10px;
}

.Dialog P {
   margin: 0px 0px 5px 0px;
}

.Dialog .ActionButtons {
   margin: 10px 0px 10px 0px;
}

.Dialog TR {
   vertical-align: bottom;
}

.Dialog TD {
   padding:0px 5px 5px 0px;
}

.Dialog H1 {
   font-size: 16px;
   font-weight: bold;
   color: #2368a2;
}

.Dialog_Header {
	padding: 0.5em 1em;
}

.Dialog_Header .fieldTable td, .headerInfoBlock .fieldTable td {
	padding-right: 25px;
}

.Dialog .Instructions { /* for form instructions */
   margin: .5em 0;
   font-style: italic;
}

/****************************************************************************
System Update Message
*****************************************************************************/
DIV.SystemUpdateMsg {
   width: 720px;
   color: #343438;
   background-color: #fff3db;
   padding: 5px;
   border: 1px #2368A2 solid;
   margin-bottom: 1em;
}
DIV.SystemUpdateAlert {
   width: 720px;
   color: #343438;
   background-color: #fff3db;
   padding: 5px;
   border: 1px #db3a2c solid;
   margin-bottom: 1em;
}
DIV.SystemAbout {
   width: 720px;
   color: #343438;
   background-color: #f7f8fa;
   padding: 10px;
   border: 1px #e1e1e5 solid;
   margin-bottom: 1em;
}
DIV.SystemAbout P,
DIV.SystemAbout UL LI {
   font-size: 14px;
}

DIV.SystemUpdateMsg H1,
DIV.SystemUpdateAlert H1,
DIV.SystemUpdateAbout H1 {
   margin-left: 12px;
   font-size: 14px;
   border-bottom: 1px #e1e1e5 solid;
}

DIV.SystemUpdateMsg UL LI,
DIV.SystemUpdateAlert UL LI,
DIV.SystemUpdateAbout UL LI {
   padding-left: 6px;
   padding-bottom: 6px;
}
DIV.SystemUpdateMsg p,
DIV.SystemUpdateAlert p,
DIV.SystemUpdateAbout p {
   margin: 1em;
}
DIV.SystemLoginBox {
   margin-bottom: 1em;
   padding: 10px;
   width: 720px;
   background: #f7f8fa;
   border: 1px solid #e1e1e5;
}
DIV.SystemLoginBox p {
   margin: 0;
}

/*classes for input forms*/

.inputRow {
   margin-bottom: .5em;
   padding: 0;
}
select.inputItem {
	padding: 0 !important;
}
.inputItem, .inputItemError {
   float: left;
   margin-right: .5em;  /*1px top&bottom margin gives same appearance as input error which has border*/
   padding: .3em;
}
.inputItemError, .inputRowError {
   color: #991308;
   background-color: #fcdedc;
   border: 1px solid #f4b1ac;
}
.inputItem ul, .inputItemError ul {
   list-style: none;
   padding: 0px 0px 0px 15px;
   margin: 0;
}
.inputItem label, .inputItemError label {
   display:block;
}
.inputItemError label, .inputItemError p {
   color: #991308;
}
label.Disabled,
label.Dim {
   color: #9e9fa4;
}


label.inlineLabel {
   display: inline;
   font-size: 1em;
}
.inputEx {
   font-size: .8em;
}
.inputInstr { /* this would typically go below the input */
   font-size: .8em;
   padding-bottom: .5em;
}
.inputDivider { /* this would go below the input */
   background: url("../images/blue_divider.gif") no-repeat left bottom;
   margin-bottom: 1em;
}

.checkbox {
   color: #343438;
}

.Checkbox, .RadioButton {  /* this will format labels next to checkboxes and radio buttons */
   color: #68696e;
   font-size: 12px;
}

.Checkbox INPUT, INPUT.Checkbox {  /* this will format the actual checkbox control */
   border: none;
   background-color: inherit;
   height: 15px;
   width: 15px;
   margin: 3px 2px 0px 2px;
}

.RadioButton INPUT, INPUT.RadioButton {  /* this will format the actual radiobutton control */
   border: none;
   background-color: inherit;
   height: 15px;
   width: 15px;
}

/*************************************
/* Styles for displaying fields/attributes
*************************************/
DIV.twoColumnLeft {
   float: left;
   width: 48%;
   margin-right: 15px;
}
DIV.twoColumnRight {
   float: left;
   width: 48%;
}


.fieldBox { /*this is a container for Viewing (as opposed to inputting) field label/value pairs*/
   padding: 0.5em;
   border: 1px solid #e1e1e5;
   margin: 0 0 .5em 0;
   color: #343438;
}

.fieldBox h1,
.fieldBox h2,
.fieldBox h3 {
   margin: 0 0 0.5em 0;
}
.fieldBox h1 { font-size: 1.4em; }
.fieldBox h2 { font-size: 1.2em; }
.fieldBox h3 { font-size: 1.0em; }
.fieldBoxLegend { font-size: 1.2em; font-weight: bold; }
.fieldBox span.label {
   color: #68696e;
   font-weight: bold;
}
.fieldBox .fieldGroup {
   margin-bottom: .5em;
}
.fieldIndent {
   margin-left: 1em;
}
.fieldBox dt { /*this is the label of the field*/
color: #0668d6;
font-size: .9em;
font-weight: bold;
}
.fieldBox dd {
padding: .25em 0 .75em 0;
}
.blueText { color: #2368a2; }

.sessionBox {
   padding: 0.5rem;
   font-size: 14px;  
}

.sessionBox div{
   font-size: 14px;
   margin: 0.25rem 0;
}

.sessionBox p {
   font-size: 14px; 
}


.expandableBox,
.expandableBoxNoBorder {
   display: none;
}
.collapsableBox,
.collapsableBoxNoBorder {
   display: block;
}
.collapsableBox { /*add a border*/
   border: 1px #e1e1e5 dotted;
   padding: 0 0.5em;
}
.expandableHeading,
.expandableHeadingNoBorder {
   background-color: #e1e1e5;
}
.expandableHeading { /*add a border*/
   border-style: solid;
   border-width: 1px;
   border-color: #e1e1e5;
   padding: .25em;
}
.expandableHeading .exp_char,
.expandableHeadingNoBorder .exp_char {
   padding: .25em .5em;
   font-size: 1em;
   line-height: 1em;
   font-weight: bold;
   cursor: default;
}

a.actionLink,
.collapsableBoxNoBorder a.actionLink,
.collapsableBox a.actionLink,
.expandableHeading a.actionLink {
   color: #343438;
   background-color: #f2f9ff;
   padding: .3em;
   text-decoration: none;
}
.collapsableBoxNoBorder a.actionLink:hover,
.collapsableBox a.actionLink:hover,
.expandableHeading a.actionLink:hover {
   background-color:#b1cde5;
}

.posRelative {
   position: relative;
}
div.criteria {
   background-color: #f7f8fa;
   margin-right: 1em;
   border-left: solid 1px #e1e1e5;
   border-right: solid 1px #e1e1e5;
   border-bottom: solid 1px #e1e1e5;
}
.indented {
	margin-left: 1em;
}
p.indent {
   margin: 0 2em;
}
fieldset.borderless { /* fieldset that's basically hidden. the legend will look like a label */
	border:0;
	padding: 0;
	margin: 0;
}
fieldset.borderless legend {
	padding: 0;
}

th.sort_column { /* highlight the column header we are sorting on */
	background-color:#fff3db !important;
}
tr.highlighted_row td {
	background-color:#fff3db !important;
}

/* css for accrual/budget pages */
.plain_label_container label, .plain_label {
	display: inline;
	color: #343438;
	font-size: 12px;
	font-weight: normal;
	line-height: 12px;
}
.accrual_expand_button {
	height: 1.5em;
}

table td.green_cell {       background-color: #cbebc5; }
table td.red_cell {         background-color: #fcdedc; }
table td.yellow_cell {      background-color: #fff3db; }
table td.gray_cell {        background-color: #f7f8fa; }

.fieldTable {
   width: 100%;
   border: 0px;
   margin-bottom: 1em;
}
.fieldTable td {
   padding: 0.1em 0;
   margin: 0;
}
.fieldTable td.label, .fieldTable th.label, .fieldTable tr.label {
   vertical-align: top;
   line-height: 13px;
   padding-right: 0.5em;
   text-align: left;
}
.fieldBox sup {
   color: #2368a2;
   font-weight: bold;
}

.screen_reader_only /* only a screen reader (like Jaws) will notice content hidden with this */
{
    position: absolute;
    left:-5000px;
    top:0;
    width:1px;
    height:1px;
    overflow:hidden;
}

.documentInfoBlock {
   background-color: #e1e1e5;
   padding: 1em 1.5em 0;
   margin-right: 1em;
   box-shadow: 2px 2px 2px #838489 inset;
   border-radius: 1em;
   border: 1px solid #e1e1e5;
   width: 35%;
}
.documentInfoBlockEmpty {
   min-height: 4em;
   background-color: #e1e1e5;
   padding: .3em 3em .3em .3em;
   margin-right: 1em;
}



/****************************************************************************
Step-by-step progress indicators, using hierarchy: .multistepBar ( .step (.name .number))
*****************************************************************************/

.multistepBar {
   border: 1px solid #838489;
   display: inline-block;
}
.multistepBar .step {
   float: left;
   padding: 0;
   margin: 0;
   padding-right: 1em;
   text-decoration: none;
   color: #343438;
}
.multistepBar a:hover .name {
   text-decoration: underline;
}
.multistepBar .step.current {
   background-color: #f2f9ff;
}
.multistepBar .number {
   padding: 0;
   color: #fff;
   background-color: #838489;
   text-align:center;
   font-weight: bold;
   margin-right: 1em;
   display: inline-block;
   width: 2em;
   height: 2em;
   line-height: 2em;
   vertical-align: middle;
}
.multistepBar .name {
   display: inline-block;
   line-height: 2em;
   height: 2em;
   vertical-align: middle;
}
.multistepBar .step.current .number {
   background-color: #2368a2;
}

/****************************************************************************
Profile Message boxes in upper-right corner of profile pages
*****************************************************************************/
.profileMessageWarning { /* yellow box on profile pages */
    border: 1px solid #ffe494;
    background: #fff3db 10px center no-repeat scroll;
}
.profileMessageError { /* red box */
    border: 1px solid #991308;
    background: #fcdedc 10px center no-repeat scroll;
}
.profileMessageNotice { /* gray box */
    border: 1px solid #e1e1e5;
    background: #f7f8fa 10px center no-repeat scroll;
}
.profileMessageWarning, .profileMessageError, .profileMessageNotice {
    margin: 0 0 0.5em 0;
    padding-left: 36px; /* 16px icon+spacing on each side (16+10+10) */
}
.profileMessageWarning p, .profileMessageError p, .profileMessageNotice p  {
    padding: 0.5em 0.5em 0.5em 0;
    margin: 0;
}

/****************************************************************************
Debugging Information
*****************************************************************************/

div.version_info { /*this is for debugging only - not on production */
   position: fixed;
   bottom: 0px;
   right: 0;
   background-color: #fff;
   border: 1px solid #2368a2;
   padding: 10px;
   z-index: 100;
}
.tpl_name { /* toggle tpl names */
   background-color: #63bd51;
   color: #343438;
   margin: .2em 0;
   padding: .2em;
   display: none;
}
.debug-button {
    width: 140px;
    padding: 5px;
    margin: 5px 0 0 5px;
    font-size: 11px;
    background: #fff;
    border: 1px solid #e1e1e5;
}

.debug-button:active {
    border-style:inset;
}

.debug-button-active {
    background-color: #2368a2;
    color: #fff;
}
.debug-panel {
    display: none;
    text-align: left;
    font-size: 12px;
    padding: 1em;
    border: 0;
}
.debug-panel table.reportTable {
   width: auto;
}
.debug-panel table.reportTable th {
    text-align: left;
    font-weight: bold;
    background-color: #fff3db;
}
.debug-panel table.reportTable td {
    text-align: left;
}

.debug-panel pre {
    background-color: inherit;
    margin: 0;
}
.status-pending {
   font-style: italic;
   color: #db3a2c;
}

.collapsable {
   display: none;
   padding-left: 2.5em;
   padding-top: .5em;
}
.howto {
   border: 1px solid #e1e1e5;
   background: #f7f8fa 10px center no-repeat scroll;
   padding:.25em .75em .25em .5em;
   vertical-align: middle;
   margin-bottom: .25em;
}

form[name="filterForm"] button {
   font-size: inherit;
   vertical-align: bottom;
}

.dropdown-panel button {
   display: block;
   margin-left: 25px;
   margin-top: 3px;
}

.disabled, .disabled * {
   pointer-events: none;
   color:  #9e9fa4;
   text-decoration: none;
}

table.grid th.blank,
table.grid td.blank {
   border-color: transparent #e1e1e5 transparent transparent;
   background-color: inherit;
   text-align: right;
   padding-left: 0px;
}

.toggleButton {
   border: none;
   padding: 5px;
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   -o-user-select: none;
   user-select: none;
}
.active {
   background-color:#fff3db;
}

.toggleButton:hover {
   cursor: pointer;
}

.control-bar {
   display: table;
   border: 2px solid #e1e1e5;
   border-collapse:collapse;
   margin: 6px 0;
}
.control-bar div {
   padding: 6px;
   display: table-row;
}
.control-bar div.header {
   padding: 6px;
   color: #2368a2;
   font-weight: bolder;
   background-color: #f7f8fa;
}
.control-bar div div {
   padding: 6px 20px;
   display: table-cell;
   border: 1px solid #e1e1e5;
}
.control-bar .caption {
   caption-side: bottom;
   display: table-caption;
   text-align: right;
   margin: 0px 6px;
}

button.plain {
   display: block;
   border: 1px solid #e1e1e5;
   margin: 0px;
   font-size: 12px;
}

.inactive, .inactive:hover {
   cursor: default;
   pointer-events: none;
   color: #68696e;
   background-color: #e1e1e5;
}

#program_block > div {
   display: table;
}
#program_block > div > div {
   display: table-row;
}
#program_block > div > div > div {
   display: table-cell;
   width: 1px;
   white-space: nowrap;
   vertical-align: bottom;
   padding: 4px 8px 0px 0px;
}
h2#program_block {
   font-size: 12px;
   font-weight: bold;
   color: #2368a2;
   margin-bottom: 12px;
}

th.collapsed, td.collapsed {
   width: 1%;
}

div.alert {
   padding: 10px 10px 5px 10px;
   border: 1px solid transparent;
   border-radius: 4px;
   margin-bottom: 10px;
}
div.alert.success {
   background-color: #cbebc5;
   border-color: #aedfa5;
}
div.alert a.close {
   color: inherit;
   float: right;
   text-decoration: none;
}

.accrual-button{
  font-size: 1em;
}

/*********************************************************
Styles for the email page located in templates/person
*********************************************************/

.email_person {
   max-width:800px;
   line-height: normal;
   font-size: 12px;
}

.email_person .right_column {
   margin-left: 7em;
}

.email_person .inputItemError {
   padding-left: 0;
}

.email_person input[type=checkbox] {
   float: left;
   position: relative;
   bottom: 2px;
   right: 4px;
   width: auto;
  /* height: 100%; <-- This causes checkbox to disappear on chrome. Why? */
}

.email_person input {
   width: 90%;
}

.email_person textarea {
   width: 85%;
   max-width: 85%;
}

.email_person div.inline_form label,
.email_person div.inline_form span.label {
   width: 6em;
   display: block;
   float: left;
   text-align: right;
   padding-right: 0.5em;
   font-size: 12px;
}

.email_person div.inline_form {
   width: 99%;
   clear: left;
   margin-bottom: 0.25em;
}

.email_person .note {
   float: right;
   width: 350px;
}

.email_person .note ul {
   list-style-position: outside;
   position: relative;
   right: 30px;
   margin-left: 0;
}

.email_person .note p {
   margin-left: 0;
   margin-bottom: -1em;
}

.email_person .note li {
   margin-bottom: 0.25em;
}

/**************************************************
end registration reminder email styles
**************************************************/

div.tabbed{
	padding-left: 1.5em;
}

div.edit-credit-record-menu{
	padding: 1em;
	font-weight: normal;
	color: #343438;
	background-color: #fff3db;
}

div.edit-credit-record-menu div{
	padding-bottom: 1em;
}

table.grid th.disabled-credit{
	background-color: #cacbcf;
	color: #838489;
}



/******************************************************************
   Useful Styles

   Put simple classes with global application here
******************************************************************/
.half {
   width: 50%;
}

.quarter{
  width: 25%;
}

.three-quarters{
   width: 75%;
}

.black-text{
	color: #000;
}

.protocol-na-button{
	width: auto;
	height: auto;
}

.input-group{
	padding-left: 10px;
	padding-right: 10px;
}

.pad-bottom-half{
	padding-bottom: .5em;
}

.pad-1{
	padding: 1em;
}

.pad-1-5{
	padding: 1.5em;
}

.pad-2{
	padding: 2em;
}

.pad-3{
	padding: 3em;
}

.pad-top-1{
	padding-top: 1em;
}

.pad-top-2{
	padding-top: 2em;
}

.pad-top-3{
	padding-top: 3em;
}

.pad-bottom-1{
	padding-bottom: 1em;
}

.pad-bottom-2{
	padding-bottom: 2em;
}

.pad-bottom-3{
	padding-bottom: 3em;
}

.margin-1{
  margin: 1em;
}

.margin-2{
  margin: 2em;
}

.margin-3{
  margin: 3em;
}

.grey-border-1{
	border: 1px solid #e1e1e5;
}

.margin-bottom-1{
	margin-bottom: 1em;
}

.margin-bottom-1-half{
	margin-bottom: 1.5em;
}

.margin-bottom-2{
	margin-bottom: 2em;
}

.margin-top-1{
	margin-top: 1em;
}

.margin-top-2{
	margin-top: 2em;
}

.margin-top-3{
  margin-top: 3em;
}

.margin-top-4{
  margin-top: 4em;
}

.margin-top-5{
  margin-top: 5em;
}

.margin-left-1{
	margin-left: 1em;
}

.margin-left-1-5{
	margin-left: 1.5em;
}

.margin-left-2{
	margin-left: 2em;
}

.margin-right-0-5{
  margin-right: 0.5em;
}

.margin-right-1{
  margin-right: 1em;
}

.margin-right-2{
  margin-right: 2em;
}

.margin-right-3{
  margin-right: 3em;
}

.margin-right-4{
  margin-right: 4em;
}

.margin-right-5{
  margin-right: 5em;
}

.background-green{
	background-color: #cbebc5;
}

.display-none{
	display: none;
}

.text-align-center{
	text-align: center;
}

.text-align-right{
  text-align: right;
}

.text-align-left{
  text-align: left
}

.clearBoth {
   clear: both;
}
/******************************************************************
   end Useful Styles
******************************************************************/

.dialog-title{
	padding: 1.5em;
}


.push-button:active{
	background-color: #e1e1e5;
}


.grid-div{
  border: 1px solid #e1e1e5;
  padding: 10px;
}


div.custom-overlay{
  background: #b4b5ba;
  opacity: 0.65;
}

.inline-block{
  display: inline-block;
}

.block{
   display: block;
}

span.error-color{
   color: #991308; 
   background-color: #fcdedc;
}

label.error-color{
  color: #991308;
}

input.error-color{
  color: #991308;
  background-color: #fcdedc;
}

div.error-color{
   color: #991308;
   background-color: #fcdedc;
}

div.warning-color{
   background-color: #fff3db;
}

/*********************************************************************
  budget structure styles
**********************************************************************/
div.budget-structure-wrapper #btn-copy {
   background-color: inherit;
   display: inline;
   font-size: inherit;
   font-weight: inherit;
   border: none;
   color:  #2368a2;
   padding: 0;
   margin: 0;
   /* height: inherit; */
}
div.budget-structure-wrapper #btn-copy:before {
   color: #343438;
   content: "[";
}
div.budget-structure-wrapper #btn-copy:after {
   color: #343438;
   content: "]";
}
div.budget-structure-wrapper #budget-item-list h2>a {
   text-decoration: none;
}

div.budget-structure-wrapper #budget-structure  {
   width: 400px;
   float: left;
   margin-bottom: 20px;
   margin-left: 50px;
}
div.budget-structure-wrapper #budget-item-list, .budget-item-list {
   float: left;
   width: 200px;
   margin-bottom: 20px;
   clear: left;
}
div.budget-structure-wrapper #prev-model {
   float: left;
   width: 400px;
   margin-left: 50px;
   margin-bottom: 20px;
}
div.budget-structure-wrapper #prev-model .budget-item:hover {
   cursor: default;
}


div.budget-structure-wrapper .structure-notes > * {
   float: left;
   margin-top: 0;
}
div.budget-structure-wrapper .structure-notes > p:first-child {
   width: 7em;
   text-align: right;
}
div.budget-structure-wrapper .structure-notes > p+p {
   padding-left: 2em;
}

div.budget-structure-wrapper .structure-notes {
   clear: both;
}
#budget-items-wrapper button.del > img,
div.budget-structure-wrapper button.del > img{
   height: 10px;
   width: 10px;
   padding: 2px;
}

#budget-items-wrapper button.del,
div.budget-structure-wrapper button.del {
   float: right;
   border: none;
   background-color: transparent;
   position: absolute;
   right: 0;
   bottom: 8px;
   z-index: 100;
   background: transparent;
   height: 15px;
   box-shadow: none;
}

#budget-items-wrapper button.del:hover,
div.budget-structure-wrapper button.del:hover {
   cursor: pointer;
}
.budget-item-list li,
div.budget-structure-wrapper #budget-structure li,
div.budget-structure-wrapper #budget-item-list li,
div.budget-structure-wrapper #prev-model li{
   list-style-type: none;
   display: block;
   margin-left: 0;
}

div.budget-structure-wrapper #budget-structure h2,
div.budget-structure-wrapper #budget-item-list h2,
div.budget-structure-wrapper #prev-model h2{
   text-align: center;
}

div.budget-structure-wrapper .ui-draggable-dragging {
   color: #2368A2 !important;
}

div.budget-structure-wrapper #budget-item-list .budget-item,
div.budget-structure-wrapper .ui-draggable {
    width: 200px !important;
}

div.budget-structure-wrapper .item-placeholder {
   background-color: #f2f9ff !important;
}
.budget-item-list .budget-item,
div.budget-structure-wrapper .budget-item , div.budget-structure-wrapper .item-placeholder {
   background-color: #f7f8fa;
   border: 1px solid #e1e1e5;
   height: 20px;
   padding-left: 0.5em;
   padding-top: 4px;
   position: relative;
}
div.budget-structure-wrapper .budget-item:hover {
   cursor: grab;
}
div.budget-structure-wrapper #budget-structure .drop-parent {
   color: #2368A2 !important;
}



div.budget-structure-wrapper .depth0 {width: 400px; margin-left: 0px !important; }
div.budget-structure-wrapper .depth1 {width: 370px; margin-left: 30px !important; }
div.budget-structure-wrapper .depth2 {width: 340px; margin-left: 30px !important; }
div.budget-structure-wrapper .depth3 {width: 310px; margin-left: 30px !important; }
div.budget-structure-wrapper .depth4 {width: 280px; margin-left: 30px !important; }
div.budget-structure-wrapper .depth5 {width: 250px; margin-left: 30px !important; }
div.budget-structure-wrapper .depth6 {width: 220px; margin-left: 30px !important; }
div.budget-structure-wrapper .depth7 {width: 190px; margin-left: 30px !important;}
div.budget-structure-wrapper .depth8 {width: 160px; margin-left: 30px !important;}
div.budget-structure-wrapper .depth9 {width: 130px; margin-left: 30px !important;}
div.budget-structure-wrapper .depth10{width: 100px; margin-left: 30px !important;}
div.budget-structure-wrapper .depth11{width: 70px; margin-left: 30px !important;}
div.budget-structure-wrapper .depth12{width: 40px; margin-left: 30px !important;}

div.budget-structure-wrapper #btn-edit:hover,
div.budget-structure-wrapper #btn-save:hover {
   cursor: pointer;
}

div.budget-structure-wrapper #budget-structure ul,
div.budget-structure-wrapper #prev-model ul{
   margin-bottom: -20px;
   padding-bottom: 20px;
}
div.budget-structure-wrapper #budget-structure li>ul,
div.budget-structure-wrapper #prev-model li>ul {
   margin-left: 0;
   padding-left: 0;
}

/*********************************************************************
  end budget structure styles
**********************************************************************/

#budget-items-wrapper .budget-item-list {
   clear: none !important;
}
#budget-items-wrapper label {
   font-size: 14px;
   display: block;
   color: #68696e;
   text-align: center;
   margin-top: 1em;
   margin-bottom: 1em;
}

#budget-items-wrapper h2 {
   margin-top: 1em;
   margin-bottom: 1em;
}
/**************************************************************************
  budget.tpl styles
***************************************************************************/
.budget-wrapper .cpy-btn {
   font-size: 12px;
}

.budget-wrapper ul.footnote, .budget-report ul.footnote {
   list-style-type: none;  
   position: relative;
}
.budget-wrapper ul.footnote sup, .budget-report ul.footnote sup {
   display: block;
   width: 3em;
   position: absolute;
   left: 0.5em;
   text-align: right;
   font-weight: bold;
}



.budget-wrapper #budget-notes, .budget-wrapper #credit-estimates {
   margin-top: 50px;  
}

.budget-wrapper {
   width: 850px;
}
.budget-wrapper .grid {
   width: 100%;
}
.budget-wrapper p.ReportSubtitle {
   float: left;
}
.budget-wrapper p.ReportSubtitle + p.ReportSubtitle {
   float: right;
}
.budget-wrapper #budget-costs tbody tr>td:first-child {
   width: 350px;
   text-align: left !important;
}
.budget-wrapper #reset {
   margin-bottom: 0;  
}
.budget-wrapper #budget-costs tbody td {
   width: 100px;
   text-align: right;
   vertical-align: middle;
   padding-right: 18px; 
   position: relative; 
}
.budget-wrapper #budget-costs sup.cost {
   display: block;
   width: 3em;
   position: absolute;
   right: -1.25em;
   top: 0;
   text-align: left;
   font-weight: bold;
}

.budget-wrapper #budget-costs tbody td>input {
   text-align: right;
}


tr.divider {
   border-top: solid 2px #e1e1e5;
}
.budget-wrapper #budget-notes tbody td:first-child{
   text-align: right;
   width: 150px;
}
.budget-wrapper #budget-notes textarea {
   width: 700px;
   max-width: 700px;
}
.budget-wrapper input.invalid {
   border: 1px solid #aa1c0f;
   display: block;
}
.budget-wrapper .changed {
   border: 1px solid #f2f9ff;
   background-color: #f2f9ff;
}
.budget-wrapper td.invalid {
   position: relative;

}
.budget-wrapper td.invalid input {
     border: thin solid #aa1c0f;

}
.budget-wrapper p.notice-invalid {
   color: #aa1c0f;
   position: absolute;
   bottom: -7px;;
   right: -85px;
   width: 82px;
   background-color: #fcdedc;
   border: thin solid #f4b1ac;
   padding: 2px;
   z-index: 99; 
   font-weight: normal;
}


.budget-wrapper #credit-estimates tbody td{
   text-align: right;
   vertical-align: middle;
}
.budget-wrapper #credit-estimates tbody .est-year{
   font-weight: bold;
}
.budget-wrapper #credit-estimates tbody td input{
    width: 95%;
    margin-left: auto;
    margin-right: auto;  
}
   
.budget-wrapper .comment-img-span, .comment-btn-edit {
   position: absolute;
   top: 0px;
   right: 3px;
   width: 16px;
   height: 16px;
   padding: 0;
   margin: 0;
   border: 0;
   background-color: transparent
}
.modal-comment textarea {
   width: 98%;
   min-width: 98%;
   height: 50%;
 
}
.budget-wrapper .comment-img-edit {
   left: 2px;
}
.budget-wrapper .comment-img-edit, .comment-img-add {
   bottom: 3px;  
}
.budget-wrapper .comment-img-view, .comment-img-add, .comment-img-edit {
   z-index: 90;  
   position: relative;
   width: 16px;
   height: 16px;
}   
         
.budget-wrapper #credit-estimates a {
   float: right;
}

.budget-table-edit tr {
   height: 28px !important;
}


.budget-wrapper .depth0 { padding-left: 0; }
.budget-wrapper .depth1 { padding-left: 30px; }
.budget-wrapper .depth2 { padding-left: 60px; }
.budget-wrapper .depth3 { padding-left: 90px; }
.budget-wrapper .depth4 { padding-left: 120px; }
.budget-wrapper .depth5 { padding-left: 150px; }
.budget-wrapper .depth6 { padding-left: 180px; }
.budget-wrapper .depth7 { padding-left: 210px; }
.budget-wrapper .depth8 { padding-left: 240px; }
.budget-wrapper .depth9 { padding-left: 270px; }

.budget-wrapper tr.separator {
   border-top: #e1e1e5 double 0.5em;  
}

/**************************************************************************
  end budget.tpl styles
***************************************************************************/

.budget-report th {
   position: relative; 
   padding-right: 0.5em!important;
}
.budget-report sup {
   position: absolute;  
   top: 0;
   right: 0;
}

/**************************************************************************
  Tablesorter styles (classes applied automatically by tablesorter.js)
***************************************************************************/


th.tablesorter-header{
  background-color: #f7f8fa;
  color: #2368a2;
}

table.grid.tablesorter.tablesorter-default tr.tablesorter-headerRow th.tablesorter-header.tablesorter-headerAsc{
  background-color: #fff3db;
}

table.grid.tablesorter.tablesorter-default tr.tablesorter-headerRow th.tablesorter-header.tablesorter-headerAsc div.tablesorter-header-inner div{
  float: left;
}

table.grid.tablesorter.tablesorter-default tr.tablesorter-headerRow th.tablesorter-header.tablesorter-headerAsc div.tablesorter-header-inner:after{
  float: right;
  content: "▲";
}


table.grid.tablesorter.tablesorter-default tr.tablesorter-headerRow th.tablesorter-header.tablesorter-headerDesc{
  background-color: #fff3db;
}

table.grid.tablesorter.tablesorter-default tr.tablesorter-headerRow th.tablesorter-header.tablesorter-headerDesc div.tablesorter-header-inner div{
  float: left;
}

table.grid.tablesorter.tablesorter-default tr.tablesorter-headerRow th.tablesorter-header.tablesorter-headerDesc div.tablesorter-header-inner:after{
  float: right;
  content: "▼";
}

/**************************************************************************
  End Tablesorter styles
***************************************************************************/

select.inputWidthMedium, input.inputWidthMedium, textArea.inputWithMedium {
   width: 400px;
}
select.inputWidthLarge, input.inputWidthLarge, textArea.inputWithLarge {
   width: 600px;
}

.inactive-rqa > td{
   color: #e1e1e5
}



/*
from public site
 */
.mainContainer {
  margin: 0 auto;
  max-width: 1140px;
  width: 95%;
  padding: 2em 23px 300px;
  width: 100%;
  padding: 2% 5% 300px;
}


.news h2{
  font-size: 1.9em;
  margin: 0 0 .3em;
  border-bottom: 1px solid #63bd51;
  line-height: 1.2;
  font-weight: 300;
}

.news h3 {
   font-size: 1.5em;
   margin: 0.7em 0 0.5em;
   line-height: 1.3;
   font-weight: 300;
}

.news a{
  text-decoration: none;
}

.news-list{
   width: 45%;
}

.news-p-list {
   line-height: 1.5em;
   width: 65%;
}

.news .news-p-list a{
  text-decoration: none;
  font-size: 1rem;
}

div.news.container{
  margin-bottom: 150px;
  margin-top: 2em;
}

div.news.container ul{
  list-style: none;
}

div.news.container p{
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

.news input[type="text"].header{
  font-size: inherit;
  margin: 0 0 .3em;
  line-height: 1.2;
  font-weight: 300;
}

div.news .right-box{
  margin-left: 1em;
}

div.news .right-box .right-inner-box{
  overflow-y: auto;
  max-height: 400px;
}

div.news .left-box .left-inner-box{
  overflow-y: auto;
  max-height: 400px;
}

div.news .groups-list-box{
   overflow-y: auto;
   max-height: 600px;
}

div.news ul.news-list{
  padding-left: 0;
  margin-left: 0;
}

div.news ul.news-list li{
  padding: 0.25rem 0rem;
}

div.news .right-box .right-inner-box ul{
  padding-left: 0;
  margin-left: 0;
}

div.news .left-box .left-inner-box ul{
  padding-left: 0;
  margin-left: 0;
}

div.news .left-box ul{
  padding-left: 0;
  margin-left: 0;
}

div.news .attachments-box ul{
  padding-left: 0;
  margin-left: 0;
}

div.news .attachments-box li{
  padding: 0.25rem 0rem;
}

div.news .attachments-box a{
  font-size: inherit;
}

div.news .right-box .right-inner-box li, div.news .left-box, div.news .person-search-result{
  padding: 0.25rem 0rem;
}

div.news .left-box .left-inner-box li, div.news .left-box, div.news .person-search-result{
  padding: 0.25rem 0rem;
}

div.news ul.person-list{
  margin-left: 0;
  padding-left: 0;
}


.box-round{
  border-radius: 3px;
}

.box-large{
  height: 3em;
  overflow-y: scroll;
}

.comment-bar{
  text-align: right;
}

.comment-bar div{
  display: inline;
}

.comment-box{
  border: 1px solid #e1e1e5;
  height: 20em;
  padding: 0.5em;
  font-size: 12px;
  width: 100%;
}

.comment-box a{
  font-size: 12px;
}/* style a button like a link */
.link-btn {
   background: none;
   border: none;
   font-size: inherit;
   color: #2368a2;
   text-decoration: underline;
   padding: 0;
}
.link-btn:hover {
	color: #0f3859;
	background-color: inherit;
}
.link-btn img {
	text-decoration: none;
}



.home-left{
  width: 50%;
  float: left;
  margin-right: 1em;
}

.home-right{
  width: 40%;
  float: right;
  margin-left: 1em;
}

.home-right::after{
  clear: both;
}

.big-li{
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.3;
  margin: 0.7em 0 0.5em;
}

.op-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
input.op-toggle-round {
	display: none;
}
.op-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
}

input.op-toggle-round + label {
  padding: 2px;
  width: 30px;
  height: 15px;
  background-color: #e1e1e5;
  border-radius: 15px;
}
input.op-toggle-round + label:before,
input.op-toggle-round + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}
input.op-toggle-round + label:before {
  right: 1px;
  background-color:#fff3db;
  border-radius: 15px;
  transition: background 0.2s;
}
input.op-toggle-round + label:after {
  width: 16px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  transition: margin 0.2s;
}

input.op-toggle-round:checked + label:after {
  margin-left: 16px;
}

label.old_rqmt{
	margin-top: 5px; 
	color: #838489; 
	font-style: italic;
	
}


table.zebra tr:nth-child(even){
  background-color: #f7f8fa;
}

.sr-only{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}


/*
   WARNING: Make sure this overrides all other styles
*/
.ims_only, .ims_only * { /* this class can be applied to IMS-only interface elements to help indicate that only IMS is seeing these elements. */
   background-color: #b1cde5;
   color: #343438;
}

.ncorpsys-background-red{
  background-color: #fcdedc;
}

.ncorpsys-background-green{
  background-color: #cbebc5; 
}

/*
  Used for list of divs, alternating the background colors (lightblue). Used in admin/search_log utility. 
*/

div.alternate_colors > div:nth-of-type(odd) {
   color: #343438;
   background-color: #f7f8fa;
}

div.filter-container{
  width: auto;
}

div.left-filters{
  width: 15%;
  border-right: 1px solid #e1e1e5;
  display: inline-block;
}

div.filter-data{
  width: 80%;
  display: inline-block;
}


.table-filters{
  border-right: 1px solid #e1e1e5;
  vertical-align: top;
  background-color: #f7f8fa;
  padding: 1em;
  width: 8%;
}

.table-filters-collapsed{
  border-right: 1px solid #e1e1e5;
  vertical-align: top;
  background-color: #f7f8fa;
  padding: 1em;
  width: 3%; 
}

.table-data{
  vertical-align: top;
  width: 75%;
}

.table-messages{
  vertical-align: top;
  width: 20%;
}

div.table-filter{
  margin: 2em auto;
}

div.table-filter-toggle{
  margin: auto auto;
  text-align: right;
}

div.table-filter-first{
  margin: auto auto;
}


table.side-filtered-table{
  width: 100%;
}

.icon-bumper-bottom img{
  margin-bottom: 12px;
}

img.disabled-img, i.disabled-img{
  opacity: 0.5;
}

.help-wiki .ui-widget-header {
    color: #fff;
    background: #2368A2;
    border: none;
}

.help-wiki .ui-corner-all {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

#help_wiki {
    background-color: #f7f8fa;
}

#wiki_text LI, #wiki_text P, #wiki_text H2, #wiki_text H3, #wiki_text LEGEND {
   font-size: 0.875rem;
}

.wiki_link {
   text-decoration: underline;
   cursor: pointer;
}

button.filterform-btn {
   text-align: center;
   border: none;
   background: inherit;
   box-shadow: none;
   border-radius: 0;
   padding: 5px;
   margin: 0;
}

.medium-font-size{
   font-size: 1.5em;
}

.large-font-size{
   font-size: 2.5em;
}

.medium-heading{
   font-size: 1.3em;
   font-weight: bold;
   color: #343438;
}

.unemphasized-date{
   font-weight: bold;
   color: #68696e;
}

ul.tabs{
   list-style: none;
   margin: 0;
   padding-left: 0;
}

@media screen and (min-width: 1301px){
   ul.tabs{
      border-bottom: 2px solid #2368A2;
   }

   ul.tabs li{
      display: inline-block;
      /* padding: 1em; */
      margin-bottom: -1px;
      cursor: pointer;
      font-size: 1.1em;
   }

   ul.tabs li:hover{
      background-color: #2368A2;
   }

   ul.tabs li:hover > a{
      color: #fff;
   }

   ul.tabs li.tab > a{
      display: inline-block;
      cursor: pointer;
      font-size: 1em;
      padding: 1em;
      font-weight: normal;
      text-decoration: none;
   }

   ul.tabs li.active-tab{
      background-color: #2368A2;
      border: 1px solid #2368A2;
      border-bottom-color: transparent;
   }

   ul.tabs li.active-tab a{
      color: #fff;
      font-size: 1em;
      font-weight: normal;
   }

   .tab-content-container-d{
      border-left: 1px solid #e1e1e5;
      border-right: 1px solid #e1e1e5;
      border-bottom: 1px solid #e1e1e5;
      padding: 3em 2em 2em 2em;
   }

   ul.tabs div.tab-content{
      display: none;
   }

   .tab-content-container-m{
      display: none;
   }
}

.dialog-new{
   border: 2px solid #e1e1e5;
   width: 85%;
   padding: 20px 15px;
}

.dialog-new h2{
   font-size: 1.7em;
   margin-bottom: 0.25em;
   margin-top: 0;
}

.dialog-new  h3{
   margin-top: 0;
   margin-bottom: 0.5em;
   font-size: 1.5em;
   color: #343438;
   font-weight: normal;
}

.dialog-new h2 a{
   text-decoration: none;
   color: #343438;
}

.dialog-new h2 a:hover{
   text-decoration: underline;
}

.flex-container-row{
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   /* align-items: flex-start; */
}

.flex-container-col{
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
}

.flex-block{
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.request-label{
   font-weight: bold;
   color: #68696e;
   font-size: 1em;
}

.request .request-label{
   cursor: pointer;
}

.auto-width {
    width: auto !important;
}

.rb-editor-launcher {
   padding-left: 5px;
}
.rb-editor-launcher:hover {
    cursor: pointer;
}

.label-grey{
   font-weight: bold;
   color: #68696e;
   font-size: 1em;
}

.inline-label-grey{
   display: inline-block;
   font-weight: bold;
   color: #68696e;
   font-size: 1em;
}


table.accrual-table{
   width: 100%;
}

table.accrual-table th{
   color: #343438;
   text-align: center;
}

table.accrual-table td, table.accrual-table th{
   padding: 0.8em 1em;
}

table.accrual-table tbody tr td:not(:first-child), table.accrual-table tfoot tr td:not(:first-child){
   text-align: right;
}

table.accrual-table th.sorting_desc::after {
   font-family: "Font Awesome 5 Free";
   content: '\f0dd';
   display: inline-block;
   padding-left: 5px;
}

table.accrual-table th.sorting_asc::after {
   font-family: "Font Awesome 5 Free";
   content: '\f0de';
   display: inline-block;
   padding-left: 5px;
}

table.accrual-table tbody th div, table.accrual-table thead th div {
   display: flex;
   flex-direction: column;
}

table.accrual-table span.option-subscribe, table.accrual-table span.option-unsubscribe, table.accrual-table a.subscribe-all, table.accrual-table a.unsubscribe-all {
   font-weight: normal;
}

.separator{
   border-top: 1px solid #e1e1e5;
   margin-top: 2em;
   margin-bottom: 2.5em;
}

.list-box{
   display: flex;
   /* justify-content: space-between; */
   border: 1px solid #e1e1e5;
}

.spaced-list-box{
   display: flex;
   /* justify-content: space-between; */
   border: 1px solid #e1e1e5;
   margin: 1em 0em;
   padding: 1.5em;
   /* box-shadow: 2px 2px 5px #cacbcf; */
}

.list-box-bar{
   width: 7px;
}

.list-box-icon{
   flex: 1;
   text-align: center;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.list-box-contents{
   display: flex;
   flex-direction: column;
   padding: 15px;
   justify-content: center;
   flex: 15;
}

.list-box-status{
   flex: 2;
}


table.grid tbody tr.grid-row-header td{
   color: #343438;
   background: #f7f8fa;
   text-align: left;
   font-weight: bold;
}

/* FLEX FILTER BAR */
.flexFilterBar{
   background: #f7f8fa;
   padding: 5px;
   border: 1px solid #e1e1e5;
   /* box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2); */
   margin-bottom: 1em;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
   .flexFilterBar div.filters-rows{
      display: block;
   }   
}

@media not all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
   .flexFilterBar div.filters-rows{
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
   }   
}

.flexFilterBar div.filters{
   flex: 10;
   display: flex;
   flex-direction: row;
   justify-content: flex-start;
   flex-wrap: wrap;
}

.flexFilterBar div.filters-col{
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
}

.flexFilterBar div.filters div.filter, .flexFilterBar div.export div.filter{
   margin: 5px;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

.flexFilterBar div.filters div.filterGroup{
   margin: 5px;
   display: flex;
}

.flexFilterBar div.filters div.filterGroup div.filter:first-child{
   margin: 0px 5px 0px 0px;
}

.flexFilterBar div.filters div.filterGroup div.filter{
   margin: 0px 0px 0px 5px;
}

.flexFilterBar div.export{
   /* flex: 1; */
   display: flex;
   justify-content: flex-end;
}

.flexFilterBar label {
   color: #68696e;
}

.flexFilterBar div.filters div.checkboxFilterGroup{
   display: flex;
   flex-direction: column;
   margin: 5px;
   justify-content: space-between;
}

.flexFilterBar div.filters div.checkboxFilterGroup div.filter{
   display: flex;
   flex-direction: row;
   margin: 0;
}

.flexFilterBar .text-filter-with-buttons{
   display: flex;
}

.flexFilterBar .filter-row{
   display: flex;
   flex-direction: row;
}

.excel-green{
   color: #3b852c;
}

.underline{
   text-decoration: underline;
}

.no-underline{
   text-decoration: none;
}

a.ui-datepicker-next:hover, a.ui-datepicker-next:focus{
   color: #2368a2;
   background: #fff;
   border-color: #fff;
}

a.ui-datepicker-prev:hover, a.ui-datepicker-prev:focus{
   color: #2368a2;
   background: #fff;
   border-color: #fff;
}

.card{
   /* padding: 16px; */
   border: 2px solid #e1e1e5;
   border-radius: 5px;
   line-height: 1.75em;
}

.card .card-title{
   font-size: 2em;
   /* margin: 0 0 0.5rem 0; */
}

.card .card-subtitle{
   font-size: 1.4em;
   margin: 0 0 0.5rem 0;
}

.deemphasized{
   opacity: 0.5;
}

@media (min-width: 768px) {
   .mobile-only {
      display: none;
   }
   ul#main-menu {
      display: flex!important;
   }
}

ul#main-menu {
   z-index: auto;
}

.main-menu-btn {
   position: relative;
   display: inline-block;
   width: 28px;
   height: 28px;
   text-indent: 28px;
   white-space: nowrap;
   overflow: hidden;
   cursor: pointer;
   -webkit-tap-highlight-color: rgba(0,0,0,0);
}
/* hamburger icon */
.main-menu-btn-icon, .main-menu-btn-icon:before, .main-menu-btn-icon:after {
   position: absolute;
   top: 50%;
   left: 2px;
   height: 2px;
   width: 24px;
   background: #bbb;
   -webkit-transition: all 0.25s;
   transition: all 0.25s;
}
.main-menu-btn-icon:before {
   content: '';
   top: -7px;
   left: 0;
}
.main-menu-btn-icon:after {
   content: '';
   top: 7px;
   left: 0;
}
/* x icon */
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
   height: 0;
   background: transparent;
}
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
   top: 0;
   -webkit-transform: rotate(-45deg);
   transform: rotate(-45deg);
}
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
   top: 0;
   -webkit-transform: rotate(45deg);
   transform: rotate(45deg);
}
/* hide menu state checkbox (keep it visible to screen readers) */
#main-menu-state {
   position: absolute;
   width: 1px;
   height: 1px;
   margin: -1px;
   border: 0;
   padding: 0;
   overflow: hidden;
   clip: rect(1px,1px,1px,1px);
}
/* hide the menu in mobile view */
#main-menu-state:not(:checked) ~ #main-menu {
   display: none;
}
#main-menu-state:checked ~ #main-menu {
   display: block;
}
@media (min-width: 768px) {
   /* hide the button in desktop view */
   .main-menu-btn {
      position: absolute;
      top: -99999px;
   }
   /* always show the menu in desktop view */
   #main-menu-state:not(:checked) ~ #main-menu {
      display: block;
   }
}

.pending-requests-number{
   position: absolute;
   background: #db3a2c;
   height: 1rem;
   top: 0.2rem;
   right: 0.2rem;
   width: 1rem;
   text-align: center;
   line-height: 1rem;
   border-radius: 50%;
   font-size: 0.7rem;
   color: #fff;
   border: 1px solid #db3a2c;
}

/* Overriding select2 default theme to better match existing NCORP-SYS theme */
.select2-container--default .select2-selection--single {
   border: 1px solid #e1e1e5;
}

.select2-container .select2-selection--multiple {
   min-height: 28px;
   padding-bottom: 0;
   border: 1px solid #e1e1e5;
}

