html {	
	height:100%; 
	font-size:13px;
}

body {
	margin:0;
	height:100%;
	height:auto;
	color:var(--main-text-color);
	text-align:left;
	line-height:normal;
}

.dot {
	height: 15px;
	width: 15px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
}

.form-group {
	margin-bottom:10px;
}

.bg-theme {
	/* @extend .bg-info; */
	background-color: var(--main-highlight-color);
}

.bg-highlight {
	background-color: var(--default-highlight-color);
}

.border-2 {
	border-width:2px !important;
}

.hidden { 
	display:none;
}

.hover-enable:hover { 
	background-color: var(--default-highlight-color);
}

.overlay {
	position: fixed;
	z-index: 999;
	height: 100%;
	width: 100%;
	overflow: show;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color:rgba(41,41,61,0.75);
}

.loader {
	position: absolute;
	top: calc(50% - 50px);
	top: -webkit-calc(50% - 100px);
	left: calc(50% - 200px);
	left: -webkit-calc(50% - 200px);
	width: 120px;
	height: 120px;
	border-radius: 50%;	
	border: 16px solid #f3f3f3;
	border-top: 16px solid var(--main-highlight-color);
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


/*
BELOW CLASS EXTEND BOOTSTRAP
*/
.table {
	text-align:left;
}
.table-viewport {
	max-height:72vh !important;
	min-height:450px;
	border-bottom:1px solid lightgray
	/*padding-bottom:20px;*/
}

.table .thead-dark th {
color: #ffffff;
background-color: var(--main-highlight-color-opaque);
border-color: #32383e;
text-transform: uppercase;
font-weight:400;
padding-left:10px;
padding-bottom: 0.75rem;
}

.table .thead-dark tr:first-child th:first-child  {
	border-top-left-radius:4px;
}

.table .thead-dark tr:first-child th:last-child  {
	border-top-right-radius:4px;
}

.table tr td > a {
	display:inline-block;
	width:100%;
	/*height:100%;*/
}

h1,.h1 {
	font-size: 30px;
	color: var(--main-text-color);
}

h2,.h2 {
	font-size: 25px;
	color: var(--main-text-color);
}

h3,.h3 {
	font-size: 20px;
	color: var(--main-text-color);
}

h4,.h4 {
	font-size: 16px;
	color: var(--main-text-color);
}

.display-6 {
	font-size:2.1rem;
}

.boldText1 {
	vertical-align:middle;
	font-size: 18px !important;
	font-weight: bold !important;
	text-transform:uppercase;
}

.boldText2 {
	vertical-align:middle;
	font-size: 16px !important;
	font-weight: bold !important;
}

a, i {
	/*font-family: Arial, Helvetica, sans-serif;*/
	/*font-weight:400;*/
	color:black;
	vertical-align:middle;
	/*line-height:24px;*/
}

a {
	text-decoration: underline;
	text-decoration-color: var(--main-link-underline-color);
	color:var(--main-link-color);
}

a:hover {
	color:var(--main-link-color);
}

.pointer {
	cursor:pointer;
}

div {
	/*font-family: Arial, Helvetica, sans-serif;*/
	/*font-size: 14px;*/
	line-height:20px;
}

#header {
	/*overflow:hidden;*/
	box-shadow:0px 5px 5px #666;
	position:relative;
	z-index:100;
	background-color:white;
	min-height:45px;
	vertical-align:bottom;
}
.main_site_container {
	min-height:calc(100vh - 100px);
	/*
	position:relative;
	margin:0px;
	padding:0px;
	width:100%;
	min-height:100vh;
	*/
}

.page_content { 
	display:inline-block;
	text-align:center;
	margin-bottom:40px;
	min-height:750px;
	padding-left:50px;
	width: calc(100% - 60px) !important;
}

