/*------------------------------------------------------------------------------
DESCRIPTION:
- Primary style sheet for entire system (along w/ style.css)
- Import after style.css

SECTIONS:
- DATATABLES [12/18/18]
- ERROR MESSAGES / STATUS BARS [12/18/18]
- LOCATIONS WIDGET [12/19/18]
- MANAGER
- MESSAGE INBOX
- NCIC HITS
- PERSON PAGE
- SEARCH
- STATEMENT ANALYZER [12/20/18]
- TICKET ASSISTANT / TICKET DETAIL
- DATE PICKER
- DIALOG
- VIRTUAL CHECKBOXES [4/3/19]
- MCSO / MESA
- ORG CHART
- SERVICES TRAY (SEARCH PAGE)
- STICKY
- APPCUES
- MISC
- TEMP / NEW STYLES

[] = Date refactored
------------------------------------------------------------------------------*/



/*------------------------------------------------------------------------------
DATATABLES
------------------------------------------------------------------------------*/
.dataTables_filter,
.dataTables_info,
.dataTables_length,
.dataTables_paginate {
	font: 1.2em/30px Arial, Helvetica, sans-serif;
}

.dataTables_filter,
.dataTables_length {
    box-sizing: border-box;
    margin-bottom: 5px;
	margin-top: 5px;
    width: 50%;
}
	.dataTables_filter {
		float: right;
	}
		.dataTables_filter label {
			float: right;
			padding-right: 0;
			width: auto;
		}

	.dataTables_length {
		float: left;
	}
		.dataTables_length label {
			width: auto;
		}

.dataTables_info {
	clear: both;
	width: 100%;
}

.dataTables_paginate {
	text-align: center;
	width: 100%;
}
	.dataTables_paginate a.paginate_button.next,
	.dataTables_paginate a.paginate_button.previous {
		display: none;
	}
	.dataTables_paginate .current,
	.dataTables_paginate span.paginate_active {
		background: #0049b3;
		color: #fff;
		cursor: default;
	}
	.dataTables_paginate a:hover,
	.dataTables_paginate span.paginate_button:hover {
		background: #0049b3;
		color: #fff;
	}
	.dataTables_paginate span a,
	.dataTables_paginate span span {
		border-radius: 2px;
		color: #0049b3;
		cursor: pointer;
		display: inline-block;
		height: 30px;
		padding: 0 10px;
	}

.dataTables_processing {
	background: #5fafe1;
	border-radius: 2px;
	box-sizing: border-box;
	color: #fff;
	font: 1.3em/20px Arial, Helvetiva, sans-serif;
	left: calc(50% - 100px);
	margin-top: 100px;
	padding: 10px 20px;
	position: absolute;
	text-align: center;
	width: 200px;
	z-index: 9999;
}
	.dataTables_processing p {
		color: #fff ;
	}

.dataTables_wrapper {
	clear: both;
}


/*------------------------------------------------------------------------------
ERROR MESSAGES / STATUS BARS
------------------------------------------------------------------------------*/
ul.ftpErrorDetails,
ul.ftpNoErrorDetails {
	border: 1px solid #d71e28;
	border-radius: 2px;
	box-sizing: border-box;
	clear: both;
	color: #d71e28;
	display: block;
	padding: 5px 10px 5px 30px;
	width: auto;
}
	ul.ftpNoErrorDetails {
		border: 1px solid #8cc850;
		color: #000;
	}

.alertBox,
.ticketWarningsBox,
.validation-summary-errors {
	background: #fff;
	border: 1px solid #d71e28;
	border-radius: 2px;
	box-sizing: border-box;
	margin-bottom: 10px;
	padding: 5px 10px 0 10px;
}
	.alertBox.aggressive {
		background: #ffebeb;
	}
	.alertBox.calm {
		background: #ebf5ff;
		border: 1px solid #5fafe1;
	}
	.alertBox .highlightRed {
		background: #d71e28;
		color: #fff;
	}
	.validation-summary-errors {
		background: #ffebeb;
	}
	.ticketWarningsBox p {
		border-top: 1px dashed #b4b4b4;
		padding-top: 5px;
	}
		.ticketWarningsBox p:first-child {
			border-top: none;
			padding-top: 0;
		}

	.validation-summary-errors span,
	.validation-summary-errors ul li {
		color: #d71e28;
		font: 1.3em/25px Arial, Helvetiva, sans-serif;
	}
		.validation-summary-errors ul li span {
			font-size: 100%;
		}

	.validation-summary-errors ul {
		list-style-type: square !important;
		margin: 0 0 5px 20px !important;
	}

.confirmationBox {
	border: 1px solid #8cc850;
	border-radius: 2px;
	box-sizing: border-box;
	margin-bottom: 10px;
	padding: 5px 10px 0 10px;
}

.statusResultsErrorMessage,
.statusResultsProcessingMessage,
.statusResultsSuccessMessage {
	background: #d71e28;
	color: #fff;
	display: none;
	font: 1.4em/30px Arial, Helvetica, sans-serif;
	left: 0;
	opacity: 0.95;
	padding-bottom: 5px;
	padding-top: 5px;
	position: fixed;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 999999;
}

.statusResultsProcessingMessage {
   background: #5fafe1;
   color: #000;
}

.statusResultsSuccessMessage,
.successMessage {
	background: #8cc850;
	color: #000;
}

#credentials .field-validation-error {
	clear: none;
	float: none;
	line-height: normal;
}


/*------------------------------------------------------------------------------
LOCATIONS WIDGET
------------------------------------------------------------------------------*/
.locationFilterWidget .ui-autocomplete.ui-widget li.ui-menu-item a {
	font-size: 100%;
}

.locationsList {
	background: #fff;
	border: 1px solid #b4b4b4;
	border-radius: 2px;
	margin-bottom: 10px;
	overflow: auto;
	padding: 5px 20px;
	width: auto;
}
	.locationsList p {
		display: inline-block;
		line-height: 20px;
		margin-bottom: 0 !important;
		vertical-align: middle;
	}
		.locationsList p .city {
			background: #cde9fa;
			border-radius: 2px;
			padding: 2px 4px;
		}
		.locationsList p .county {
			background: #ffe6b9;
			border-radius: 2px;
			padding: 2px 4px;
		}
		.locationsList p .state {
			background: #dcf0c3;
			border-radius: 2px;
			padding: 2px 4px;
		}

.ui-autocomplete {
	cursor: default;
	position: absolute;
}
	.ui-autocomplete.ui-widget {
		list-style: none !important;
		max-height: 200px;
		overflow-x: hidden;
		overflow-y: scroll;
		padding: 5px;
		max-width: 400px;
	}
		.ui-widget.ui-widget-content.ui-autocomplete {
			border: 5px solid #b4b4b4;
		}
		.ui-autocomplete.ui-widget li {
			display: block;
			font: 1.2em/20px Arial, Helvetica, sans-serif;
			line-height: 20px !important;
			margin-left: 0;
		}
			.ui-autocomplete.ui-widget li.ui-menu-item a,
			.ui-autocomplete.ui-widget li.ui-menu-item div {
				box-sizing: content-box;
				display: inline-block;
				padding: 0 10px;
				width: 100%;
			}
			.ui-autocomplete.ui-widget li.ui-menu-item a:hover,
			.ui-autocomplete.ui-widget li.ui-menu-item.select a,
			.ui-autocomplete.ui-widget li.ui-menu-item div:hover,
			.ui-autocomplete.ui-widget li.ui-menu-item div.ui-state-active,
			.ui-autocomplete.ui-widget li.ui-menu-item div#ui-active-menuitem {
				background: #23699b !important;
				color: #fff;
			}
				.ui-autocomplete.ui-widget li.ui-menu-item a:hover,
				.ui-autocomplete.ui-widget li.ui-menu-item div:hover {
				   cursor: pointer;
				}

	.ui-widget-content {
		background: #fff;
	}

#containerMain p .ui-autocomplete.ui-widget li {
	font-size: 100%;
}


/*------------------------------------------------------------------------------
MANAGER
------------------------------------------------------------------------------*/
.groupSideBySide.layout2column p.checkBtn,
.groupSideBySide.layout3column p.checkBtn,
.groupSideBySide.layout4column p.checkBtn {
	display: inline-block;
	margin-right: 5% !important;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
	.groupSideBySide.layout2column p.checkBtn {
		width: 45% !important;
	}
	.groupSideBySide.layout3column p.checkBtn {
		width: 28% !important;
	}
	.groupSideBySide.layout4column p.checkBtn {
		width: 15% !important;
	}

.inHuntGrp {
	border: 2px solid #d71e28;
}

.inHuntGrp2 {
	border: 2px solid #23699b;
}

.legendFromSupportBin,
.legendInactiveBusiness,
.legendNewAgency,
.legendNewHit,
.legendNonClient,
.legendRecentRegistration,
.legendRegAgeNewest,
.legendRegAgeMiddle,
.legendRegAgeOldest,
.legendSubscribedToUser,
.legendSuspectIdentity,
.legendNonCellHawkClient,
.legendUnread {
	/*border-bottom: 1px solid #b4b4b4;*/
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}
	.legendFromSupportBin {
		background: #fff5c8;
	}
	.legendInactiveBusiness {
		background: #ffe1e1;
		border-left: 2px solid #d71e28;
		color: #6e6e6e;
	}
	.legendNewAgency {
		background: #dcf0c3;
		border-left: 2px solid #468237;
	}
	.legendNewHit {
		background: #cde9fa;
		border-left: 2px solid #23699b;
	}
	.legendNonClient {
		background: #cde9fa;
		border-left: 2px solid #23699b;
	}
.legendNonCellHawkClient {
	background: #dcf0c3;
	border-left: 2px solid #468237;
}
	.legendRecentRegistration,
	.legendRegAgeNewest {
		background: #dcf0c3;
	}
	.legendRegAgeMiddle {
		background: #fafab9;
	}
	.legendRegAgeOldest {
		background: #ffe1e1;
	}
	.legendSubscribedToUser {
		background: #ffe1af;
	}
	.legendSuspectIdentity {
		background: #ffe1e1 url('../images/icon_poi_suspect-data.gif') no-repeat;
		border-left: 2px solid #d71e28;
		padding-left: 20px;
	}
	.legendUnread {
		background: #cde9fa;
		border-left: 2px solid #23699b;
	}

.phoneStatusAvail,
.phoneStatusAvail,
.phoneStatusAway,
.phoneStatusDND,
.phoneStatusOnCall {
	border-bottom: 1px solid #b4b4b4;
	border-radius: 2px;
	padding: 1px 3px 2px 3px;
}
	.phoneStatusAvail {
		background: #dcf0c3;
		border-left: 2px solid #dcf0c3;
		border-right: 2px solid #dcf0c3;
		border-top: 2px solid #dcf0c3;
	}
	.phoneStatusAway {
		background: #e1e1e1;
		border-left: 2px solid #e1e1e1;
		border-right: 2px solid #e1e1e1;
		border-top: 2px solid #e1e1e1;
	}
	.phoneStatusDND {
		background: #ffe1e1;
		border-left: 2px solid #ffe1e1;
		border-right: 2px solid #ffe1e1;
		border-top: 2px solid #ffe1e1;
	}
	.phoneStatusOnCall {
		background: #ffe1af;
		border-left: 2px solid #ffe1af;
		border-right: 2px solid #ffe1af;
		border-top: 2px solid #ffe1af;
	}

.slice:hover {
	cursor: pointer;
}

#adminFilters {
	border-bottom: 1px solid #e1e1e1;
	border-top: 1px solid #e1e1e1;
	padding-bottom: 10px;
	padding-top: 10px;
}

#adminActivities th {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#containerMain p.numberCircle,
#containerMain p.numberCircleSworn {
	background: #23699b;
	border-radius: 2px;
	color: #fff;
	font: 1.8em/100px Arial, Helvetica, sans-serif;
	left: 120px;
	height: 100px;
	position: absolute;
	text-align: center;
	top: 600px;
	width: 300px;
}
	#containerMain p.numberCircleSworn {
		top: 710px;
	}
		#containerMain p.numberCircle span,
		#containerMain p.numberCircleSworn span {
			display: block;
			font-size: 75%;
		}

	#containerMain p.numberCircle .of,
	#containerMain p.numberCircleSworn .of {
		display: inline;
		font-style: italic;
	}

#containerMain .stage ul#navSecondary {
	background: #f5f5f5;
	display: flex;
	height: 30px;
	justify-content: center;
	margin: 0 0 20px 0;
	overflow: auto;
}
	#containerMain .stage ul#navSecondary li {
		font: 1.2em/30px Arial, Helvetica, sans-serif;
		float: left;
		list-style: none;
		text-align: center;
	}
		#containerMain .stage ul#navSecondary li span.mimicAnchor {
			border-right: 1px solid #e1e1e1;
			box-sizing: border-box;
			color: #000;
			display: block;
			text-decoration: none;
			width: 150px;
		}
			#containerMain .stage ul#navSecondary li:last-child span.mimicAnchor {
				border-right: none;
			}
			#containerMain .stage ul#navSecondary li span.mimicAnchor:hover,
			#containerMain .stage ul#navSecondary li span.mimicAnchor.selected {
				background: #23699b;
				border-right: 1px solid #23699b;
				color: #fff;
			}

#containerMain .stage .tools {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
	#containerMain .stage .tools .portlet {
		background: #e3f3fc;
		border-radius: 10px;
		box-sizing: border-box;
		flex-basis: calc(25% - 10px);
		padding: 10px 20px;
	}

#contTerritoryMaps {
	overflow: hidden;
}

#navTertiary {
	height: 25px;
	margin-bottom: 20px;
}
	#navTertiary p span {
		padding: 5px 10px;
	}
		#navTertiary p span.mimicAnchor {
			color: #000;
			text-decoration: none;
		}
		#navTertiary p span.mimicAnchor:hover {
			background: #000 !important;
			color: #fff;
		}

#phoneChartDataTable table {
	background: none;
}
	#phoneChartDataTable table tr td:nth-child(n+2),
	#phoneChartDataTable table tr th:nth-child(n+2) {
		text-align: right;
	}

#registrationResponsiveness tbody tr td {
	border-left: 1px solid #e1e1e1;
}
	#registrationResponsiveness tbody tr td:first-child {
		border-left: none;
	}

#registrationResponsiveness tbody tr:last-child td {
	border-bottom: none;
}

#registrationResponsiveness tbody tr:nth-child(2n+0) td {
	border-bottom: 1px solid #000;
}

@keyframes border {
	to {
		background-position: 200% center;
	}
}

.borderGreenSalesforceBtn {
	display: inline-block; /*Matches button size */
	padding: 3px; /*Adds space for border without affecting button size */
	border-radius: 5px; /*Match button's shape */
	background: transparent;
	background-size: 200% auto;
	animation: background 0.3s ease-in-out;
}

	.borderGreenSalesforceBtn p {
		margin: 0; /*Remove extra margin to keep the layout consistent */
	}

	.borderGreenSalesforceBtn:hover {
		background: linear-gradient(to right, #fff 20%, #fff 40%, #6CE58B 50%, #6CE58B 55%, #fff 70%, #fff 100%);
		background-size: 200% auto;
		animation: border 3s linear infinite;
		cursor: pointer;
	}

.newBlueCtaButton {
	background: #0049b3;
	color: #fff;
	text-align: center; /* Centers text */
	display: inline-block; /* Ensures it behaves like a button */
	padding: 0 12px; /* Adds padding to the left and right */
	min-height: 30px; /* Ensures consistent height */
	line-height: 30px; /* Centers text vertically */
	border-radius: 4px;
}


/*------------------------------------------------------------------------------
MESSAGE INBOX
------------------------------------------------------------------------------*/
.categoryAlert,
.categoryStats {
	border-radius: 2px;
	padding: 2px 5px;
}
	.categoryAlert {
		background: #d71e28;
		color: #fff;
	}
	.categoryStats {
		background: #ff9b1e;
	}

.colMessage {
	width: 450px;
}
	.colMessage iframe {
		height: 200px !important;
	}

.colRecipients {
	overflow: auto;
	width: 350px;
}
	.colRecipients #contBizRecipients,
	.colRecipients #contBizSender,
	.colRecipients #contRecipients {
		border: 1px solid #23699b;
		height: 238px;
		overflow: auto;
		padding: 10px;
		position: relative;
	}
		.colRecipients #contBizRecipients {
			height: 143px;
		}
		.colRecipients #contBizSender {
			height: 23px;
			margin-bottom: 20px;
			overflow: hidden;
		}

.flex-text-wrap {
	height: 300px;
	margin-bottom: 20px;
	position: relative;
	width: 550px;
}
	.flex-text-wrap pre {
		visibility: hidden;
	}
	.flex-text-wrap textarea {
		border: 1px solid #878787;
		box-sizing: border-box;
		height: 298px;
		font: 1.3em Arial, Helvetica, sans-serif;
		left: 1px;
		line-height: 20px;
		padding: 20px;
		position: absolute;
		top: 1px;
		width: 548px;
	}
	.flex-text-wrap pre,
	.flex-text-wrap textarea {
		white-space: pre-wrap;
	}

.mce-btn-group:not(:first-child) {
	border-left: none !important;
	padding-left: 0 !important;
	margin-left: 0 !important;
}

.mce-flow-layout .mce-first.mce-btn-group {
	display: none;
}

.sender {
	border-bottom: 1px dotted #b4b4b4;
	border-top: 1px dotted #b4b4b4;
	padding: 5px 0;
}

#attachmentsList {
	background: #ffe1e1;
	box-sizing: border-box;
	margin-bottom: 10px;
	padding: 5px 10px;
}

#composeMessagePreview .flex-text-wrap {
	width: 100%;
}

#messageBox {
	min-height: 200px;
	vertical-align: top;
}


/*------------------------------------------------------------------------------
NCIC HITS
------------------------------------------------------------------------------*/
.btnsModule {
	clear: both;
	overflow: auto;
	padding-top: 10px;
}
	.btnsModule .btn {
		border-radius: 2px;
		float: left;
		margin-bottom: 5px;
		margin-right: 5px;
		padding-left: 5px;
		padding-right: 5px;
	}
		.btnsModule .btn.selected,
		.btnsModule .btn.selected:active,
		.btnsModule .btn.selected:hover {
			background: #23699b url(/Content/images/icon_check-white.gif) no-repeat left !important;
			color: #fff !important;
			cursor: default !important;
			padding-left: 20px !important;
		}

.details.ncicInfo .col,
.ui-dialog #ncicHit .col,
.ui-dialog #stolenItemHit .col {
	font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', monospace;
}

.details .noteContainer p {
	font-size: 100% !important;
}

.itemsNcic {
	font: 1.2em Arial, Helvetica, sans-serif;
	margin: 5px 10px 0 20px !important;
}
	.itemsNcic span.label {
		color: #646464;
	}

.ncicDetailsRow .linkToRTC {
	font-family: Arial, Helvetica, sans-serif;
}

.notesList {
	list-style: square !important;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
}
	.notesList li {
		line-height: 20px !important;
	}

.ui-dialog .noteContainer p {
	height: 25px !important;
}
	.ui-dialog .noteContainer ul li {
		line-height: 25px !important;
		list-style-type: square;
	}

