/* This file is to override any Bootstrap native CSS */

* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* The below two footer items are to mimic the footer of Sharepoint */
footer {
    font-size: .9em;
}

main a,footer a,.alert a {
    color: #34d;
    text-decoration: underline;
}


/* Override for dataTables where the value looks like a number */
table tr td.dt-type-numeric.dt-left, th.dt-type-numeric.dt-left {
    text-align: left;
  }

  table tr td.dt-type-numeric.dt-center, th.dt-type-numeric.dt-center {
      text-align: center;
    }

/* no sort class on DataTables so columns don't offer sort feature */
.no-sort::after { display: none!important; }

.no-sort { pointer-events: none!important; cursor: default!important; }
  

/* Override to push the label down a little bit to make it more centered on the input box */
label {
    margin-top: 5px;
}

/* Override to make the light background just slightly darker */

.bg-light {
    background-color: lightgray !important;
}


/*  Custom Classes  */
.fs-7 {
    font-size: .9em !important;
}

.fs-8 {
    font-size: .8em !important;
}

.w-85 {
    width: 85% !important;
}

.bg-menu {
    background-color: #293352 !important;
}

.{
    color: maroon !important;
    padding: 2px !important;
}

.emphasisMaroon {
    font-style: italic;
    color: maroon;
}

.text-navy {
    color: navy;
}

.inputRequired {
    border: red 1px solid !important;
}

.form-control-phone {
    display: inline;
    width: 30%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-required {
    display: inline;
    width: 90%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.dropdown-item {
    padding: 2px 5px;
}

/*  Copied from old CSS files  */
table {
	border-collapse: collapse; 
}

#messageWindow {
	position: absolute;
	clear: both;
	display: none;
	top: 50px;
	left: 50px;
	margin: auto;
	padding: 5px;
	width: 540px;
	height: 450px;
	background-color: OldLace;
	border: 1px solid black;
	z-index: 9;
}

#messageWindowContent {
	padding: 10px;
	overflow: hidden;
	height: 405px;
	width: 518px;
}

#messageWindowTop {
	background-color: aliceblue;
	height: 25px;
	width: 530px;
	margin: 0px;
	padding: 2px;
}

#appContent {
	float: left;
	background-color: White;
	padding: 4px 0px 4px 4px;
	width: 620px;
}
.required {
	color: red;
}

.borderPurple {
	border: #660099 1px solid; 
}
	
.button	{	
	color: black;
	background-color: #DDDDDD;	
	padding-left: 10px;
	padding-right: 10px;	
}

.img {
	border : none;
}

/* use below to alternate row colors in tables
 * (queryName.currentRow MOD 2) <- determines even or odd row */
.rowColorA {
	background-color: whitesmoke;
}

.rowColorB {
	background-color: white;
}

.rowColorC {
	background-color:yellow;
}