/* Core styles shared across all pages using Vega templates.
 * Keep this file as basic/small as possible!
 *
 * NOTES:
 *  - Validate most changes using CSS LINT [http://csslint.net/]
 *
 *  - Avoid [!important] most of the time!
 *    If it is needed, then something is probably designed incorrectly.
 */

:root {
	/* variable colors (used in other CSS files so check before renaming/removing */
	--msb-color-active: #00B533;
	--msb-color-inactive: #6c757d;
	--msb-color-slategray: #5f6982;
	--msb-color-gold: #DAA520;
	--msb-color-lightblue: #E1F3F7;
}

html {
	font-size: 100%; /* important for [rem] styling */
	height: 100%;
}
body {
	font-family: "Inter",Roboto,Arial,sans-serif;
	font-size: 1rem; /* Vega components render with a larger font...*/
    line-height: normal;
}

/* This is IMPORTANT for Vega Modals because they clash with Bootstrap 5 Modals.
   Without this, the backdrop is basically black. The color is taken from
   Vega CSS .v-bg-backdrop-modal

   Vega popver backdrops - background-color: rgba(var(--v-bg-backdrop-popover, 32, 54, 69, 0.16));
*/
.modal-backdrop {
	background-color: rgba(18, 18, 39, 0.85);
}
.modal-backdrop.show { /* Bootstrap modal uses [show], stack above Vega */
	z-index: 10002 !important;
}
.modal-backdrop.bg-backdrop-popover {
    background-color: rgba(var(--v-bg-backdrop-popover, 32, 54, 69, 0.16));
}

/*
  Stacking (z-index) corrections for bootstrap modals and other popovers
   vega-left-nav z-index: 10002
   bootstrap modal z-index: 1055
   .webui-popover z-index: 9999;
*/
body.modal-open .modal,
.webui-popover,
.popover,
.select2-container--open {
	z-index: 10003 !important;
}

.vega-top-z-index { z-index: 10003; }
.vega-overlay-z-index { z-index: 10004; }

/* Modeled after Bootstrap [stretched-link] without the z-index */
.v-stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}


/* Branding */
.msb-brand {
	display: block;
	max-width: 100%;
	width: 80px;
}
.studentpayplus-branding .msb-brand { width: 100px; }
.kaleida-branding .msb-brand.brand-inline { width: 70px; }
.kaleida-branding.studentpayplus-branding .msb-brand.brand-inline { width: 80px; }
.msb-kaleida-brand {
	display: block;
	max-width: 100%;
	width: 65px;
	margin-bottom: 4px;
}
.msb-brand img,
.msb-kaleida-brand img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: auto;
}
.msb-kaleida-brand-icon {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	margin-right: 8px;
}
.msb-kaleida-brand-icon img {
	width: 25px;
	max-width: 100%;
	max-height: 100%;
	height: auto;
}
@media (min-width: 768px) {
	.msb-brand { width: 100px; }
	.studentpayplus-branding .msb-brand { width: 120px; }
	.kaleida-branding .msb-brand.brand-inline { width: 90px; }
	.kaleida-branding.studentpayplus-branding .msb-brand.brand-inline { width: 100px; }
	.msb-kaleida-brand {
		width: 80px;
		margin-bottom: 8px;
	}
	.msb-kaleida-brand-icon img { width: 34px; }
}

.msb-body-layout {
    min-height: 100vh;
	background-image: url('/images/bg/bg-vega-blur.avif');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
}
.vega-left-nav-content.open {
	margin-left: 300px;
}

.msb-vega-content-wrapper {
	font-size: 0.875rem;
	min-height: 40vh;
}
.msb-vega-content-wrapper h1, .msb-vega-content-wrapper .h1 { font-size: 2rem; }
.msb-vega-content-wrapper h2, .msb-vega-content-wrapper .h2 { font-size: 1.75rem; }
.msb-vega-content-wrapper h3, .msb-vega-content-wrapper .h3 { font-size: 1.5rem; }
.msb-vega-content-wrapper h4, .msb-vega-content-wrapper .h4 { font-size: 1.35rem; }
.msb-vega-content-wrapper h5, .msb-vega-content-wrapper .h5 { font-size: 1.15rem; }