.ui-dialog .notesList li {
	font: 1.2em Arial, Helvetica, sans-serif;
	line-height: 25px;
}

#containerCategoriesNCIC {
	display: none;
}
	#containerCategoriesNCIC ul {
		list-style: none !important;
	}
		#containerCategoriesNCIC ul li {
			background: url(/Content/images/icon_categories-ncic.gif) no-repeat left center;
			line-height: 20px;
			padding-left: 20px;
		}
			#containerCategoriesNCIC ul li.serialsIgnored {
				background: url(/Content/images/icon_categories-ncic_ignore-serials.gif) no-repeat left center;
			}

#ncicHit,
#stolenItemHit {
	border: 2px solid #8cc850;
	border-radius: 2px;
	box-sizing: border-box;
	overflow: auto;
	margin: 0 auto 20px auto;
	padding: 10px;
	width: 100%;
}
	#ncicHit .col,
	#stolenItemHit .col {
		font: 1.2em/20px Arial, Helvetica, sans-serif;
		float: left;
		margin-right: 3%;
		width: 30%;
	}
		#ncicHit .col .label,
		#stolenItemHit .col .label {
			color: #646464;
			display: block;
			float: left;
			height: auto;
			line-height: 20px;
			padding-right: 5px;
		}

	#ncicHit .hitDate,
	#stolenItemHit .hitDate {
		clear: both;
		font: 1.2em/20px Arial, Helvetica, sans-serif;
		display: block;
		margin-bottom: 5px;
	}
	#ncicHit .btnsModule,
	#stolenItemHit .btnsModule {
		font: 1.2em/20px Arial, Helvetica, sans-serif;
	}


/*------------------------------------------------------------------------------
PERSON PAGE
------------------------------------------------------------------------------*/
table thead tr.myPoiList td {
	background: #ffe1af !important;
}

ul.followers {
	margin: 0 0 10px 0;
}
	ul.followers li {
		list-style: square;
	}

.associateData {
	border-bottom: 1px solid #e1e1e1;
	display: inline-block;
	margin-bottom: 2px;
	padding-bottom: 2px;
	width: 100%;
}
	.associateData:last-child {
		border-bottom: none;
		margin-bottom: 0;
	}

.btnFollowing,
.btnFollowingList,
.btnNoFollowNotFollowing,
.btnNotFollowing,
.btnNoUnfollowFollowing {
	border-radius: 2px;
	display: inline-block;
	line-height: 20px;
	padding: 0 7px 0 30px;
	text-align: center;
	text-decoration: none;
}
	.btnFollowing,
	.btnFollowingList,
	.btnNoUnfollowFollowing {
		background: #8cc850 url(/Content/images/switch-on.gif) no-repeat 5px 0;
	}
	.btnNotFollowing,
	.btnNoFollowNotFollowing {
		background: #d2d2d2 url(/Content/images/switch-off.gif) no-repeat 5px 0;
		color: #6e6e6e;
	}
	.btnFollowing:hover,
	.btnFollowingList:hover,
	.btnNoUnfollowFollowing:hover {
		background: #a5d76e url(/Content/images/switch-on.gif) no-repeat 5px 0;
		cursor: pointer;
	}
	.btnFollowing:active,
	.btnFollowingList:active,
	.btnNoUnfollowFollowing:active {
		background: #dcf0c3 url(/Content/images/switch-on.gif) no-repeat 5px 0;
		outline: none;
	}
	.btnNotFollowing:hover,
	.btnNoFollowNotFollowing:hover {
		background: #e1e1e1 url(/Content/images/switch-off.gif) no-repeat 5px 0;
		cursor: pointer;
	}
	.btnNotFollowing:active,
	.btnNoFollowNotFollowing:active {
		background: #f5f5f5 url(/Content/images/switch-off.gif) no-repeat 5px 0;
		outline: none;
	}

.contPersonTable {
	background: #fff;
	border: 1px solid #b4b4b4;
	box-sizing: border-box;
	height: 200px;
	min-height: 75px;
	padding-bottom: 12px;
	width: 100%;
}
	.contPersonTable .tableOverflow {
		height: 100%;
		overflow: auto;
		position: relative;
	}
	.contPersonTable .ui-resizable-handle {
		z-index: 999;
	}
		.contPersonTable .ui-resizable-handle.ui-resizable-s {
			background: #6e6e6e url(/Content/images/resize-handle-s.gif) no-repeat center;
			border-top: 1px solid #fff;
			bottom: 0;
			height: 11px;
		}

.poiBoxStyle {
	overflow: auto;
	padding: 10px 20px 0 20px;
}
	.poiBoxStyle.green {
		background: #dcf0c3;
		border-bottom: 1px solid #e1e1e1;
		border-left: none;
		border-right: 1px solid #e1e1e1;
		padding-top: 0px;
	}
	.poiBoxStyle ul li span {
		display: inline-flex;
	}

.qq-upload-button.disabled {
	background: #e1e1e1 !important;
	color: #6e6e6e !important;
	cursor: default !important;
}
	.qq-upload-button.disabled:active {
		background: #e1e1e1 !important;
		color: #6e6e6e !important;
	}
	.qq-upload-button.disabled:hover input {
		cursor: default !important;
	}

.transactionOutOfScope {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

#personLeftCol {
	width: 240px;
}

#personRightCol {
	width: 831px;
}

#personHeaderDob:not(:empty),
#personHeaderId:not(:empty),
#personHeaderName:not(:empty),
#personHeaderPhone:not(:empty) {
	margin-right: 10px;
}

#personIdentityVariationsSection {
	background: #dcf0c3;
}
	#personIdentityVariationsSection .dataTables_filter,
	#personPossibleAssociatesSection .dataTables_filter {
		padding-right: 10px;
	}
	#personIdentityVariationsSection .dataTables_length,
	#personPossibleAssociatesSection .dataTables_length {
		padding-left: 10px;
	}

#personNameTitle h2 {
	font-weight: normal;
}

#personPossibleAssociatesSection {
	background: #cde9fa;
}

#poiActivity {
	border-right: 1px solid #e1e1e1;
	padding: 10px 20px;
	position: relative;
}

#poiConfirmedIdentities #confirmedDOBs,
#poiConfirmedIdentities #confirmedIDs,
#poiConfirmedIdentities #confirmedNames {
	float: left;
}
	#poiConfirmedIdentities #confirmedNames {
		width: 259px;
	}
	#poiConfirmedIdentities #confirmedIDs {
		width: 260px;
	}
	#poiConfirmedIdentities #confirmedDOBs {
		width: 220px;
	}

#poiImages {
	border-bottom: 1px solid #e1e1e1;
	border-right: 1px solid #e1e1e1;
	height: auto;
	max-height: 275px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding-bottom: 0;
}
	#poiImages.personPage {
		box-sizing: border-box;
		max-height: 500px;
	}
	#poiImages #ticketReceiptImageDiv .img {
		box-sizing: border-box;
		border: 1px solid #e1e1e1;
		height: auto;
		margin: 0 0 10px 0;
		min-height: unset;
		position: relative;
		width: 180px;
	}
		#poiImages #ticketReceiptImageDiv .img img {
			margin-bottom: 5px;
		}
		#poiImages #ticketReceiptImageDiv .img .iconDelete {
			float: none;
			padding-left: 0;
			position: absolute;
			right: 3px;
			top: 2px;
		}

	#poiImages #ticketReceiptImageDiv .row {
		overflow: auto;
	}

#poiImagesHeader {
	border-right: 1px solid #e1e1e1;
	box-sizing: border-box;
	padding-top: 10px;
	position: relative;
}
	#poiImagesHeader h3.subtitle {
		border-bottom: none;
		border-top: none;
	}
	#poiImagesHeader #uploadPoiImage {
		position: absolute;
		right: 20px;
		top: 10px;
	}


/*------------------------------------------------------------------------------
SEARCH
------------------------------------------------------------------------------*/
span.iconTicketPersonOff.disabled {
	background: #e1e1e1 url(/Content/images/icon_ticket_person-has-activity-off.gif) no-repeat !important;
	line-height: 20px;
	height: 20px;
	padding-left: 20px;
}

td.invisible {
	cursor: default !important;
}
	td.invisible br {
		display: none;
	}
	td.invisible span.customerData {
		cursor: default !important;
		display: none !important;
	}

ul.items li {
	line-height: 20px !important;
	/*list-style-type: square;*/
}
	ul.items li span.label {
		width: auto;
	}

.advancedSearch,
.scrapOnly,
.spacerScrap,
#btnMinimize,
#btnModifySavedSearchDetails,
#divSelectOneMessage,
#listStores,
#myCities,
#myCounties,
#ncicHitsPlaceHolder,
#resultsGroup,
#resultsGroupCL,
#searchActions,
#warnings {
	display: none;
}

.boxStyle.search {
	padding-top: 0;
}

.btnPrecountPOI {
	background: #ffe1e1 url(../images/icon_ticket_poi.gif) no-repeat 7px;
	border: 1px solid #e13c46;
	border-radius: 2px;
	display: inline-block;
	line-height: 30px;
	padding: 0 7px 0 27px;
}
	.btnPrecountPOI:hover {
		cursor: pointer;
	}
	.btnPrecountPOI.disabled {
		background: #ebebe4 url(../images/icon_ticket_poi_disabled.gif) no-repeat 7px;
		border: 1px solid #b4b4b4;
		color: #6e6e6e;
		cursor: default;
	}

.bubble,
.bubbleID {
	background: #23699b;
	border-radius: 2px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	height: 20px;
	line-height: 20px;
	padding: 0 3px;
	text-align: center;
	/*vertical-align: top;*/
	width: auto;
}
	.bubble#serialNumberHitsLink {
		margin-left: 5px;
	}
	.bubble.warning {
		background: #d71e28;
		color: #fff;
		margin-left: 0;
	}
	.bubble.serialKilled {
		background: #F06973;
		color: #000;
        cursor: pointer;
	}
	.bubble.serialKilledZeroResults {
		background: #ffe1e1;
		color: #000;
        margin-left: 5px;
        cursor: pointer;
	}
	.bubble.assoc {
		margin-left: 0;
		margin: 0 0 5px 0;
	}
	.bubble.caseSearch {
		background: #96d2ff;
		color: #000;
		cursor: default;
		position: absolute;
		right: 5px;
		top: 3px;
	}
	.bubbleID {
		background: #96d2ff;
		color: #000;
		cursor: default;
		position: relative;
	}
		.bubble.disabled,
		.bubbleID.disabled {
			background: #e1e1e1 !important;
			color: #6e6e6e !important;
			cursor: default !important;
		}
		.bubbleID:hover {
			background: #23699b;
			color: #fff;
			cursor: default;
		}
		.bubbleID .toolTip {
			background: #c3e6ff;
			border: 1px solid #5fafe1;
			bottom: 20px;
			color: #000;
			display: none;
			padding: 5px 10px;
			position: absolute;
			right: 0;
			text-align: left;
			width: 400px;
		}
			.bubbleID table {
				margin-bottom: 5px;
			}
				.bubbleID table tr {
					background: #fff;
				}
					.bubbleID table tr td {
						border-bottom: 1px solid #b4b4b4;
					}

			.bubbleID .toolTip strong.title {
				display: block;
				margin-bottom: 10px;
				text-align: left;
				width: 100%;
			}

	.bubble.fuzzy {
		background: #ff9614;
		color: #000;
		margin-left: 0;
	}

.bubble:hover {
	background: #96d2ff;
	color: #000;
}
	.bubble.fuzzy:hover {
		background: #ffe1af;
	}

.contPersonIcon,
.contPersonIcon2 {
	border-radius: 2px;
	display: inline-block;
	line-height: 18px;
	padding-left: 3px;
	padding-right: 3px;
	position: relative;
	vertical-align: top;
}
	.contPersonIcon.disabled,
	.contPersonIcon2.disabled {
		background: #e1e1e1;
		border-color: #6e6e6e;
		color: #6e6e6e;
		cursor: default !important;
	}
		.contPersonIcon.disabled span.icon.iconTicketPerson {
			background: url(/Content/images/icon_ticket_person-has-activity-off.gif) no-repeat;
		}
		.contPersonIcon2.disabled span.icon.iconTicketPerson2 {
				background: url(/Content/images/icon_ticket_person2-off.gif) no-repeat;
			}

		.contPersonIcon.disabled span.icon.iconTicketPerson:hover,
		.contPersonIcon2.disabled span.icon.iconTicketPerson2:hover {
			cursor: default !important;
		}

	.contPersonIcon.hasPhotos,
	.contPersonIcon2.hasPhotos {
		margin-right: 10px;
	}
	.contPersonIcon {
		background: #ffe1e1;
		border: 1px solid #e13c46;
	}
	.contPersonIcon2 {
		background: #cde9fa;
		border: 1px solid #5fafe1;
	}
		.contPersonIcon span.hasPhotos,
		.contPersonIcon2 span.hasPhotos {
			background: url(/Content/images/icon_ticket_person-has-customer-image.gif) no-repeat;
			display: inline-block;
			height: 12px;
			position: absolute;
			right: -9px;
			top: -2px;
			width: 10px;
		}
		.contPersonIcon .icon.iconTicketPerson,
		.contPersonIcon2 .icon.iconTicketPerson2 {
			float: left;
			height: 18px;
		}

.customLocations #containerLists {
	background: #fff;
	border: 1px solid #e1e1e1;
	height: auto;
	overflow: auto;
	margin-bottom: 20px;
	padding: 10px 20px;
}
	.customLocations #containerLists p.locations a {
		text-decoration: none;
	}
		.customLocations #containerLists p.locations .state {
			background: #dcf0c3;
			padding: 2px 4px;
		}
		.customLocations #containerLists p.locations .county {
			background: #ffe6b9;
			padding: 2px 4px;
		}
		.customLocations #containerLists #jurisdictions .col {
			float: left;
			position: relative;
			width: 25%;
		}
			.customLocations #containerLists #jurisdictions .col.wide {
				width: 50%;
			}
				.customLocations #containerLists #jurisdictions .col.wide #divSelectOneMessage {
					line-height: 30px;
					margin-top: 60px;
				}
				.customLocations #containerLists #jurisdictions .col.wide #links {
					line-height: 30px;
					margin-top: 45px;
				}
					.customLocations #containerLists #jurisdictions .col.wide #links.noCounties {
						line-height: 30px;
						margin-top: 60px;
					}
				.customLocations #containerLists #listStores select {
					width: 100%;
				}

	.customLocations #containerLists #nypdFilters {
		border-bottom: 1px solid #e1e1e1;
		border-top: 1px solid #e1e1e1;
		margin-bottom: 5px;
		overflow: auto;
		padding: 10px 0;
	}
		.customLocations #containerLists #nypdFilters p {
			clear: none;
			float: left;
			margin-right: 10px;
			width: auto;
		}
			.customLocations #containerLists #nypdFilters p label {
				float: none;
				width: auto;
			}

		.customLocations #containerLists #nypdFilters select {
			height: auto;
		}

.ebayText {
	font-style: normal;
}
	.ebayText span:nth-of-type(1) {
		color: #e53238;
	}
	.ebayText span:nth-of-type(2) {
		color: #0064d3;
	}
	.ebayText span:nth-of-type(3) {
		color: #db9e02;
	}
	.ebayText span:nth-of-type(4) {
		color: #88b719;
	}

.hintSavedSearch {
	background: #ffe1af;
	border: 1px solid #ff9614;
	border-radius: 2px;
	margin-bottom: 10px;
	padding: 10px;
}

.iconGenericAlert .toolTip {
	bottom: auto;
	left: 20px;
	right: auto;
	top: 20px;
}

.iconPublicRecordImages .toolTip {
	width: 550px;
}

.iconToolTip {
	cursor: default;
	position: relative;
}
	.iconToolTip p {
		font-size: 100% !important;
		line-height: 20px !important;
		margin: 0 !important;
	}
	/* For Ticket Detail */
	.iconToolTip ul {
		list-style-type: square !important;
		font-size: 100% !important;
		margin: 0 0 10px 0;
		padding: 0 !important;
	}
		.iconToolTip ul li {
			font-size: 100% !important;
			list-style-type: square;
		}

	.iconToolTip .toolTip {
		background: #c3e6ff;
		border: 1px solid #5fafe1;
		bottom: 20px;
		color: #000;
		display: none;
		padding: 5px 10px;
		position: absolute;
		right: 20px;
		width: 400px;
		word-break: normal;
	}
		.iconToolTip .toolTip table tr {
			background: #fff;
		}
			.iconToolTip .toolTip table tr td {
				border-bottom: 1px solid #b4b4b4;
			}

		.iconToolTip .toolTip strong.title,
		.qtip-default strong.title {
			display: block;
			text-align: left;
			width: 100%;
		}

.iconTicketImages .toolTip {
	width: 550px;
}

.iconTicketNCIC .toolTip {
	bottom: 15px;
	left: 25px;
	right: auto;
	width: 250px;
	z-index: 999;
}

.iconTicketCPIC .toolTip {
	bottom: 15px;
	left: 25px;
	right: auto;
	width: 250px;
	z-index: 999;
}

.iconPurgeWarning .toolTip {
    bottom: 15px;
    left: 25px;
    right: auto;
    width: 250px;
    z-index: 999;
}

.iconTicketPOI.style2 .toolTip {
	bottom: auto;
	left: 25px;
	top: -25px;
}
	.iconTicketPOI.style2 .toolTip span {
		display: block;
	}
	.iconTicketPOI .toolTip {
		width: 350px;
	}

.iconUserUploadedImages .toolTip {
	width: 130px;
}

.gsc-control-cse .gs-spelling,
.gsc-control-cse .gs-result .gs-title,
.gsc-control-cse .gs-result .gs-title * {
	font-size: 100% !important;
}

.gsc-cursor-current-page {
	color: #000 !important;
	font-weight: normal !important;
}

.gsc-input {
	background: none !important;
	width: 99% !important;
}

.gsc-orderby-label {
	font-size: 100% !important;
}

.gsc-result-info {
	padding: 0 !important;
}

.gsc-result .gs-title {
	height: auto !important;
}

.gsc-results .gsc-cursor-box {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.gsc-search-box {
	display: none;
}

.gsc-table-result,
.gsc-thumbnail-inside,
.gsc-url-top {
	padding: 0 !important;
}

.gcsc-branding {
	display: none;
}

.gs-title {
	font-size: 100% !important;
	margin-bottom: 10px;
	text-decoration: underline !important;
}

.meter.level1 span:nth-of-type(1) {
	background: #d71e28;
}

.meter.level2 span:nth-of-type(1),
.meter.level2 span:nth-of-type(2) {
	background: #ff9614;
}

.meter.level3 span:nth-of-type(1),
.meter.level3 span:nth-of-type(2),
.meter.level3 span:nth-of-type(3) {
	background: #e1c819;
}

.meter.level4 span {
	background: #8cc850;
}
	.meter.level4 span:last-child {
		background: #b4b4b4;
	}

.meter.level5 span {
	background: #6eb446;
}

.meter span {
	background: #b4b4b4;
	border-radius: 5px;
	display: inline-block;
	height: 10px;
	margin-right: 3px;
	width: 10px;
}

.meterText {
	display: none;
}

.savedSearchDetailsOverview {
	background: #e1f5ff;
	border: 1px solid #5fafe1;
	color: #000;
	cursor: default;
	display: none;
	height: 219px;
	left: 200px;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 550px;
	z-index: 99;
}
	.savedSearchDetailsOverview .containerGeneral {
		background: #e1f5ff;
		border-bottom: 1px solid #5fafe1;
		height: 40px;
		margin: 0 auto;
		padding: 0 20px 10px 20px;
		width: 510px !important;
	}
		.savedSearchDetailsOverview .containerGeneral p {
			line-height: 30px !important;
			margin-bottom: 0;
			padding: 10px 0 0 0 !important;
		}

	.savedSearchDetailsOverview .details {
		height: 180px;
		overflow: auto;
		padding: 10px 20px;
	}

.toolTip table {
	margin-bottom: 5px;
}

#btnMinimize span {
	color: #23699b;
	cursor: pointer;
	text-decoration: underline;
}
	#btnMinimize span:hover {
		color: #000;
		text-decoration: none;
	}