.site_heading {
	background-image: linear-gradient(to right,var(--main-highlight-color),#FFFFFF);
	min-height:50px;
	padding-top:15px;
	color:white;
	vertical-align:bottom;
	font-weight:600;
	font-size:35px;
	letter-spacing: 5px;
	text-transform:lowercase;
}

.site_heading > em {
	text-transform:none;
	text-decoration:underline; 

}




.dashboardContainer {
	width:100%;
	min-height:300px;
	padding:5px;
	box-sizing:border-box;
}

.dashboardContainer > div {
	box-sizing:border-box;
}

.dashboardColumn {
	margin:10px;
	border-radius: 12px;
	background-color:rgba(255,255,255,0.75);
	min-height:400px;
	box-sizing:border-box;
	min-height:500px;
	min-width:370px;
	width:31%;
	text-align:left;
}

.dashboardItemSmall {
	box-sizing:border-box;
	width:31%;
	min-height:100px;
	background-color:rgba(255,255,255,0.25);
	border:1px solid grey;
	display:inline-block;
	margin:2px;
	border-radius: 5px;
	padding:10px;
	vertical-align:top;
}


.dashboardItemTwoThirds {
	min-height:100px;
	box-sizing:border-box;
	width:62%;
	background-color:rgba(255,255,255,0.25);
	border:1px solid grey;
	display:inline-block;
	margin:2px;
	border-radius: 5px;
	padding:10px 10px 50px 10px;
	vertical-align:top;
}
.dashboardItemMedium {
	min-height:100px;
	box-sizing:border-box;
	width:48%;
	background-color:rgba(255,255,255,0.25);
	border:1px solid grey;
	display:inline-block;
	margin:10px 0px 10px 0px;
	border-radius: 5px;
	padding:10px;
	vertical-align:top;
}

.dashboardItemLarge {
	min-height:170px;
	background-color:rgba(255,255,255,0.25);
	border-bottom:2px solid grey;
	margin-bottom:25px;
}
.dashboardItemLarge > .pageheader {
	border-radius:0px 0px 0px 0px;
	color:white;
}

.dbItem > .card-header {
	border-radius: 5px 5px 0px 0px;
}

.dbItem {
	border:1px solid lightgrey !important;
}

.dbItem > .card-body{
	height:450px;
	overflow:auto;
	
}

.formListDiv {
	min-height:30px;
	box-sizing:border-box;
	width:95%;
	background-color:rgba(158,183,156,0.25);
	border:1px solid grey;
	display:block;
	margin:5px;
	border-radius: 5px;
	padding:8px;
	/*vertical-align:top;*/
}

.divright {
	font-family: Arial, Helvetica, sans-serif;
	/*font-size: 14px;*/
	font-style: normal;
	font-weight: normal;
	float:right;
	display:inline;
}

.divleft {
	font-family: Arial, Helvetica, sans-serif;
	/*font-size: 14px;*/
	font-style: normal;
	font-weight: normal;
	float:left;
	display:inline;
	line-height:25px;
	padding:5px 20px 5px 20px;
}

a[type="button"], .button, input[type="button"], input[type="submit"] {
	border:1px solid rgb(85, 85, 85);
	border-radius:3px;
	padding: 0px 20px;
	height:30px;
	background-color: var(--main-highlight-color);
	color: #FFFFFF;
	font-size:16px;
	font-weight: 500;
	text-transform:uppercase;
	cursor: pointer;
}

textarea {
	font-family: Arial, Helvetica, sans-serif;
	border:1px solid var(--border-color1);
	/* font-size: 14px; */
	border-radius:4px;
	padding-left:2px;
	line-height:22px;
}

.schedule_content{
	overflow-x:auto;
	margin:0px 0px 0px 0px;
	width:100%;
	min-width:250px;
	/* flex-wrap: nowrap !important; */
}

.schedule_header {
	border-top:1px solid grey;
	min-width:1500px;
	margin:10px 15px 0px 18px ;
}

.schedule_container {
	overflow-y:auto;
	overflow-x:hidden;
	max-height:60vh;
	box-sizing: border-box;
	margin:10px 0px 0px 18px ;
	border-right:1px solid grey;
	border-top:1px solid grey;
	min-width:1500px;
	margin-top:10px;
}

.schedule_column {
	padding:0px;
	margin:0px;
	float:left;
	min-width:250px !important;
	box-sizing: border-box;
	border-right:1px solid grey;
}
.schedule_body {
		padding:2px;
		height:auto;
		min-height:800px;
}

.schedule_header > .schedule_column {
	border:0px;
}

.card {
		border:1px solid black;
		margin-bottom:10px;
}

.pagetab {
	display:none;
	width:100%;
}

.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }


.material-symbols-rounded {
/*font-size:40px !important;*/
color:var(--main-text-color);
font-variation-settings:
'FILL' 1,
'wght' 200,
'GRAD' 0,
'opsz' 40
}

.title-row > .material-symbols-rounded {
	color:white;
}

.pageheader  * > .material-symbols-rounded {
	font-variation-settings:
	'FILL' 1,
	'wght' 300,
	'GRAD' 0,
	'opsz' 40
}
/* BADGES INVERT THE TEXT COLOR BASED ON THE BACKGROUND COLOR */
.invert-text {
    /* This value is the OPPOSITE color of our background */
	/* <div class='my_background'><span class='invert-text'>My Text</span></div>*/
    mix-blend-mode: difference;
}


/* ### USED FOR AUTO EXPANDING TEXT BOXES EG QUOTE EDIT DESCRIPTONS */
.expandingArea {
position: relative;
border: 1px solid #FFF;
background: #fff;
margin-top:1px;
}

.expandingArea > textarea,
.expandingArea > pre {
padding: 2px;
background: transparent;
font: 400 13px/16px helvetica, arial, sans-serif;
/* Make the text soft-wrap */
white-space: pre-wrap;
word-wrap: break-word;
min-height:20px;
}

.expandingArea > textarea {
/* The border-box box model is used to allow
	padding whilst still keeping the overall width
	at exactly that of the containing element.  */
	
	-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	width: 100%;
	/* This height is used when JS is disabled */
	border:none;
}

.expandingArea.active > textarea {
/* Hide any scrollbars */
overflow: hidden;
position: absolute;
top: 0;
left: 0;
height: 100%;
/* Remove WebKit user-resize widget */
resize: none;
}
.expandingArea > pre {
display: none;
}
.expandingArea.active > pre {
display: block;
/* Hide the text; just using it for sizing */
visibility: hidden;
}
/* END OF EXPANDIN TEXTBOX CSS */

.table-fixed thead th {
background: white;
position: sticky;
top: 0; /* Don't forget this, required for the stickiness */
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}
.table-fixed tbody td {
z-index:-1;
background: white;
}

input.checkbox, input[type='checkbox']{
	min-height:16px;
	min-width:16px;
}

div.filtered_list {
	position:relative;
	width:100%;
	padding:0px;
}

select.filtered_list{
	background-color:rgba(250, 250, 250, 1);
	z-index:40;
	min-width:100%;
	float:left;
	position:absolute;
	left:0px;
	top:10px;
	display:none;
	overflow: overlay !important;
	height:300px;

}

select.filtered_list option:hover {
	background-color:lightgrey;
}
/*
This works, not sure its needed
.modal select.filtered_list {
	z-index:1095;
}
*/
/*
select.filtered_list option {
	padding:4px;
}
*/


select.filtered-list {
	height:300px;
	display:none;
}

img { 
	border: 0;
	margin: 0px 0px; 
	margin-bottom:0px;
} 

table.gridtable {
	border-collapse:collapse;
	width:95%;
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}

table.gridtable.tr {
	height:50px;
	align:left;
	vertical-align:middle;
	background:#CCC;
}