/* A hacky way to add another Vega breakpoint at 1280px */
@media (min-width: 1280px) {
	.LX\:v-block { display:block; }
	.LX\:v-block { display:block; }
	.LX\:v-inline-block { display:inline-block; }
	.LX\:v-inline { display:inline; }
	.LX\:v-flex { display:flex; }
	.LX\:v-inline-flex { display:inline-flex; }
	.LX\:v-grid { display:grid; }
	.LX\:v-inline-grid { display:inline-grid; }
	.LX\:v-hidden { display:none; }
	.LX\:v-justify-start { justify-content:flex-start; }
	.LX\:v-justify-end { justify-content:flex-end; }
	.LX\:v-justify-center { justify-content:center; }
	.LX\:v-justify-between { justify-content:space-between; }
	.LX\:v-justify-around { justify-content:space-around; }
}

/* Bootstrap 5 nav-underline re-styling */
.msb-body-layout .nav-underline {
	border-bottom: 1px solid rgba(var(--v-border-divider-secondary));
}
.msb-body-layout .nav-underline .nav-link {
	color: rgba(var(--v-text-primary));
	padding-left: 6px;
	padding-right: 6px;
}
.msb-body-layout .nav-underline .nav-link.active,
.msb-body-layout .nav-underline .show > .nav-link {
	font-weight: 500;
	color: rgba(var(--v-text-link));
	border-bottom-color: rgba(var(--v-text-link));
}
.msb-body-layout .nav-underline .nav-link.active,
.msb-body-layout .nav-underline .nav-link:focus,
.msb-body-layout .nav-underline .show > .nav-link {
	outline: 0;
}

.msb-body-layout .nav-underline .nav-link.has-error {
	color: rgba(230, 50, 87, 1);
	/*border-bottom-color: rgba(230, 50, 87, 1);*/
}

/* Required Notice & Marker */
.msb-body-layout .row.required label:not(.no-required-icon)::after,
.msb-body-layout .form-group.required label:not(.no-required-icon)::after,
.msb-body-layout .msbv-edit-item.required label:not(.no-required-icon)::after,
.msb-body-layout .required-field > th::after {
    font-family: 'Font Awesome 7 Pro';
    content: "\f005";
    font-size: 7px;
    font-weight: 900;
    position: relative;
    float: none;
    padding-left: 2px;
	color: #C46A68;
	vertical-align: top;
}
.msb-body-layout .required-field-symbol::after {
    font-family: 'Font Awesome 7 Pro';
    content: "\f005";
    font-size: 9px;
    font-weight: 900;
    font-style: normal;
    position: relative;
    top: -5px;
    padding:0 3px;
	color: #C46A68;
}
.msb-body-layout label.required-notice {
	font-size: 12px;
}
.msb-body-layout label.required-notice:before {
    font-family: 'Font Awesome 7 Pro';
    content: "\f005";
    font-size: 7px;
	font-weight: 900;
    position: relative;
    float: left;
    padding-right:5px;
    margin-top:2px;
	color: #C46A68;
}
.msb-body-layout .disable-required .required label::after { display: none !important; }
.msb-body-layout .disable-required .required-notice { opacity: 0.5 !important; }


/* Custom Responsive Tab styling */
.msb-responsive-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem;
}
.msb-responsive-tabs a.nav-link {
	white-space: nowrap;
}

/* Bootstrap 5 btn-outline-primary with initial color black, but other colors stay the same (like hover, focus...) */
.btn-outline-primary.initial-black {
	/* Set initial text and border color to black */
	--bs-btn-color: #000;

	/* Keep hover background and border as primary (blue) * /
	--bs-btn-hover-color: #fff;

	/* Active/Pressed state * /
	--bs-btn-active-color: #fff;
	/* */
}
.hover-text-white:hover {
	color: #fff !important;
}