#btnSaveAndRun.submit {
	background: #ff9614;
}

#btnSaveAndRun.submit[disabled] {
	background: #e1e1e1 !important;
	cursor: default !important;
}

#btnSaveAndRun.submit:hover {
	background: #ffbe6e;
}

#btnSaveAndRun.submit:active {
	background: #ffe1af !important;
}

#btnSaveAndRunBasedOnPrecount.submit {
	background: #ff9614;
}
	#MakePoiFromSearchFields.submit {
		background: #ff9614 url('../images/icon_ticket_person2.gif') 5px center no-repeat;
		padding-left: 25px;
	}

#btnSaveAndRunBasedOnPrecount.submit[disabled] {
	background: #e1e1e1 !important;
	cursor: default !important;
}

#btnSaveAndRunBasedOnPrecount.submit:hover {
	background: #ffbe6e;
}
	#MakePoiFromSearchFields.submit:hover {
		background: #ffbe6e url('../images/icon_ticket_person2.gif') 5px center no-repeat;
		padding-left: 25px;
	}

#btnSaveAndRunBasedOnPrecount.submit:active {
	background: #ffe1af !important;
}
	#MakePoiFromSearchFields.submit:active {
		background: #ffe1af url('../images/icon_ticket_person2.gif') 5px center no-repeat;
	}

#containerMain p.disclosureText {
	color: #6e6e6e;
	font-size: 1.1em;
}

#counterResults {
	border-bottom: 1px solid #e1e1e1;
	border-top: 1px solid #e1e1e1;
	margin: 0 auto;
	padding: 5px 0;
	width: 50%;
}
	#counterResults p {
		height: auto;
		text-align: center;
	}
		#counterResults p#pRefineSearch {
			height: 30px;
			line-height: 30px;
		}
		#counterResults p#resultsCount {
			font-size: 2.2em;
			height: 30px;
			line-height: 30px;
			margin-bottom: 0;
		}

#containerSavedSearchesTable {
	border: 1px solid #e1e1e1;
	min-height: 219px; /* This is required */
	max-height: 388px;
	overflow-y: scroll;
}
	#containerSavedSearchesTable table td span.expDate {
		font-size: 90% !important;
	}
	#containerSavedSearchesTable .caseNumber {
		color: #23699b;
		cursor: pointer;
		text-decoration: underline;
	}
		#containerSavedSearchesTable .caseNumber:hover {
			text-decoration: none;
		}

#customLocations #myAddedLocations p {
	line-height: 20px;
}

#helpText p {
	/*border: 1px solid #5fafe1;
	border-radius: 2px;*/
	font-size: 1.4em;
    /*line-height: 40px;*/
}

#imageGrid .contImg {
	background: #f5f5f5;
	border-bottom: 1px solid #e1e1e1;
	border-right: 1px solid #e1e1e1;
	box-sizing: border-box;
	float: left;
	height: 220px;
	height: 305px;
	width: 25%;
}
	#imageGrid .contImg:focus,
	#imageGrid .contImg:hover {
		background: #23699b;
		cursor: pointer;
	}
	    #imageGrid .contImg:focus {
	    	outline: none;
	    }
	    #imageGrid .contImg:focus p,
        #imageGrid .contImg:hover p {
            color: #fff;
        }

	#imageGrid .contImg:last-child,
	#imageGrid .contImg:nth-child(4n) {
		border-right: none;
	}
	#imageGrid .contImg .img {
		height: 130px;
		padding: 10px;
		text-align: center;
	}
		#imageGrid .contImg .img img {
			max-height: 130px;
			max-width: 100%;
		}
		#imageGrid .contImg .linkTicket {
			word-break: break-all;
		}

#itemSearchTermDiv label {
	position: relative
}

#ncicHitsPlaceHolder,
#poiResultsGroup,
#repeatedTransactionResultsGroup,
#repeatedTransactionResultsGroupedByBusinessGroup,
#resultsGroup,
#resultsGroupCL,
.genericResultsContainer {
	border: 1px solid #e1e1e1;
	padding: 10px;
}
	.ui-dialog #resultsGroup {
		border: none;
		padding: 25px;
	}

/* Remove the top border of the first tr's children */
#ncicResults tbody tr:first-child td,
#results tbody tr:first-child td {
	border-top: none !important;
}

#ncicResults .ticketInfo td {
	border-top: 1px solid #b4b4b4;
}
	#ncicResults td.details {
		background: #e6fad2;
		padding-left: 20px;
		padding-right: 20px;
	}
	#ncicResults td .matchColor {
		margin-left: 2px;
		margin-right: 2px;
	}
	#ncicResults td .ncicData {
		margin-left: 2px;
	}
	#ncicResults td .ncicData.hitSer {
		margin-left: 0;
	}

#savedSearchTable td.details {
	padding: 5px;
}

#savedSearchTable tr.even,
#savedSearchTable tr.odd {
	background: #fff;
}
	table#savedSearchTable tr.even + tr.details > td,
	table#savedSearchTable tr.odd + tr.details > td {
		background: #fff;
	}

#savedSearchTable_wrapper .dataTables_filter {
	float: none !important;
	height: 25px;
	margin-left: 10px;
	text-align: left !important;
	width: auto;
}
	#savedSearchTable_wrapper .dataTables_filter input {
		width: 100px !important;
	}
	#savedSearchTable_wrapper .dataTables_filter label {
		display: block;
		float: none !important;
		height: 20px !important;
		line-height: 20px !important;
	}

#searchParams label,
#searchParams p.label,
#searchParams span.label {
	width: 175px;
}

#standardSearchInputs .bubblesSearch {
	position: absolute;
	right: 246px;
	top: 1px;
}


/*------------------------------------------------------------------------------
STATEMENT ANALYZER
------------------------------------------------------------------------------*/
#containerStatementAnalyzer .colInfo .boxStyle,
#containerStatementAnalyzer .colInput textarea,
#containerStatementAnalyzer .colInput .results {
	height: 250px;
}
	#containerStatementAnalyzer .colInput textarea,
	#containerStatementAnalyzer .colInput .results {
		overflow: scroll;
		padding: 10px;
	}

#containerStatementAnalyzer .colInput .results {
	border: 1px solid #b4b4b4;
}
	#containerStatementAnalyzer .colInput .results .textMatch {
		border: 1px solid #d71e28;
		color: #d71e28;
		padding: 1px 5px;
	}


/*------------------------------------------------------------------------------
TICKET ASSISTANT / TICKET DETAIL
------------------------------------------------------------------------------*/
.imageCollection {
	display: flex;
	flex-wrap: wrap;
}
	.imageCollection .img {
		background: linear-gradient(to bottom right, #f5f5f5, #fff);
		border-top: 1px solid #e1e1e1;
		box-sizing: border-box;
		display: flex;
		padding-bottom: 10px;
		padding-top: 10px;
		position: relative;
		width: 25%;
	}

		.imageCollection .delete-icon {
			cursor: pointer;
			position: absolute;
			right: 5px;
			top: 5px;
		}

		.imageCollection .image-interact-hover img {
			cursor: pointer;
		}

		.imageCollection .img img {
			display: block;
			height: auto;
			margin: 0 auto;
			max-height: 140px !important;
			max-width: 140px !important;
			width: auto;
		}
			.imageCollection .img img.item {
				align-self: center;
			}

.itemDesc {
	display: inline-block;
	float: left;
	max-width: 115px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.itemFields {
	padding-top: 10px;
}

.textVoid {
	border: 1px solid #d71e28;
	padding: 1px 5px;
}

.ticketAssistant label {
	text-align: right;
}

.ticketAssistantBtns {
	padding-left: 130px !important;
}

#companyLogo {
	position: relative;
}
	#companyLogo img {
		border: 1px solid #b4b4b4;
	}

#imageCapture {
	margin: 0 auto;
	width: 790px;
}
	#imageCapture #holder {
		overflow: auto;
	}
		#imageCapture #holder #detailsArea,
		#imageCapture #holder #detailsAreaDefault {
			float: right;
			width: 440px;
		}
		#imageCapture #holder #webcamView {
			float: left;
			padding: 0 15px;
			width: 320px;
		}

#msgNoWebCam {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
	#msgNoWebCam .holder {
		background: #e1e1e1;
		border: 1px solid #b4b4b4;
		left: 155px;
		margin: 0 auto;
		padding: 20px;
		position: absolute;
		text-align: center;
		top: 150px;
		width: 350px;
		z-index: 99;
	}
		#msgNoWebCam .holder.standalone {
			left: auto;
			right: 200px;
			top: 220px;
		}
		#msgNoWebCam .holder p {
			height: auto !important;
			line-height: 25px !important;
		}

#ticketDetailContainer #containerMain .stage {
	padding-top: 0;
}

#ticketReceiptImageDiv {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
}
	#ticketReceiptImageDiv .img {
		background: linear-gradient(to bottom right, #f5f5f5, #fff);
		border-top: 1px solid #e1e1e1;
		box-sizing: border-box;
		float: left;
		min-height: 205px;
		position: relative;
		width: 25%;
	}
		#ticketReceiptImageDiv .img img {
			display: block;
			height: auto;
			margin: 0 auto;
			max-height: 140px !important;
			max-width: 140px !important;
			width: auto;
		}
		#ticketReceiptImageDiv .img span.checkbox {
			display: block;
			float: left;
			height: 20px;
			width: 100%;
		}
			#ticketReceiptImageDiv .img span.checkbox input[type='checkbox'] {
				left: 5px;
				top: 3px;
			}

		#ticketReceiptImageDiv .img .captions {
			bottom: 0;
			position: absolute;
		}


/*------------------------------------------------------------------------------
UI DATE PICKER
------------------------------------------------------------------------------*/
.ui-datepicker {
	background: #fff;
	display: none;
	padding: 5px;
}
	.ui-datepicker table {
		border-spacing: 0;
	}
	.ui-datepicker tbody tr:last-child td {
		border-bottom: none;
	}
	.ui-datepicker tbody tr td:first-child {
		border-left: none;
	}
	.ui-datepicker td,
	.ui-datepicker th {
		border-collapse: collapse;
		height: 25px;
		line-height: 25px;
		margin: 0;
		padding: 0;
		text-align: center;
	}
		.ui-datepicker td.ui-state-disabled {
			color: #d2d2d2;
			cursor: default;
		}
		.ui-datepicker td a {
			display: block;
			text-decoration: none;
		}
			.ui-datepicker td.ui-datepicker-current-day {
				background-color: #23699b;
				border: none;
				color: #fff;
			}
				.ui-datepicker td.ui-datepicker-current-day a {
					color: #fff;
				}

			.ui-datepicker td a:hover {
				background: #cde9fa;
				border: none;
				color: #23699b;
			}

		.ui-datepicker th {
			width: 30px;
		}

	.ui-datepicker .ui-datepicker-header {
		font: 1.2em/20px Arial, Helvetica, sans-serif;
		height: 20px;
		padding-bottom: 5px;
	}
		.ui-datepicker .ui-datepicker-header .ui-datepicker-next,
		.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
			position: absolute;
		}
			.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover,
			.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover {
				cursor: pointer;
			}
			.ui-datepicker .ui-datepicker-header .ui-datepicker-next span,
			.ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
				display: none;
			}

		.ui-datepicker .ui-datepicker-header .ui-datepicker-next-hover,
		.ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover {
			border: 0;
		}
		.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
			background: url(../images/calendar-arrow_right.gif) no-repeat;
			height: 20px;
			right: 10px;
			width: 20px;
		}
			.ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-state-disabled {
				background: url(../images/calendar-arrow_right-disabled.gif) no-repeat;
			}

		.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
			background: url(../images/calendar-arrow_left.gif) no-repeat;
			height: 20px;
			left: 10px;
			width: 20px;
		}
			.ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-state-disabled {
				background: url(../images/calendar-arrow_left-disabled.gif) no-repeat;
			}
			.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
				text-align: center;
			}

	.ui-datepicker .ui-datepicker-today /*.ui-state-highlight*/ {
		background-color: #ffe1af;
		border: none;
		color: #000;
	}

	.ui-datepicker .ui-state-disabled {
		background: #fff;
	}

#ui-datepicker-div.calImport table td a,
#ui-datepicker-div.calImport table td span {
	padding-top: 20px;
}

#ui-datepicker-div.calImport table td span,
#ui-datepicker-div.calMissingDays table td span {
	display: block;
}

#ui-datepicker-div.calImport td.ui-datepicker-current-day {
	background-color: inherit;
}
	#ui-datepicker-div.calImport td.ui-datepicker-current-day a {
		color: #23699b;
	}

#ui-datepicker-div.calImport .statusError2,
#ui-datepicker-div.calImport .statusError2 a:hover,
#ui-datepicker-div.calImport .statusError,
#ui-datepicker-div.calImport .statusError a:hover,
#ui-datepicker-div.calImport .statusInProcess,
#ui-datepicker-div.calImport .statusInProcess a:hover,
#ui-datepicker-div.calImport .statusLate,
#ui-datepicker-div.calImport .statusLate a:hover,
#ui-datepicker-div.calImport .statusOnTime,
#ui-datepicker-div.calImport .statusOnTime a:hover,
#ui-datepicker-div.calImport .statusNeedsMapping,
#ui-datepicker-div.calImport .statusNeedsMapping a:hover,
#ui-datepicker-div.calImport .statusPartial,
#ui-datepicker-div.calImport .statusPartial a:hover,
#ui-datepicker-div.calImport .statusUploadingDaily,
#ui-datepicker-div.calImport .statusUploadingDaily a:hover {
	background-repeat: no-repeat;
	background-position: center 2px;
}
	#ui-datepicker-div.calImport .statusError2 a:hover,
	#ui-datepicker-div.calImport .statusError a:hover,
	#ui-datepicker-div.calImport .statusInProcess a:hover,
	#ui-datepicker-div.calImport .statusLate a:hover,
	#ui-datepicker-div.calImport .statusOnTime a:hover,
	#ui-datepicker-div.calImport .statusNeedsMapping a:hover,
	#ui-datepicker-div.calImport .statusPartial a:hover,
	#ui-datepicker-div.calImport .statusUploadingDaily a:hover {
		background-image: inherit;
	}

#ui-datepicker-div.calImport .statusError2 {
	background-image: url(/Content/images/icon_errored-2.gif);
}

	#ui-datepicker-div.calImport .statusError2 a:hover {
		background-color: #cde9fa;
	}

#ui-datepicker-div.calImport .statusError {
	background-image: url(/Content/images/icon_errored.gif);
}
	#ui-datepicker-div.calImport .statusError a:hover {
		background-color: #cde9fa;
	}

#ui-datepicker-div.calImport .statusInProcess {
	background-image: url(/Content/images/icon_in-process.gif);
}
	#ui-datepicker-div.calImport .statusInProcess a:hover {
		background-color: #cde9fa;
	}

#ui-datepicker-div.calImport .statusLate {
	background-image: url(/Content/images/icon_late.gif);
}
	#ui-datepicker-div.calImport .statusLate a:hover {
		background-color: #cde9fa;
	}

#ui-datepicker-div.calImport .statusOnTime {
	background-image: url(/Content/images/icon_on-time.gif);
}
	#ui-datepicker-div.calImport .statusOnTime a:hover {
		background-color: #cde9fa;
	}

#ui-datepicker-div.calImport .statusNeedsMapping {
	background-image: url(/Content/images/icon_needs-mapping.gif);
}
	#ui-datepicker-div.calImport .statusNeedsMapping a:hover {
		background-color: #cde9fa;
	}

#ui-datepicker-div.calImport .statusPartial {
	background-image: url(/Content/images/icon_partial.gif);
}
	#ui-datepicker-div.calImport .statusPartial a:hover {
		background-color: #cde9fa;
	}

#ui-datepicker-div.calImport .statusUploadingDaily {
	background-image: url(/Content/images/icon_uploading-daily.gif);
}
	#ui-datepicker-div.calImport .statusUploadingDaily a:hover {
		background-color: #cde9fa;
	}

#ui-datepicker-div.calMissingDays table td a,
#ui-datepicker-div.calMissingDays table td span {
	padding-top: 15px;
}

#ui-datepicker-div.calMissingDays .businessClosed,
#ui-datepicker-div.calMissingDays .businessClosed a,
#ui-datepicker-div.calMissingDays .noTransactionDayDate,
#ui-datepicker-div.calMissingDays .noTransactionDayDate a {
    background: #5fafe1 url(/Content/images/calendar-business-closed.gif) no-repeat center 2px;
    color: #fff;
}

#ui-datepicker-div.calMissingDays .missingDayDate,
#ui-datepicker-div.calMissingDays .missingDayDate a  {
   	background: #d71e28 url(/Content/images/calendar-missing-day.gif) no-repeat center 2px;
    color: #fff;
}

#ui-datepicker-div.calMissingDays .transactionsSent,
#ui-datepicker-div.calMissingDays .transactionsSent a {
    background: #8cc850 url(/Content/images/calendar-transactions-sent.gif) no-repeat center 2px;
    color: #fff;
}
	#ui-datepicker-div.calMissingDays .transactionsSent:hover,
	#ui-datepicker-div.calMissingDays .transactionsSent a:hover {
		background: #a5d76e url(/Content/images/calendar-transactions-sent.gif) no-repeat center 2px;
		color: #fff;
	}


/*------------------------------------------------------------------------------
DIALOG
------------------------------------------------------------------------------*/
.dialogProcessing {
	background: none !important;
	width: 200px !important;
}
	.dialogProcessing.ui-dialog {
		border: none;
		position: absolute;
	}
		.dialogProcessing.ui-dialog .ui-dialog-content {
			min-height: 0 !important;
			padding: 0;
		}

	.dialogProcessing p {
		background: #5fafe1;
		border-radius: 2px;
		color: #fff;
		margin-bottom: 0;
		padding-bottom: 10px !important;
		padding-top: 10px !important;
	}
	.dialogProcessing .ui-dialog-titlebar {
		display: none;
	}

.ui-button-icon-only .ui-icon {
	display: none;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
	border-bottom-right-radius: 0;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
	border-bottom-left-radius: 0;
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
	border-top-right-radius: 0;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
	border-top-left-radius: 0;
}

