@font-face 
{
    font-family: 'Roboto';
    src:  url('fonts/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face 
{
    font-family: 'Roboto';
    src:  url('fonts/Roboto/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face 
{
    font-family: 'Roboto';
    src:  url('fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face 
{
    font-family: 'Roboto';
    src:  url('fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.customAutoLogoutZIndex
{
	z-index: 5000!important;
	border: none!important;
}
.customAutoLogoutHeader
{
	color: #FFF;
	font-family: Roboto;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	background: var(--colorPrimary);
	border-radius: 0 !important;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.autoLogoutBtn
{
	height: 50px;
	width: 91%;
	margin: 0!important;
	background-color: var(--colorBrand)!important;
	color: var(--colorWhite)!important;
	position: absolute;
	bottom: 20px;
	text-align: center;
	font-size: 20px!important;
	font-style: normal;
	font-weight: 700!important;
	line-height: 20px; 
}
button .autoLogoutBtn :hover
{
	background-color: var(--colorSubBrand)!important;
	color: var(--colorWhite)!important;
}
#modal_pop
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 213px !important;
	padding: 0!important;
}
.customDialogButtonPaneAutoLogout
{
	padding: 0!important;
	border: none!important;
	margin: 0!important;
}
.buttonContainerAutoLogout
{
	width: 100%;
	display: flex;
	justify-content: center;
	position: relative;
}
.autoLogoutClock
{
	color: var(--primary-text, #3D3D3D);
	text-align: center;
	font-family: Roboto;
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
#autoLogoutStillWithUs
{
	color: var(--primary-text, #3D3D3D);
	text-align: center;
	font-family: Roboto;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
html,body
{
    font-family: 'Roboto', Helvetica, Arial, Tahoma;  
    margin:0;
    padding:0;
    height:100%;
    background-color:#fff;
}
html
{
	overflow:hidden;
}
:root
{
	/* Colors */
	--colorBrand: #39803C;
	--colorBrandHover: #15891A;
	--colorBrandDarkmode: #02B73B;
	--colorBrandDarkmodeHover: #09C544;
	--colorSubBrand: #19851D;
	--colorBrandHover: #15891A;
	--colorPrimary: #3D3D3D;
	--colorPrimaryHover: #545454;
	--colorTertiaryHover: #595959;
	--colorInactiveGrey: #B7B7B7;
	--colorInactiveGrey2: #D1D3D4;
	--colorTableBorder: #DCDFE0;
	--colorTableAccent: #DCDFE0;
	--colorTableAlternateRow: #F0F2F3;
	--colorBackgroundHighlight: #E2EDE2;
	--colorError: #B80303;
	--colorErrorDarkmode: #CF0101;
	--colorAlert: #F8B404;
	--colorFuschia-brand: #496734;
	--colorBGHighlight: #39803C1A;
	--colorRowHighlight: #E2EDE2;
	--colorWhite: #fff;
	/* Fonts */
	--heading1: 22px;
	--heading2: 18px;
	--heading3: 14px;
	--paragraph: 14px;
	--buttonFont: 13px;
	--supportingText: 13px;
	/* Buttons */
	--mediumButtonHeight: 30px;
	--largeButtonHeight: 35px;
}
/* download popup */
.customCheckContainer 
{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: relative;
}
/* Hide the browser's default checkbox */
.customCheckContainer input 
{
  /* position: absolute; */
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  position: absolute;
}
/* Create a custom checkbox */
.checkmarkCustom 
{
  height: 14px;
  width: 14px;
  border: 1px solid var(--colorPrimary);
  background: #fff;
  display: flex;
  justify-content: center;
  border-radius: 2px;
}
/* When the checkbox is checked, add background color*/
.customCheckContainer input:checked + span:after{
	background-color: var(--colorBrand);
    border: 1px solid var(--colorBrand);
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmarkCustom:after 
{
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.customCheckContainer input:checked ~ .checkmarkCustom:after 
{
  display: block;
}
/* Style the checkmark/indicator */
.customCheckContainer .checkmarkCustom:after 
{
	width: 12px; /* Set the size of the pseudo-element */
	height: 12px;
	background: url('images/checkbox.svg') no-repeat center;
	/* background-color: var(--colorBrand); */ /* Your background color */
	background-size: contain; */
}
.customCheckDisabled
{
	border-color:rgba(61, 61, 61, 0.25);
	background-color: #E2EDE2;
}
.downloadPopupInput[type="checkbox"]:disabled:checked + span:after,
.checkmarkCustom .downloadPopupInput[type="checkbox"]:disabled:checked + span:after,
.checkmarkCustom .downloadPopupInput[type="checkbox"]:disabled:checked + span
{
	border-color: #E2EDE2;
	background-color: #E2EDE2;
}
input:disabled + .checkmarkCustom
{
	border: 1px solid #E2EDE2;
}



#viewDownload
{
	background: var(--colorBrand) !important;
    box-shadow: 0px 0px 0px;
    color: #fff !important;
    border-width: 1px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px !important;
    border-radius: 4px !important;
    border: none !important;
    margin: 0;
    cursor: pointer;
    padding: 0 !important;
    min-width: 80px;
    height: 25px !important;
}
#viewDownload:hover
{
	background: var(--colorSubBrand);
}
.checkboxLabelContainer{
  display: flex;
  min-height: 15px;
  gap: 4px;
  margin-top: 10px;
}
.checkboxLabelContainerLine{
  display: flex;
  height: 41px;
  align-items: center;
  position: relative;
}
.secondContainer
{
  align-self: center;
}
.chkLinearea
{
  height: 100%;
  width: 21px;
}
.downloadOptionsPopup
{
	display: flex;
	flex-direction: column;
	gap: 7px;
	width: 200px;
	position: absolute;
	transform: translate(-50%, -50%);
	background-color: white;
	z-index: 5000;
	padding: 10px;
	font-size: 14px;
	box-shadow: 0px 6px 11px 0px #0000002E;
	border: 1px solid #EAECED
}
.checkHeading
{
	font-weight: 500;
}
.downloadPopupHeaderSection
{
	display: flex;
    align-items: flex-start;
    gap: 2px;
    justify-content: center;
}
.downloadOptionHeader
{
	font-weight: 700;
	line-height: 20px;
}
#header
{
	background-color: var(--colorPrimary);
	color:white;
	height:50px;
	position:relative;
	top:0px;
	left:0px;
	display:block;
	width:100%;
}

#header-menu-button
{
	background-image: url("../images/menu_btn_darkmode_green.svg");
	width:30px;
	height:30px;
	position:absolute;
	left:15px;
	top:10px;
}
#header-menu-button:hover
{
	background-image: url("../images/menu_btn_white.svg");
	cursor:pointer;
}
.header-menu-button-active
{
	background-image: url("../images/menu_btn_white.svg") !important;
}
.header-menu-button-notification:after
{
	position:absolute;
	content:"";
	height:10px;
	width:10px;
	background-color: var(--colorErrorDarkmode) !important;
	border-radius: 10px;
	margin-top:-5px;
	margin-left:25px;
}
.dark-select-wrapper
{
	background-color: var(--colorPrimary);
	color:white !important;
	height:30px;
	border:1px solid var(--colorTertiaryHover);
	border-radius: 3px;
	-webkit-appearance: none;
}
.dark-select-wrapper:hover
{
	border:1px solid var(--colorInactiveGrey);
	background-color: var(--colorTertiaryHover);
}
.dark-select-wrapper::after
{
	content:"";
	position:absolute;
	display:inline-block;
	height:30px;
	border-right:1px solid var(--colorTertiaryHover);
	left:85px;
}
.dark-select
{
	background-color: var(--colorPrimary);
	width:auto;
	padding-left:5px;
	padding-right:5px;
	height:30px;
	border:none;
	color:white !important;
}
.dark-select-wrapper:hover::after
{
	border-right:1px solid var(--colorInactiveGrey);
}
.dark-select:hover
{
	background-color: var(--colorTertiaryHover);
}
#header-account-status-filter-wrapper
{
	background-color: var(--colorPrimary);
	color:white !important;
	height:30px;
	border:1px solid var(--colorTertiaryHover);
	position:absolute;
	left:55px;
	top:10px;
	border-radius: 3px;
	-webkit-appearance: none;
}
#header-account-status-filter-wrapper:hover
{
	border:1px solid var(--colorInactiveGrey);
	background-color: var(--colorTertiaryHover);
}
#account-status-filter
{
	background-color: var(--colorPrimary);
	width:auto;
	padding-left:5px;
	padding-right:5px;
	height:30px;
	border:none;
	color:white !important;
}
#header-account-status-filter-wrapper::after
{
	content:"";
	position:absolute;
	display:inline-block;
	height:30px;
	border-right:1px solid var(--colorTertiaryHover);
	right:18px;
}
#header-account-status-filter-wrapper:hover::after
{
	border-right:1px solid var(--colorInactiveGrey);
}
#account-status-filter:hover
{
	background-color: var(--colorTertiaryHover);
}
#header-user-profile
{
	position:absolute;
	cursor:pointer;
	top:0px;
	right:0px;
	background-color: var(--colorPrimaryHover) !important;
	color:white;
	width:190px;
	height:50px;
	font-size: 14px;
	font-weight:500;
	padding-left: 10px;
	padding-right: 30px;
	display:flex;
	align-items:center;
	text-align: left;
}
#header-user-profile::after
{
	position:absolute;
	content:"⌵";
	right:10px;
	font-weight:bold;
	font-size:18px;
	margin-top:-5px;
}
.header-user-profile-alert::before
{
	position:absolute;
	content:"";
	height:10px;
	width:10px;
	background-color: var(--colorErrorDarkmode) !important;
	border-radius: 10px;
	margin-top:5px;
	margin-left:180px;
}
#header-pending-approvals,#header-proxy-logout
{
	background-color: var(--colorBrandDarkmode) !important;
	color:white;
	font-weight: bold;
	float:right;
	height:30px;
	padding-left:10px !important;
	padding-right:10px !important;
	margin-right:20px;
	margin-top:11px;
}
#header-proxy-logout
{
	background-color: var(--colorErrorDarkmode) !important;
}
#header-pending-approvals:hover
{
	background-color: var(--colorBrandDarkmodeHover) !important;
	color:white !important;
}
#header-proxy-logout:hover
{
	background-color: var(--colorError) !important;
}
#header-pending-approvals:after
{
	content: attr(approvalcount);
	height:20px;
	width:20px;
	background-color:var(--colorError) !important;
	border-radius: 15px;
	position:absolute;
	margin-top:-15px;
	margin-left:0px;
	font-size:12px;
	line-height:1.7em;
}
#user-profile-menu li.ui-state-disabled
{
	background-color: var(--colorPrimaryHover) !important;
	color:white;
	opacity:1;
	font-size:13px !important;
	line-height:1em !important;
}
#header-currency
{
	background-color: white;
	color:var(--colorPrimary);
	height:30px;
	width:45px;
	font-size:14px;
	font-weight:bold;
	text-align:center;
	line-height:2.2em;
	position:absolute;
	left:975px;
	top:11px;
}
#user-profile-menu.ui-menu
{
	display:none;
	width:230px;
	position:absolute;
	right:0px;
	top:50px;
	z-index:3500;
}
div.ui-menu-item-wrapper
{
	padding-left:10px !important;
	font-size:14px;
	line-height:2.5em;
}
#img-receipt-bucket
{
	width:15px;
	vertical-align:middle;
}
#wrapper
{
	height:100%;
	background-color: rgb(229,229,229);
	overflow-y: auto;
	overflow-x:hidden;
	width:100%;
}
#content
{
	position:relative;
	overflow-y: auto;
	overflow-x:hidden;
	top:15px;
	height:calc(100% - 155px);
	width:99%;
	left:.5%;
	background-color:rgb(229,229,229);
}
#template_header
{
	font-size: 22px;
	font-weight: bold;
	color: var(--colorPrimary);
	height:26px;
	position:relative;
	margin-top:30px;
	left:15px;
}
#main-account-select-wrapper
{
    width: 800px;
	padding-right:3px;
	height:26px;
	position:absolute;
	left: 185px;
	top:10px;
}
#main-account-select-wrapper:hover .searchSelect-viewAll
{
	border:1px solid var(--colorInactiveGrey) !important;
	background-color: var(--colorTertiaryHover) !important;
}
#main-account-select input
{
	padding-left:5px;
    width: calc(100% - 45px);
	background-color: var(--colorPrimary);
	border: 1px solid var(--colorTertiaryHover) !important;
	color: white !important;
	height:28px;
}
#main-account-select input:focus
{
	border:none;
	outline: none;
}
#main-account-select-wrapper:hover input
{
	border:1px solid var(--colorInactiveGrey) !important;
	background-color: var(--colorTertiaryHover) !important;
}
#receiptBucketWrapper
{
	height:auto;
	position:absolute;
	display:none;
	z-index:3000;
	border:1px solid gray;
	background-color:white;
	width:480px;
	height:auto;
	padding:20px 20px 20px 20px;
	border-radius: 5px;
    -moz-border-radius: 5px;
	max-height:calc(100% - 150px);
	min-height:300px;
	text-align:center;
	margin: auto;
}
#draggableReceiptBucket
{
	cursor: grab;
}
#pce-sub-menu
{
	width:165px;
	position:absolute;
	top:100%;
	left:263px;
}
#cardholder-pce-sub-menu
{
	width:165px;
	position:absolute;
	top:25px;
	left:305px;
	text-align: left;
	z-index:3200;
}
#cardholder-pce-download-menu,#admin-pce-download-menu,#pce-approval-menu
{
	width:260px;
	position:absolute;
	text-align: left;
	z-index:3200;
}
#export-sub-menu
{
	width:165px;
	position:absolute;
	top:100%;
	left:187px;
}
.popup-close-button
{
	background-color: white !important;
	color: var(--colorPrimary) !important;
	position:absolute;
	bottom:10px;
	right:15px;
	font-size:.875rem !important;
}
.popup-close-button:hover
{
	background-color: white !important;
	color: var(--colorPrimaryHover) !important;
}
.copyrights_footer
{
	position:absolute;
	bottom:0px;
	height:34px;
	padding-left:15px;
	background-color: var(--colorPrimary);
	color: #fff;
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
}
.releaseNotesPopup
{
	width: 80%!important;
	max-height: 80%!important;
	top: 10%!important;
    left: 0!important;
    right: 0!important;
    margin: auto!important;
}
.ui-widget-content.ui-autocomplete
{
	z-index:4100;
}
.popup-header
{
	position:absolute;
	top:0px;
	left:0px;
	width:calc(100% - 15px);
	background-color: var(--colorPrimary);
	color:white;
	font-size:18px;
	font-weight:500;
	text-align: left;
	padding: 10px 0px 10px 15px;
}
.popup-header .close-icon
{
	position:absolute;
	top: 11px;
	right:15px;
	width:15px;
	cursor:pointer;
}
.popup-title
{
	width:100%;
	text-align:center;
	margin-top:50px;/*advancePopup has top padding of 20 and popup-header is 40, and we want 30 below that*/
	font-size:18px;
	font-weight:bold;
	margin-bottom:14px;
}
.popup-body
{
	overflow-y: auto;
    height: calc(100% - 100px);
	margin-top: 40px;
	padding-right: 5px;
	padding-top: 25px;
}
.popup-footer
{
	height: 40px;
	padding: 10px 5px;
}
.popup-button-bar
{
	position: absolute;
	right: 10px;
	width: 100%;
}
.button-bar-left
{
	display: inline-block;
	position: absolute;
	left: 10px;
}
.button-bar-right
{
	display: inline-block;
	position: absolute;
	right: 10px;
}
.primary
{
	background:var(--colorBrand)!important;
	height: 30px!important;
}
.primary:hover
{
	color:white!important;
	background:var(--colorSubBrand)!important;
}
.secondaryBtn
{
	background:var(--colorPrimary)!important;
}
.secondaryBtn:hover
{
	color:white!important;
	background:var(--colorPrimaryHover)!important;
}
.button
{
	font-size: var(--paragraph);
	color: #f9f9f9!important;
	font-weight: 700;
}
.mediumBtn
{
	height: var(--mediumButtonHeight);
}
.cancel
{
	background:var(--colorError)!important;
}
.button.secondaryBtnInverted
{
	color: var(--colorPrimary) !important;
	background: #fff!important;
	border: 1px solid var(--colorPrimary)!important;
}
.secondaryBtnInverted:hover
{
	color: var(--colorPrimaryHover) !important;
	border-color: var(--colorPrimaryHover) !important;
}

#tblUserList tbody tr:hover, #userAccountList tbody tr:hover, #ap-queue tbody tr:hover, 
#corporation_list tbody tr:hover, #employee-table tbody tr:hover,
#check-rebate-table tbody tr:hover, #rebate-payee-table tbody tr:hover, #tblInvoiceApprovalMain tbody tr:hover,
#tblInvoiceCreateMain tbody tr:hover, #report-list_wrapper tbody tr:hover
{
	cursor: pointer;
	background-color: var(--color-bg-highlight) !important;
}
#IaSettingsTabs
{
	margin-top:50px;
}
#temp-loan-popup
{
	position:absolute;
	left:calc(50% - 292px);
	top: 10%;
	width:585px;
	height:auto;
	background-color: white;
	padding-top:50px;
	padding-left:15px;
	z-index:3100;
}
#pending-approval-popup
{
	position:absolute;
	top: 10%;
	width:390px;
	height: 207px;
	background-color: white;
	z-index:3100;
	margin: auto;
	right: 0;
    left: 0;
}
.primary /* primary button color and size with the new structure */
{
	background:var(--colorBrand)!important;
	height: 30px!important;
}
.primary:hover
{
	color:white!important;
	background:var(--colorSubBrand)!important;
}
#cashetSubmenu, #helpSubMenu, #depositsSubMenu
{
	z-index:3200;
	position: fixed !important;
}
#uk-home-summary
{
	border: 1px solid gray;
	border-radius: 3px;
}
#tbl-uk-home-summary th
{
	border-bottom:1px solid black;
}
#tbl-uk-home-summary td
{
	background-color: white;
}
.uk-home-summary-detail
{
	border-left:1px solid silver;
	border-right:1px solid silver;
	border-bottom:1px solid silver;
}
#pcePreviewHtmlWrapper_side_by_side
{
	display: inline-block;
	height: 87%;
    overflow-y: auto;
    overflow-x: auto;
    width: 48%;
    margin-left: 1%;
    border: 1px solid black;
    border-radius: 6px 0px 0px 6px;
    text-align: left;
    background-color: rgb(120,120,130);
    padding-bottom: 2%;
}
#pcePreviewHtmlImageWrapper
{

	display: inline-block;
	height: 87%;
    overflow-y: auto;
    overflow-x: auto;
    width: 48%;
    margin-left: 1%;
    border: 1px solid black;
    border-radius: 6px 0px 0px 6px;
    text-align: left;
    background-color: rgb(120,120,130);
    padding-bottom: 2%;
}
.sideBySide
{
	position: absolute;
    z-index: 3000;
    border: 1px solid gray;
    background-color: white;
    padding: 20px 20px 20px 20px;
    border-radius: 5px!important;
    -moz-border-radius: 5px!important;
    min-height: 300px;
	overflow-y: auto;
    width: 90%;
    left: 5%;
    text-align: center;
    height: calc(100% - 80px);
    top: 10px !important;
    max-height: calc(100% - 50px) !important;
}
.is-dragover
{
	background-color: blue;
}
.editVendorTable .is-dragover
{
	background-color: #c3c3c3!important;
}
#btnCpBankApprovalWaiting
{
	position: absolute;
	right: 120px;
	bottom:4px;
	background-color: red !important;
}
/*      SearchSelect Styles       */
.searchSelect table
{
	border-collapse:collapse;
	background-color:white;
	color:rgb(0,0,0);
	font-size:14px;
	z-index:3200;
	width:100%;
}
.searchSelect table td
{
	padding:3px 0px 3px 8px;
	text-align:left;
	border-bottom:1px solid rgb(240,240,240);
}
.searchSelect tr
{
	cursor:pointer;
	height:30px;
}
.searchSelect tr:hover
{
	background-color:var(--colorBackgroundHighlight);
	transition:all ease-in-out .1s;
}
.SaveIconToCheckIcon
{
	transform:rotate(350deg);
	transition:all ease-in-out .2s;
}
tr[activeitem="true"]
{
	background-color:var(--colorPrimaryHover);
	color:white;
}
.searchSelect-tableWrapper
{
	scroll-margin-top:60px;
	width:95%;
	max-height:500px;
	overflow-y:auto;
	position:relative;
	margin-top:3px;
	z-index:3200;
	border-bottom:1px solid black;
	border-left:1px solid black;
	border-right:1px solid black;
	box-shadow:1px 2px 3px rgb(200,200,200);
	display:none;
}
.searchSelect-input
{
	width:750px;
	border-radius:3px 0px 0px 3px;
	border-color:var(--colorPrimaryHover) !important;
	font-size:14px!important;
	padding-left:10px!important;
	height:16px;
}
.searchSelect-input:hover
{
	background-color:var(--colorTertiaryHover);
	border:1px solid var(--colorInactiveGrey);
}
.searchSelect-noResults
{
	position:absolute;
	padding:1px;
	right:50px;
	border-radius:4px;
	font-size:14px;
	font-weight:bold;
	border:1px solid black;
	background-color: var(--colorAlert);
	color: var(--colorPrimary);
	width: 300px;
	display:none;
    margin-left: calc(50% - 150px);
    top: 5px;
}
.searchSelect-viewAll
{
	position:absolute;
	right:18px;
	top:0px;
	text-align:center;
	font-size:14px;
	border-radius:0px 4px 4px 0px;
	border:1px solid var(--colorTertiaryHover);
	background-color: var(--colorPrimary);
	cursor:pointer;
	width:20px;
	height: 30px;
	transition:all ease-in-out .1s;
	line-height: 2em;
}
.searchSelect-viewAll:hover
{
	background-color:var(--colorTertiaryHover);
	border:1px solid var(--colorInactiveGrey);
	color:white;
	transition:all ease-in-out .1s;
}

/*      End SearchSelect Styles      */

/*START PCE Preview HTML Styles */
.pcedaBigButton
{
	font-size:22px!important;
}
#pcePreviewHtmlWrapper
{
	height:87%;
	overflow-y:auto;
	overflow-x:auto;
	width:96.9%;
	margin-left:1%;
	border:1px solid black;
	border-radius:6px 0px 0px 6px;
	text-align:left;
	background-color: rgb(120,120,130);
	padding-bottom:2%;
}
.pdf-page
{
	height:1005px!important;
	max-height:1005px!important;
	border:1px solid black;
	position:relative;
    background-color: white;
    min-width: 711px;
    margin-left: 2.5%;
    margin-top: 2%;
	font-size:12px;
}
.pdf-logo
{
	position:absolute;
	top: 45px;
	left: 25px;
}
.pdf-title
{
	width: 50%;
	position:absolute;
	left:29%;
	text-align: center;
	top: 46px;
	font-weight: bold;
	font-size:13px;
}
.pdf-page-number
{
	width: 200px;
	position:absolute;
	top: 40px;
	right:34px;
	text-align: right;
	font-size:12px;
}
.pdf-title-2
{
	clear:both;
	width: 50%;
	top:66px;
	position:absolute;
	left:29%;
	text-align: center;
	font-weight: bold;
	font-size:13px;
	margin-bottom:20px;
}
.pceDraftMessage
{
	font-size: 240px;
	color: red;
	opacity: 0.2;
	transform: rotate(45deg);
	width: 600px;
	position: absolute;
	top: 200px;
	left: 20px;
}
.pce-main-table
{
	margin-top:70px;
	border:2px solid black;
	width:95%;
	margin-left:2.25%;
	border-collapse:collapse;
	position:relative;
	font-size:11px;
}
.pce-cover-details
{
	width:100%;
}
.pce-cover-details th
{
	text-align:right;
	padding-right:20px;
	width:22%;
}
.pce-cover-details td
{
	width:24%;
	border-bottom:none;
}
.pceHeaderSpaceTaker
{
	width:50px!important;
}
.pce-merchant-row td, .pce-merchant-row th
{
	border-top:1px solid black;
	border-bottom:1px solid black;
	font-size:11px!important;
	padding:6px 0px 6px 0px;
}
.underline
{
	text-decoration:underline;
}
.bottom_border
{
	border-bottom:1px solid black!important;
}
.pce-mll-table
{
	width:100%;
	border-collapse:collapse;
}
.pce-mll-table th
{
	background-color:rgb(200,200,200);
	border-left:2px solid rgb(200,200,200);
	border-right:2px solid rgb(200,200,200);
	text-align:center;
	font-weight:normal;
	font-size:10px;
}
.pce-mll-table td
{
	border-left:4px solid rgb(200,200,200);
	font-size:10px;
	border-right:4px solid rgb(200,200,200);
	overflow:hidden;
}
.pce-trans-footer
{
	border-bottom: 2px solid black;
    width: calc(100% + 6px);
    margin-top: -1px;
    margin-left: -3px;
	font-size:10px;
}
.pce-trans-footer-2
{
    width: calc(100% + 6px);
    margin-top: -1px;
    margin-left: -3px;
	font-size:10px;
}
.pce-trans-footer-2 th, .pce-trans-footer th
{
	padding:6px 0px 6px;
}
.pce-pdf-approvals-table
{
	margin-top:20px;
	width:95.5%;
	margin-left:2%;
}
.pce-pdf-approvals-table th
{
	border-bottom:2px solid black;
	text-align:center;
	font-size:11px;
}
.pce-pdf-approvals-table td
{
	text-align:left;
	font-size:11px;
}
.pce-pdf-comments-table
{
	margin-top:20px;
	width:95.5%;
	margin-left:2%;
}
.pce-pdf-comments-table th
{
	border-bottom:2px solid black;
	text-align:center;
	font-size:11px;
}
.pce-pdf-comments-table td
{
	text-align:left;
	font-size:11px;
}
#pceSignatureBoxTable
{
	margin-top:20px;
	width:95%;
	margin-left:2.3%;
	border-collapse:collapse;
	font-size:9px;
}
#pceSignatureBoxTable td
{
	text-align:left;
	padding-bottom:40px;
	width:30%;
	border:1px solid black;
}
#pceSignatureBoxTable .signatureBoxEmpty
{
	border:none!important;
	width:3%;
}
.pce-image
{
	margin-top:80px;
	text-align:center;
}
.pce-image img
{
	margin-top:25px;
	max-width: 760px;
    max-height: 760px;
}
.pce_image_detail
{
	margin:70px 25px 15px;
	text-align:center;
}
.pce-ac30-title
{
	text-align:center;
	font-weight:bold;
	border-bottom:1px solid black;
}
.pce-ac30-main-table
{
	width:98%;
	margin-left:1%;
	margin-top:70px;
}
.pce-ac30-main-table th
{
	text-align:right;
	width:25%;
}
.accountingTransactionNumber
{
	display:inline-block;
	width:96%;
	margin-left:2%;
	text-align:left;
	font-weight:bold;
	font-size:15px;
	margin-top:10px;
}

.cpRushPaymentButton
{
	background-color:red!important;
	font-weight:bold;
	border-color:red!important;
}
.cpRushPaymentButton:hover
{
	color:red!important;
}
.cpRushPaymentButton:disabled
{
	color:white!important;
	background-color:red!important;
}
.cpRushPaymentButton:disabled:hover
{
	color:red!important;
}
.cpEditDepositIcon
{
	float:right;
}
#cpCompleteChecksClose, #cpCompleteChecksSave
{
	text-align: center;
}
.paymentRequestFilesIcon
{
	cursor:pointer;
	max-width:54px;
	width:100%;
	min-width:20px;
}
.paymentRequestFilesThumbsWrapper
{
	width:100%;
	height:calc(100% - 110px);
	overflow-y:auto;
	text-align:center;
	border-bottom:1px solid black;
	padding-top:10px;
}
.cpAttachmentThumbWrapper
{
	width:29%;
	border:1px solid black;
	position:relative;
	margin-left:12px;
	margin-top:12px;
	display:inline-block;
	border-radius:4px;
	padding:4px;
	background-color:rgb(220,220,220);
}
.cpThumbDeleteIcon
{
	position:absolute;
	top:-10px;
	right:-10px;
	width:20px;
	cursor:pointer;
}
.paymentRequestFileIconWrapper
{
	position:relative;
	width:54px;
	margin-left:calc(50% - 27px);
}
.paymentRequestFilesCount
{
	position:absolute;
	top:-4px;
	right:-4px;
	width:28px;
	height:22px;
	padding-top:6px;
	border-radius:28px;
	background-color:red;
	color:white;
	text-align:center;
	vertical-align:middle;
}
.paymentRequestCommentCount
{
	background-color:red;
	font-size:12px!important;
	width:22px;
	height:18px;
	padding-top:4px;
	text-align:center;
	border-radius:22px;
	margin-left:8px;
	display:inline-block;
}
.cpThumbTitle
{
	width:100%;
	position:absolute;
	bottom:0px;
	left:0px;
	border-radius:4px;
	background-color:rgba(190,190,190,.8);
	color:black;
	font-size:16px;
}
.paymentRequestFilesThumb
{
	cursor:pointer;
	width:100%;
}
.inputError
{
	border:2px solid var(--colorError)!important;
	border-radius: 3px;
}

#login-form table {
	width:100%;
}
#production-edit table td
{
        text-align:right;
}

#ui-datepicker-div
{
	z-index:5500!important;
}

#downloadUI button
{
	padding: 1px 2px 1px 2px !important;
}

.popup-form
{
	display:none;
	padding:20px 30px 20px 30px;
	text-align:center;
	position:absolute;
	top:275px;
	left:calc(50% - 250px);
	background-color:white;
	z-index:3001;
	border:1px solid #226432;
	width:500px;
	height:auto;
	min-height:250px;
}

.data-grid {color:black;}
.dg-column,.dg-column-header {display:inline-block;padding:3px 1px;}
.data-grid-scroller {overflow:auto;height:auto;}
.dg-column-header {font-weight:bold;}
/*.dg-row,.dg-header {height:24px;}*/
.dg-action {color:rgb(20,20,220);font-weight:bold;}
.dg-action:hover {color:blue;cursor:pointer;text-decoration:underline;}
th.dt-center, td.dt-center { text-align: center !important; }

.dataTables_filter{z-index:2500;}
#cardStatusFilterWrapper
{
	position:absolute;
	display:inline-block;
}
#departmentFilterWrapper:before
{
	content:"Departments";
	position:absolute;
	top:-18px;
	left:37px;
}
#cardStatusFilterWrapper:before
{
	content:"Cards shown";
	position:absolute;
	top:-18px;
	left:17px;
}
#baseCurrencyWrapper
{
	position:absolute;
	text-align: center;
	top:-20px;
	left:75%;
}

.reportsExcelPdfDownloadButton
{
	padding: 0.5em 1em;
    border: 1px solid #999;
    border-radius: 2px;
    cursor: pointer;
    line-height: 1.6em;
    white-space: nowrap;
    overflow: hidden;
}

/*  End Request Return of Funds Queue System Styles  */

#rofQueueWrapper
{
	display:none;
	width:1520px;
	background:white;
	position:absolute;
	top:100px;
	text-align:center;
	z-index:4000;
	padding:12px;
	padding-top:40px;
	border-radius:5px;
	box-shadow: 1px 1px 6px grey;
	transition:opacity ease-in-out .3s;
	width: clamp(94%,1520px,94vw);
   
}

#dragIconRofQueue
{
	cursor:pointer;
	position:absolute;
	top:13px;
	left:13px;
	background-color:white;
	border-radius:0px 6px 6px 6px;
	width:36px;
	opacity:.4;
	z-index:4002;
	transition:all ease-in-out .3s;
}

#rofQueueTitle
{
	font-size:18px;
	font-weight:bold;
	text-align:center;
	margin-bottom:8px;
}

#rofQueueTableWrapper
{
	width:100%;
}

#receipt-bucket-icon
{
	position:absolute;
	right:6px;
	top:48px;
}

#dragIconRofQueue:hover
{
	opacity:.7;
	transition:all ease-in-out .3s;
}

#closeRofQueue
{
	padding-left:4px;
	padding-right:4px;
	font-size:18px!important;
	margin-top:22px;
}

/*  End Request Return of Funds Queue System Styles  */

/*  AP Queue System Styles  */

#apQueueWrapper
{
	display:none;
	width:1220px;
	background:white;
	position:absolute;
	left:calc(50% - 610px);
	top:100px;
	text-align:center;
	z-index:4000;
	padding:12px;
	padding-top:40px;
	border-radius:5px;
	box-shadow: 1px 1px 6px grey;
	transition:opacity ease-in-out .3s;
}

#dragIconApQueue
{
	cursor:pointer;
	position:absolute;
	top:13px;
	left:13px;
	background-color:white;
	border-radius:0px 6px 6px 6px;
	width:36px;
	opacity:.4;
	z-index:4002;
	transition:all ease-in-out .3s;
}

#apQueueTitle
{
	font-size:18px;
	font-weight:bold;
	text-align:center;
	margin-bottom:8px;
}

#apQueueTableWrapper
{
	width:100%;
}

#dragIconApQueue:hover
{
	opacity:.7;
	transition:all ease-in-out .3s;
}

#closeApQueue
{
	padding-left:4px;
	padding-right:4px;
	font-size:18px!important;
	margin-top:22px;
}

/*  End AP Queue System Styles  */

/*  Message Center Ququq Styles  */

#messageQueueWrapper
{
	display:none;
	width:802px;
	background:white;
	position:absolute;
	left:calc(50% - 400px);
	top:60px;
	text-align:center;
	z-index:4000;
	padding:12px;
	border-radius:5px;
	box-shadow: 1px 1px 6px grey;
	transition:opacity ease-in-out .3s;
}

#dragIconMessageQueue
{
	cursor:pointer;
	position:absolute;
	top:13px;
	left:13px;
	background-color:white;
	border-radius:0px 6px 6px 6px;
	width:43px;
	opacity:.4;
	z-index:4002;
	transition:all ease-in-out .3s;
}

#dragIconMessageQueue:hover
{
	opacity:.7;
	transition:all ease-in-out .3s;
}

#messageQueueIframeClickTracker
{
	width:600px;
	height:400px;
	opacity:0;
	display:none;
	position:absolute;
	top:12px;
	left:12px;
	z-index:4001;
}

#messageQueueIframe
{
	width:800px;
	height:600px;
	background-color:white;
	border:1px solid black;
}

#closeMessageQueue
{
	padding-left:4px;
	padding-right:4px;
	font-size:18px!important;
	margin-top:8px;
}

/*  End Message Center Queue Styles  */

/*  Help Tickets System Styles  */

#helpTicketsWrapper
{
	display:none;
	width:602px;
	background:white;
	position:absolute;
	left:calc(50% - 300px);
	top:100px;
	text-align:center;
	z-index:4000;
	padding:12px;
	border-radius:5px;
	box-shadow: 1px 1px 6px grey;
	transition:opacity ease-in-out .3s;
}

#dragIconTickets
{
	cursor:pointer;
	position:absolute;
	top:13px;
	left:13px;
	background-color:white;
	border-radius:0px 6px 6px 6px;
	width:43px;
	opacity:.4;
	z-index:4002;
	transition:all ease-in-out .3s;
}

#dragIconTickets:hover
{
	opacity:.7;
	transition:all ease-in-out .3s;
}

#helpTicketsIframeClickTracker
{
	width:600px;
	height:400px;
	opacity:0;
	display:none;
	position:absolute;
	top:12px;
	left:12px;
	z-index:4001;
}

#helpTicketsIframe
{
	width:600px;
	height:400px;
	background-color:white;
	border:1px solid black;
}

#closeHelpTickets
{
	padding-left:4px;
	padding-right:4px;
	font-size:18px!important;
	margin-top:8px;
}

/*  End Help Tickets System Styles  */

.backgroundColor
{
background:var(--colorBackgroundHighlight);
}

.fullWidth
{
	width:98%;
}

.linkColor
{
cursor:pointer;
color:var(--colorBrand)!important;
font-weight: bold;
}


/*  Help System Styles  */

#helpWrapper
{
position:absolute;
top:88px;
left:5%;
width:90%;
height:87%;
min-height:400px;
border:1px solid var(--colorBrand);
background:var(--colorBackgroundHighlight);
z-index:1999;
box-shadow: 0px 0px 8px rgb(120,120,120);
display:none;
}

#helpInfoWrapper
{
width:calc(80% - 3px);
float:right;
padding-top:20px;
overflow-y:auto;
height:calc(100% - 88px);
}

.helpInfoItem
{
width:100%;
font-size:22px;
text-align:center;
display:none;
}

.helpInfoItemCurrent
{
color:#fff!important;
background:var(--colorBrand);
}

.helpTitle
{
width:100%;
padding-top:14px;
padding-bottom:14px;
font-size:28px;
border-bottom:1px solid var(--colorBrand);
font-weight:bold;
text-align:center;
}

.helpTOC
{
width:20%;
border-right:1px solid var(--colorBrand);
height:calc(100% - 66px);
float:left;
overflow-y:auto;
}

.helpTOCItem
{
width:calc(100% - 20px);
padding-top:12px;
padding-bottom:12px;
font-size:18px;
padding-left:20px;
font-weight:bold;
cursor:pointer;
}

.helpTOCSubWrapper
{
font-size:15px;
padding-left:40px;
padding-top:8px;
padding-bottom:8px;
display:none;
}

#dragIconHelp
{
float:left;
margin-left:20px;
width:54px;
margin-top:-8px;
cursor:pointer;
}

.helpTOCSubWrapper a
{
color:black!important;
font-size:18px!important;
}

#closeHelpSystem
{
position:absolute;
top:4px;
right:4px;
cursor:pointer;
}

.helpTOCTitle
{
border-bottom:1px solid var(--colorBrand);
font-size:20px;
font-weight:bold;
padding-top:14px;
padding-bottom:14px;
width:100%;
text-align:center;
}

#helpIcon
{
position: absolute;
right: 2px;
font-size: 17px;
color: #FF0;
background: #000;
font-weight: bold;
padding-left: 8px;
padding-right: 8px;
bottom: 2px;
cursor:pointer;
}

#departmentFilterWrapper
{
	position:absolute;
	display:inline-block;
	text-align:center;
	padding-left:6px;
}
.frmContractRecord
{
	float:left;
}
/*
#departmentFilterWrapper:before
{
	content:"Depts shown";
	position:absolute;
	top:-18px;
}
*/
#departmentFilterWrapper img
{
	float:right;
	margin-top:-5px;
	cursor:pointer;
}

.department-breakdown-wrapper
{
	/*overflow:hidden;*/
	left:calc(50% - 512px);
	top:70px;
	background-color:white;
	border:1px solid black;
	z-index:3000;
}
.department-breakdown-scroll
{
	position:relative;
	max-height:575px;
	width:100%;
	overflow:auto;
}

#department-breakdown-table
{
	padding: 4px 5px;
}

.department-breakdown-wrapper td
{
	border-top:1px solid #ddd;
	border-right:1px solid #ddd;
	font-size:13px;
	padding: 4px 5px;
}

.ui-widget
{
    font-size:14px;
}
#menuIcon
{
	position:absolute;
	top:4px;
	left:14px;
	height:60px;
	width:62px;
	cursor:pointer;
}

a
{
/*	color:#3f40ce!important;*/
}

.ml-running-total
{
	float:right;
	font-size:12px;
	font-weight:bold;
	margin-right:20px;
}


.selectionBlue
{
	background-color: rgb(164, 190, 242) !important;
}
.selectionRed
{
	background-color: rgb(250, 60, 60) !important;
}
.selectionPurple
{
	background-color: rgb(164, 190, 242) !important;
}
.beige
{
	background-color:beige !important;
}

#multiline-edit
{
	position:absolute;
	display:none;
	background-color:white;
	font-size:11px;
	border:1px solid silver;
	height:auto;
	padding-bottom:10px;
	z-index:1300;
	text-align:center;
}

.th-delete
{
	cursor:pointer;
	font-weight:bold;
	color:red;
}

#saveAll, #showAll
{
	background-color: #2c8141 !important;
	color:white !important;
	font-weight:bold;
}

a {text-decoration:none;}

img {border:none;}

.transactions {font-size:10px;}

.minimal-select
{
	background-color:white;
	opacity:1;
	/*border:0;*/
	/*-webkit-appearance: none;*/
	font-size:10px;
	font-weight:bold;
}

.tableRow
{
	overflow:hidden;
}

#pdf-iframe
{
	border-style:none;
	width:100%;
	height:100%;
}

.date {width:90px;}

.logo
{
	position:relative;
	top:-20px;
	left:8px;
	width:100%;
}

.report-popup
{
	width:90%;
	padding:30px;
	min-height:100px;
	position:absolute;
	top:5%;
	left:3%;
	border:1px solid var(--colorBrand);
	display:none;
	background:#ffffff;
	z-index:3000;
	border-radius:5px;
}

.report-data-wrapper
{
	width:100%;
	margin-top:30px;
	margin-bottom:30px;
}

.report-title
{
	width:100%;
	text-align:center;
	font-size:20px;
	margin-bottom:30px;
}

.report-params-wrapper
{
	width:100%;
	text-align:center;
}
#nav.ui-menu
{
	width:230px;
}
.ui-menu
{
	box-shadow: 3px 6px 18px 10px rgba(0, 0, 0, 0.14);
}
.ui-menu-item
{
	padding:0px 0px 0px 0px !important;
}
.ui-menu-item-wrapper.ui-state-active
{
	border:none !important;
	background: var(--colorBackgroundHighlight) !important;
	color:var(--colorPrimary) !important;
	line-height: 2.5em !important;
	font-weight: 500 !important;
	margin:0 !important;
}

#nav
{
	display: none;
	position:absolute;
	top:40px;
	left:15px;
	z-index:2600;
	max-height:calc(100% - 120px);
	overflow-y:auto;
	font:15px 'Roboto', OpenSans, Arial, Helvetica, sans-serif;
}
.nav-arrow
{
	width:12px;
	position:absolute;
	top:0;
	right:0;
}

.transparent {
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 0.8;
}
.nav-button
{
	font-family: 'Roboto';
	background-color:white;
	text-decoration:none;
	padding-left:20px !important;
	padding-right:20px !important;
	white-space:nowrap;
	font-size:15px;
	font-weight:500;
	color: var(--colorPrimary) !important;
}
.nav-button-static
{
	background-color:var(--colorBrand);
	text-decoration:none;
	white-space:nowrap;
	margin-top:5px;
	margin-left:15px;
	margin-bottom:5px;
	display:inline-block;
	vertical-align:middle;
	cursor:pointer;
	padding-top:6px;
	padding-left:5px;
	padding-right:5px;
	padding-bottom:8px;
	opacity: 1;
	font-size:20px;
	color:#fff!important;
	width:calc(99% - 22px);
	min-width:19px;
	text-align:center;
	height:39px;
	box-sizing:border-box;
}

.lastLogin
{
	font-size:11px !important;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	font-weight: 200 !important;
	line-height: 1.5em !important;
}

.nav-button-red:after
{
	content: "";
	height:10px;
	width:10px;
	background-color: var(--colorError) !important;
	border-radius: 10px;
	position:absolute;
	margin-top:13px;
	margin-left:5px;
}

.unmap-button-red:after
{
	content: "";
	height:10px;
	width:10px;
	background-color: var(--colorError) !important;
	border-radius: 10px;
	position:absolute;
	margin-top:-5px;
	margin-left:8px;
}

.pulse
{
	animation:pulse 5s infinite;
	-moz-animation:pulse 5s infinite; /* Firefox */
	-webkit-animation:pulse 5s infinite; /* Safari and Chrome */
	-o-animation:pulse 5s infinite; /* Opera */
}


@keyframes pulse
{
0% {opacity:1;}
10% {opacity:.8;}
20% {opacity:.6;}
30% {opacity:.5;}
40% {opacity:.3;}
50% {opacity:.5;}
60% {opacity:.7;}
70% {opacity:1;}
80% {opacity:1;}
90% {opacity:1;}
100% {opacity:1;}
}

@-moz-keyframes pulse /* Firefox */
{
0% {opacity:1;}
10% {opacity:.8;}
20% {opacity:.6;}
30% {opacity:.5;}
40% {opacity:.3;}
50% {opacity:.1;}
60% {opacity:.3;}
70% {opacity:.5;}
80% {opacity:.8;}
90% {opacity:1;}
100% {opacity:1;}
}

@-webkit-keyframes pulse /* Safari and Chrome */
{
0% {opacity:1;}
10% {opacity:.8;}
20% {opacity:.6;}
30% {opacity:.5;}
40% {opacity:.3;}
50% {opacity:.1;}
60% {opacity:.3;}
70% {opacity:.5;}
80% {opacity:.8;}
90% {opacity:1;}
100% {opacity:1;}
}

@-o-keyframes pulse /* Opera */
{
0% {opacity:1;}
10% {opacity:.8;}
20% {opacity:.6;}
30% {opacity:.5;}
40% {opacity:.3;}
50% {opacity:.1;}
60% {opacity:.3;}
70% {opacity:.5;}
80% {opacity:.7;}
90% {opacity:1;}
100% {opacity:1;}
}

.nav-button-active
{
	background-color: var(--colorBackgroundHighlight) !important;
}

.nav-button-active:before
{
	content:"";
	width:8px;
	height: 40px;
	margin-left:-20px;
	margin-top:0px;
	position:absolute;
	background-color: #39803C;
}
.nav-button:hover
{
	background:var(--colorBackgroundHighlight);
	color: black !important;
	border:none;
	font-weight:500;
}

.inverted-button
{
	background:#fff !important;
	color:var(--colorBrand)!important;
	border:1px solid var(--colorBrand);
}
.inverted-button:hover
{
	background:#fff !important;
	color:var(--colorBrand)!important;
	font-weight: bold;
	border:1px solid var(--colorBrand);
}
.sms-2fa-wrapper
{
	font-weight:bold;
	padding-top:15px;
	padding-bottom:15px;
	background-color:white;
	border:1px solid silver;
	width:20%;
	left:calc(50% - 10%);
	position:absolute;
	top: 10%;
}
.pin-wrapper
{
	font-size:20pt;
	padding-top:15px;
	padding-bottom:15px;
	background-color:white;
	border:1px solid silver;
	width:20%;
	left:calc(50% - 10%);
	position:absolute;
	top: 10%;
}
.small-button,.small-button-no-pointer
{
	background-color:var(--colorBrand);
	text-decoration:none;
	padding:2px 5px 2px 5px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	filter: alpha(opacity=100);
	opacity: 1;
	color:white !important;
	font:16px/27px 'Roboto', OpenSans, Arial, Helvetica, sans-serif;
}

.small-button:hover
{
	background-color:var(--colorBrandHover);
	cursor:pointer;
}
.onoffswitch {
	    position: relative; width: 71px;
		    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
			margin-left:17px;

}

.onoffswitch-checkbox {

	display: none;

}

.acct-manager input
{
	width:98%;
}

.acct-manager td
{
	padding-left:10px;
	padding-right:10px;
}

.onoffswitch-label {

	display: block; overflow: hidden; cursor: pointer;
	border: 2px solid #999999; border-radius: 8px;
}

.onoffswitch-inner {
	display: block; width: 200%; margin-left: -100%;
	transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
	display: block; float: left; width: 50%; height: 25px; padding: 0; line-height: 25px;
	font-size: 15px; color: white; font-family: 'Roboto', Trebuchet, Arial, sans-serif; font-weight: bold;
	box-sizing: border-box;
}

.onoffswitch-inner:before {
	content: "ON";
	padding-left: 10px;
	background-color: #3A9E48; color: #BDBDBD;
	text-align: left;
}

.onoffswitch-inner:after {
	content: "OFF";
	padding-right: 10px;
	background-color: #F02727; color: #999999;
	text-align: right;
}

.onoffswitch-switch {
	display: block; width: 13px; margin: 6px;
	background: #FFFFFF;
	position: absolute; top: 0; bottom: 0;
	right: 42px;
	border: 2px solid #999999; border-radius: 8px;
	transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
	margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
	right: 0px;
}

.form-table
{
	width:100%;
	text-align:center;
}

.airtravel-frame
{
	margin:auto;
	position:relative;
	margin-top:22px;
	line-height: 24px;
	text-decoration: none;
	border-radius: 10px;
	padding:10px;
	border: 1px solid var(--colorBrand);
	border: inset 1px solid #333;
	-moz-box-shadow: 0px 0px 8px var(--colorBrand);
	box-shadow: 0px 0px 8px var(--colorBrand);
	/*
	width:50%;
	border:1px solid rgb(100,200,120);
*/
}
.frame-reset
{
	margin:auto;
	position:relative;
	width:550px;
	height:680px;
	margin-top:22px;
	line-height: 24px;
	text-decoration: none;
	border-radius: 10px;
	padding:10px;
	border: 1px solid var(--colorBrand);
	border: inset 1px solid #333;
	-moz-box-shadow: 0px 0px 8px var(--colorBrand);
	box-shadow: 0px 0px 8px var(--colorBrand);
	/*
	width:50%;
	border:1px solid rgb(100,200,120);
*/
}
.reset-message-pending
{
	width:550px;
	height:680px;
}

.reset-message
{
	width:550px;
	height:400px;
}

.login-message
{
	width:550px;
}

.corporation-form
{
	border:1px solid rgb(0,0,0);
	background-color:white;
}

.contact-input
{
	width:98%;
}

.dynamic-table
{
	width:100%;
}

#account-summary
{
background:var(--colorBackgroundHighlight);
opacity: 1;
height: calc(100% - 80px);
}

.contentUIWrapper
{
background:rgb(229,229,229) !important;
opacity: 1;
}

.release-note-text-edit
{
	width:100%;
	height:100%;
}

#div-bulk-action
{
	display:none;
	border: 1px solid white;
	padding:3px 3px 3px 3px;
	background-color:rgb(221,251,207);
	float:right;
	margin-right:-20px;
}
.bulk-action-container
{
	min-width: 345px;
}
.accountSelect
{
    margin-left: 48px;
    margin-bottom: 10px;
}

.header-center
{
	width:calc(100% - 50px);
	margin-left:76px;
	text-align:center;
	font-weight:normal;
	font-size:14px;
	color:#000;
	margin-top:8px;
}

#chkArchive
{
	vertical-align:middle;
}

.title
{
	text-align:center;
	font-weight:bold;
	font-size:14px;
	color:black;
	padding-top:5px;
	padding-bottom:5px;
}
.page-title-red
{
    position:relative;
    right:0%;
    left:0%;
    top: 1%;
    text-align:center;
    font-weight:bold;
    font-size:20px;
    background-color:rgb(254,243,226);
    color:rgb(216,105,0);
    border:1px solid rgb(216,105,0);
    padding:10px 10px;
}

#footer
{
    padding-top:10px;
    padding-bottom:10px;
    min-width:100%;
    position:fixed;
    bottom:0px;
    clear:both;
    text-align:center;
    background-color:rgb(210,211,206);
    box-shadow:0px 0px 6px rgb(79,89,94);
}

a.footer-link
{
	color:rgb(0,0,0);
	text-decoration:none;
}

a.footer-link:hover
{
	text-decoration:underline;
}

#activity {
	position:absolute;
	display:none;
	width: 180px;
	height: 160px;
	top:50%;
	left:50%;
	margin-left:-90px;
	margin-top:-80px;
	padding: 10px 20px;
	color: #fff;
	border: 1px solid #fff;
	background: rgb(34, 100, 50);
	font-family: 'Roboto', Helvetica, Arial, Sans-Serif;
	z-index:2500;
}

div.fraudPopup
{
	position:absolute;
	display:none;
	z-index:3001;
	border:1px solid gray;
	background-color:white;
	width:550px;
	height:auto;
	padding:20px 20px 20px 20px;
	left:25%;
	margin-left:-200px;
	top:100px;
}
div.advancePopup.holdCommentPopup
{
	padding: 0px;
	height: 370px;
	z-index:4000;
	position: fixed;
	border: none;
	margin-left: -300px;
	width: 590px;
	top: 200px !important;

}
#vendor-edit-wrapper
{
	width:95%;
	margin-left:1.25%;
	max-height: calc(100% - 200px) !important;
	padding-right: 0px;
	z-index:3600;
}

#holdCommentWrapper
{
	height: 250px;
}
#mvlEditPopupContent
{
    max-height: calc(100% - 20px) !important;
	overflow-y: scroll;
}
#commentsArea, #recentPaymentsArea, #paymentsOverviewArea
{
	text-align: left;
	padding: 10px;
	max-height: 240px;
	overflow-y: auto;
}
#commentsArea table tr, #recentPaymentsArea table tr, #paymentsOverviewArea table tr
{
	height: 28px;
	color: var(--colorPrimary);
	font-size: 14px;
}
#commentsArea .dt-action
{
	text-transform: capitalize;
}
#commentsArea table tr td, #commentsArea table tr th,
#recentPaymentsArea table tr td, #recentPaymentsArea table tr th,
#paymentsOverviewArea table tr td, #paymentsOverviewArea table tr th
{
	border-bottom: 1px solid var(--colorTableBorder);
	padding: 0px 5px;
}
#commentsArea table tr th, #recentPaymentsArea table tr th, #paymentsOverviewArea table tr th
{
	border-top: 1px solid var(--colorTableBorder);
}
#commentsArea .commentEditButton
{
	cursor:pointer;
	float: right;
	width: 20px;
}
#commentsHeader, #recentPaymentsHeader, #paymentsOverviewHeader
{
	font-weight: bold;
	margin-bottom: 5px;
}
.holdIndicator
{
	font-weight: bold;
    font-size: 14px;
    background-color: #CF0101;
    color: #fff;
    display: inline-block;
    padding: 5px 8px;
    line-height: normal;
}
#holdCommentInput
{
	display: block;
	width: 100% !important;
	resize: vertical;
	margin-top: 1em;
	box-sizing: border-box;
}
.holdCommentContainer
{
	margin: 5px 15px;
}
.unfulfilledPaymentsCounter
{
	margin-left: 10px;
    margin-right: 15px;
}
.holdEditedText
{
	color: #9E9E9E;
	display: inline-block;
	font-size: 13px;
	margin-left: 10px;
}
#vendor-edit-close,#vendor-edit-hold,#vendor-edit-unhold,
#vendor-edit-save,#btnSaveNotes,#holdCommentCancel,#holdCommentSave,#basicPopupCancel
{
	min-width: 130px;
	margin: 3px !important;
}
#vendor-edit-save:hover, #holdCommentSave:hover
{
	background-color: var(--colorBrandHover)!important;
}
#vendor-edit-hold:hover
{
	background-color: var(--colorErrorDarkmode)!important;
}
#holdCommentCancel:hover
{
	color: var(--colorTertiaryHover)!important;
}
#vendor-edit-close:hover
{
	color: var(--colorBrandHover) !important;
	border-color: var(--colorBrandHover) !important;
}
#vendor-edit-close
{
	color: var(--colorBrand) !important;
    background: #fff!important;
	border: 1px solid var(--colorBrand)!important;
}
#holdCommentCancel, #basicPopupCancel
{
	color: var(--colorPrimary) !important;
    background: #fff!important;
	border: 1px solid var(--colorPrimary)!important;
}
.vh-tag-wrapper
{
	position:relative;
}
.vh-tag
{
	background-color: #B80303;
    color: #fff;
    position: absolute;
    left: 65px;
    top: -58px;
    border-radius: 20px;
    padding: 0px 5px;
}
#mvlTableWrapper .vh-tag
{
	left: 20px;
    top: -35px;
}
#cp_main_table_wrapper .vh-tag
{
	left: 60px;
    top: -35px;
}
.vendor-hold-text 
{
	font-weight: bold;
	color: var(--colorError);
}
.hold-tooltip {
    background: var(--colorError)!important;
    color: white !important;
    max-width: none !important;
    padding: 5px 10px !important;
    font-size: 14px !important;
    border-radius: 3px !important;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.20)!important;
}
.vh-tag:hover:after , #cp_main_table_wrapper .pendingApprovalIcon:hover:after{
	content: "";
    display: block;
    height: 0.5em;
    width: 0.5em;
    right: 0.7em;
    margin-left: 0;
    margin-top: -0.5em;
    background: var(--colorError);
    position: absolute;
    top: -17px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10000;
}
.pendingApprovalIcon
{
	margin-right: 10px;
    text-align: center;
    height: 15px;
    width: 15px;
    display: inline-block;
    color: white;
    background-color: #b60e03;
    border-radius: 30px;
    font-size: 13px;
}
#cp_main_table_wrapper .pendingApprovalIcon
{
	margin-left: 1em;
}
#basicPopupContent
{
	margin: 5px 15px;
    height: 175px;
}
#basicPopup.holdCommentPopup
{
	height: auto;
}
div.advancePopup
{
	position:absolute;
	display:none;
	z-index:3000;
	border:1px solid gray;
	background-color:white;
	width:480px;
	height:auto;
	/*max-height:400px;*/
	padding:20px 20px 20px 20px;
	left:50%;
	margin-left:-200px;
	border-radius: 5px!important;
    -moz-border-radius: 5px!important;
	max-height:calc(100% - 150px)!important;
	top:80px!important;
	height: calc(100% - 150px);
	min-height:300px;
}

div.goodAdvancePopup
{
	left:0;
	min-width:600px;
	padding-top:0px;
	text-align:center;
}
div.advancePopupTitle
{
	width:80%;
	text-align:center;
	margin-left:8.5%;
	font-size:20px;
	font-weight:bold;
	padding:12px;
	border-bottom:1px solid black;
	margin-bottom:16px;
	margin-top:20px;
}

.advancePopupScroll
{
	position:relative;
	background-color:white;
	width:540px;
	overflow:auto;
	max-height:390px;
}

#newCardForm
{
	position:absolute;
	display:none;
	top:80px;
	left:calc(50% - 375px);
	z-index:3001;
	width:750px;
	padding-top:50px;
	padding-left:5px;
	height:auto;
	background:white;
	border:1px solid rgb(20,64,99);
	text-align:left;
	border-radius: 5px;
	-moz-border-radius: 5px;
}

table.form-table .ui-multiselect .form-label .form-input
{
	float:left;
	text-align:left;
}
table.form-table
{
	width:100%;
	border-collapse:collapse;
}

.form-table td,.form-table th
{
	padding:5px 10px 5px 10px;
	width: 50%;
}

.form-table td input,.form-table td select
{
	width: 100%;
}

.form-buttons
{
	width:100%;
	text-align:center;
}
.form-button
{
	display:inline-block;
	background-color:var(--colorBrand);
	text-decoration:none;
	white-space:nowrap;
	margin-left:10px;
	margin-bottom:5px;
	margin-top:10px;
	display:inline-block;
	vertical-align:middle;
	cursor:pointer;
	padding:5px 5px 5px 5px;
	min-width:90px;
	border-radius: 5px;
    -moz-border-radius: 5px;
	color:white;
}
input, select
{
	background:#fff;
	border-style:solid;
	box-shadow: 0px 0px 0px;
	border-color: #000!important;
	color:#000!important;
	border-width: 1px;
}

button
{
	font-family: 'Roboto';
	background:var(--colorBrand)!important;
	border-style:solid!important;
	box-shadow: 0px 0px 0px;
	border-color: var(--colorBrand)!important;
	color:#fff!important;
	border-width: 1px;
	font-size:14px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius:3px;
	margin:2px;
	cursor:pointer;
	padding: 3px 15px 3px 15px!important;
}
button:hover
{
	background-color: var(--colorBrandHover) !important;
}

.button-dark-background
{
	background-color: #09C544 !important;
	color:white !important;
}
.receiptBucketActionButton
{
	opacity:.8;
	transition:all eas-in-out .2s;
}
.receiptBucketActionButton:hover
{
	opacity:1!important;;
	transition:all eas-in-out .2s;
}

#addInvoiceInViewSendButton
{
	background:var(--colorBrand)!important;
	border-style:solid!important;
	box-shadow: 0px 0px 0px;
	border-color: var(--colorBrand)!important;
	color:#fff!important;
	border-width: 1px;
	font-size:14px !important;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius:4px;
    border: 1px solid #009900;
	margin:2px;
	cursor:pointer;
	width:100px;
	display:inline-block;
}

#reset-password
{
	background:var(--colorBrand)!important;
	border-style:solid!important;
	box-shadow: 0px 0px 0px;
	border-color: var(--colorBrand)!important;
	padding:4px;
	display:inline-block;
	color:#fff!important;
	border-width: 1px;
	font-size:14px !important;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
    	border: 1px solid #009900;
	margin:2px;
	cursor:pointer;
}

#pce-preview-finalize, #pce-preview-cancel
{
	font-size:22px !important;
}

.reset-passwd-input
{
	width:80%;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
	border: 1px solid #009900;
	height:35px;
	font-size:20px !important;
	padding-top: 6px 6px 6px 6px;
}
.reset-passwd
{
	width:350px;
	height:50px;
	font-size:20px !important;
}
.reset-passwd-validation
{
	width:200px;
	height:40px;
	font-size:20px !important;
}
.reset-passwd-validated
{
	width:270px;
	height:50px;
	font-size:20px !important;
}

table.vistaColumns
{
	table-layout:fixed;
	font-size:10px;
	border-collapse:collapse;
}

table.dataTable.compact thead th
{
	font-size:13px;
	text-align:left;
}

#batchCardOrderForm
{
	
	width:auto;
	border-radius: 5px!important;
    -moz-border-radius: 5px!important;
	left:calc(50% - 500px);
	top: 40%;
	overflow:auto;
	min-height:250px;
	max-height:550px;
}

table.dataTable.compact tfoot th
{
	font-size:13px;
}

#home-detail_filter
{
	float:left !important;
}

#corporation-list_filter
{
	float:left !important;
}

#shows_tbl_filter
{
	float:left !important;
}
#table-pce-list_filter
{
	float:left !important;
}
#table-pce-list_length {
	    float: right;
}

.chip:after
{
	content:"C";
	position: absolute;
	color: red;
	margin-left:5px;
}

.mag:after
{
	content:"M";
	position: absolute;
	color: red;
	margin-left:5px;
}

#pce-filters
{
	width:100%;
}

#pce-filters-table
{
	width:450px;
	margin-left:calc(50% - 250px);
}

.btnCardOrder
{
background:yellow!important;
color:black!important;
cursor:pointer;
float:right;
margin-right:35px;
}
.btnCardOrder:hover
{
	background-color:rgba(255, 254, 148, 1) !important;
}

table.dataTable.compact table.multiline-edit-row tr th, 
table.dataTable.compact table.multiline-edit-row tr td
{
	padding: 4px !important;
	text-align: center !important;
}

td.dt-details_control-green {
    background: url('../images/details_open.png') no-repeat center center;
    cursor: pointer;
}

td.dt-details_control-blue {
    background: url('../images/details_open-black.png') no-repeat center center;
    cursor: pointer;
}

td.dt-details_control-red {
    background: url('../images/details_open-red.png') no-repeat center center;
    cursor: pointer;
}

tr.shown td.dt-details_control-red {
    background: url('../images/details_close.png') no-repeat center center;
}

tr.shown td.dt-details_control-green {
    background: url('../images/details_close.png') no-repeat center center;
}

tr.shown td.dt-details_control-blue {
    background: url('../images/details_close.png') no-repeat center center;
}

.dt-posted_this_period,.dt-pending,.dt-total,.dt-period_limit,.dt-period_avail,.dt-credit_limit,.dt-credit_available,.dt-trans_this_period,.dt-last_period_invoice,.dt-pmnts_this_period,.dt-spend,.dt-account_balance,.dt-amount,.dt-ltd,.dt-month_to_date,.dt-last_week,.dt-since_latest_invoice,.dt-card_limit,.dt-available,.dt-total_sum,.dt-posted,.dt-deposits,.dt-balance,.dt-lifetime_posted,.dt-total_spend,.dt-pending_amnt,.dt-posted_this_week,.dt-last_deposit,.dt-deposit_amount,.dt-fare_amount,.dt-posted_amount,.dt-year_to_date,.dt-lifetime_to_date,.dt-last_year_ytd,.dt-this_week,.dt-last_day,.dt-today,.dt-tx_pending,.dt-amount_due,.dt-selected_period,.dt-hotels,.dt-air_travel,.dt-car_rental,.dt-adjustment,.dt-discount,.dt-auth_amount,.dt-envelope_amount,.dt-total_amount,.dt-statement_balance,.dt-previous_balance,.dt-transactions,.dt-profile_limit,.dt-avail,.dt-unprocessed,.dt-over_under_limit,.dt-posted_ltd,.dt-pmnts_ltd,.dt-last_statement_balance,.dt-trans_ltd,.dt-original_card_limit,.dt-comedya,.dt-comedyb,.dt-dramaa,.dt-dramab,.dt-filma,.dt-filmb,.dt-othera,.dt-otherb,.dt-realitya,.dt-realityb,.dt-grand_total,.dt-current_card_limit,.dt-studio_card_limit,.dt-unreviewed,.dt-available_to_spend,.dt-max_suggested_profile_for_the_week,.dt-approved_limit,.dt-card_balance,.dt-previous_ltd_fee,.dt-total_fee,.dt-current_month_fee,.dt-prefund_surplus,.dt-uncleared_check,.dt-uncleared_ach,.dt-funded,th.dt-funded,.dt-fee,.dt-batches_total,.dt-total_funded,.dt-net,.dt-cards_total,.dt-checks_total,.dt-ach_total,.dt-number_of_cards,.dt-new_activity,.dt-current_balance,.dt-payment_amount,.dt-fulfilled,.dt-exactuals,.dt-comdata,.dt-credits,.dt-payments_made,.dt-amount_,.dt-amount__,.dt-amount___,.dt-pmntsadj_ltd,.dt-batch_amount,.dt-voided,.dt-PartialCredit,.dt-fee_amount,.dt-prior_fee,.dt-current_fee,.dt-payments,.dt-cleared_items,.dt-fees,.dt-request_amount,.dt-x_amount,.dt-cross_border_fee,.dt-resolved_amount,.dt-fraud_amount,.dt-remaining_to_resolve, .dt-number_of_declines, .dt-decline_amount, .dt-percent_of_total_decline_amount, .dt-percent_of_declines, .dt-decline_amount_percent, .dt-decline_percent, .dt-gbp_amount
{
	text-align: right !important;
	padding-right: 26px !important;

}
.dt-download, .dt-post, .dt-lock_unlock, .dt-ViewSend, .dt-send_invoice_auto, .dt-received, .dt-export, .dt-card_status, .dt-export_pce, .dt-approve, .dt-approved, .dt-archived, .dt-approval, .dt-receives_check, .dt-pre_approved_wires, .dt-applied, .dt-notifications, .dt-resolved
{
	text-align: center !important;
	padding-right: 26px !important;

}
#results .dataTables_scrollFoot, #home-card-list_wrapper .dataTables_scrollFoot, #forms_table_wrapper .dataTables_scrollFoot{
	background: transparent;
}
td.dt-cleared_items,#CPTblWeekly td.dt-payments
{
	text-align:right !important;
}

td.dt-active_cards,td.dt-acct_limit,td.dt-acct_available
{
	text-align:right !important;
}

td.dt-client,td.dt-cardholder,td.dt-merchant,td.dt-merchant_address,td.dt-city,td.dt-cardholder_name,td.dt-vendor_reference,td.dt-vendor_name,td.dt-film_title,td.dt-production_company,td.dt-film_name,td.dt-notes,td.dt-production_name,td.dt-status,td.dt-travel_agency,td.dt-fare_basis,td.dt-client,td.dt-parent_company,td.dt-job_log,td.dt-account_id,td.dt-passenger,td.dt-prod_name,td.dt-corp_code,td.dt-show_name,td.dt-icd_dispute,td.dt-notes,td.dt-link,td.dt-company_name,td.dt-address_1,td.dt-profile_description,td.dt-last_name,td.dt-first_name,td.dt-user_name,td.dt-role,td.dt-description,td.dt-department,td.dt-log_time,td.dt-account,td.dt-created_by,td.dt-email,td.dt-details,td.dt-activity_on_cardholder,td.dt-project,td.dt-company,td.dt-file_name,td.dt-form_description,td.dt-form_title,td.dt-category_name,td.dt-admin,td.dt-primary,#cpBatchesSummaryTable_wrapper .dt-received
{
	text-align:left !important;
}
td.dt-approved
{
	text-align:center !important;
}
table.dataTable.compact tfoot th
{
	text-align:right;
}
th.dt-alert_cell
{
	min-width:180px !important;
}
caption {
	    caption-side: inherit;
		    text-align: center;
			    margin-top: 0.5em;
			}

td.dt-comments
{
	text-align:left !important;
}
th.dt-comments
{
	text-align:left !important;
}

td.standard-td
{
	font-size:11px;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

th.standard-th
{
	font-size:11px;
	border:1px solid gray;
	text-align:center;
	background-color:rgb(180,240,180);
}

.approved
{
	min-width:55px;
	width:55px;
	height:25px;
	font-size:11px;
	padding: 0 0 0 0;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.archived
{
	min-width:55px;
	width:55px;
	height:25px;
	font-size:11px;
	padding: 0 0 0 0;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.xid
{
	min-width:65px;
	width:65px;
	height:25px;
	padding: 0 0 0 0;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.cardholder
{
	min-width:150px;
	width:150px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}



td.dt-client
{
	text-align:left !important;
}

.dt-account_actions
{
	min-width:160px;
}

.cardholder-home
{
	display:inline-block;
	font-size:11px;
	border:1px solid gray;
	text-align:center;
	background-color:rgb(225,255,225);
	margin-bottom:5px;
}

.transaction_date
{
	min-width:85px;
	width:85px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.posted_date
{
	min-width:75px;
	width:75px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}


.card_status
{
	min-width:109px;
	width:109px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	vertical-align:middle;
	background-color:white;
}

.merchant
{
	min-width:145px;
	width:145px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.city
{
	min-width:120px;
	width:120px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.state
{
	min-width:40px;
	width:40px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.card_last_4
{
	min-width:60px;
	width:60px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.card_last_4-home
{
	min-width:90px;
	width:90px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.posted_amount
{
	min-width:75px;
	width:75px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.amount
{
	min-width:73px;
	width:73px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.pending
{
	min-width:73px;
	width:73px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.posted
{
	min-width:115px;
	padding-right:5px;
	width:115px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.notes
{
	min-width:486px;
	width:486px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.reference
{
	min-width:172px;
	width:172px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.account_code
{
	min-width:137px;
	width:137px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.filler
{
	min-width:169px;
	width:169px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}


.plus
{
	min-width:25px;
	width:25px;
	height:25px;
	font-size:15px;
	font-weight:bold;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}


.account_id
{
	min-width:90px;
	width:90px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	vertical-align:middle;
	background-color:white;
}

.client_name
{
	min-width:175px;
	width:175px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:center;
	background-color:white;
}

.transactions_this_period
{
	min-width:146px;
	width:146px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.client-transactions_this_period
{
	min-width:191px;
	width:191px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}
.acct_limit
{
	min-width:85px;
	width:85px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.client-acct_limit
{
	min-width:130px;
	width:130px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.acct_available
{
	min-width:105px;
	width:105px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.client-acct_available
{
	min-width:150px;
	width:150px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.last_amount
{
	min-width:115px;
	width:115px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.client-last_amount
{
	min-width:160px;
	width:160px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.deposits
{
	min-width:125px;
	width:125px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.client-deposits
{
	min-width:170px;
	width:170px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.acct_balance
{
	min-width:115px;
	width:115px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}

.client-acct_balance
{
	min-width:156px;
	width:156px;
	padding-right:5px;
	height:25px;
	font-size:11px;
	float:left;
	border:1px solid gray;
	text-align:right;
	background-color:white;
}


#waiting
{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity:.6;
    z-index: 5001;
    top: 0;
    left: 0;
}

#page-cover
{
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity:.6;
    z-index: 2999;
    top: 0;
    left: 0;
}

#spinning
{
	z-index:4000;
	position:fixed;
	left:35%;
	top:25%;
}

#add-contract{
    color: #fff;
    border: 0;
    box-shadow: none;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    padding: 2px 10px;
    margin: 0 5px;
	border-left-color: rgb(48, 133, 214);
	border-right-color: rgb(48, 133, 214);
	background-color:rgb(81, 137, 191);
    cursor: pointer; }
.archive-pceBTN {
    color: #fff;
    border: 0;
    box-shadow: none;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    padding: 0px 10px;
    margin: 0 5px;
	border-left-color: rgb(48, 133, 214);
	border-right-color: rgb(48, 133, 214);
	background-color:rgb(81, 191, 90);
    cursor: pointer;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
    border: 1px solid #009900;
}
#download-excel {
	background:var(--colorBrand)!important;
    color: #fff;
	width: 12em !important;
    height: 42px;
	padding-right:25px !important;
    color: #fff;
    border: 0;
    box-shadow: none;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    padding: 2px 10px;
    margin: 0 5px;
	/* border-left-color: rgb(48, 133, 214);
	border-right-color: rgb(48, 133, 214);
	background-color:rgb(81, 137, 191); */
    cursor: pointer;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
    /* border: 1px solid #009900; */
}

#btnDownloadExcel
{
	position:absolute;
	z-index:1001;
	left:2%;
}
#btnCreateDispute
{
	position:absolute;
	z-index:1001;
	left:11%;
}

.ui-datepicker{z-index: 3002 !important};


div.vendorPopup
{
	position:absolute;
	display:none;
	z-index:3001;
	border:1px solid gray;
	background-color:white;
	height:auto;
	padding:20px 20px 20px 20px;
	left:50%;
	margin-left:-200px;
	top:25%;
}
div.fdxPopup
{
	position:absolute;
	display:none;
	z-index:3001;
	border:1px solid gray;
	background-color:white;
	height:auto;
	padding:20px 20px 20px 20px;
	left:25%;
	margin-left:-200px;
	top:5%;
}

div.CorpPopup
{
	position:absolute;
	display:none;
  	border-radius: 15px;
	background-color:white;
	height:auto;
	padding:20px 20px 20px 20px;
	left:17%;
	top:10%;
}
div.CorpPopup .corp-reset-button {

    color: #fff;
    border: 0;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 5px;
    padding: 10px 32px;
    margin: 0 5px;
    cursor: pointer;
	display: inline-block;
	border-left-color: rgb(48, 133, 214);
	border-right-color: rgb(48, 133, 214);
	background-color: rgb(133, 138, 142);
}

div.CorpPopup .corp-button {
	color: #fff;
    border: 0;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 5px;
    padding: 10px 32px;
    margin: 0 5px;
    cursor: pointer;
	display: inline-block;
	border-left-color: rgb(48, 133, 214);
	border-right-color: rgb(48, 133, 214);
	background-color: rgb(48, 133, 214);
}
div.CorpPopup .percentage{
	margin-left:20px;

}
.lbl-left{
	text-align:left;
}
.URLDispute{
	width:800px;
}


div.tax-calc
{
	position:absolute;
	top:-30px;
	left:1px;
	background-color:white;
	border:4px solid black;
}

table.tax-calc tr
{
	background-color:white !important;
}

.th-check_all
{
	text-align:center !important;
}

#prepareToClose
{
	display:none;
}

.prepareToCloseUserOptions, .prepareToCloseCardOptions
{
	display:none;
}

.prepareToClose
{
	vertical-align:middle !important;
	margin-top:-5px !important;
}


a
{
text-decoration:none;
color:var(--colorBrand) !important;
}


td.dt-cardholder
{
	text-align:left !important;
	color:black!important;
}

.faqHighlight
{
	background-color:yellow;
}



.show-on-token-validate, .show-on-token-expired
{
	display:none;
}


#pce-preview
{
	position: absolute;
	top: 5px;
	z-index: 4000;
	width: calc(100% - 420px);
	left: 280px;
	height: calc(100% - 5px);
}

.pce-preview
{
	height:100%;
	width:100%;
	left: calc(50% - 40%);
	background-color:white;
	border: 1 px solid black;
	text-align:center;
}

.pce-title
{
	font-size:24px;
	text-align:center;
	height:30px;
}

.pce-footer
{
	height:70px;
}

.pce-image-wrapper
{
	overflow:auto;
	height:calc(100% - 100px);
	width:80%;
	border:1px solid black;
	margin:auto;
}

.pce-preview-table
{
	width:100%;
	text-align:center;
	font-size:18px;
	color:red;
}

.pce-preview-img
{
	width:100%;
}

#pce-preview-next
{
	position:absolute;
	right:5px;
	top:48%;
	cursor:pointer;
	opacity:.7;
}
#pce-preview-next:hover
{
	opacity:1;
}

#pce-preview-prev
{
	position:absolute;
	left:5px;
	top:48%;
	cursor:pointer;
	opacity:.7;
}
#pce-preview-prev:hover
{
	opacity:1;
}

button:disabled
{
	background: var(--colorInactiveGrey2) !important;
}
button:disabled:hover
{
	background: var(--colorInactiveGrey2) !important;
	color:white !important;
}

.card-button-disabled
{
	background:gray !important;
}

.card-button-disabled:hover
{
	background:gray !important;
	color:white !important;
}
.trans-details-title
{
	text-align:right !important;
    padding-left: 5px;
    padding-right: 5px;
	font-weight:bold;
	font-size:15px;
}
.airtravel-details-title
{
	text-align:center !important;
	font-weight:bold;
	font-size:15px;
}
.trans-details
{
	text-align:left !important;
    padding-left: 5px;
    padding-right: 5px;
	font-size:15px;
}
.airtravel-details
{
	text-align:center !important;
	font-size:15px;
}
.trans-details-header
{
	text-align:left !important;
    padding-left: 5px;
    padding-right: 5px;
	font-weight:bold;
	font-size:18px;
	text-decoration: underline;
	font-style: italic;
}
#account-settings-icon
{
	position:absolute;
	top:5px;
	right:5px;
	cursor:pointer;
}
.account-settings-icon
{
	width:45px !important;
}

.account-settings input
{
	text-align:right;
}

div.account-settings
{
	position:absolute;
	z-index:3100;
	top:10%;
	left:calc(50% - 275px);
	background-color:white;
	box-shadow: 3px 6px 18px 10px rgba(0, 0, 0, 0.14);
}

#card-setup-department
{
	position:absolute;
	display:none;
	z-index:10;
}

div.locked-out
{
	font-size:20px;
	font-weight:bold;
	color:red;
	width:50%;
	margin-left:25%;
	text-align:center;
}
button.unlock-button
{
	background-color:red !important;
}
button.unlock-button:hover
{
	color:black !important;
}

#save_order_card,#save_vcard
{
	background:var(--colorBrand)!important;
	border-style:solid!important;
	box-shadow: 0px 0px 0px;
	border-color: var(--colorBrand)!important;
	color:#fff!important;
	border-width: 1px;
	font-size:14px !important;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
    	border: 1px solid #009900;
	margin:2px;
	cursor:pointer;
	display:inline-block;
}
#save_order_card:hover,#save_vcard:hover
{
	color:var(--colorBrand)!important;
	background:#fff!important;
}
#reportsTable{
	border-color:white!important;
	background-color:white!important;
}
#card-detail,#batchCardOrderForm{
	border-radius: 5px!important;
    -moz-border-radius: 5px!important;
}
.card-setting-save{
	cursor:auto;
}
.mllOutOfBalance
{
	background-color: #B80303 !important;	
	color: white !important;	
	font-weight: 600 !important;
}
.runningTotalOutOfBalance
{
	border: 2px solid #F8B404 !important;	
}
input[class^='mll-']:disabled{
	    background: #eee!important;
}
input[class^='date']:disabled{
	    background: #eee!important;
}
select:disabled{
	    background: #eee!important;
}
#txtEmail:disabled{
	    background: rgb(221, 221, 221)!important;
		width:380px;
		cursor:not-allowed!important;
}
#login-form input{
		width:380px;
}
option.disabled
{
	color: #B7B7B7;
}
select.disabled
{
	color: #B7B7B7 !important;
	border-color: #B7B7B7 !important;
}
.gl-field {width:100px;}
.gl-editor {min-width:1100px;}
.gl-editor
{
	position:absolute;
	left:200px;
	top: 50px;
	min-width:1100;
	height:auto;
	background:white;
	border:1px solid var(--colorBrand);
	z-index:3001;
}
.green_checkbox
{
	-moz-appearance:none;
	-webkit-appearance:none;
	-o-appearance:none;
	width: 25px;
    height: 25px;
	vertical-align: middle;
}
.green_checkbox:checked
{
	background-color:#496734 !important;
	color: white !important;
}
.green_checkbox:checked:after
{
	content: '\2713';
    font-size: 18px;
    position: relative;
    top: 0px;
    left: 4px;
}
.iaEditCodingRemoveButton
{
	height: 25px;
	min-width: 25px;
	float:right;
	cursor:pointer;
}

/*
	SweetAlert in fedex disputes pushed higher for visibility of lower buttons when to many disputes
*/
#body > div.swal2-container > div.swal2-modal.show-swal2.visible[style*="width: 1250"]{
    top :195px !important;
}
#frmCardEdit > table > tbody > tr > td > input {
    background: #eee!important;
}
.username_column_container
{
	display: flex;
    justify-content: space-between;
}

.locked_icon.small
{
	position: absolute;
}
.locked_icon
{
    width: 15px;
}
.hidden_icon
{
	width: 20px;
}
.cell_container
{
	display: flex;
    align-items: center;
    justify-content: center;
}


.username_column_container
{
	display: flex;
    justify-content: space-between;
}

.locked_icon.small
{
	position: absolute;
}
.locked_icon
{
    width: 15px;
}
.hidden_icon
{
	width: 20px;
}
.cell_container
{
	display: flex;
    align-items: center;
    justify-content: center;
}

/* ----------- iPhone 6 ----------- */

/* Landscape */
@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 667px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {

	span#footC {
		font-size: 14px;
		position: absolute;
		/* bottom: 4px; */
		left: calc(50% - 200px);
	}
	#logo {
		width: 90px;
    	position: absolute;
    	left: calc(50% - 45px);
    	/* bottom: 4px; */
	}
	span#footPatent{
		font-size: 14px;
    	position: absolute;
    	/* bottom: 4px; */
    	left: calc(50% + 60px);
	}
	#wrapper {
		height: 667px;
	}
	#content, .content {
		height: calc(100% - 30px);
	}
	.copyrights_footer{
		position: relative;
    	height: 90px;
    	left: 0;
	}

}

/* ----------- iPhone 6+ ----------- */

/* Landscape */
@media only screen
  and (min-device-width: 414px)
  and (max-device-width: 736px)
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) {
	span#footC {
		font-size: 14px;
		position: absolute;
		/* bottom: 4px; */
		left: calc(50% - 200px);
	}
	#logo {
		width: 90px;
    	position: absolute;
    	left: calc(50% - 45px);
    	/* bottom: 4px; */
	}
	span#footPatent{
		font-size: 14px;
    	position: absolute;
    	/* bottom: 4px; */
    	left: calc(50% + 60px);
	}
	#wrapper {
		height: 667px;
	}
	#content, .content {
		height: calc(100% - 30px);
	}
	.copyrights_footer{
		position: relative;
    	height: 90px;
    	left: 0;
	}
}
input,select,textarea
{
	font-family: inherit;
}
@media screen and (max-width: 1250px)
{
	#header
	{
		height:100px;
	}
	#main-account-select-wrapper
	{
		top:60px;
		left: 15px;
	}
	#header-currency
	{
		top:61px;
		left: 805px;
	}
	#content
	{
		height:calc(100% - 260px);
	}
}
#header:has(#header-proxy-logout)
{
	@media screen and (max-width: 1300px) and (min-width: 941px)
	{
		height:100px;
		#main-account-select-wrapper
		{
			top:60px;
			left: 15px;
		}
		#header-currency
		{
			top:61px;
			left: 805px;
		}
		~ #content
		{
			height:calc(100% - 260px);
		}
	}
}
#header:has(#header-pending-approvals)
{
	@media screen and (max-width: 1360px) and (min-width: 981px)
	{
		height:100px;
		#main-account-select-wrapper
		{
			top:60px;
			left: 15px;
		}
		#header-currency
		{
			top:61px;
			left: 805px;
		}
		~ #content
		{
			height:calc(100% - 260px);
		}
	}
}
#header:has(#header-proxy-logout, #header-pending-approvals)
{
	@media screen and (max-width: 1513px) and (min-width: 1081px)
	{
		height:100px;
		#main-account-select-wrapper
		{
			top:60px;
			left: 15px;
		}
		#header-currency
		{
			top:61px;
			left: 805px;
		}
		~ #content
		{
			height:calc(100% - 260px);
		}
	}
}
.postedAmountOutOfBalance
{
	background-color: #B80303 !important;
	color:white !important;
}
@media screen and (max-width: 980px)
{
	#header-account-status-filter-wrapper
	{
		top:60px;
		left:15px;
	}
	#header
	{
		height:150px;
	}
	#main-account-select-wrapper
	{
		left: 135px;
		top:110px;
		left: 15px;
	}
	#header-currency
	{
		top:111px;
		left: 805px;
	}
	#content
	{
		height:calc(100% - 310px);
	}
}
@media screen and (max-width: 875px)
{
	#main-account-select-wrapper
	{
		width:calc(100% - 90px);
	}
	#header-currency
	{
		top:111px;
		left: calc(100% - 85px);
	}
}