/* custom select list (i.e. MsbClient...) */
.msb-vega-select-list {
	font-size: 0.85rem;
	min-height: 20vh;
	resize: vertical;
	overflow-y: auto; }
	.msb-vega-select-list.short { height: 20vh; }
	.msb-vega-select-list.medium { height: 30vh; }
	.msb-vega-select-list.tall { height: 40vh; }
	.msb-vega-select-list.full { height: 100%; }
	.msb-vega-select-list:not(.no-select) li:not(.none-found):not(li *)::before, /*:not(li *) not a descendent of li, skip sub li items */
	.msb-vega-select-list:not(.no-select) li:not(.none-found):not(li *).checked::before {
	    font-family: 'Font Awesome 7 Pro';
	    font-size: 1rem;
	    position: relative;
	    float: left;
	    margin-right: 7px;
	}
	.msb-vega-select-list:not(.no-select) li:not(.checked).disabled::before {
	    content: "\f05e"; /*f05e ban*/
	}
	.msb-vega-select-list:not(.no-select) li:not(.none-found):not(li *)::before {
	    content: "\f111"; /*fa-circle*/
	}
	.msb-vega-select-list:not(.no-select) li:not(.none-found):not(li *).checked::before {
	    content: "\f058"; /*fa-circle-check*/
	    color: var(--bs-primary, #005DE9) !important;
	    font-weight: 900;
	}
	.msb-vega-select-list:not(.no-select) li:not(.none-found):not(li *).checked {
		font-weight: 500;
	}
	.msb-vega-select-list li:not(li *) {
		display: flex;
		align-items: center;
	    justify-content: flex-start;
	}



/* Hides from UI but allow screen readers to pick it up  */
.off-screen {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Spinners */
@-webkit-keyframes circleSpin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}
@keyframes circleSpin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}
.opaq-spin { opacity: 0.5 !important; }
.opaq-spin::after {
	content:'';
	display:block;
	position:absolute;
	left:48%;top:48%;
	width:40px;height:40px;
	border-style:solid;
	border-color: #343a40;
	border-top-color:transparent;
	border-width: 4px;
	border-radius:50%;
	-webkit-animation: circleSpin .8s linear infinite;
	animation: circleSpin .8s linear infinite;
}


/* Generic/General Classes */
.cursor-default { cursor: default !important; }
.cursor-not-allowed { cursor: not-allowed !important; }
.cursor-pointer { cursor: pointer; }
.cursor-crosshair { cursor: crosshair; }
.cursor-move { cursor: move; }
.cursor-wait { cursor: wait  !important; }

.display-none { display: none; }
.display-none-i { display: none !important; }

.font-size-micro { font-size: 0.35rem; }
.font-size-micro-i { font-size: 0.35rem !important; }
.font-size-tiny { font-size: 0.5rem; }
.font-size-tiny-i { font-size: 0.5rem !important; }
.font-size-little { font-size: 0.65rem; }
.font-size-littler { font-size: 0.6rem; }
.font-size-smallest { font-size: 0.7rem; }
.font-size-smallest-i { font-size: 0.7rem !important; }
.font-size-smaller { font-size: 0.75rem; }
.font-size-smaller-i { font-size: 0.75rem !important; }
.font-size-small { font-size: 0.85rem; }
.font-size-small-i { font-size: 0.85rem !important; }
.font-size-medium { font-size: 0.9rem; }
.font-size-medium-i { font-size: 0.9rem !important; }
.font-size-normal { font-size: 1rem; }
.font-size-normal-i { font-size: 1rem !important; }
.font-size-moderate { font-size: 1.1rem; }
.font-size-moderate-i { font-size: 1.1rem !important; }
.font-size-large { font-size: 1.25rem; }
.font-size-large-i { font-size: 1.25rem !important; }
.font-size-xlarge { font-size: 1.5rem; }
.font-size-xlarge-i { font-size: 1.5rem !important; }
.font-size-xxlarge { font-size: 1.75rem; }
.font-size-xxlarge-i { font-size: 1.75rem !important; }
.font-size-jumbo { font-size: 2.5rem; }
.font-size-jumbo-i { font-size: 2.5rem !important; }
.font-size-giant { font-size: 3.5rem; }
.font-size-giant-i { font-size: 3.5rem !important; }