.ui-dialog {
	background: #fff;
	padding: 0;
}
	.ui-dialog.dialog-no-close .ui-button.ui-dialog-titlebar-close,
	.ui-dialog.dialog-no-title .ui-dialog-titlebar {
		display: none;
	}
	.ui-dialog.positionTop {
		position: absolute;
		top: 50px !important;
	}
	.ui-dialog p.supportMsg {
		font-size: 1.1em;
	}
	.ui-dialog .closeLink {
		margin-bottom: 0;
		padding-top: 20px;
	}
	.ui-dialog .stage {
		min-height: 350px !important;
	}
	.ui-dialog .ui-dialog-content {
		overflow: auto;
		padding: 20px;
		width: auto !important;
	}

.ui-dialog .ui-dialog-titlebar {
	background: #fff;
	border-bottom: 1px solid #d2d2d2;
	box-sizing: border-box;
	cursor: move;
	height: 30px;
	padding: 0 !important;
}
	.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
		display: none;
	}

.ui-dialog .ui-dialog-titlebar-close {
	background: url(../images/icon_ui-dialog-close.gif) no-repeat center center;
	border: none;
	color: transparent;
	overflow: hidden;
	position: absolute;
	height: 20px;
	margin: 0;
	padding: 0;
	right: 5px;
	text-indent: 0;
	top: 5px;
	width: 20px;
}

.ui-dialog .ui-dialog-titlebar-close:hover {
	background: url(../images/icon_ui-dialog-close_hover.gif) no-repeat center center;
	cursor: pointer;
}

.ui-front {
	z-index: 99999;
}

.ui-resizable {
	position: relative;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}

.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}

.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}

.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}

.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}

.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}

.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}

.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}

.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}

.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}

.ui-widget.ui-widget-content {
	border: 1px solid #969696;
}

.ui-widget.ui-widget-content.dialogProcessing {
	border: none;
}

.ui-widget-header {
	border: none;
}

.ui-widget-overlay {
	background: #6e6e6e;
	height: 100%;
	left: 0;
	opacity: 0.4;
	position: fixed;
	top: 0;
	width: 100%;
}

.ui-widget-overlay.log-back-on-overlay {
	opacity: 1.0 !important;
}


/*------------------------------------------------------------------------------
VIRTUAL CHECKBOXES
------------------------------------------------------------------------------*/
.state-accessAllow,
.state-accessAllow-grey,
.state-accessDeny,
.state-accessDeny-grey,
.state-dontCare,
.state-dontCare-grey {
	display: block;
	height: 15px;
	width: 15px;
}
	.state-accessAllow,
	.state-accessDeny,
	.state-dontCare {
		cursor: pointer;
	}
		.state-accessAllow {
			background: url(../images/pallow.gif) no-repeat scroll 0 0 transparent;
		}
		.state-accessDeny {
			background: url(../images/pdeny.gif) no-repeat scroll 0 0 transparent;
		}
		.state-dontCare {
			background: url(../images/pnone.gif) no-repeat scroll 0 0 transparent;
		}

	.state-accessAllow-grey,
	.state-accessDeny-grey,
	.state-dontCare-grey {
		cursor: default;
		filter: alpha(opacity=50);
		opacity: 0.5;
	}
		.state-accessAllow-grey {
			background: url(../images/pallow.gif) no-repeat scroll 0 0 transparent;
		}
		.state-accessDeny-grey {
			background: url(../images/pdeny.gif) no-repeat scroll 0 0 transparent;
		}
		.state-dontCare-grey {
			background: url(../images/pnone.gif) no-repeat scroll 0 0 transparent;
		}


/*------------------------------------------------------------------------------
MCSO / MESA
------------------------------------------------------------------------------*/
.mcsoDialog {
	background: #fff;
	box-sizing: border-box;
	border: 5px solid #b4b4b4;
	padding: 25px;
	position: absolute;
	top: 20px !important;
}
	.mcsoDialog.ui-dialog .ui-dialog-titlebar {
		display: none;
	}

.mcsoDialog-content {
	padding: 0 !important;
}
	.mcsoDialog-content p {
		font: 1.2em Arial, Helvetica, sans-serif;
		height: 30px;
		line-height: 25px;
		margin: 0 !important;
		padding: 0;
		width: 100%;
	}

.mcsoGridLayout div.grid {
	box-sizing: border-box;
	float: left;
	padding-right: 10px;
}
	.mcsoGridLayout div.grid p {
		height: auto !important;
		margin-bottom: 0 !important;
	}
		.mcsoGridLayout div.grid p label {
			height: auto;
		}

.mcsoGridLayout label {
	display: inline-block;
	float: none;
	padding-right: 0 !important;
	width: 100% !important;
}

.mcsoGridLayout select {
	position: relative;
}

.mcsoPagination table,
.mcsoPagination td {
	border-collapse: collapse;
	margin: 0;
	padding: 0;
}

.mcsoPagination table {
	margin-top: 10px;
	width: auto !important;
}
	.mcsoPagination table td {
		background: #fff;
	}
		.mcsoPagination table td a,
		.mcsoPagination table td span {
			display: inline-block;
			height: 30px;
			line-height: 30px;
			padding: 0 10px;
		}
			.mcsoPagination table td a {
				text-decoration: none;
			}
				.mcsoPagination table td a:hover,
				.mcsoPagination table td span {
					background: #23699b;
					color: #fff;
				}

.modernTable.noAlternatingRows tr.ticketsQueued {
	background: #ffe1e1 !important;
}

.modernTable.paging tbody tr:last-child:not(.header) td {
	background: #fff !important;
	line-height: 30px;
	padding: 10px 0 0 0;
	text-align: center;
}
	.modernTable.paging tbody tr:last-child:last-child:not(.header) td a,
	.modernTable.paging tbody tr:last-child:last-child:not(.header) td span {
		display: inline-block;
		height: 30px;
		margin-left: -2px;
		margin-right: -2px;
		padding: 0 10px;
	}
		.modernTable.paging tbody tr:last-child:last-child:not(.header) td a {
			text-decoration: none;
		}
		.modernTable.paging tbody tr:last-child:last-child:not(.header) td a:hover,
		.modernTable.paging tbody tr:last-child:last-child:not(.header) td span {
			background: #23699b;
			border-radius: 2px;
			color: #fff;
		}
		.modernTable.paging tbody tr:last-child:last-child:not(.header) td span {
			cursor: default;
		}

.modernTable img {
	float: left;
}

.modernTable td.header td a {
	display: block;
}

.modernTable th {
	font-weight: normal;
}

.modernTable tr:nth-child(odd) {
	background: #f5f5f5;
}

.modernTable tr.header {
	background: #e1e1e1;
}
	.modernTable tr.header a,
	.modernTable tr.header span {
		display: block;
		padding: 4px 2px 4px 3px;
	}
	.modernTable tr.header td {
		padding: 0;
		vertical-align: inherit;
	}
	.modernTable.type2 tr.header a,
	.modernTable.type2 tr.header span {
		display: block;
		padding: 0;
	}
	.modernTable.type2 tr.header td {
		padding: 4px 2px 4px 3px;
	}
	.modernTable.type2 tr.header td.sorting_asc {
		background: #d2d2d2 url(/Content/images/sort_asc.gif) repeat-x center top;
	}
		.modernTable.type2 tr.header td.sorting_asc a {
			background: none;
		}

	.modernTable.type2 tr.header td.sorting_desc {
		background: #d2d2d2 url(/Content/images/sort_desc.gif) repeat-x center bottom;
	}
		.modernTable.type2 tr.header td.sorting_desc a {
			background: none;
		}

.modernTable tr.header td.sorting_asc a {
	background: #d2d2d2 url(/Content/images/sort_asc.gif) repeat-x center top;
}

.modernTable tr.header td.sorting_desc a {
	background: #d2d2d2 url(/Content/images/sort_desc.gif) repeat-x center bottom;
}

#mcsoReference .ui-widget-overlay {
	display: none;
}

#mcsoItemTable {
	border: 1px solid #e1e1e1;
	box-sizing: border-box;
	height: 150px;
	overflow: auto;
	width: 100%;
}
	#mcsoItemTable table {
		table-layout: fixed;
	}
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(1) { width: 25px; }
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(2) { width: 50px; }
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(3),
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(4),
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(5),
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(6),
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(7),
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(8) { width: 75px; }
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(9) { width: 50px; }
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(10) { width: 200px; }
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(11) { width: 75px; }
		#mcsoItemTable table.modernTable tr.header td:nth-of-type(12) { width: 100px; }
		#mcsoItemTable table input[type='text'] {
			box-sizing: border-box;
		}

#mcsoTableMaintenanceOwners table.modernTable tr.header td:nth-of-type(1),
#mcsoTableMaintenanceOwners table.modernTable tr.header td:nth-of-type(2) { width: 200px; }
#mcsoTableMaintenanceOwners table.modernTable tr.header td:nth-of-type(4) { width: 100px; }
#mcsoTableMaintenanceOwners table.modernTable tr.header td:nth-of-type(5) { width: 25px; }
#mcsoTableMaintenanceOwners table.modernTable tr.header td:nth-of-type(6) { width: 50px; }
#mcsoTableMaintenanceStores table.modernTable tr.header td:nth-of-type(1) { width: 75px; }
#mcsoTableMaintenanceStores table.modernTable tr.header td:nth-of-type(2) { width: 150px; }
#mcsoTableMaintenanceStores table.modernTable tr.header td:nth-of-type(4) { width: 75px; }
#mcsoTableMaintenanceStores table.modernTable tr.header td:nth-of-type(5) { width: 25px; }
#mcsoTableMaintenanceStores table.modernTable tr.header td:nth-of-type(6) { width: 50px; }
#mcsoTableMaintenanceStores table.modernTable tr.header td:nth-of-type(7) { width: 75px; }
#mcsoTableMaintenanceStores table.modernTable tr.header td:nth-of-type(8) { width: 25px; }
#mcsoTableMaintenanceStores table.modernTable tr.header td:nth-of-type(9) { width: 50px; }
#mcsoTableErrorLog table tr.header td:nth-of-type(1),
#mcsoTableErrorLog table tr.header td:nth-of-type(2) { width: 100px; }
#mcsoTableErrorLog table tr.header td:nth-of-type(3) { width: 125px; }
#mcsoTableErrorLog table tr.header td:nth-of-type(5) { width: 25px; }
#mcsoTableErrorLog table tr.header td:nth-of-type(6),
#mcsoTableErrorLog table tr.header td:nth-of-type(7) { width: 50px; }

#mesaItems {
	border: 1px solid #b4b4b4;
	height: 100px;
	overflow: auto;
	padding: 10px;
}

#mesaStyleEtixDashboard div {
	border: 1px solid #b4b4b4;
	border-radius: 2px;
	margin-bottom: 20px;
	padding: 10px;
}

#mesaStyleEtixDashboard #etixAlert {
	border: 1px dotted #d71e28;
}

#mesaStyleEtixDashboard #etixBalance {
	line-height: 30px;
	margin-bottom: 10px;
}
	#mesaStyleEtixDashboard #etixBalance span {
		border: 1px solid #b4b4b4;
		margin-left: 2px;
		padding: 5px;
	}

#mesaStyleEtixDashboard #etixStoreName span {
	background: #e1e1e1;
	border-left: 1px solid #b4b4b4;
	border-right: 1px solid #b4b4b4;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	border-top: 1px solid #b4b4b4;
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
}

#mesaStyleEtixDashboard #etixWarning {
	border: 1px solid #e1e1e1;
}



/*------------------------------------------------------------------------------
ORG CHART
------------------------------------------------------------------------------*/
.orgChart select:last-child {
	margin-bottom: 0;
}

.orgChart > ul {
	margin-bottom: 20px;
}

.orgChart ul {
	margin: 0;
	padding: 0;
}
	.orgChart ul li {
		background: hsla(209, 50%, 90%, 1);
		border-left: 5px solid hsl(209, 61%, 70%);
		list-style: none;
		margin-bottom: 1px;
		padding: 10px;
		width: 100%;
		box-sizing: border-box;
	}
		.orgChart ul li.collapsed {
			background: hsla(209, 50%, 80%, 1);
			height: 40px;
			overflow: hidden;
		}
			.orgChart ul li.collapsed > .arrow {
				background: url(/Content/images/details_open.png) no-repeat 0 2px;
				display: block;
				float: left;
				height: 20px;
				width: 20px;
			}

		.orgChart ul li .arrow {
			background: url(/Content/images/details_close.png) no-repeat 0 2px;
			display: block;
			float: left;
			height: 20px;
			width: 20px;
		}
			.orgChart ul li .arrow:hover {
				cursor: pointer;
			}

		.orgChart ul li input[type='text'] {
			box-sizing: border-box;
		}
		.orgChart ul li ul li {
			background: hsla(0, 50%, 90%, 1);
			box-shadow: 0 5px 5px 0px hsla(209, 21%, 70%, 1);
			border-left: 5px solid hsl(0, 61%, 70%);
		}
			.orgChart ul li ul li.collapsed {
				background: hsla(0, 50%, 80%, 1);
			}
			.orgChart ul li ul li .actions .icon {
				background-color: hsl(0, 51%, 75%);
			}
			.orgChart ul li ul li ul li {
				background: hsla(50, 50%, 90%, 1);
				box-shadow: 0 5px 5px 0px hsla(6, 21%, 70%, 1);
				border-left: 5px solid hsl(50, 61%, 60%);
			}
				.orgChart ul li ul li ul li.collapsed {
					background: hsla(50, 61%, 80%, 1);
				}
				.orgChart ul li ul li ul li .actions .icon {
					background-color: hsl(50, 51%, 75%);
				}
				.orgChart ul li ul li ul li ul li {
					background: hsla(110, 50%, 90%, 1);
					box-shadow: 0 5px 5px 0px hsla(50, 21%, 70%, 1);
					border-left: 5px solid hsl(110, 61%, 60%);
				}
					.orgChart ul li ul li ul li ul li.collapsed {
						background: hsla(110, 40%, 80%, 1);
					}
					.orgChart ul li ul li ul li ul li .actions .icon {
						background-color: hsl(110, 51%, 75%);
					}
					.orgChart ul li ul li ul li ul li ul li {
						background: hsla(209, 50%, 90%, 1);
						box-shadow: 0 5px 5px 0px hsla(110, 21%, 70%, 1);
						border-left: 5px solid hsl(209, 61%, 60%);
					}
						.orgChart ul li ul li ul li ul li ul li.collapsed {
							background: hsla(209, 50%, 80%, 1);
						}
						.orgChart ul li ul li ul li ul li ul li .actions .icon {
							background-color: hsl(209, 51%, 75%);
						}
						.orgChart ul li ul li ul li ul li ul li ul li {
							background: hsla(0, 50%, 90%, 1);
			                box-shadow: 0 5px 5px 0px hsla(209, 21%, 70%, 1);
			                border-left: 5px solid hsl(0, 61%, 70%);
						}
							.orgChart ul li ul li ul li ul li ul li ul li.collapsed {
								background: hsla(0, 50%, 80%, 1);
							}
							.orgChart ul li ul li ul li ul li ul li ul li .actions .icon {
								background-color: hsl(0, 51%, 75%);
							}
							.orgChart ul li ul li ul li ul li ul li ul li ul li {
								background: hsla(50, 50%, 90%, 1);
				                box-shadow: 0 5px 5px 0px hsla(6, 21%, 70%, 1);
				                border-left: 5px solid hsl(50, 61%, 60%);
							}
								.orgChart ul li ul li ul li ul li ul li ul li ul li.collapsed {
									background: hsla(50, 61%, 80%, 1);
								}
								.orgChart ul li ul li ul li ul li ul li ul li ul li .actions .icon {
									background-color: hsl(50, 51%, 75%);
								}
							    .orgChart ul li ul li ul li ul li ul li ul li ul li ul li {
									background: hsla(110, 50%, 90%, 1);
					                box-shadow: 0 5px 5px 0px hsla(50, 21%, 70%, 1);
					                border-left: 5px solid hsl(110, 61%, 60%);
								}
									.orgChart ul li ul li ul li ul li ul li ul li ul li.collapsed {
										background: hsla(110, 40%, 80%, 1);
									}
									.orgChart ul li ul li ul li ul li ul li ul li ul li ul li .actions .icon {
										background-color: hsla(110, 40%, 80%, 1);
									}

		.orgChart ul li .actions .icon {
			margin-left: 3px;
		    background-color: hsl(209, 51%, 75%);
		}
			.orgChart ul li .actions .icon:hover {
				background-color: #fff;
			}

		.orgChart ul li .icon.iconOrgChartDelete {
			margin-left: 8px;
		}
		.orgChart ul ul {
			margin: 10px 0 10px 10px;
		}
			.orgChart ul ul li {
				font-size: 100%;
			}

.orgChart .actions .icon {
	border-radius: 20px;
	height: 20px;
	width: 20px;
}

.orgChart .group {
	display: block;
	overflow: auto;
	width: calc(100% - 20px);
}
	.orgChart .group select {
		float: left;
	}
	.orgChart .group .actions {
		float: right;
		text-align: right;
	}
	.orgChart .group .subActions select {
		float: none;
	}

.orgChart .link {
	color: #0034FF;
}
	.orgChart .link:hover {
		cursor: pointer;
		text-decoration: underline;
	}

.orgChart .subActions {
	box-sizing: border-box;
	clear: both;
	display: none;
	height: 60px;
	position: relative;
	text-align: right;
}
	.orgChart .subActions .arrowUp {
		border-bottom: 10px solid #b4b4b4;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		display: block;
		float: right;
		margin-right: 28px;
		position: relative;
		width: 0;
		height: 0;
	}
	.orgChart .subActions .content {
		background: #fff;
		border: 1px solid #b4b4b4;
		clear: both;
		display: block;
		height: 40px;
		line-height: 40px;
		padding-left: 20px;
		padding-right: 20px;
	}

.orgChart a:link,
.orgChart a:visited {
	color: #0034FF;
}

.orgChart select {
	width: 200px;
}