table.gridtable td {
	align:left;
	border-color: #CCCCCC;
	border-bottom:1px solid lightgrey;
	padding:5px 20px;
	/*font-size:14px;*/
}

table.gridtable tr:hover td {
	background:#CCC;
}
table.filter {
	@extends gridtable;
}
table.filter tr:hover td {
	background:none;
}


table.gridtable th {
	color:white;
	background-color: var(--main-highlight-color);
	border-color: #CCCCCC;
	border-bottom:1px solid lightgrey;
}

.titlerow {
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	border:1px solid #cccccc;
	color:#FFFFFF;
	border-radius:8px;
	height:30px;
	box-align:left;
	font-weight:500;
	vertical-align:middle;
	background-color:var(--main-highlight-color);
	padding:5px 20px;
}

.titlerow > th {
	font-weight:500;
	vertical-align:middle;
	background-color:var(--main-highlight-color);
	padding:5px 5px;
}

table.datatable {
	border-collapse:collapse;
	width:100%;
	align:center;
}

.datatabletitle {
	font-family: Arial, Helvetica, sans-serif;
	border:1px solid #cccccc;
	border-radius:8px;
	height:30px;
	color:#FFF;
	align:left;
	font-weight:bold;
	vertical-align:middle;
	background-color:var(--main-highlight-color);
	padding:5px 20px;
}

table.datatable td {
	font-family: Arial, Helvetica, sans-serif;
	border-style: solid;
	border-width: 1px;
	border-color: #CCCCCC;
	align:left;
	padding:2px;
	margin:0px;
	/*font-size:14px;*/ 
}

table.datatable tr:hover {
	background:#DDD;
}

td.currency, td.currency>input {
	background-color:var(--main-special-color);
}

tr.formRow {
	height:50px;
	align:left;
	vertical-align:middle;
	border-bottom:5px solid var(--main-highlight-color);
}

tr.formRow:hover td {
	@extend datatable;
	background-color:#FFF;
}
.datainput {
	height:25px;
	width:98%;
	border:none;
	box-sizing: border-box;
	margin:0px;
}

.floating {
	border:1px solid var(--main-highlight-color);
	border-radius:12px;
	border-color:grey;
	margin:15px;
	background-color:#ffffff;
	padding:20px;
}

p.pagebreak {
	page-break-after: always;
}

.menu_container {
	background-color:#FFFFFF;
	position:relative;
	/*top:-30px;*/
	display:inline-block;
	width:60px;
	overflow:hidden;
	z-index: 50;
	min-height:100vh;
	height:100%;
	/*padding-bottom:10px;*/
	float:left;
	background-color: white;
	box-shadow:3px -5px 8px #666;
	border-right:1px solid #696969;
	transition:visibility 0ms, background 0ms, width 200ms;
}

.menu-last-active {
	/* background-color:var(--main-highlight-color); */
}


.menu_container_full{
width:250px;
/* transition:visibility 0ms, background 0ms, width 200ms; */
}

.menu-main > .accordion-item > .accordion-header > .accordion-button > .material-symbols-rounded {
	font-size:30px;
	margin-right:20px;
	color:var(--main-text-color);
}

.menu-main > .accordion-item > .accordion-header > .accordion-button > a > .material-symbols-rounded {
	font-size:30px;
	margin-right:20px;
	color:var(--main-text-color);
}

/*.main-menu > .accordian-item > .accordian-collapse > .accordian-body > .list-group > .list-group-item > a {*/
.main_menu > a {
	text-decoration:none !important;
	display:inline-block;
	width:100%;
	height:100%;
}

.menu_icon {
	vertical-align:middle;
}

.submenu{
	margin:8px 0px 10px 15px;
	box-sizing:border-box;
	color:#000000;
	background-color:#FFFFFF;
	width:95%;
	padding-left:45px;
	text-align:left;
}

.submenu > a { 
	padding:0px;
	height:30px;
	text-decoration:none;
}