.font-weight-medium, .fw-nearbold, .fw-nearbold-active.active { font-weight: 500; }

.no-focus-outline:focus { outline: 0; }

/* Force child elements to have a font size.
 * Be careful with these, they should only be used when displaying
 * something like client provided HTML descriptions and we need to
 * limit the sizes. Especially headers (h1,h2...)
 */
.font-size-tiny-plus, .font-size-tiny-plus *  { font-size: 0.5rem !important; }
.font-size-little-plus, .font-size-little-plus *  { font-size: 0.65rem !important; }
.font-size-small-plus, .font-size-small-plus *  { font-size: 0.85rem !important; }
.font-size-medium-plus, .font-size-medium-plus * { font-size: 0.9rem !important; }


/* Generic/General Classes - Colors */
.color-inherit, .color-inherit:hover { color: inherit; }
.color-inherit-i, .color-inherit-i:hover { color: inherit !important; }

/* Named colors */
.color-darkolivegreen { color: DarkOliveGreen; }
.color-darkolivegreen-i { color: DarkOliveGreen !important; }
.bg-color-darkolivegreen { background-color: DarkOliveGreen; }
.bg-color-darkolivegreen-i { background-color: DarkOliveGreen !important; }

.color-tomato { color: Tomato; }
.color-tomato-i { color: Tomato !important; }
.bg-color-tomato { background-color: Tomato; }
.bg-color-tomato-i { background-color: Tomato !important; }

.color-dodgerblue { color: DodgerBlue; }
.color-dodgerblue-i { color: DodgerBlue !important; }
.bg-color-dodgerblue { background-color: DodgerBlue; }
.bg-color-dodgerblue-i { background-color: DodgerBlue !important; }

.color-orange { color: Orange; }
.color-orange-i { color: Orange !important; }
.bg-color-orange { background-color: Orange; }
.bg-color-orange-i { background-color: Orange !important; }


.text-select-none { user-select: none; }
.text-overline { text-decoration: overline; }
.text-line-through { text-decoration: line-through; }
.text-underline { text-decoration: underline; }
.text-overflow-ellipsis { overflow: hidden; text-overflow: ellipsis !important; }
.text-with-ellipsis {
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}
.word-wrap-break-word { word-wrap: break-word !important; }
.word-break-break-all { word-break: break-all !important; }
.word-break-break-word { word-break: break-word !important; }
.word-break-normal { word-break: normal !important; }



/* width/height helpers */
.w-80 { width: 80% !important; }
.w-85 { width: 85% !important; }
.w-90 { width: 90% !important; }
.w-95 { width: 95% !important; }

.mnh-50 { min-height: 50px; }
	.mnh-50-i { min-height: 50px !important; }
.mnh-75 { min-height: 75px; }
	.mnh-75-i { min-height: 75px !important; }
.mnh-100 { min-height: 100px; }
	.mnh-100-i { min-height: 100px !important; }
.mnh-200 { min-height: 200px; }
	.mnh-200-i { min-height: 200px !important; }
.mnh-225 { min-height: 225px; }
	.mnh-225-i { min-height: 225px !important; }
.mnh-250 { min-height: 250px; }
	.mnh-250-i { min-height: 250px !important; }
.mnh-300 { min-height: 300px; }
	.mnh-300-i { min-height: 300px !important; }
.mnh-350 { min-height: 350px; }
	.mnh-350-i { min-height: 350px !important; }
.mnh-400 { min-height: 400px; }
	.mnh-400-i { min-height: 400px !important; }
.mnh-500 { min-height: 500px; }
	.mnh-500-i { min-height: 500px !important; }

.mnw-none { min-width: none; }
	.mnw-none-i { min-width: none !important; }
.mnw-25 { min-width: 25px; }
	.mnw-25-i { min-width: 25px !important; }
.mnw-35 { min-width: 35px; }
	.mnw-35-i { min-width: 35px !important; }
.mnw-50 { min-width: 50px; }
	.mnw-50-i { min-width: 50px !important; }
.mnw-75 { min-width: 75px; }
	.mnw-75-i { min-width: 75px !important; }