/*------------------------------------------------------------------------------
SERVICES TRAY (SEARCH PAGE)
------------------------------------------------------------------------------*/
#servicesTray {
	/*border-bottom: 1px solid #e2e2e2;*/
	height: 140px;
	left: -20px;
	margin-bottom: 20px;
	overflow: hidden;
	padding: 0 20px;
	position: relative;
	top: 0;
	width: 100%;
}
	#servicesTray ul {
		/*padding-left: 24px;
		padding-right: 24px;*/
		position: absolute;
		width: 1600px;
	}
		#servicesTray ul li {
			float: left;
			list-style: none;
			padding-top: 5px;
			text-align: center;
		}
			#servicesTray ul li input[type="button"] {
				background-color: transparent;
				background-position: center 10px;
				background-repeat: no-repeat;
			}
			/* Individual service icons: */
			#servicesTray ul li.AdvancedSearch input[type="button"] {
				background-image: url('../images/service-tray_advanced-search.png');
			}
			#servicesTray ul li.CaseSearch input[type="button"] {
				background-image: url('../images/service-tray_case-search.png');
			}
			#servicesTray ul li.CaseSearch.inactive input[type="button"] {
				background-image: url('../images/service-tray_case-search_inactive.png');
			}
			#servicesTray ul li.EbaySearch input[type="button"] {
				background-image: url('../images/service-tray_ebay-search.png');
			}
			#servicesTray ul li.EbaySearch.inactive input[type="button"] {
				background-image: url('../images/service-tray_ebay-search_inactive.png');
			}
			#servicesTray ul li.ImageSearch input[type="button"] {
				background-image: url('../images/service-tray_image-search.png');
			}
			#servicesTray ul li.ImageSearch.inactive input[type="button"] {
				background-image: url('../images/service-tray_image-search_inactive.png');
			}
			#servicesTray ul li.NCICHits input[type="button"] {
				background-image: url('../images/service-tray_ncic.png');
			}
			#servicesTray ul li.NCICHits.inactive input[type="button"] {
				background-image: url('../images/service-tray_ncic_inactive.png');
			}
			#servicesTray ul li.OfferUpSearch input[type="button"] {
				background-image: url('../images/service-tray_offer-up-search.png');
			}
			#servicesTray ul li.OfferUpSearch.inactive input[type="button"] {
				background-image: url('../images/service-tray_offer-up-search_inactive.png');
			}
			#servicesTray ul li.PhoneForensicsSearch input[type="button"] {
				background-image: url('../images/service-tray_phone-forensics.png');
			}
			#servicesTray ul li.PhoneForensicsSearch.inactive input[type="button"] {
				background-image: url('../images/service-tray_phone-forensics_inactive.png');
			}
			#servicesTray ul li.POIHits input[type="button"] {
				background-image: url('../images/service-tray_persons-of-interest.png');
			}
			#servicesTray ul li.POIHits.inactive input[type="button"] {
				background-image: url('../images/service-tray_persons-of-interest_inactive.png');
			}
			#servicesTray ul li.PublicClassifieds input[type="button"] {
				background-image: url('../images/service-tray_public-classifieds.png');
			}
			#servicesTray ul li.PublicClassifieds.inactive input[type="button"] {
				background-image: url('../images/service-tray_public-classifieds_inactive.png');
			}
			#servicesTray ul li.RepeatedTransactions input[type="button"] {
				background-image: url('../images/service-tray_repeated-transactions.png');
			}
			#servicesTray ul li.RepeatedTransactions.inactive input[type="button"] {
				background-image: url('../images/service-tray_repeated-transactions_inactive.png');
			}
			#servicesTray ul li.OutOfJurisdictionSearch input[type="button"] {
				background-image: url('../images/service-tray_resident-activity-outside-jurisdiction.png');
			}
			#servicesTray ul li.OutOfJurisdictionSearch.inactive input[type="button"] {
				background-image: url('../images/service-tray_resident-activity-outside-jurisdiction_inactive.png');
			}
			#servicesTray ul li.CaseDashboard input[type="button"] {
				background-image: url('../images/service-tray_case-dashboard.png');
			}
			#servicesTray ul li.LeadSuite input[type="button"] {
				background-image: url('../images/service-tray_leadsuite.png');
			}
			#servicesTray ul li.StandardSearch input[type="button"] {
				background-image: url('../images/service-tray_standard-search.png');
			}
			#servicesTray ul li.StandardSearch.inactive input[type="button"] {
				background-image: url('../images/service-tray_standard-search_inactive.png');
			}
			#servicesTray ul li.AdvancedSearch.inactive input[type="button"] {
				background-image: url('../images/service-tray_standard-search_inactive.png');
			}
			#servicesTray ul li.TransactionMonitor input[type="button"] {
				background-image: url('../images/service-tray_transaction-monitor.png');
			}
			#servicesTray ul li input[type="button"] {
				border: 0;
				border-radius: 10px;
				box-sizing: border-box;
				color: #23699b;
				cursor: pointer;
				display: inline-block;
				height: 135px;
				line-height: 17px;
				padding: 60px 0 0 0;
				text-decoration: none;
				white-space: normal;
				width: 77px;
			}
				#servicesTray ul li:first-child input[type="button"] {
					width: 78px;
				}

			/* In order for these styles to work, this block must follow the block above */
			#servicesTray ul li:hover input[type="button"],
			#servicesTray ul li input[type="button"].selected {
				background-color: #0049b3;
				color: #fff;
			}
			#servicesTray ul li:hover.inactive input[type="button"],
			#servicesTray ul li.inactive input[type="button"],
			#servicesTray ul li.inactive input[type="button"].selected {
				background-color: #d2d2d2;
				color: #6e6e6e;
			}
			#servicesTray ul li.inactive input[type="button"].serviceIcon:hover {
				cursor: default;
			}

	#servicesTray .arrowBtn {
		border: 0;
		cursor: pointer;
		display: inline-block;
		height: 140px;
		width: 30px;
		vertical-align: top;
	}
	#servicesTray #btnServiceTrayNext,
	#servicesTray #btnServiceTrayPrev {
		background: #f5f5f5;
		display: none;
		position: absolute;
		z-index: 9;
	}
		#servicesTray #btnServiceTrayNext {
			right: 0;
		}
			#servicesTray #btnServiceTrayNext input {
				background: #23699b  url('../images/services-tray_arrow_right.gif') no-repeat center;
				box-shadow: 0px 0px 25px 0 #4e4e4e;
			}
			#servicesTray #btnServiceTrayNext input:hover {
				background: #5fafe1 url('../images/services-tray_arrow_right-black.gif') no-repeat center;
			}

		#servicesTray #btnServiceTrayPrev {
			left: 0;
		}
			#servicesTray #btnServiceTrayPrev input {
				background: #23699b url('../images/services-tray_arrow_left.gif') no-repeat center;
				box-shadow: 0px 0px 25px 0 #4e4e4e;
			}
			#servicesTray #btnServiceTrayPrev input:hover {
				background: #5fafe1 url('../images/services-tray_arrow_left-black.gif') no-repeat center;
			}


/* ----------------------------------------
MISC
---------------------------------------- */
mark {
	background: #ffe1af;
}

path.surface {
    cursor: default;
}

p#topLink {
	bottom: 0;
	clear: both;
	display: none;
	left: 0;
	margin-bottom: 0;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 2;
}
	p#topLink a {
		background: #5fafe1;
		color: #fff;
		display: block;
		font: 1.2em Arial, Helvetica, sans-serif;
		line-height: 40px;
		height: 40px;
		text-decoration: none;
		width: inherit;
	}
	p#topLink a:hover {
		padding-bottom: 5px;
	}

table#spreadsheet thead tr:nth-child(1) th,
table#spreadsheet thead tr:nth-child(3) th {
	background: #fff;
	line-height: 15px;
	height: 15px;
}

table#spreadsheet thead tr:nth-child(2) th,
table#spreadsheet thead tr:nth-child(4) th {
	background: #fff;
	height: 5px;
}

table.gridLines td {
	border-left: 1px solid #d2d2d2;
}
	table.gridLines td:first-child {
		border-left: none;
	}

table.noAlternatingRows tr.inactiveBusiness,
table.noAlternatingRows tr.even.inactiveBusiness + tr.details > td,
table.noAlternatingRows tr.odd.inactiveBusiness + tr.details > td {
	background: #ffe1e1 !important;
	border-left: 2px solid #d71e28;
	color: #6e6e6e;
}
	table tr.inactiveBusiness td:first-child {
		border-left: 2px solid #d71e28;
	}

table.noAlternatingRows tr.publicNote {
	background: #ffe1af !important;
}

table tr.subscribedToUser td:nth-child(4) {
    background: #ffe1af !important;
}

table tr.subscribedToUser td:nth-child(5) {
    background: #ffe1af !important;
}

th.highlight,
th.selected {
	background: #8cc850;
}

tr.selectedSavedSearch {
	background: #cde9fa !important;
}

tr.stackedHeader th {
	background: #fff;
	cursor: default;
}
	tr.stackedHeader th.headerGroup {
		background: linear-gradient(to bottom, #f5f5f5 0%, #fff 100%);
		border-left: 1px solid #e1e1e1;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
	}
		tr.stackedHeader th.headerGroup.noGradient {
			background: #6e6e6e;
			color: #fff;
		}
		tr.stackedHeader th.headerGroup.noGradient2 {
			background: #cde9fa;
			color: #000;
		}

	tr.stackedHeader th.headerGroup:first-child {
		border-left: none;
	}

tr.sum {
	background: #e1e1e1;
}
	tr.sum td {
		border-bottom: 1px solid #b4b4b4;
	}

.agreements-table-container {
	padding: 5px 10px;
}

.agreements-table-header {
    background-position-x: 5px;
	background-position-y: center;
	background-repeat: no-repeat;
	column-gap: 10px;
	display: flex;
	list-style: none;
	padding: 5px 10px 5px 30px;
}
	.agreements-table-header:hover {
		background-color: #96d2ff;
		cursor: pointer;
		transition: background-color .5s;
	}
	.agreements-table-header li:nth-child(1) {
		width: 180px;
	}
	.agreements-table-header li:nth-child(2) {
		width: 120px;
	}

	.agreements-table-header li:nth-child(3) {
		width: 140px;
	}

.agreements-table-module {
	background-color: #e2f3fd;
	border: 1px solid #5fafe1;
	border-radius: 2px;
	margin-bottom: 5px;
	/*padding: 5px;*/
	transition: background-color .5s;
}
	.agreements-table-module.closed .agreements-table-header {
		background-image: url('/Content/images/details_open.png');
	}
	.agreements-table-module.opened {
		background-color: #fff;
	}
	.agreements-table-module.opened .agreements-table-header {
		background-image: url('/Content/images/details_close.png');
	}

.attachments {
	clear: both;
	padding: 10px 0;
}

.automatedNote td {
	background: #cde9fa;
}

.bgColorAssociates1 {
	background: #cde9fa !important;
}

.bgColorAssociates2 {
	background: #dcf0c3 !important;
}

.breadCrumb {
	margin-bottom: 20px;
}

.browseUploadInfo {
	color: #23699b;
}

.btnRemove {
	background: url(../images/icon_remove.gif) no-repeat;
	display: inline-block;
	height: 15px;
	width: 15px;
	vertical-align: middle;
}
	.btnRemove:hover {
		cursor: pointer;
	}

.leadsonlineSearchPromoDialog,
.leadSuitePromoDialog {
	background: #fff;
}

.caseDashboardPromo.ui-dialog,
.cellhawkPromo.ui-dialog,
.nighthawkPromo.ui-dialog {
	background: #191c26;
}
	.caseDashboardPromo.ui-dialog a.email,
	.caseDashboardPromo.ui-dialog h1,
	.caseDashboardPromo.ui-dialog p strong,
	.cellhawkPromo.ui-dialog a.email,
	.cellhawkPromo.ui-dialog h1,
	.cellhawkPromo.ui-dialog p strong,
	.nighthawkPromo.ui-dialog a.email,
	.nighthawkPromo.ui-dialog h1,
	.nighthawkPromo.ui-dialog p strong {
		color: #fbad18;
	}

	.leadsonlineSearchPromoDialog.ui-dialog a.email,
	.leadsonlineSearchPromoDialog.ui-dialog h1,
	.leadsonlineSearchPromoDialog.ui-dialog p strong {
		color: #e8262c;
	}

    .leadSuitePromoDialog.ui-dialog h1,
    .leadSuitePromoDialog.ui-dialog p strong {
	    color: #0072EB;
    }
    .leadSuitePromoDialog.ui-dialog li {
		font-size: 1.4em;
    }

	.caseDashboardPromo.ui-dialog h2,
	.caseDashboardPromo.ui-dialog p,
	.cellhawkPromo.ui-dialog h2,
	.cellhawkPromo.ui-dialog p,
    .nighthawkPromo.ui-dialog h2,
	.nighthawkPromo.ui-dialog p {
		color: #fff;
	}
    .caseDashboardPromo.ui-dialog .promoText p,
    .cellhawkPromo.ui-dialog .promoText p,
    .nighthawkPromo.ui-dialog .promoText p,
    .leadsonlineSearchPromoDialog .promoText p,
    .leadSuitePromoDialog .promoText p {
	    font-size: 1.4em;
	    margin-bottom: 20px;
    }
    .caseDashboardPromo.ui-dialog .ui-dialog-content,
    .cellhawkPromo.ui-dialog .ui-dialog-content,
    .nighthawkPromo.ui-dialog .ui-dialog-content,
    .leadsonlineSearchPromoDialog.ui-dialog .ui-dialog-content,
    .leadSuitePromoDialog.ui-dialog .ui-dialog-content {
	    padding-left: 50px;
	    padding-right: 50px;
    }
	.caseDashboardPromo.ui-dialog #screen img,
	.cellhawkPromo.ui-dialog #screen img{
		border: 1px solid #fff;
	}

    .nighthawkPromo.ui-dialog #screen img {
	    border: 1px solid #fff;
		background: #fff;
    }

    .leadsonlineSearchPromoDialog.ui-dialog #screen img {
	    border: 1px solid #000;
    }

.caseDashboardPromo.ui-dialog .ui-dialog-titlebar-close,
.cellhawkPromo.ui-dialog .ui-dialog-titlebar-close,
.nighthawkPromo.ui-dialog .ui-dialog-titlebar-close {
	background: url(../images/icon_ui-dialog-close_hover.gif) no-repeat center center;
}

.leadsonlineSearchPromoDialog.ui-dialog .ui-dialog-titlebar-close,
.leadSuitePromoDialog.ui-dialog .ui-dialog-titlebar-close {
	background: url(../images/icon_ui-dialog-close.gif) no-repeat center center;
}

.caseDashboardPromo.ui-dialog .ui-dialog-titlebar-close:hover,
.cellhawkPromo.ui-dialog .ui-dialog-titlebar-close:hover,
.nighthawkPromo.ui-dialog .ui-dialog-titlebar-close:hover,
.leadsonlineSearchPromoDialog.ui-dialog .ui-dialog-titlebar-close:hover,
.leadSuitePromoDialog.ui-dialog .ui-dialog-titlebar-close:hover {
	background: url(../images/icon_ui-dialog-close_hover-2.gif) no-repeat center center;
}

.caseDashboardPromo .ui-dialog-titlebar,
.cellhawkPromo .ui-dialog-titlebar,
.nighthawkPromo .ui-dialog-titlebar {
	background: #191c26;
	border-bottom: 1px solid #414141;
}

.leadsonlineSearchPromoDialog .ui-dialog-titlebar,
.leadSuitePromoDialog .ui-dialog-titlebar {
	background: #fff;
	border-bottom: 1px solid #d2d2d2;
}

.categoryAlert {
	background: #d71e28;
	border-radius: 3px;
	color: #fff;
	padding: 2px 5px;
}

.clickToListenContainer {
	position: relative;
}
	.clickToListenContainer audio {
		border-bottom: 1px solid #646464;
		border-left: 1px solid #b4b4b4;
		border-right: 1px solid #646464;
		border-top: 1px solid #b4b4b4;
		left: 0;
		opacity: 0.9;
		position: absolute;
		bottom: 20px;
	}

/* This is only meant for Projects > Edit Entry dialog */
.contEditEntryMultiline {
	display: inline-block;
	width: 270px;
}

.contNotifications {
	position: absolute;
	right: 3px;
	top: -10px;
}
	.notification {
		background: #d71e28;
		border: 1px solid #d71e28;
		border-radius: 2px;
		box-sizing: border-box;
		color: #fff;
		cursor: default;
		display: inline-block;
		line-height: 17px;
		padding: 0 3px;
		text-align: center;
		width: auto;
	}
		.notification.nonClient {
			background: #cde9fa;
			border: 1px solid #5fafe1;
			color: #000;
		}
		.notification.zero {
			background: #e1e1e1;
			border: 1px solid #e1e1e1;
			color: #000;
		}

.supportBinCount {
	border-radius: 2px;
	box-sizing: border-box;
	color: #fff;
	cursor: default;
	display: inline-block;
	line-height: 17px;
	padding: 0 3px;
	text-align: center;
	width: auto;
}
	.supportBinCount.Leads {
		background: #d71e28;
		border: 1px solid #d71e28;
	}
	.supportBinCount.CellHawk {
		background: #002057;
		border: 1px solid #191c26;
    }
	.supportBinCount.StoreSupport {
		background: #666;
		border: 1px solid #666;
    }
	.supportBinCount.Training {
		background: #fbad18;
        color: #000;
		border: 1px solid #fbad18;
	}
	.supportBinCount.Nighthawk {
		background: #800000;
        border: 1px solid #191c26;
	}

.contToolTip,
.contToolTipData,
.contToolTipFile {
	color: #23699b;
	cursor: default;
	position: relative;
}
	.contToolTip .toolTip,
	.contToolTipData .toolTip,
	.contToolTipFile .toolTip {
		background: #c3e6ff;
		border: 1px solid #5fafe1;
		color: #000;
		display: none;
		padding: 10px;
		position: absolute;
	}
		.contToolTip .toolTip {
			bottom: 19px;
			right: 15px;
			width: 100px;
		}
		.contToolTipData .toolTip,
		.contToolTipFile .toolTip {
			bottom: 21px;
			left: 0;
			width: 200px;
		}

.counter {
	color: #b4b4b4;
}

.decoArrowRight5x10 {
	border-bottom: 5px solid transparent;
    border-left: 10px solid #23699b;
    border-top: 5px solid transparent;
    display: block;
    height: 0;
    margin: 5px auto;
    width: 0;
}

.decoArrowDown5x5 {
	border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    border-left: 5px solid transparent;
    display: block;
    height: 0;
    margin: 0 auto;
    width: 0;
}

.decoArrowDown10x10 {
	border-right: 10px solid transparent;
    border-top: 10px solid #fbad18;
    border-left: 10px solid transparent;
    display: block;
    height: 0;
    margin: 0 auto;
    width: 0;
}

.dot {
	border-radius: 10px;
	display: inline-block;
	height: 7px;
	width: 7px;
}
	.dot:hover {
		cursor: help;
	}
	.dot.type1 {
		background: #ff9614;
	}