.menu_item {
	border-left:1px solid grey;
	list-style-type:none;
	margin-left:0px;
	height:30px;
	line-height:30px;
	width:90%;
	padding-top:4px;
	padding-bottom:4px;
	padding-left:10px;
	padding-right:10px;
	font-size:12px;
	text-transform:uppercase;
}

.su_menu_item, .developer, .coming_soon {
	display:none;
}

.pageheader {
	/*overflow:hidden;*/
	width: 100%;
	position:relative;
	box-sizing:border-box;
	height:45px;
	vertical-align:baseline;
	white-space:nowrap;
	text-align:center;
	background-color:var(--main-highlight-color);
	padding-right:20px;
	padding-top:5px;
	padding-bottom:5px;
	border-radius:0px 0px 0px 4px;
	margin-top:0px;
	margin-bottom:10px;
	margin-right:-7px;
	margin-left:auto;
	box-shadow:7px 2px 8px #666;
}

.subcontainer{
	overflow:hidden;
	width:95%;
	white-space:nowrap;
	padding-right:10px;
	padding-left:10px;
	padding-top:4px;
	padding-bottom:4px;
	border-radius:8px;
	border-color:grey;
	margin-bottom:4px;
	margin-left:auto;
	margin-right:auto;
}

.subMenuButton{
	border-bottom:1px solid black;
	border-radius:0px;
	border-color:grey;
	font-size:15px;
	font-weight:bold;
	height:35px;
	line-height:27px;
	text-transform:uppercase;
	text-decoration:none;
	padding-top:3px;
	padding-bottom:3px;
	padding-left:10px;
	padding-right:20px;
	float:left;
	display:inline;
	margin-left:0px;
	cursor:pointer;
}

.pagetitle {
	margin:10px 15px 15px;
	font-size:18px;
	font-weight:400;
	color: #FFF;
	float:left;
	text-transform:uppercase;
	text-shadow:0px 1px 1px #949090;
	padding-left:10px;
	max-width:50%;
	display:inline;
}

.pagetitle  > a, .pagetitle > i   {
	margin:10px 15px 15px;
	color: rgba(255, 255, 255, 1);
	font-size:18px;
	font-weight:400;
	vertical-align: baseline;
	display:inline;
	/*font-weight:500;*/
}

.pagebutton{
	background-color:var(--main-highlight-color);
	color:#FFF;
	height:35px;
	line-height:27px;
	padding-top:3px;
	padding-bottom:3px;
	padding-left:5px;
	padding-right:5px;
	float:left;
	display:inline;
	margin-left:5px;
	margin-right:5px;
	text-transform: uppercase;
}

.pagebutton > a {
	font-size:28px;
}
.pagebutton i {
	text-shadow:0px 2px 2px #333;
	color: rgba(255, 255, 255, 1);
	font-size: 28px;
	margin-left:10px;
}
.pageheader > .pagebutton {
	float:right;
	margin-left:10px;
}