.mnw-100 { min-width: 100px; }
	.mnw-100-i { min-width: 100px !important; }
.mnw-125 { min-width: 125px; }
	.mnw-125-i { min-width: 125px !important; }
.mnw-130 { min-width: 130px; }
	.mnw-130-i { min-width: 130px !important; }
.mnw-150 { min-width: 150px; }
	.mnw-150-i { min-width: 150px !important; }
.mnw-175 { min-width: 175px; }
	.mnw-175-i { min-width: 175px !important; }
.mnw-200 { min-width: 200px; }
	.mnw-200-i { min-width: 200px !important; }
.mnw-225 { min-width: 225px; }
	.mnw-225-i { min-width: 225px !important; }
.mnw-250 { min-width: 250px; }
	.mnw-250-i { min-width: 250px !important; }
.mnw-275 { min-width: 275px; }
	.mnw-275-i { min-width: 275px !important; }
.mnw-300 { min-width: 300px; }
	.mnw-300-i { min-width: 300px !important; }
.mnw-325 { min-width: 325px; }
	.mnw-325-i { min-width: 325px !important; }
.mnw-350 { min-width: 350px; }
	.mnw-350-i { min-width: 350px !important; }
.mnw-500 { min-width: 500px; }
	.mnw-500-i { min-width: 500px !important; }

.mxw-none { max-width: none; }
	.mxw-none-i { max-width: none !important; }
.mxw-25 { max-width: 25px; }
	.mxw-25-i { max-width: 25px !important; }
.mxw-50 { max-width: 50px; }
	.mxw-50-i { max-width: 50px !important; }
.mxw-75 { max-width: 75px; }
	.mxw-75-i { max-width: 75px !important; }
.mxw-100 { max-width: 100px; }
	.mxw-100-i { max-width: 100px !important; }
.mxw-125 { max-width: 125px; }
	.mxw-125-i { max-width: 125px !important; }
.mxw-150 { max-width: 150px; }
	.mxw-150-i { max-width: 150px !important; }
.mxw-175 { max-width: 175px; }
	.mxw-175-i { max-width: 175px !important; }
.mxw-200 { max-width: 200px; }
	.mxw-200-i { max-width: 200px !important; }
.mxw-225 { max-width: 225px; }
	.mxw-225-i { max-width: 225px !important; }
.mxw-250 { max-width: 250px; }
	.mxw-250-i { max-width: 250px !important; }
.mxw-275 { max-width: 275px; }
	.mxw-275-i { max-width: 275px !important; }
.mxw-300 { max-width: 300px; }
	.mxw-300-i { max-width: 300px !important; }
.mxw-325 { max-width: 325px; }
	.mxw-325-i { max-width: 325px !important; }
.mxw-350 { max-width: 350px; }
	.mxw-350-i { max-width: 350px !important; }
.mxw-400 { max-width: 400px; }
	.mxw-400-i { max-width: 400px !important; }
.mxw-500 { max-width: 500px; }
	.mxw-500-i { max-width: 500px !important; }
.mxw-768 { max-width: 768px; }
	.mxw-768-i { max-width: 768px !important; }
.mxw-1024 { max-width: 1024px; }
	.mxw-1024-i { max-width: 1024px !important; }
.mxw-1200 { max-width: 1200px; }
	.mxw-1200-i { max-width: 1200px !important; }
.mxw-1440 { max-width: 1440px; }
	.mxw-1440-i { max-width: 1440px !important; }
.mxw-1680 { max-width: 1680px; }
	.mxw-1680-i { max-width: 1680px !important; }
.mxw-1920 { max-width: 1920px; }
	.mxw-1920-i { max-width: 1920px !important; }

.mnvw-40 { min-width: 40vw; }
	.mnvw-40-i { min-width: 40vw !important; }
.mnvw-50 { min-width: 50vw; }
	.mnvw-50-i { min-width: 50vw !important; }
.mnvw-60 { min-width: 60vw; }
	.mnvw-60-i { min-width: 60vw !important; }
.mnvw-75 { min-width: 75vw; }
	.mnvw-75-i { min-width: 75vw !important; }