.editWarningTicketSummary {
	background: #e1e1e1;
	border: 1px solid #e1e1e1;
	box-sizing: border-box;
	margin-bottom: 10px !important;
	padding: 5px 10px !important;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
	.ellipsis.dialogClick {
		display: inline-block;
		width: 200px;
	}

.expandRow {
	cursor: pointer;
	position: relative;
	top: 2px;
	vertical-align: top;
}
	.expandRow.verticalMiddle {
		top: -2px;
		vertical-align: middle;
	}

.field-validation-error {
	color: #d71e28;
	display: none;
	margin-left: 4px;
}

.field-validation-valid,
.validation-summary-valid {
	display: none;
}

.followerBlock {
	margin-bottom: 10px;
}
	.followerBlock:last-child {
		margin-bottom: 0;
	}

.grey td {
	background: #e1e1e1;
	color: #b4b4b4;
}

.groupSideBySide {
	overflow: auto;
}
	.groupSideBySide p.checkBtn,
	.groupSideBySide p.radioBtn {
		float: left;
		margin: 0 10px 0 0 !important;
	}
		.groupSideBySide p.radioBtn label {
			padding-right: 0 !important;
		}
		.groupSideBySide p.checkBtn:last-of-type,
		.groupSideBySide p.radioBtn:last-of-type {
			margin-right: 0 !important;
		}


.hawkContracts .contract-container:not(.collapsed),
.nighthawkContracts .contract-container:not(.collapsed) {
	border: 1px solid #ccc;
}

.hawkContracts, .nighthawkContracts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hawkContracts .contract-container,
.nighthawkContracts .contract-container {
	flex: 0 1 calc(50% - 10px);
	max-width: 530px;
	min-width: 530px;
	margin-bottom: 10px; /* ← gives 10 px spacing even when flex-gap is ignored */
	border-radius: 5px;
	box-sizing: border-box;
	padding: 0;
}

.contract-container .collapsibleSection {
	padding: 10px;
}

.contract-container.child-contract {
	flex: 1 1 100%;
	max-width: 100%;
	min-width: 500px;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
}

.contract-container.child-contract::after {
	content: '';
	display: table;
	clear: both;
}

.contract-banner {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	padding: 6px 10px;
	margin: 0 0 10px 0; /* ←  NO ±10 px on the sides */
	border-radius: 5px 5px 0 0;
	color: #FFFFFF;
	background-color: #0E1957;
}

.nighthawkContracts .contract-container .contract-banner {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	padding: 6px 10px;
	margin: 0 0 10px 0; /* ←  NO ±10 px on the sides */
	border-radius: 5px 5px 0 0;
	color: #FFFFFF;
	background-color: #520303;
}

.nighthawkContracts .contract-container .child-contract .contract-banner {
	background-color: #005587;
}

.contract-banner.inactive-contract {
	background-color: #8a8a8a;
}

.nighthawkContracts .contract-container .contract-banner.inactive-contract {
	background-color: #8a8a8a;
}

.contract-container.collapsed .contract-banner {
	border-radius: 5px;
	margin: 0;
}

.contract-container-title.contract-banner {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	padding: 6px 10px;
	border-radius: 5px 5px 0 0;
	height: 45px;
}

.contract-banner .icon,
.contract-banner strong {
	color: inherit;
}
.contract-banner .productLogo {
	margin-left: auto;
	max-height: 48px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.helpInfo {
	border-bottom: 1px dashed #23699b;
}

.helpInfo:hover {
	cursor: help;
}

.highlightAgency {
	background: #ffe6b3;
	font-weight: bold;
    padding: 1px 3px;
    border: 1px solid #ffb31a;
}

.iconLegendmissingDayDate {
	background: #d71e28 url(/Content/images/calendar-missing-day.gif) no-repeat center 5px;
	display: block;
	float: left;
	height: 20px;
	width: 20px;
}

.iconLegendtransactionsSent {
	background: #8cc850 url(/Content/images/calendar-transactions-sent.gif) no-repeat center 5px;
	display: block;
	float: left;
	height: 20px;
	width: 20px;
}

.iconLegendnoTransactionDayDate {
	background: #5fafe1 url(/Content/images/calendar-business-closed.gif) no-repeat center 5px;
	display: block;
	float: left;
	height: 20px;
	width: 20px;
}

.iconSequenceGap {
	font-style: italic;
}

.input-validation-error {
	background: #ffe1e1;
	border: 1px solid #d71e28 !important;
}

.ipHighlightType1,
.ipHighlightType2,
.ipHighlightType3 {
	border-radius: 2px;
	padding: 2px 5px;
}
	.ipHighlightType1 {
		background: #dcf0c3;
		border-bottom: 1px solid #8cc850;
	}
	.ipHighlightType2 {
		background: #ffe1e1;
		border-bottom: 1px solid #d71e28;
	}
	.ipHighlightType3 {
		background: #e1e1e1;
		border-bottom: 1px solid #b4b4b4;
	}

.linkToRTC {
	display: inline-block;
	height: 20px;
	position: relative;
}
	.linkToRTC {
		background: #fbae1b;
		border-radius: 3px;
		display: inline-block;
		line-height: 20px;
		margin-right: 5px;
		padding-left: 3px;
		padding-right: 3px;
		text-align: center;
		width: auto;
	}
		.linkToRTC span.shield {
			background: url(/Content/images/icon_rtc_cross-case.gif) no-repeat;
			display: inline-block;
			height: 12px;
			position: absolute;
			right: -12px;
			width: 15px;
		}

.loadingIndicator.messageInbox {
	right: 20px;
	text-align: right;
	top: 11px;
	width: 100px;
	z-index: 9999;
}

.mapped {
	background: #dcf0c3 url(../images/icon_generic-confirm.gif) no-repeat left;
	padding-left: 20px;
}

.msgTicketDisplay {
	display: inline-block;
	padding: 10px 0;
}
	.msgTicketDisplay span.ticketNumber {
		font-weight: normal !important;
	}

.notMapped {
	background: #d71e28;
	border-radius: 2px;
	color: #fff;
	margin-right: 5px;
	padding-left: 5px;
	padding-right: 5px;
}

.noTransactionDateSuccess {
    background: #8cc850;
}

.nypdFilterWidget p {
	margin-right: 10px !important;
}

.offerUpTn {
	height: auto;
	width: 100%;
}

.printAlert {
	display: none;
	border: 1px solid #000;
	box-sizing: border-box;
}

.qtip-default {
	background: #c3e6ff;
	border: 1px solid #5fafe1;
	color: #000;
}

.qtip,
.qtip.toolTip {
	max-height: 250px;
	overflow: auto;
	padding: 5px 10px !important;
	z-index: 999999 !important;
}
	.qtip.helpInfo {
		border: 1px dashed #23699b;
	}
	.qtip.noMaxHeight {
		max-height: none;
	}
	.qtip-content table td {
		border-bottom: 1px solid #b4b4b4;
	}
		.qtip-content table tr:last-child td {
			border-bottom: none;
		}

.qtipList {
	list-style-type: square;
	margin: 0 20px !important;
}

.returnLink {
	background: url(/Content/images/arrow_return.gif) no-repeat left;
	height: auto !important;
	line-height: 30px !important;
	padding: 0 0 0 20px !important;
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
}
	.returnLink.noMarginBottom.noPositioning {
		margin-bottom: 0 !important;
	}
	.returnLink.noPositioning {
		left: auto;
		margin-bottom: 10px !important;
		position: relative;
	}
	.returnLink.secondary {
		float: right;
		overflow: auto;
		position: relative;
	}
	.returnLink a {
		display: block;
	}
	.returnLink:hover {
		background: url(/Content/images/arrow_return_r.gif) no-repeat left;
	}
		.returnLink:hover a {
			color: #000;
		}

.salesOpp-container {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}
	.salesOpp-container .salesOpp {
		box-sizing: border-box;
		width: calc(50% - 5px);
	}

.service-badge {
	border-radius: 50px;
	padding: 2px 7px;
}
.service-badge.cellhawk {
	background-color: #191c26;
	color: #fff;
}
.service-badge.leadsonline {
	background-color: #e8262c;
	color: #fff;
}
.service-badge.nighthawk {
	background-color: #800000;
	color: #fff;
}
.service-badge.sso {
	background-color: #5fafe1;
    color: #fff;
}
.service-badge.rtc {
	background-color: #fbad18;
}

.serviceBubble {
	border: 1px solid #b4b4b4;
	border-radius: 2px;
	cursor: default;
	display: inline-block;
	margin-bottom: 2px;
	margin-right: 2px;
	padding: 0 4px;
}

.subtitle {
	border-bottom: 1px solid #b4b4b4;
	overflow: auto;
	text-transform: uppercase;
}
	.subtitle.style2 {
		background: #e1e1e1;
		border-bottom: 0;
		padding-left: 10px;
	}

.supportSourceLeads,
.supportSourceCellHawk,
.supportSourceStoreSupport,
.supportSourceTraining,
.supportSourceNighthawk {
	border-radius: 2px;
	padding: 2px 5px;
}

.supportSourceLeads {
	background: #d71e28;
	/*border-bottom: 1px solid #e8262c;*/
	color: #fff;
}

.supportSourceCellHawk {
    background: #002057;
    /*border-bottom: 1px solid #191c26;*/
	color: #fff;
}

.supportSourceStoreSupport {
	background: #666;
	/*border-bottom: 1px solid #4d4d4d;*/
	color: #fff;
}
.supportSourceTraining {
	background: #fbad18;
	/*border-bottom: 1px solid #4d4d4d;*/
    color: #000;
}

.supportSourceNighthawk {
	background: #800000;
	/*border-bottom: 1px solid #191c26;*/
	color: #fff;
}

.swatch {
	border-radius: 2px;
	box-sizing: border-box;
	display: block;
	float: left;
	height: 25px;
	margin-right: 2px;
	width: 25px;
}
	.bgBlack {
		background: #3c3c3c;
	}
	.bgBlue {
		background: #1622FC;
	}
	.bgGreen {
		background: #25b700;
	}
	.bgMagenta {
		background: #eb5fff;
	}
	.bgOrange {
		background: #f09b00;
	}
    .bgPurple {
	    background: #8232ff;
    }
	.bgRed {
		background: #f00;
	}
	.bgTeal {
		background: #1eafaf;
	}
	.txtBlack {
		color: #000;
	}
	.txtBlue {
		color: #1622fc;
	}
	.txtGreen {
		color: #25b700;
	}
	.txtMagenta {
		color: #eb5fff;
	}
	.txtOrange {
		color: #f09b00;
	}
	.txtPurple {
		color: #8232ff;
	}
	.txtRed {
		color: #f00;
	}
	.txtTeal {
		color: #1eafaf;
	}
	.swatch:hover {
		border-color: #23699b;
		cursor: pointer;
	}
	.swatch.selected {
		border: 2px solid #000;
	}

.switch,
.switchDND {
	border-radius: 2px;
	color: #000;
	display: inline-block;
	float: left;
	height: auto;
	padding: 0 5px 0 30px;
	text-align: center;
	text-decoration: none;
	user-select: none;
}
    .switch.on,
    .switchDND.on {
        background: #8cc850 url(/Content/images/switch-on.gif) no-repeat 5px 0;
    }
    .switch.off,
    .switchDND.off {
        background: #d2d2d2 url(/Content/images/switch-off.gif) no-repeat 5px 0;
        color: #6e6e6e;
    }
    .switch input[type='checkbox'],
    .switchDND input[type='checkbox'] {
        float: left;
        height: 0;
		position: absolute;
        visibility: hidden;
        width: 0;
    }
    .switch label,
    .switchDND label{
        display: inline-block !important;
        height: auto;
        line-height: 20px;
        width: auto !important;
    }
        .switch:hover,
        .switch label:hover,
        .switchDND:hover,
        .switchDND label:hover {
            cursor: pointer;
        }
    .switch.on:hover,
    .switchDND.on:hover {
        background: #a5d76e url(/Content/images/switch-on.gif) no-repeat 5px 0;
        cursor: pointer;
    }
    .switch.on:active,
    .switchDND.on:active {
        background: #dcf0c3 url(/Content/images/switch-on.gif) no-repeat 5px 0;
        outline: none;
    }
    .switch.off:hover,
    .switchDND.off:hover {
        background: #e1e1e1 url(/Content/images/switch-off.gif) no-repeat 5px 0;
        cursor: pointer;
    }
    .switch.off:active,
    .switchDND.off:active {
        background: #f5f5f5 url(/Content/images/switch-off.gif) no-repeat 5px 0;
        outline: none;
    }

.taskDone td {
	text-decoration: line-through;
}

.tooltip {
	display: none;
	position: absolute;
	text-align: center;
}
	.tooltip .arrow {
		margin-bottom: 8px;
		margin-top: -5px;
	}
	.tooltip .text {
		background: #a5d76e;
		color: #000;
		font-weight: normal;
		margin: -15px 0 0 0;
		padding: 5px;
	}

.ui-button.custom-combobox-toggle {
	background: url(/Content/images/combobox_arrow_down.gif) no-repeat center;
	border-bottom: 1px solid #b4b4b4;
	border-right: 1px solid #b4b4b4;
	border-top: 1px solid #b4b4b4;
	display: inline-block;
	height: 22px;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 22px;
}

.ui-button.custom-combobox-toggle:hover {
	background: url(/Content/images/combobox_arrow_down-hover.gif) no-repeat center;
}
	.custom-combobox a span {
		display: none;
	}

.ui-datepicker-current {
	display: none
}

.ui-datepicker-close {
	background: #23699b !important;
	border-bottom: 1px solid #235f87 !important;
	border-left: none !important;
	border-right: none !important;
	border-top: 1px solid #5fafe1 !important;
	color: #fff !important;
	font-weight: normal !important;
}

.validationWarning {
	color: #d71e28;
}

#activityNotes th,
#ncicHitResultDetailsTable th {
   cursor: default;
}

#boxBeta {
	background: #e1e1e1;
	border-radius: 2px;
	display: none;
	margin-bottom: 10px;
	padding: 10px 15px;
	width: auto;
	z-index: 99999;
}
	#boxBeta textarea#textboxFeedback {
		min-height: 0;
		min-width: 0;
	}
	#boxBeta #boxBetaContent input.submit.save {
		background: #8cc850;
		border: none;
		color: #000;
		line-height: 30px;
		padding: 0 10px;
		text-align: center;
	}
	#boxBeta #boxBetaContent input.submit.save:hover {
		background: #a5d76e;
	}
	#boxBeta #boxBetaContent input.submit.save:active {
		background: #dcf0c3;
	}
	#boxBeta #boxBetaContent p.textarea textarea {
		margin: 0;
		padding: 0;
	}
	#boxBeta #boxBetaContent #betaText {
		font-size: 1.2em;
		line-height: 25px;
		margin-bottom: 10px;
	}
	#boxBeta #boxBetaContent .btnsContainerSubmit {
		overflow: auto;
		padding: 10px 0;
		width: 100%;
	}
	#boxBeta #header p {
		font-size: 1.3em;
		line-height: 25px;
	}

#caseSearchResults thead tr:first-child th:hover {
	cursor: default;
}

#ColumnClarificationDialog table {
	cursor: pointer;
}

#containerFeedbackTraining #contFeedbackAttachments {
	border-top: none;
	padding-bottom: 0;
	padding-top: 10px;
}
	#containerFeedbackTraining #contFeedbackAttachments p.noHeight > span {
		display: block;
		line-height: 20px;
	}
		#containerFeedbackTraining #contFeedbackAttachments p.noHeight > span:last-child {
			margin-bottom: 10px;
		}

	#containerFeedbackTraining #contFeedbackAttachments .fileString,
	#containerFeedbackTraining #contFeedbackAttachments .fileStringProgress {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
		#containerFeedbackTraining #contFeedbackAttachments .fileString {
			float: left;
			width: 140px;
		}
		#containerFeedbackTraining #contFeedbackAttachments .fileStringProgress {
			box-sizing: border-box;
			display: inline-block;
			padding: 0 10px;
			position: absolute;
			width: 140px;
		}

/* Styles for Change Request page */
#containerMain .stage table p.checkBtn {
	font-size: 100%;
	height: auto;
	line-height: 20px;
}

#companyInfo {
	height: 130px;
}
	#companyInfo .storeAddress {
		width: 660px;
	}

#containerMain .stage .boxStyle p.grade {
	border-radius: 35px;
	color: #fff;
	display: block;
	font-size: 4em;
	height: 70px;
	line-height: 70px;
	margin: 0 auto 20px auto;
	text-align: center;
	width: 70px;
}
	#containerMain .stage .boxStyle p.grade.scoreA {
		background: #8cc850;
	}
	#containerMain .stage .boxStyle p.grade.scoreB {
		background: #ff9614;
	}
	#containerMain .stage .boxStyle p.grade.scoreC {
		background: #d71e28;
	}

#containerMain tr.groupRow td {
	border-top: 1px dashed #d2d2d2;
}
	#containerMain tr:first-child.groupRow.start td,
	#containerMain tr.groupRow td:first-child {
		border-top: none;
	}
	#containerMain tr.groupRow.start td {
		border-top: 1px solid #969696;
	}
		#containerMain tr.groupRow.start td:first-child {
			color: #000;
		}

	#containerMain tr.groupRow td:first-child {
		color: transparent;
	}

#containerMain ul#notifications {
	margin-left: 0;
	margin-right: 0;
}
	#containerMain ul#notifications li {
		border-bottom: 1px solid #e1e1e1;
		font: 1.2em/20px Arial, Helvetica, sans-serif;
		list-style: none;
		padding: 10px 20px;
		position: relative;
	}
		#containerMain ul#notifications li span.cornerAction {
			font-size: 90%;
			position: absolute;
			right: 10px;
			top: 10px;
		}
		#containerMain ul#notifications li:last-child {
			border-bottom: none;
		}
		#containerMain ul#notifications li span.date {
			color: #6e6e6e;
		}
		#containerMain ul#notifications li span.new {
			color: #d71e28;
			text-decoration: none;
		}
		#containerMain ul#notifications li span.title {
			color: #000;
			text-decoration: none;
		}

#containerSprocsDesc p {
	line-height: 20px;
	margin-bottom: 10px;
}

#containerSprocs .floatLeft {
	box-sizing: border-box;
	padding-right: 20px;
}

#contBizSender select {
	width: 100%;
}

#contUserDetailsPermissions p.checkBtn {
	margin-bottom: 0;
}

#createPoiDiv {
	display: inline-block;
	float: left;
	margin-right: 3px;
}

#detailBar {
	/*column-gap: 10px;*/
	display: flex;
	/*background: #f5f5f5;
	box-sizing: border-box;
	padding: 5px;*/
}
	#detailBar .content-module {
		box-sizing: border-box;
		column-gap: 20px;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}
		#detailBar .content-module .content-module_body {
			background: #f5f5f5;
			border-radius: 2px;
			display: flex;
			column-gap: 30px;
			flex-grow: 1;
			padding: 5px 10px;
		}
		#detailBar .content-module .content-module_title {
			background: #f5f5f5;
			border-radius: 2px;
			line-height: 20px;
			margin-right: auto;
			padding: 5px 10px 0 10px;
		}

	/*#detailBar .column {
		float: left;
	}
		#detailBar .column:first-child {
			border-left: none;
			width: 420px;
		}
		#detailBar .column {
			border-left: 1px solid #d2d2d2;
			box-sizing: border-box;
			padding-left: 10px;
			width: 300px;
		}*/

#distinctValuesFromFile li,
#distinctValuesFromFileMatched li {
	line-height: 20px;
	padding-left: 5px;
	padding-right: 5px;
}

#divAdditionalPermissions .checkBtn {
	float: left;
	margin-bottom: 0;
	width: 25%;
}

#divDetails .label {
	width: 185px !important;
}

#divEntityFilesToUpload,
#divImagesToUpload,
#divPoiFilesToUpload {
	padding-bottom: 5px;
}

#divFileToUpload.boxStyle,
#divFilesToUpload.boxStyle,
#divSuccessStoryFilesToUpload.boxStyle {
	padding-bottom: 5px;
}

#divSelectUsersDialog .checkBtn,
#SearchForm .checkBtn {
	margin-bottom: 0;
}

#ellipsisText {
	font-size: 1.5em;
}

#history .details {
	padding: 20px;
}
	#history .details table {
		margin-bottom: 0;
	}

#itemTable thead tr th {
	font-weight: bold;
}

#itemTaxonomy tbody tr:hover {
	background-color: #cde9fa;
}

#itemTaxonomy ul li {
	list-style: none;
}

