


/*
 *	Show Breakpoints
==================================================== */

body.show-breakpoints {
	position: relative;
}

body.show-breakpoints::before {
	background-color: rgba(0,0,0,0.75);
	color: #fff;
	content: "xs";
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 500;
	left: 0;
	line-height: 1.5;
	padding: .5rem 1rem;
	position: fixed;
	text-transform: uppercase;
	top: 0;
	z-index: 10000;
}

@media screen and (min-width: 576px) {
	body.show-breakpoints::before {
		content: "sm";
	}
}

@media screen and (min-width: 768px) {
	body.show-breakpoints::before {
		content: "md";
	}
}

@media screen and (min-width: 992px) {
	body.show-breakpoints::before {
		content: "lg";
	}
}

@media screen and (min-width: 1200px) {
	body.show-breakpoints::before {
		content: "xl";
	}
}

@media screen and (min-width: 1400px) {
	body.show-breakpoints::before {
		content: "xxl";
	}
}




.auto-grid {
	--repeat-count: auto-fill;
	--min-width: min(220px, 100%);
	container-type: inline-size;
	display: grid;
	gap: 1rem;
	grid-auto-rows: auto;
}

.auto-grid.fill-space {
	--repeat-count: auto-fit;
}

@media (min-width: 768px) {

	.auto-grid {
		grid-template-columns: repeat(var(--repeat-count), minmax(var(--min-width), 1fr));
	}
}





/* BS5 .row */
.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	margin-top: calc(-1* var(--bs-gutter-y));
	margin-right: calc(-.5* var(--bs-gutter-x));
	margin-left: calc(-.5* var(--bs-gutter-x));
}

.row > * {
	padding-right: calc(var(--bs-gutter-x)* .5);
	padding-left: calc(var(--bs-gutter-x)* .5);
	margin-top: var(--bs-gutter-y);
}

.row.gutters {
	--bs-gutter-y: var(--bs-gutter-x);
}





app-root,
app-portal-layout,
app-portal-header,
app-portal-dashboard {
	display: block;
}



.div-login-right {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}



.menu-toggle {
	display: block;
	position: absolute;
	top: 0;
	right: 1rem;
	padding: 0.5rem;
	z-index: 2000;
}

@media (min-width: 768px) {
	.menu-toggle {
		display: none;
	}
}


body app-portal-sidebar .sidebar-menu {
	transform: translateX(-100%);
    transform-origin: 0 center;
    transition: transform 0.35s ease;
}

body.menu-open app-portal-sidebar .sidebar-menu {
	transform: translateX(0);
}

@media (min-width: 768px) {
	body app-portal-sidebar .sidebar-menu {
		transform: translateX(0);
	}
}

@media (max-width: 767.98px) {
	body app-portal-sidebar .portal-sidebar {
		left: 0px;
	}

	body.menu-open app-portal-sidebar .portal-sidebar {
		left: 40px;
	}

	body app-portal-sidebar:has(.admin-sidebar) .sidebar-menu,
	body app-portal-sidebar:has(.admin-sidebar) .portal-sidebar {
		transition: none;
	}
}

body.menu-open app-portal-sidebar {
	/*display: block;
	visibility: visible;*/
}

body.menu-open .admin-sidebar {
	transform: translateX(0);
}

body.menu-open .sidebar-logo-content {
	background: #31355b;
}


.portal-placeholder {
	/*margin-left: 262px;
	padding: 22px 10px 0px 0px !important;*/
	margin-left: 250px;
	padding: 22px 15px 0;
	/*overflow: hidden;/* required bc of neg margin 15 on row, this only pads for 10 */
}



/*.dashboard-content {
	padding-left: 125px;
}*/


@media (max-width: 767.98px) {

	/*.dashboard-content {
		padding-left: 0px;
	}

	.production-chart {
		padding-left: 0px;
	}*/

	.portal-placeholder {
		margin-left: 0;
		/*padding: 75px 20px 0;*/
		padding-inline: 20px;
	}

	app-portal-header ~ .portal-placeholder {
		padding-top: 50px;
	}
}

@media (min-width: 768px) {

	/*.production-chart {
		padding-left: 124px;
	}*/

	.portal-placeholder {
		margin-left: 60px;
	}

	.portal-placeholder.agent-layout {
		margin-left: 250px;
	}

	/*app-portal-header ~ .portal-placeholder {

	}*/

}


.clickable-row:hover > * {
	/*background-color: var(--border-color);*/
	background-color: rgba(108, 55, 211, .1);
	color: var(--link-color);
}


.nav-pills .nav-link:not(.active):hover,
.nav-pills .nav-link:not(.active):focus {
	background-color: rgba(108, 55, 211, .1);
}


.table-compact th, .table-compact td {
	padding: 0.3rem;
}

.thead-compact th {
	padding-block: 0.3rem;
}

.table.table-flush > :not(caption) > * > :first-child {
	padding-left: 1px;
}

.table.table-flush > :not(caption) > * > :last-child {
	padding-right: 1px;
}

.table .thead-primary th {
	background-color: var(--primary-color);
	/*border-color: #32383e;*/
	color: white;
}

.table > .border-top-0 > *:first-child > * {
	border-top: 0;
}

td[valign="middle"], th[valign="middle"] {
	vertical-align: middle !important;
}


.row:has(>*:only-child>.dataTable) {
	display: block;
	margin: 0;
}

.row:has(>*:only-child>.dataTable) > * {
	display: block;
	margin: 0;
	padding: 0;
}

*:has(>.dataTable) {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}




app-date-picker {
	display: block;
	width: 100%;
}

uk-app-date-picker input {
	min-width: 7.65em;
}




.form-control {
	height: auto;
}





.list-icons {
	list-style: none;
	padding-left: 0;
}

.list-icons > li {
	align-items: baseline;
	display: flex;
	font-weight: 400;
	gap: .25em;
	margin-bottom: .25em;
}

.list-icons > li > .icon:first-child,
.list-icons > li > img:first-child,
.list-icons > li > .fa:first-child,
.list-icons > li::before {
	/*margin: 0;
	padding-right: .5em;*/
	padding: 0;
	margin-right: .5em;
}

.list-icons > li > .fa:first-child,
.list-icons > li::before {
	min-width: 1.5em;
	text-align: center;
}

.list-icons > li.fa {
	font-family: inherit;
	line-height: inherit;
}

.list-icons > li[class*="fa-"]::before {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.list-icons > li:empty::before {
	display: none;
}




.claim-wizard-placeholder {
	margin-left: 290px;
}

@media (max-width: 768px) {
	.claim-wizard-placeholder {
		margin-left: 0;
	}
}


.claim-wizard-placeholder .container {
	max-width: none;
}

.claim-wizard-placeholder .container-fluid {
	padding-inline: 15px;
}

.admin-sidebar {
	z-index: 9998;
}

/*
*	Hybrid App Styles (body has the class 'hybrid-app')
*/
body.hybrid-app {
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}