.mxvw-25 { max-width: 25vw; }
	.mxvw-25-i { max-width: 25vw !important; }
.mxvw-50 { max-width: 50vw; }
	.mxvw-50-i { max-width: 50vw !important; }

.mnvh-30 { min-height: 30vh; }
	.mnvh-30-i { min-height: 30vh !important; }
.mnvh-40 { min-height: 40vh; }
	.mnvh-40-i { min-height: 40vh !important; }
.mnvh-50 { min-height: 50vh; }
	.mnvh-50-i { min-height: 50vh !important; }
.mnvh-60 { min-height: 60vh; }
	.mnvh-60-i { min-height: 60vh !important; }

.mnvh-75 { min-height: 75vh; }
	.mnvh-50-i { min-height: 75vh !important; }

.mxvh-30 { max-height: 30vh; }
	.mxvh-30-i { max-height: 30vh !important; }
.mxvh-40 { max-height: 40vh; }
	.mxvh-40-i { max-height: 40vh !important; }
.mxvh-50 { max-height: 50vh; }
	.mxvh-50-i { max-height: 50vh !important; }

.mxh-200 { max-height: 200px; }
	.mxh-200-i { max-height: 200px !important; }
.mxh-250 { max-height: 250px; }
	.mxh-250-i { max-height: 250px !important; }
.mxh-260 { max-height: 260px; }
	.mxh-260-i { max-height: 260px !important; }
.mxh-300 { max-height: 300px; }
	.mxh-300-i { max-height: 300px !important; }

/* Overflows */
.overflow-auto { overflow: auto !important; }
.overflow-x-auto { overflow-x: auto !important; }
.overflow-x-hidden { overflow-x: hidden !important; }
.overflow-x-scroll { overflow-x: scroll !important; }
.overflow-hidden { overflow: hidden !important; text-overflow: ellipsis; }
.overflow-y-auto { overflow-y: auto !important; }
.overflow-y-visible { overflow-y: visible !important; }
.overflow-y-hidden { overflow-y: hidden !important; }
.overflow-y-scroll { overflow-y: scroll !important; }
.overflow-scroll { overflow: scroll !important; }
.overflow-visible { overflow: visible !important; }


/* Hover Effects */
.hover-bg-white:hover, .hover-bg-white:focus {
	background-color: #ffffff !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* ScrollUp plugin target.
 * Not a good idea to use IDs in selectors but the scrollup plugin has no other options.
 */
#scrollUp {
    background-color: #777;
    border-radius: 0;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    bottom: 100px;
    right: 15px;
    opacity: 0.7;
    z-index: 999 !important; /* Set to 999 to put behind bootstrap modals, chat components, etc... */
}
@media (min-width: 768px) {
	#scrollUp {
		bottom: 110px;
	}
}

