
		
/*
BASE CSS
*/

html,body
{
	margin:0;
	padding:0;
}

body {
	background-color: #F1F1F1;
    color: #49505C;
	font-family: 'Roboto', sans-serif;
	font-size: 78%;
	text-align: center;
}

a {
	color: #4489E4;
}

a:hover
{
	color: #FFA631;
	text-decoration: none;
}

hr {
    border-top: 1px solid #ffa631;
	font-family: 'Roboto', sans-serif;
	font-size: 78%;
}

input, textarea, select {
	border: 1px solid #dee2e6;
}

/*
HEADER AND FOOTER CSS
*/

div#headerAndMenu {
	display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 3;
}
div#header {
	background-color: #FFA631;
	color: #333333;
	font-size: 40px;
	height: 100px;
	line-height:80px;
	margin:0;
	padding-left:30px;
	text-shadow: 2px 2px 4px #ffffff85;
}

div#container
{
	text-align:left;
	width:1000px;
	margin:0 auto;
	background-color: #ffffff;
}


div#content {
	text-align: left;
	background-color: #f1f1f1;
}

div#footer {
	background-color: #FFA631;
    bottom: 0;
    color: #333333;
    font-size: 16px;
    position: fixed;
    text-shadow: 2px 2px 2px #000000;
    width: 100%;
}

div#footer p {
    align-content: center;
    color: #ffffff;
	display: flex;
    flex-wrap: wrap;
    height: 30px;
    padding: 0px 10px 0px 40px;
}

#loadingAnimationContainer, #popupmsgContainer {
	background-color: #f1f1f1aa;
	display: flex;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
}
#popupmsgContainer {
	background-color: #f1f1f1f1 !important;
	align-content: center;
	flex-wrap: wrap;
    justify-content: center;
}
#popupmsg {
	font-size: 16px;
    font-weight: bold;
	line-height: 150%;
}
.loadingAnimationBG {
	background-color: rgba(52, 60, 73, 0.975);
}
.loadingAnimation {
    left: 50%;
	margin-left: -75px;
    opacity: 1;
    position: fixed;
    scale: 1.0;
    top: 50%;
    transition: 1s;
	z-index: 5;
}
.loadingAnimationHide {
	transition: 1s;
	left: 50%;
	margin-left: -75px;
    opacity: 0;
	position: fixed;
	top: 50%;
	z-index: -1;
}



/*
LOGIN SIDE MENU
*/

#loginMenu
{
	position: relative;
	float:right;
	padding-right: 5px;
}



/*
CONTENT STYLES
*/


/*Table display for data */
table.dataTable {
	width: 980px;
	margin-left: 10px;
}
th.orange {
	background-color: #FFA631;
}
td.dataListCell {
	background-color: #ffffff;
	border: 1px solid #dee2e6;
	border-left: none;
    border-right: none;
    border-top: none;
    padding: 12px 10px;
	vertical-align: top;
}

th.dataListHeader {
	border: 1px solid #dee2e6;
    padding: 10px;
    background-color: #FFA631;
}



/*Table display for interface forms*/
table.interfaceTable {
	background-color: #FFFFFF;
	margin-left: 10px;
	margin-bottom: 10px;
}

div.interfaceDiv {
	border: 1px solid #dee2e6;
	background-color: #FFFFFF;
	padding: 10px;
	margin: 10px;
}

td.interfaceCell
{
	padding: 10px 25px;
}




/*Table display for tools forms*/
table.toolTable
{
	margin-left: 10px;
	border: 1px solid #00309C;
}

td.toolCell
{
	border: none;
	padding: 1px 1px 1px 5px;
}

th.toolHeader
{
	border: 1px solid #00309C;
	padding: 1px;
	background-color: #FFA631;
}




/*CONTENT TEXT STYLES*/

div.instruction {
	border-bottom: solid 1px #ffa631;
    font-weight: normal;
    font-size: 1.4em;
    letter-spacing: .2em;
    line-height: 1.1em;
    margin: 15px 0 20px 35px;
    padding-bottom: 20px;
    text-transform: uppercase;
    width: 93%;
}