#lblLastEditedBy {
	border-bottom: 1px solid #e1e1e1;
	border-top: 1px solid #e1e1e1;
	padding: 10px 0 !important;
}

#noTransactionDateDialog {
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
}
	#noTransactionDateDialog .holder {
		background: #fff;
		border: 5px solid #c8c8c8;
		height: auto;
		margin: 0 auto;
		padding: 20px;
		position: relative;
		top: 50px;
		width: 400px;
	}

#offerUpCols .col1 {
	width: 20%;
}

#offerUpCols .col2 {
	width: 45%;
}

#offerUpCols .col3 {
	width: 35%;
}

#offerUpPrintFooter {
	bottom: 0;
	display: none;
	position: fixed;
}
	#offerUpPrintFooter td {
		background: #fff;
		border-top: 1px solid #000;
		height: 30px;
	}

#overlayVideo {
	opacity: .95;
	position: absolute;
	right: 0;
	top: 82px;
	width: 350px;
	z-index: 99;
}
	#overlayVideo div {
		background: #ff9614;
		border-radius: 2px;
		clear: both;
	}
		#overlayVideo div p {
			line-height: 40px;
		}

	#overlayVideo .arrowUp {
		border-bottom: 10px solid #ff9614;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		display: inline-block;
		float: right;
		margin-right: 50px;
		height: 0;
		width: 0;
	}

#pCustomTicketText {
	border-bottom: 1px solid #e1e1e1;
	border-top: 1px solid #e1e1e1;
	padding: 10px;
	text-align: center;
}

#referFriendDialog {
	overflow: visible;
}

#shadowing {
	background: #d71e28;
	border-radius: 2px;
	color: #fff !important;
	display: inline-block;
	float: left;
	left: 0;
	height: 16px;
	margin-right: 5px;
	line-height: 16px;
	position: relative;
	text-align: center;
	top: 12px;
	width: 16px;
}
	#shadowing:hover {
		cursor: default;
	}

#sprocResultData {
	border: 1px solid #b4b4b4;
	display: none;
	height: 300px;
	overflow: auto;
}
	#sprocResultData p {
		font: 1.2em Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', monospace;
	}
	#sprocResultData .dataTables_filter {
		padding-right: 5px;
	}
	#sprocResultData .dataTables_length {
		padding-left: 5px;
	}

.ssIdLoaderImg,
.ssSnLoaderImg,
.ssNameLoaderImg,
.ssPhoneLoaderImg,
.ssLicensePlateLoaderImg,
.ssAddressLoaderImg {
	margin-top: 2px;
	position: absolute;
	right: 265px;
}

#tblImages span.icon span,
#tblImagesDialog span.icon span,
#tblItems span.icon span,
#tblMessages .dataTables_empty {
	display: none;
}

#ticketDetailContainer #containerMain,
#ticketDetailContents #containerMain {
	padding: 0 !important;
	width: 100%;
}

#ticketDetailContainer .footerPrimary {
	padding-bottom: 20px !important;
}

#updatePassword .field-validation-error {
	float: right;
	line-height: 25px;
	width: 513px;
}

#video-player {
	border: 1px solid #d2d2d2;
	box-sizing: border-box;
}


/*------------------------------------------------------------------------------
STICKY
------------------------------------------------------------------------------*/
div.stickyHeaderV2, /*this whole section needs to be reworked*/
p.stickyHeaderV2,
table.stickyHeaderV2 th {
	position: sticky;
	top: 0;
	z-index: 1;
}
	div.stickyHeaderV2.higher-z-index {
		z-index: 2;
	}

	table.stickyHeaderV2 tr.stackedHeader + tr th {
		top: 30px;
	}
	table.stickyHeaderV2.offset10 tr.stackedHeader + tr th {
		top: 40px;
	}
	table.stickyHeaderV2.offset20 tr.stackedHeader + tr th {
		top: 50px;
	}
	table.stickyHeaderV2.offset30 tr.stackedHeader + tr th {
		top: 60px;
	}
	table.stickyHeaderV2.offset40 tr.stackedHeader + tr th {
		top: 70px;
	}
	table.stickyHeaderV2.offset50 tr.stackedHeader + tr th {
		top: 80px;
	}
	table.stickyHeaderV2.offsetCustom tr.stackedHeader + tr th {
		top: 135px;
	}

	table.stickyHeaderV2.offset20 th {
		top: 20px;
	}
	table.stickyHeaderV2.offset30 th {
		top: 30px;
	}
	div.stickyHeaderV2.offset40,
	table.stickyHeaderV2.offset40 th {
		top: 40px;
	}
	table.stickyHeaderV2.offset50 th {
		top: 50px;
	}
	table.stickyHeaderV2.offset60 th {
		top: 60px;
	}
	table.stickyHeaderV2.offsetCustom th { /*used on RTC page and this class needs a better name*/
		top: 105px;
	}

	table.stickyHeaderV2.offsetneg20 tr.stackedHeader + tr th {
		top: 10px;
	}
	table.stickyHeaderV2.offsetneg30 tr.stackedHeader + tr th {
		top: 0;
	}
	table.stickyHeaderV2.offsetneg40 tr.stackedHeader + tr th {
		top: -10px;
	}
	table.stickyHeaderV2.offsetneg50 tr.stackedHeader + tr th {
		top: -20px;
	}

	table.stickyHeaderV2.offsetneg10 th {
		top: -10px;
	}
	table.stickyHeaderV2.offsetneg20 th {
		top: -20px;
	}
	table.stickyHeaderV2.offsetneg30 th {
		top: -30px;
	}
	table.stickyHeaderV2.offsetneg40 th {
		top: -40px;
	}
	table.stickyHeaderV2.offsetneg50 th {
		top: -50px;
	}

/*table#tblCasesList.stickyHeaderV2 th {
	top: 110px;
}*/

table tr.stickyHeaderV2 td {
	bottom: 0;
	position: sticky;
	top: 30px;
	z-index: 1;
}


/*------------------------------------------------------------------------------
APPCUES
------------------------------------------------------------------------------*/
#training-btn {
	background-color: #0049b3;
	background-image: url(/Content/images/icon_help-white.gif);
	background-repeat: no-repeat;
	background-position: 10px center;
	border: none;
	border-radius: 30px;
	bottom: 20px;
	color: #fff;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	padding-left: 35px;
	padding-right: 20px;
	position: fixed;
	right: 20px;
	transition: background-color .25s;
}
	#training-btn:hover {
		background-color: #0072EB;
		cursor: pointer;
		transition: background-color .25s;
	}

#caseDashboard #training-btn {
	bottom: 5px;
	right: 20px;
}


/*------------------------------------------------------------------------------
TEMP / NEW STYLES
------------------------------------------------------------------------------*/
fieldset.tracker {
	padding: 0 10px 10px 10px;
}
	fieldset.tracker legend {
		font-weight: normal;
	}
	fieldset.tracker .tracker-rep-info span {
		border-left: 1px solid #ccc;
		padding: 0 10px;
	}
		fieldset.tracker .tracker-rep-info span:first-child {
			margin-left: 10px;
		}
		fieldset.tracker .tracker-rep-info span:empty {
			display: none;
		}

table.rowDividers tbody .totalRowTopOrientation + tr td {
    border-top: 1px solid #6e6e6e;
}

table td.details-contracts {
	border-top: none !important;
	padding: 2px 40px 5px 178px;
}

table tr.rtcRow {
	background: #ffe4ad;
}

table tr.totalRow td {
	border-top: 2px solid #000 !important;
	font-weight: bold;
}

/*.autoGeneratedFromNcic .toolTip {
    bottom: 15px;
    left: 25px;
    right: auto;
    width: 250px;
    z-index: 999;
}*/

.agencyRolesList {
	display: flex;
	gap: 2px;
    line-height: 20px;
    margin-left: 5px;
}
	.agencyRolesList span {
		background-color: #e6e6e6;
		border-radius: 20px;
		display: inline-block;
		font-size: 65%;
		font-weight: normal;
		list-style: none;
		padding: 0 7px;
	}

.badge-segment {
	background-color: #5024a8;
    border-radius: 50px;
	color: #fff;
	font-size: .875em;
	letter-spacing: 1px;
    padding: 1px 4px 1px 5px;
}
	.badge-segment.badge-segment-clickable:hover {
		background-color: #926ce0;
		cursor: pointer;
	}

.classesGrid {
	display: flex;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
	max-width: 2560px;
}
	.classesGrid .classTile {
		background-color: #e3f3fc;
		border: 2px solid #8ec9ec;
		box-shadow: 0 10px 10px #e6e6e6;
		box-sizing: border-box;
		border-radius: 10px;
		margin: 10px;
		padding: 20px;
		text-align: center;
		width: calc(25% - 20px);
	}
		.classesGrid .classTile.classClosed {
			background-color: #f5f5f5;
			border-color: #e1e1e1;
			opacity: .75;
		}
			.classesGrid .classTile.classClosed .btnStyle2 {
				background: #b4b4b4;
			}

		.classesGrid .classTile.classFull {
			background-color: #c2e0ff; /* Light blue */
			border-color: #007bff; /* Rich blue */
		}
		
.simpleFiltersGrid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	.tile {
		background-color: #e3f3fc;
		border: 2px solid #8ec9ec;
		box-shadow: 0 10px 10px #e6e6e6;
		box-sizing: border-box;
		border-radius: 10px;
		margin: 10px;
		padding: 20px;
		text-align: center;
		width: calc(25% - 20px);

		text-decoration: none;
		color: black;

		p {
			font-size: 24px;
			font-weight: bold;
			margin: 0;
		}
	}
}

/*@media screen and (max-width: 1600px) {
	.classesGrid .classTile {
		width: calc(25% - 20px);
	}
}*/

@media screen and (max-width: 1280px) {
	.classesGrid .classTile {
		width: calc(50% - 20px);
	}
}

@media screen and (max-width: 800px) {
	.classesGrid .classTile {
		width: calc(100% - 20px);
	}
}

.details-page-title {
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.fields-container .arrowDown {
	border-bottom: 10px solid #b4b4b4;
	border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    display: block;
    height: 0;
    margin: 0 auto;
	position: absolute;
	top: -10px;
    width: 0;
}
	.fields-container .arrowDown.step1 {
		left: calc(10% - 10px);
	}
	.fields-container .arrowDown.step2 {
		left: calc(30% - 10px);
	}
	.fields-container .arrowDown.step3 {
		left: calc(50% - 10px);
	}
	.fields-container .arrowDown.step4 {
		left: calc(70% - 10px);
	}
	.fields-container .arrowDown.step5 {
		left: calc(90% - 10px);
	}

.filterTags {
	margin-bottom: 20px;
}
	.filterTags .btnTag {
		background-color: #e3f3fc;
		background-image: none;
		display: inline-block;
		border: 2px solid #8ec9ec;
		border-radius: 20px;
		padding-left: 10px;
		padding-right: 10px;
		transition: background-color .25s, background-image .25s;
	}
		.filterTags .btnTag:hover {
			background-color: #23699b;
			border: 2px solid #23699b;
			color: #fff;
			cursor: pointer;
			transition: background-color .25s;
		}
		.filterTags .btnTag.btnTagSelected {
			background-color: #23699b;
			background-image: url(/Content/images/icon_check-white.gif);
			background-position: 5px center;
			background-repeat: no-repeat;
			border: 2px solid #23699b;
			color: #fff;
			padding-left: 30px;
			padding-right: 10px;
			transition: background-color .25s, background-image .25s;
		}

.hasToolTip .propertyTable .autoGeneratedFromNcic,
#personLeadTransactions .iconTicketNCIC {
	position: inherit;
}
	.hasToolTip .propertyTable .autoGeneratedFromNcic .toolTip {
		bottom: auto;
		box-sizing: border-box;
		left: 200px;
		max-height: 205px;
		overflow: auto;
		right: auto;
		top: 35px;
		width: 250px;
		z-index: 9;
	}
	#personLeadTransactions .iconTicketNCIC .toolTip {
		bottom: auto;
		box-sizing: border-box;
		left: auto;
		max-height: 280px;
		overflow: auto;
		right: 27px;
		top: 60px;
	    width: 250px;
	}

.hawkContractSelection {
	position: absolute;
	right: 0;
	top: 30px;
}
	.hawkContractSelection .hawkContractSelectionBox {
		box-shadow: 0 5px 10px #ccc;
		position: relative;
		right: 0;
		top: 5px;
	}
	.hawkContractSelection .arrow-up {
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 10px solid #b4b4b4;
		height: 0;
		position: absolute;
		right: 20px;
		top: -5px;
		width: 0;
	}

.tableSelectableRows input[type="number"] {
	height: 18px;
}

.tableSelectableRows tr.selected td,
.tableSelectableRows tr:hover td {
	background-color: #23699b;
	color: #fff;
	cursor: pointer;
}

.tableSelectableRows tbody tr td:first-child {
	background-image: url('../images/icon_check-container-empty.gif');
	background-position: center;
	background-repeat: no-repeat;
}

.tableSelectableRows tbody tr:hover td:first-child,
.tableSelectableRows tbody tr.selected td:first-child {
	background-image: url('../images/icon_check-container-checked.gif');
	background-repeat: no-repeat;
}

.hawkPackageModule,
.leadsPackageModule {
    border-radius: 5px;
	box-sizing: border-box;
	padding: 10px 20px;
	width: calc(50% - 5px);
}
	.hawkPackageModule {
		/*background-color: #dcf0c3;*/
		background: linear-gradient(45deg, rgba(219,240,193,1) 0%, rgba(231,245,214,1) 100%);
	}
	.leadsPackageModule {
		/*background-color: #cde9fa;*/
		background: linear-gradient(45deg, rgba(205,233,250,1) 0%, rgba(227,243,252,1) 100%);
	}

.legend-container-with-bg {
	background-color: #fff;
}

.login-logo-main {
    height: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 345px;
    width: 100%;
    display: block;
}

.login-logos-secondary-container {
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    width: 100%;
}

.login-logos-secondary-container__logo {
    height: 40px;
    width: auto;
}

.login-logos-secondary-container__logo__toolbox {
	height: 18px;
	padding-top: 10px;
	padding-bottom: 12px;
	width: auto;
}

.noselect {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.placeholder {
	background-color: #e1e1e1;
	border-radius: 10px;
	box-sizing: border-box;
	min-height: 20px;
    overflow: hidden;
	position: relative;
	width: 100%;
}
	.placeholder.variantGeneric {
		/*background-image: linear-gradient(to right, #fff, #fff), linear-gradient(to right, #fff, #fff), linear-gradient(to right, #fff, #fff), linear-gradient(to right, #fff, #fff);
		background-position: 20px 20%, 20px 40%, 20px 60%, 20px 80%;
		background-repeat: no-repeat;
		background-size: 60% 10%, 50% 10%, 50% 10%, 40% 10%;*/

		background-image: url(../images/skeleton_generic.png);
		background-origin: content-box;
		background-repeat: no-repeat;
		background-size: 100% 100%;
		padding: 20px;
	}
	.placeholder.variantTable {
		background-image: url(../images/skeleton_table.png);
		background-origin: content-box;
		background-repeat: no-repeat;
		background-size: 100% 100%;
		padding: 20px;
	}
	.placeholder.white {
		background-color: #fff;
	}
		.placeholder.white.variantGeneric {
			background-image: url('../images/skeleton_generic-gray.png');
		}
		.placeholder.white.variantTable {
			background-image: url('../images/skeleton_table-gray.svg');
		}

	.placeholder::before {
		animation: load 2s cubic-bezier(0.5, 0.0, 0.0, 1) infinite;
		background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
		content: '';
		display: block;
		height: 100%;
		left: -300px;
		position: absolute;
		top: 0;
		width: 300px;
	}
		.placeholder.white::before {
			background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(235,235,235,1) 50%, rgba(255,255,255,0) 100%);
		}

	.placeholder + .placeholder {
		margin-top: 10px;
	}
	@keyframes load {
		from {
			left: -300px;
		}
		to   {
			left: 100%;
		}
	}

.nonPawnableClickableText,
.successStorySelectionBubble,
.successStorySelectionBubbleBlue,
.taxonomyClickableText {
	display: inline-block;
	border-radius: 10px;
	padding-left: 10px;
	padding-right: 10px;
	transition: background-color .25s, padding-left .25s;
}
	.nonPawnableClickableText {
		background-color: #ffe1e1;
	}
    .successStorySelectionBubble,
	.taxonomyClickableText {
		background-color: #dcf0c3;
        margin-bottom: 5px;
	}
    .successStorySelectionBubbleBlue {
		background-color: #96d2ff;
        margin-bottom: 5px;
    }

.headerPrimaryV2 {
	align-items: center;
	background: #0D194F;
	border-bottom: 1px solid #b4b4b4;
	column-gap: 10px;
	display: flex;
	height: 50px;
	margin-bottom: 10px;
	opacity: 0.97;
	padding-left: 20px;
	padding-right: 20px;
	position: relative; /* Fallback for IE */
	position: sticky;
	top: 0;
	z-index: 999;
}
	.headerPrimaryV2 .header-primary-logo {
		margin-right: auto;
		max-height: 60%;
	}


.quick-launch-layout {
	display: flex;
	padding: 10px 10px 50px 10px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
}

.quick-launch-main-products {
	display: flex;
	padding: 10px;
	align-items: flex-start;
	gap: 5px;
	align-self: stretch;
	border-radius: 10px;
	border: 1px solid #A3B3C2;
	background: #FFF;
}

.quick-launch-main-product {
	display: flex;
	height: 100px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	flex: 1 0 0;
	border-radius: 5px;
	position: relative;
	width: fit-content;
}