.divEffect{
	background-color:#eee;
	background: -moz-linear-gradient(top, var(--main-highlight-color), #FFFFFF);
	background: -webkit-gradient(linear, left top, left bottom, from(var(--main-highlight-color)), to(#FFFFFF));
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#eee, endColorstr=#999, GradientType=1)";
	filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#CBC8CF', EndColorStr='#FFFFFF', GradientType=0);
	height:90px;
	margin:0px;
	margin-top:20px;
	z-index:-2;
	position:absolute;
	width:100%;
	top:0px;
	left:0px;
}

.divEffectDark {
	z-index:-1;
	width:25px;
	height:280px;
	position:absolute;
	top:0px;
	left:0px;
	background: -moz-linear-gradient(top, var(--main-highlight-color), #FFFFFF);
	background: -webkit-gradient(linear, left top, left bottom, from(var(--main-highlight-color)), to(#FFFFFF));
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=var(--main-highlight-color), endColorstr=#FFFFFF, GradientType=1)";
	filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='var(--main-highlight-color)', EndColorStr='#FFFFFF', GradientType=0);
}

.footer {
	font-family: Arial, Helvetica, sans-serif;
	padding-top:20px;
	color:#000000;
	bottom:0;
	width:100%;
	height:40px;
	text-align:center;
	font-weight:bold;
	background-color: rgb(160, 160, 160);
	
}

.scrollingDiv {
	width:100%;
	max-height:550px;
	overflow-y: auto;
	overflow-x: hidden;
	padding:0px;
	margin:0px;
}


.alertDiv {
	position:fixed;
	visibility:hidden;
	bottom:80px;
	right:20px;
	background: rgba(205,97,85,1);
	color:white;
	width:450px;
	min-height:75px;
	z-index:30;
	padding:5px 5px 30px 20px;
	transition:visibility 600ms, width 500ms;
}

.searchDiv {
	position:fixed;
	top:20px;
	margin:10px !important;
	right:50px;
	background: white;
	min-height:75px;
	min-width:400px;
	border:1px solid black;
}

.alertDiv > .text-right > .material-symbols-rounded {
	color:white;
}
.title-row > .material-icons {
	color:white;
}

.alertDivFade {
	visibility:hidden;
}
.noticeDiv {
	color:black;
	background: rgba(217, 232, 204,1);
}

.popupDiv {
	position:fixed;
	visibility:hidden;
	/*display:none;*/
	top:0px;
	right:0;
	background-color: rgb(255, 255, 255);
	border-left:1px solid black;
	width:50px;
	height:100vh;
	z-index:20;
	padding:65px 5px 30px 20px;
	overflow:auto;
	transition:visibility 0ms, background-color 250ms, width 250ms;
	/*transition:display 0ms, background-color 250ms, width 250ms;*/
}

.popupDivFade {
	/*padding:15px;*/
	width:440px;
	position:fixed;
	/*display:inline-block;*/
	visibility:visible;
	background: rgba(255,255,255,1);
}


.popupDivLarge {
	position:fixed;
	width:800px;
	visibility:visible;
	display:inline-block;
	background: rgba(255,255,255,1);
}

.popupDivHeader {
	position:relative;
	margin:18px 0px 18px 0px;
	/*border:1px solid black;*/
}

.popupDivHeader > .left {
	font-size:24px;
	font-weight:550;
	text-align:left;
	float:left;
}
.popupDivHeader > .right {
	font-size:30px;
	font-weight:650;
	text-align:left;
	float:right;
}


/*# START TOGGLE SWITCH */
.cmn-toggle {
position: absolute;
visibility: hidden;
display: none;
}
.cmn-toggle + label {
display: block;
position: relative;
cursor: pointer;
outline: none;
user-select: none;
}

input.cmn-toggle-round-flat + label {
padding: 2px;
width: 70px;
height: 30px;
background-color: #dddddd;
border-radius: 30px;
transition: background 0.3s;
}
input.cmn-toggle-round-flat + label:before,
input.cmn-toggle-round-flat + label:after {
display: block;
position: absolute;
content: "";
}
input.cmn-toggle-round-flat + label:before {
top: 2px;
left: 2px;
bottom: 2px;
right: 2px;
background-color: #fff;
border-radius: 30px;
transition: background 0.4s;
}
input.cmn-toggle-round-flat + label:after {
top: 4px;
left: 4px;
bottom: 4px;
width: 30px;
background-color: #dddddd;
border-radius: 30px;
transition: margin 0.4s, background 0.4s;
}
input.cmn-toggle-round-flat:checked + label {
background-color: #8ce196;
}
input.cmn-toggle-round-flat:checked + label:after {
margin-left: 35px;
background-color: #8ce196;
}
/*# END TOGGLE */

.clock {
	font-size: 90px;
	width: 80%;
	/*margin: 200px;*/
	text-align: center;
	/*border: 2px solid black;*/
	border-radius: 20px;
}

.combo {position:relative;width:190px;text-align:left;padding:0;margin:0;}
.combo * {padding:0;margin:0;}
.combo label {display:block;float:left;width:92px;text-align:right;}
.combo input {width:92px; background-color:#cfc;height:1.5em;z-index:0;}
.combo ul {padding:1px;border:2px solid #ccc;width: 89px;background-color:#cfc;position:absolute;right:3px;top:1.5em;display:none;z-index:1;}
.combo li {display:block; width: 100%;}
/* days option */
.days_option ul { list-style: none; }
.days_option ul li {
	width: 100px;
	float: left;
	height: 35px; 
} 
.days_option ul li input[type="checkbox"] { height: 8px; width: 8px;display: inline;}
.days_option_container { height:70px;}
.send_fensa_btn { margin-top:20px;text-align: center; }
.send_fensa_btn a { padding: 6px 30px; text-decoration: none;text-align: center;}
.quoteregistertable th:after { content:none !important;}
.abbrev_name {width: 24px;height: 24px;background: #999999;color: #fff;text-align: center;vertical-align: middle;border-radius: 50%;line-height: 24px;}

.modal-header > div {
	text-transform: uppercase !important;
	font-weight: bold !important;
	font-size: 18px !important;
}

.error {
	border: solid 1px red !important;
}

.error:focus {
	border: solid 1px red !important;
	box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25) !important;
}

.sbpri {
	transform: scale(1.1);
	background: rgba(var(--bs-info-rgb),var(--bs-bg-opacity)) !important;
}

.sbselfilotherbins,
.sbselfilquicklist,
.sbselfilreceivelist,
.sbselfiljoblist,
.sbselfilsep {
	margin: 5px 0px;
	text-transform: uppercase;
	font-size: 1.15rem !important;
}

.sbselfilotherbins > option,
.sbselfilquicklist > option,
.sbselfilreceivelist > option,
.sbselfiljoblist > option,
.sbselfilsep > option {
	text-transform: initial;
	font-size: 1.05rem !important;
	padding-left: 2.5rem !important;
}

.sbselfilquicklist {
	color: darkorange !important;
	font-weight: bold;
}

.sbselfilreceivelist {
	color: darkgreen !important;
	font-weight: bold;
}

.sbselfiljoblist {
	color: darkcyan !important;
	font-weight: bold;
}

.sbselfilquicklist .sbselfilsep {
	background: darkorange !important;
}

.sbselfilreceivelist .sbselfilsep {
	background: darkgreen !important;
}

.sbselfiljoblist .sbselfilsep {
	background: darkcyan !important;
}

.filtered_list option {
	padding: 5px 0px;
}

.breadcrumb-chevron .breadcrumb-item { display: flex;gap: inherit;align-items: center;padding-left: 0;line-height: 1; }
.breadcrumb-chevron .breadcrumb-item::before { gap: inherit;float: none;width: 1rem;height: 1rem;}
.breadcrumb-custom .breadcrumb-item { position: relative;flex-grow: 1;padding: .75rem 3rem;}
.breadcrumb-custom .breadcrumb-item::before {display: none;}
.breadcrumb-custom .breadcrumb-item::after { position: absolute;top: 50%;right: -25px;z-index: 1;display: inline-block;width: 50px;height: 50px;margin-top: -25px;content: "";background-color: inherit;border-top-right-radius: .5rem;box-shadow: 1px -1px currentcolor;transform: scale(.707) rotate(45deg); }
.breadcrumb-custom .breadcrumb-item:first-child { padding-left: 1.5rem; }
.breadcrumb-custom .breadcrumb-item:last-child { padding-right: 1.5rem; }
.breadcrumb-custom .breadcrumb-item:last-child::after {display: none;}