div.hiddencomment{
    background-color: #888888;
}


/* NEW STYLES SJF 20231121 */
.required {
	color: red; font-weight: bold; float: right;
}

.errorborder {
	border: 1px solid red;
}
/* *********************** */



/* New Admin CSS */
#buttonsContainer {
    background-color: #ffffff;
    border: solid 1px #dee2e6;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 30px;
}

.adminButton {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    margin: 5px;
    padding: 5px;
    width: 145px;
}

.interfaceCell > input {
	width: 574px;
    padding: 10px;
}
#editEmail, #editLastName, #editFirstName, #editUserType, #editVersion, #editPassword, #editConfirmPassword {
	width: 574px;
    padding: 10px;
}
#editUserSave, #editSettingsSave, #addprefabcomment {
    background: #4489E4;
    border: none;
    border-radius: 2px;
    clear: both;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    text-decoration: none;
	text-transform: capitalize;
    width: 125px;
}

#commissionInvalid {
	color: #ff3030;
	font-weight: bold;
	width: 150px;
}

#addprefabcomment {
	margin-left: 760px;
	width: 190px;
}
/* ************* */



/* ADMIN SECTION - MONTHLY REF POPUP */
.editRefNum {
	cursor: pointer;
	opacity: 0;
}

.hasRef {
	color: #00b300;
}

#monthlyReferenceContainer {
	transition: 333ms;

    align-content: center;
	background-color: #000000E0;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	height: 100vh;
    justify-content: center;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: -10;
}

.mRC_show {
	opacity: 1 !important;
	z-index: 10 !important;
}

#mRCButtonsContainer {
    display: flex;
    justify-content: center;
}

#mRCInnerContainer {
	background-color: #f1f1f1;
	border-radius: 5px;
	height: 610px;
	width: 777px;
}

#mRCUInput {
    display: flex;
    column-gap: 10px;
}

#mRCCompanyName {
    align-content: center;
    background-color: #FFA631;
	border-radius: 5px 5px 0px 0px;
    color: white;
	display: flex;
    font-size: 32px;
	font-variant: small-caps;
	font-weight: bold;
    flex-direction: row;
    flex-wrap: wrap;
    height: 80px;
    justify-content: center;
    text-shadow: 1px 1px 2px black;
	text-transform: capitalize;
}

#mRCCurrentContainer {
    display: flex;
    font-size: 24px;
	justify-content: center;
	margin-top: 20px;
    padding: 10px;
}

#mRCCurrentMonthYear {
	font-variant: small-caps;
    font-weight: bold;
    margin-left: 10px;
}

.mRCCurrentMonth {
	color: #4489E4;
}

#mRCCurrentRefNum {
	margin-left: 15px;
}

#mRCDD {
	font-size: 19px;
}

#mRCLoadingText {
    display: flex;
    justify-content: center;
    height: 80px;
    flex-wrap: wrap;
    align-content: center;
    font-size: 16px;
    font-weight: bold;
}

.mRCMonthText {
	font-variant: small-caps;
	width: 115px;
}

.mRCYearText {
	width: 80px;
}

#mCRPreviousReferenceContainer {
	display: flex;
	flex-direction: row;
}

.mRCRefNumInput {
	font-size: 18px;
	width: 320px;
}

#mRCSetRefContainer {
    align-items: center;
    column-gap: 10px;
    display: flex;
    flex-direction: column;
    font-size: 21px;
    justify-content: center;
    margin: 25px 0px;
	row-gap: 15px;
}

.mRCUpdateRefContainer {
    display: flex;
    column-gap: 15px;
}

.mRCYearDateText {
	width: 250px;
}




#generatedReportButtons {
    display: inline-flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    zoom: 0.75;
}

#adminClientDropdownSubUser {
	background-color: var(--scotia-blue);
	color: white;
	font-weight: bold;
	padding: 10px;
	width: 596px;
}

#userAddPassword, #userAddConfirmPassword {
	width: 574px;
	padding: 10px;
}