.coming-soon {
	position: absolute;
	top: -1px;
	left: 4px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

	.quick-launch-main-product a:hover .coming-soon {
		opacity: 1;
	}

.quick-launch-other-info {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	align-self: stretch;
}

.quick-launch-other-info-left {
	display: flex;
	padding: 10px 15px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	flex: 1 0 0;
}

.quick-launch-other-info-left-title {
	color: #000;
	font-family: Barlow;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.quick-launch-contact-info {
	display: flex;
	padding-bottom: 20px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}

.quick-launch-contact-info-image {
	width: 91px;
	height: 117px;
	border-radius: 5px;
	background: #D9D9D9;
}

.biz-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 10px;
	flex: 1 0 0;
	align-self: stretch;
}

.biz-card-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.biz-card-text-name {
	color: #000;
	font-family: Barlow;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.biz-card-text-info {
	color: #000;
	font-family: Barlow;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.quick-launch-other-info-right {
	border-radius: 10px;
	border: 1px solid #A3B3C2;
	padding: 10px 15px;
}

.quick-launch-card {
	box-sizing: border-box;
}
	.quick-launch-card a {
		align-items: flex-start;
		box-sizing: border-box;
		color: unset;
		display: flex;
		column-gap: 10px;
	    height: 100%;
		position: relative;
		text-decoration: none;
		transition: transform 0.25s;
	}
		.quick-launch-card a:hover {
			transform: scale(1.05);
		}
			.quick-launch-card a .active-product-icon {
				align-items: center;
				background-color: #fff;
				border-radius: 50px;
				box-shadow: 0px 5px 20px -5px #333;
				display: flex;
				justify-content: center;
				height: 20px;
				position: absolute;
				right: 10px;
				top: 10px;
				width: 20px;
			}

	.quick-launch-card img {
		width: 100%;
	}
	.quick-launch-card .heroIcon {
		width: 20%;
	}

.quick-launch-cards-container {
	display: flex;
	flex-wrap: wrap;
}
	.quick-launch-cards-container div:nth-child(3n) {
		border-right: none;
	}
	.quick-launch-cards-container.my-features {
		column-gap: 15px;
	}
		.quick-launch-cards-container.my-features .quick-launch-card {
			flex-basis: calc(33% - 15px);
			margin-bottom: 20px;
		}
			.quick-launch-cards-container.my-features .quick-launch-card.card--disabled .quick-launch-card-text,
			.quick-launch-cards-container.my-features .quick-launch-card.card--disabled img {
				opacity: 0.25;
			}
			.quick-launch-cards-container.my-features .quick-launch-card.card--disabled a {
				cursor: default;
				outline: none;
			}
				.quick-launch-cards-container.my-features .quick-launch-card.card--disabled a:hover {
					transform: scale(1.00);
				}

.quick-launch-main-product-area {
	display: flex;
	column-gap: 10px;
	margin: 0 auto 20px auto;
}

.salesOpp {
	border: 1px solid #5fafe1;
	border-radius: 5px;
	padding: 10px;
	background-color: #e3f3fc;
}

.taxonomyNegativeKeywordText {
    border-radius: 10px;
	background-color: #ff726f;
	background-image: url(/Content/images/icon_remove.gif);
	background-position: top 5px right 5px;
	background-repeat: no-repeat;
	display: inline-block;
	margin-bottom: 5px;
	padding-left: 10px;
	padding-right: 25px;
	transition: background-color .25s, padding-left .25s;
}
		.taxonomyNegativeKeywordText:hover {
			background-color: #ffcccb;
			background-image: url(/Content/images/icon_remove.gif);
			cursor: pointer;
		}

.taxonomyKeywordText {
	border-radius: 10px;
	background-color: #cde9fa;
	background-image: url(/Content/images/icon_remove.gif);
	background-position: top 5px right 5px;
	background-repeat: no-repeat;
	display: inline-block;
    margin-bottom: 5px;
	padding-left: 10px;
	padding-right: 25px;
	transition: background-color .25s, padding-left .25s;
}
	.taxonomyKeywordText:hover {
		background-color: #5fafe1;
		background-image: url(/Content/images/icon_remove.gif);
        color: #000;
		cursor: pointer;
	}
	.nonPawnableClickableText.selected,
	.successStorySelectionBubble.selected,
	.successStorySelectionBubbleBlue.selected,
    .taxonomyClickableText.selected {
		background-repeat: no-repeat;
		background-position: 5px center;
		padding-left: 25px;
	}
		.nonPawnableClickableText.selected {
			background-color: #e13c46;
			background-image: url(/Content/images/icon_check-white.gif);
			color: #fff;
		}
        .successStorySelectionBubble.selected,
		.taxonomyClickableText.selected {
			background-color: #a5d76e;
			background-image: url(/Content/images/icon_check-black.gif);
		}
        .successStorySelectionBubbleBlue.selected {
			background-color: #5fafe1;
			background-image: url(/Content/images/icon_check-black.gif);
        }

    .successStorySelectionBubble.disabled,
    .successStorySelectionBubbleBlue.disabled {
	    background: #e1e1e1 !important;
	    color: #6e6e6e !important;
    }
		.successStorySelectionBubble.disabled:hover,
		.successStorySelectionBubbleBlue.disabled:hover {
			cursor: default;
		}

	.nonPawnableClickableText:hover,
	.successStorySelectionBubble:hover,
	.successStorySelectionBubbleBlue:hover,
    .taxonomyClickableText:hover {
		cursor: pointer;
		transition: background-color .25s, padding-left .25s;
	}
		.nonPawnableClickableText:hover {
			background-color: #e13c46;
			color: #fff;
		}
        .successStorySelectionBubble:hover,
		.taxonomyClickableText:hover {
			background-color: #a5d76e;
		}
        .successStorySelectionBubbleBlue:hover {
			background-color: #5fafe1;
        }

.successStoryModule {
	padding: 20px;
    background-color: #cde9fa;
    border-radius: 10px;
    margin-left: 50px;
    margin-right: 50px;
}

.totalRowTopOrientation td {
	font-weight: bold;
	background: #e6fad2;
}

.tracker-progress {
	column-gap: 5px;
	display: flex;
	list-style: none;
}
	.tracker-progress li {
		align-items: center;
		background-color: #e6e6e6;
		box-sizing: border-box;
		border-radius: 2px;
		color: #666;
		display: flex;
		flex-basis: 0;
		flex-grow: 1;
	    height: 30px;
		justify-content: center;
		padding-left: 20px;
		padding-right: 20px;
	}
		.tracker-progress li.complete {
			background-color: #8cc850;
			background-image: url(/Content/images/icon_check-black.gif);
			background-repeat: no-repeat;
			background-position-x: 5px;
			background-position-y: center;
			color: #000;
		}
		.tracker-progress li.inProgress {
			background-color: #dcf0c3;
			background-image: url(/Content/images/icon_case-search-processing.gif);
			background-repeat: no-repeat;
			background-position-x: 5px;
			background-position-y: center;
			border: 2px solid #8cc850;
			color: #000;
		}
		.tracker-progress li.missing {
			background-color: #dcf0c3;
			background-image: url(/Content/images/icon_generic-alert.gif);
			background-repeat: no-repeat;
			background-position-x: 5px;
			background-position-y: center;
			border: 2px solid #8cc850;
			color: #000;
		}
		.tracker-progress li:hover {
			background-color: #a5d76e;
			cursor: pointer;
		}

.ironclad-tracker-progress {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ironclad-tracker-progress li {
	align-items: center;
	background-color: #e6e6e6;
	color: #666;
	display: flex;
	flex-grow: 1;
	height: 30px;
	min-width: 80px;
	justify-content: center;
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
	margin-right: 1px; /* Space between steps */
}

/* Arrow effect for completed and current steps, excluding the last item */
.ironclad-tracker-progress li.complete:not(:last-child)::after,
.ironclad-tracker-progress li.inProgress:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 0;
	right: -15px; /* Adjust based on the size of the arrow */
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid; /* Color will be set below */
	z-index: 1;
}

.ironclad-tracker-progress li.complete {
	background-color: #8cc850; /* Green */
	background-image: url(/Content/images/icon_check-black.gif);
	background-repeat: no-repeat;
	background-position-x: 15px;
	background-position-y: center;
	color: #000;
}

.ironclad-tracker-progress li.complete:not(:last-child)::after {
	border-left-color: #8cc850; /* Same as the background-color of .complete */
}

.ironclad-tracker-progress li.inProgress {
	background-color: #002bff; /* light-green */
	color: #e6e6e6;
}

.ironclad-tracker-progress li.inProgress:not(:last-child)::after {
	border-left-color: #002bff; /* Same as the background-color of .inProgress */
}

.ironclad-tracker-progress li.cancelled {
	background-color: #ff0000; /* red */
	color: #e6e6e6;
}

.ironclad-tracker-progress li.cancelled:not(:last-child)::after {
	border-left-color: #ff0000; /* Same as the background-color of .inProgress */
}

/* Adjustments for the first and last items */
.ironclad-tracker-progress li:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.ironclad-tracker-progress li:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	flex-grow: 0;
	padding-right: 20px; /* Adjust padding if needed */
	margin-right: 0; /* Reset margin for the last item */
}

.ironclad-user-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding: 8px 0;
}

.ironclad-user-info {
	display: flex;
	flex-direction: column;
}

.ironclad-user-name {
	font-size: 16px;
	font-weight: bold;
}

.ironclad-user-role {
	font-size: 14px;
	color: #666;
}

.ironclad-user-status {
	font-style: italic;
	color: #333;
}

.video-training-library-wrapper {
	display: flex;
	flex-wrap: wrap;
}
	.video-training-library-wrapper .tags-wrapper {
		margin-bottom: 20px;
		width: 100%;
	}
	.video-training-library-wrapper .title-wrapper {
		width: 100%;
	}

.video-tags li {
	border: 1px solid #ccc;
	border-radius: 10px;
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
}
	.video-tags .selectable {
		cursor: pointer;
	}
		.video-tags .selectable:hover,
		.video-tags .selectable.selected {
			background: #23699b;
			border-color: #23699b;
			color: #fff;
		}

.video-wrapper {
	box-sizing: border-box;
	margin-bottom: 20px;
	padding-left: 1%;
	padding-right: 1%;
	text-align: center;
	width: calc(100% / 3);
}
	.video-wrapper .video {
		aspect-ratio: 16 / 9;
		border: 1px solid #ccc;
		box-sizing: border-box;
		margin-bottom: 10px;
		position: relative;
		width: auto;
	}
		.video-wrapper .video .play-button {
			background-color: #23699b;
			border: 0;
			border-radius: 100px;
			display: inline-block;
			height: 100px;
			left: calc(50% - 50px);
			margin: 0;
			padding: 0;
			position: absolute;
			top: calc(50% - 50px);
			transition: transform .25s;
			width: 100px;
		}
			.video-wrapper .video .play-button .play-arrow {
				border-bottom: 20px solid transparent;
				border-left: 20px solid #fff;
				border-top: 20px solid transparent;
				display: inline-block;
				height: 0;
				left: calc(50% - 10px);
				position: absolute;
				top: calc(50% - 20px);
				width: 0;
			}

		.video-wrapper .video .play-button-overlay {
			background-color: transparent;
			border: 0;
			cursor: pointer;
			height: 100%;
			display: block;
			margin: 0;
			padding: 0;
			position: relative;
			width: 100%;
		}
			.video-wrapper .video .play-button-overlay:hover .play-button {
				background-color: #5fafe1;
				transform: scale(1.1);
				transition: transform .25s;
			}

.waitlist-attendee {
	border: 2px dashed #0049b3;
}

.welcomeToQuickLaunchDialog {
	/*background-color: #ff0;*/
	border-radius: 10px;
}
	.welcomeToQuickLaunchDialog img {
		border: 1px solid #23699B;
	}
	.welcomeToQuickLaunchDialog.ui-dialog .ui-dialog-titlebar {
		background-color: none;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}

/* Improved Search: Start */
#advancedSearchInputs input[type='text'],
#advancedSearchInputs select {
	border: 1px solid #b4b4b4;
	border-radius: 20px;
	box-sizing: border-box;
	height: 30px;
	padding-left: 10px;
	padding-right: 10px;
}
	#advancedSearchInputs select {
		vertical-align: inherit;
	}

#advancedSearchInputs label {
	line-height: 30px;
	width: 140px;
}

#advancedSearchInputs p {
	font-size: 1.4em;
	line-height: 30px;
	margin-bottom: 8px;
}
	#advancedSearchInputs p.small {
		font-size: 1.2em;
	}

#advancedSearchInputs .btnSecondary {
	background-color: #23699b;
	border: 0;
	border-radius: 20px;
	color: #fff;
	cursor: pointer;
	line-height: 25px;
	padding-left: 10px;
	padding-right: 10px;
}
	#advancedSearchInputs .btnSecondary.selected,
	#advancedSearchInputs .btnSecondary:hover {
		background-color: #beddf4;
		color: #23699b;
	}

#advancedSearchInputs .btnTertiary {
	background-color: #e0ecf5;
	border: 0;
    border-radius: 20px;
    color: #23699b;
    cursor: pointer;
    line-height: 25px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: underline;
}
	#advancedSearchInputs .btnTertiary:hover {
		text-decoration: none;
	}

#advancedSearchInputs .btnStyle3.bigBtn {
	border-radius: 20px;
	line-height: 40px;
	padding: 0 20px 0 35px;
}
	#advancedSearchInputs .btnStyle3.iconBtnFindPeople {
		background: #23699b url('../images/icon_btn-find-people.gif') no-repeat 10px center;
	}
	#advancedSearchInputs .btnStyle3.iconBtnFindProperty {
		background: #23699b url('../images/icon_btn-find-property.gif') no-repeat 10px center;
	}
	#advancedSearchInputs .btnStyle3.iconBtnFindTicketNumber {
		background: #23699b url('../images/icon_btn-find-ticket-number.gif') no-repeat 10px center;
	}
	#advancedSearchInputs .btnStyle3.iconBtnFindVehicles {
		background: #23699b url('../images/icon_btn-find-vehicles.gif') no-repeat 10px center;
	}
	#advancedSearchInputs .btnStyle3.iconBtnFindPeople:hover,
	#advancedSearchInputs .btnStyle3.iconBtnFindPeople.selected {
		background: #beddf4 url('../images/icon_btn-find-people-2.gif') no-repeat 10px center;
		color: #23699b;
	}
	#advancedSearchInputs .btnStyle3.iconBtnFindProperty:hover,
	#advancedSearchInputs .btnStyle3.iconBtnFindProperty.selected {
		background: #beddf4 url('../images/icon_btn-find-property-2.gif') no-repeat 10px center;
		color: #23699b;
	}
	#advancedSearchInputs .btnStyle3.iconBtnFindTicketNumber:hover,
	#advancedSearchInputs .btnStyle3.iconBtnFindTicketNumber.selected {
		background: #beddf4 url('../images/icon_btn-find-ticket-number-2.gif') no-repeat 10px center;
		color: #23699b;
	}
	#advancedSearchInputs .btnStyle3.iconBtnFindVehicles:hover,
	#advancedSearchInputs .btnStyle3.iconBtnFindVehicles.selected {
		background: #beddf4 url('../images/icon_btn-find-vehicles-2.gif') no-repeat 10px center;
		color: #23699b;
	}

#advancedSearchInputs .bubblesSearch {
	position: relative;
	/*left: 165px;
	top: 1px;*/
}
/* Improved Search: End */

#lcBanner {
	background-color: #d71e28;
	border-radius: 10px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}
	#lcBanner p {
		color: #fff;
	}
	#lcBanner a.btnRegister:link,
	#lcBanner a.btnRegister:visited {
		background-color: #fff;
		border-radius: 10px;
		color: #000;
		display: inline-block;
		line-height: 1.5;
		padding: 5px 10px;
		text-decoration: none;
	}
	#lcBanner a.btnRegister:hover {
		background-color: #000;
		color: #fff;
	}

#personPropertyAndHitsTable .iconTicketNCIC .toolTip {
	bottom: 20px;
	left: auto;
	right: 20px;
}

#quotePackages {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

#resultsGrid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
	#resultsGrid .resultItem {
		width: 24%;
	}
		#resultsGrid .resultItem {
			background-color: #dcf0c3;
			border: 1px solid #8cc850;
			border-radius: 10px;
			box-sizing: border-box;
			cursor: pointer;
			display: block;
			height: 130px;
			list-style: none;
			padding: 10px 5px 0 5px;
			text-align: center;
		}
			#resultsGrid .resultItem.selected,
			#resultsGrid .resultItem:hover {
				background-color: #beddf4;
				border: 1px solid #5fafe1;
			}
				#resultsGrid .resultItem.selected .resultsNumber,
				#resultsGrid .resultItem:hover .resultsNumber {
					background-color: #000;
					color: #fff;
				}

			#resultsGrid .resultItem .resultsNumber {
				background-color: #8cc850;
				border-radius: 50px;
				color: #000;
				display: block;
				font-size: 1.25em;
				font-weight: bold;
				height: 40px;
				line-height: 40px;
				margin: 0 auto 5px auto;
				text-align: center;
				width: 40px;
			}
			#resultsGrid .resultItem .resultsType {
				display: block;
				font-size: 1.25em;
				font-weight: bold;
			}

#rtcFileImportResultsTable tr td.totalRecords {
	background: #e1e1e1;
}

#tblTestImportedData th,
#tblImportTestReferenceData th {
	min-width: 75px;
}

#TicketMonitorSummaryResultsTable_info {
	clear: none;
	float: left;
	width: 50%;
}

#warningAveragesAlertBox ul {
	list-style: none;
}
	#warningAveragesAlertBox ul li span {
		display: inline-block;
		padding-left: 3px;
		padding-right: 3px;
	}
		#warningAveragesAlertBox ul li span.warningTypeMed {
			background: #ffe1af;
			border-radius: 3px;
		}
		#warningAveragesAlertBox ul li span.warningTypeSevere {
			background: #ffe1e1;
			border-radius: 3px;
		}


/*------------------------------------------------------------------------------
 The lines below don't seem to be in use
------------------------------------------------------------------------------*/
.boxStyle.module {
	background: #ebf5ff;
	padding: 10px 20px;
}

.ipRange:hover {
	cursor: pointer;
}

.keywordsModule {
	overflow: auto;
}
	.keywordsModule label {
		line-height: 30px;
	}
	.keywordsModule .keywordsInputArea {
		background: #fff;
		border-bottom: 1px solid #b4b4b4;
		border-left: 1px solid #646464;
		border-radius: 2px;
		border-right: 1px solid #b4b4b4;
		border-top: 1px solid #646464;
		display: inline-block;
		line-height: 21px;
		padding: 2px 3px;
		width: 500px;
	}
		.keywordsModule .keywordsInputArea input[type='text'] {
			border: none;
			float: left;
		}
		.keywordsModule .keywordsInputArea span {
			background: #ffcc66 url(/Content/images/icon_remove.gif) no-repeat right 5px top 4px;
			border-radius: 2px;
			float: left;
			display: block;
			margin-right: 3px;
			padding: 0 22px 0 10px;
		}
		.keywordsModule .keywordsInputArea .phantomInput {
			display: none;
			margin: 0;
			padding: 0;
		}

.matchRegex {
	background: #e6fad2;
	display: block;
	cursor: pointer;
}
	.matchRegex:hover {
		background: #ffbe6e;
		display: block;
		cursor: pointer;
	}

.matchRegexMultiple {
	background: #f0dcc3;
	clear: right;
	cursor: pointer;
	display: block;
}

.modeDark.ui-widget.ui-widget-content {
    border: 1px solid #323232;
}

.requirementHighlightFound {
    background: #dcf0c3;
    border: 1px solid #8cc850;
    padding: 2px 5px
}

.ui-dialog.modeDark {
	background: #323232;
	border-radius: 10px;
}
	.ui-dialog.modeDark h2,
	.ui-dialog.modeDark p {
		color: #fff;
	}
	.ui-dialog.modeDark span.spacerDivider {
		border-bottom: 1px solid #6d6d6d
	}
	.ui-dialog.modeDark .btnStyle3 {
		background: #5fafe1;
		color: #000;
	}
	.ui-dialog.modeDark .mimicAnchor {
		color: #5fafe1;
	}
	.ui-dialog.modeDark .boxStyle {
		background: #444444;
		border-color: #6d6d6d;
	}
	.ui-dialog.modeDark .ui-dialog-titlebar {
		background: none;
		border-bottom: 1px solid #999;
	}
	.ui-dialog.modeDark .ui-dialog-titlebar-close {
		background: url(../images/icon_ui-dialog-close-white.gif) no-repeat center center;
	}

.unmatchRegex {
	display: block;
	clear: right;
	cursor: pointer;
}
	.unmatchRegex:hover {
		background: #ffbe6e;
		cursor: pointer;
		display: block;
	}

.wrap-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px; 
}