/* NOTE Box - uses bootstrap variables if available */
.note-box {
	position: relative;
	padding: 0.5rem;
	border: 1px solid #DEE2E7;
	border-left-width: 5px;
	border-radius: 0.25rem;
	background-color: #f8f9fa;
	background-color: var(--bs-light); }
	.note-box.square { border-radius: 0 !important; }
	.note-box .note-header {
		padding-bottom: 0.5rem;
		font-weight: 600; }
	.note-box.primary .note-header { color: #005DE9; color: var(--bs-primary); }
	.note-box.secondary .note-header { color: #6c757d; color: var(--bs-secondary); }
	.note-box.success .note-header { color: #218739; color: var(--bs-success); }
	.note-box.warning .note-header { color: #ffc107; color: var(--bs-warning); }
	.note-box.danger .note-header { color: #dc3545; color: var(--bs-danger); }
	.note-box.info .note-header { color: #17a2b8; color: var(--bs-info); }

	.note-box.primary { border-left-color: #005DE9; border-left-color: var(--bs-primary); }
	.note-box.secondary { border-left-color: #6c757d; border-left-color: var(--bs-secondary); }
	.note-box.success { border-left-color: #218739; border-left-color: var(--bs-success); }
	.note-box.warning { border-left-color: #ffc107; border-left-color: var(--bs-warning); }
	.note-box.danger {  border-left-color: #dc3545; border-left-color: var(--bs-danger); }
	.note-box.info {  border-left-color: #17a2b8; border-left-color: var(--bs-info); }


/* Client Announcements */
.client-announcement p { margin-top: 0; margin-bottom: 0.35rem; }
.client-announcement h1 { font-size: 1.25rem; }
.client-announcement h2 { font-size: 1.15rem; }
.client-announcement h3 { font-size: 0.9rem; }
.client-announcement h4 { font-size: 0.8rem; }
.client-announcement h5 { font-size: 12px; }
.client-announcement h6 { font-size: 11px; }
.client-announcement li { font-size: 0.75rem; }
@media (min-width: 768px) {
	.client-announcement h1 { font-size: 1.35rem; }
	.client-announcement h2 { font-size: 1.25rem; }
	.client-announcement h3 { font-size: 1rem; }
	.client-announcement h4 { font-size: 0.85rem; }
	.client-announcement h5 { font-size: 12px; }
	.client-announcement h6 { font-size: 11px; }
	.client-announcement li { font-size: 0.75rem; }
}

/* User provided HTML */
.user-html p { margin-top: 0; margin-bottom: 0.35rem; }
.user-html h1 { font-size: 1.25rem; }
.user-html h2 { font-size: 1.15rem; }
.user-html h3 { font-size: 0.9rem; }
.user-html h4 { font-size: 0.8rem; }
.user-html h5 { font-size: 12px; }
.user-html h6 { font-size: 11px; }
.user-html li { font-size: 0.75rem; }
.popover-user-html h1 { font-size: 18px; }
.popover-user-html h2 { font-size: 16px; }
.popover-user-html h3 { font-size: 14px; }
.popover-user-html h4 { font-size: 13px; }
.popover-user-html h5 { font-size: 12px; }
.popover-user-html h6 { font-size: 11px; }

/* Scrollbars that display in webkit browsers, add [webkit-scrollbar] class to page, modal, etc. */
.webkit-scrollbar ::-webkit-scrollbar {
	background: transparent;
	height: 8px;
	width: 8px; }
	.webkit-scrollbar ::-webkit-scrollbar-thumb {
		border: none;
		box-shadow: none;
		background: #dadce0;
		border-radius: 8px;
		min-height: 40px;
	}
	.webkit-scrollbar :hover::-webkit-scrollbar-thumb {
		background: #bdc1c6;
	}
	.webkit-scrollbar ::-webkit-scrollbar-thumb:hover {
		background: #bdc1c6;
	}
	.webkit-scrollbar ::-webkit-scrollbar-thumb:active {
		background: #80868b;
	}

/* MSB Vega Carousel - mostly from Bootstrap with custom settings */
.msb-vega-carousel-control-prev,
.msb-vega-carousel-control-next {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15%;
	padding: 0;
	color: #fff;
	text-align: center;
	background: none;
	border: 0;
	opacity: 0.5;
	transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
	.msb-vega-carousel-control-prev,
	.msb-vega-carousel-control-next {
		transition: none;
	}
}
.msb-vega-carousel-control-prev:hover, .msb-vega-carousel-control-prev:focus,
.msb-vega-carousel-control-next:hover,
.msb-vega-carousel-control-next:focus {
	color: #fff;
	text-decoration: none;
	outline: 0;
	opacity: 0.9;
}

.msb-vega-carousel-control-prev {
	left: 0;
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001));
}

.msb-vega-carousel-control-next {
	right: 0;
	background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001));
}

.msb-vega-carousel-control-prev-icon,
.msb-vega-carousel-control-next-icon {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100% 100%;
}

.msb-vega-carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='%23FFFFFF'%3E%3Cpath d='M0 0h20v20H0z' fill='none'/%3E%3Cpath d='M13.41 5.41L12 4l-6 6 6 6 1.41-1.41L8.83 10z'/%3E%3C/svg%3E");
}

.msb-vega-carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='%23fff'%3E%3Cpath d='M0 0h20v20H0V0z' fill='none'/%3E%3Cpath d='M8 4L6.59 5.41 11.17 10l-4.58 4.59L8 16l6-6-6-6z'/%3E%3C/svg%3E");
}
.msb-vega-carousel-control-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #000;
}

.msb-vega-carousel-control-prev,
.msb-vega-carousel-control-next {
	width: auto;
}

.msb-vega-carousel-control-prev {
	padding-left: 6px;
	padding-right: 20px;
}

.msb-vega-carousel-control-next {
	padding-left: 20px;
	padding-right: 6px;
}

@media (min-width: 1200px) {
	.msb-vega-carousel-control-prev {
		padding-left: 8px;
	}
	.msb-vega-carousel-control-next {
		padding-right: 8px;
	}
}


/* Bootstrap Dropdowns */
.dropdown-toggle.caret-off::before {
    display: none !important; }
	.dropdown-toggle.caret-off::after {
	    display: none !important;
	}

.dropdown-menu.with-icons {
	min-width: auto; }
	.dropdown-menu.with-icons > a,
	.dropdown-menu.with-icons > li > a {
		padding: 6px 16px;
		padding-right: 48px;
	}
	.dropdown-menu.with-icons > a .fas,
	.dropdown-menu.with-icons > a .fa-solid,
	.dropdown-menu.with-icons > a .far,
	.dropdown-menu.with-icons > a .fa-regular,
	.dropdown-menu.with-icons > li > a .fas,
	.dropdown-menu.with-icons > li > a .fa-solid,
	.dropdown-menu.with-icons > li > a .far,
	.dropdown-menu.with-icons > li > a .fa-regular {
		width: 20px;
		margin-right: 10px;
	}


/* Bootstrap Toggles */
.form-switch label {
	cursor: pointer; }
	.form-switch .form-check-input ~ .form-check-label {
		color: #343a40 !important;
		color: var(--bs-gray) !important;
	}
	.form-switch .form-check-input:checked ~ .form-check-label {
		color: #005DE9 !important;
		color: var(--bs-primary) !important;
	}

.form-switch.form-switch-lg .form-check-input {
	width: 3em;
	height: 1.75em;
}


/* Selected rows with optional border-arrow */
tr.selected-row > td { background-color: var(--bs-focus-ring-color); }
tr.selected-row.primary > td { background-color: var(--bs-primary-bg-subtle); }
tr.selected-row.secondary > td { background-color: var(--bs-secondary-bg-subtle); }
tr.selected-row.success > td { background-color: var(--bs-success-bg-subtle); }
tr.selected-row.warning > td { background-color: var(--bs-warning-bg-subtle); }
tr.selected-row.danger > td { background-color: var(--bs-danger-bg-subtle); }
tr.selected-row.info > td { background-color: var(--bs-info-bg-subtle); }
tr.selected-row.dark > td { background-color: var(--bs-dark-bg-subtle); }
tr.selected-row.arrow > td:last-child {
    position: relative;
    padding-right: 1rem;
}
tr.selected-row.arrow > td:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);

    width: 0;
    height: 0;

    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid rgba(var(--bs-light-rgb), 1);
}
tr.selected-row.arrow.primary > td:last-child::after { border-right-color: rgba(var(--bs-primary-rgb), 1); }
tr.selected-row.arrow.secondary > td:last-child::after { border-right-color: rgba(var(--bs-secondary-rgb), 1); }
tr.selected-row.arrow.success > td:last-child::after { border-right-color: rgba(var(--bs-success-rgb), 1); }
tr.selected-row.arrow.warning > td:last-child::after { border-right-color: rgba(var(--bs-warning-rgb), 1); }
tr.selected-row.arrow.danger > td:last-child::after { border-right-color: rgba(var(--bs-danger-rgb), 1); }
tr.selected-row.arrow.info > td:last-child::after { border-right-color: rgba(var(--bs-info-rgb), 1); }
tr.selected-row.arrow.dark > td:last-child::after { border-right-color: rgba(var(--bs-dark-rgb), 1); }



/* validation */
.input-group:has(.is-invalid) > .input-group-text {
    border-color: red;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
