:root {
	--blue: #007bff;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #dc3545;
	--orange: #fd7e14;
	--yellow: #ffc107;
	--green: #28a745;
	--teal: #20c997;
	--cyan: #17a2b8;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--primary: #007bff;
	--secondary: #6c757d;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #343a40;
}

html,
body {
	height: 100%;
}

body {
	background-color: var(--light);
	overflow-y: scroll;
}

body * {
	font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji",'symbola';
}

.header-logo {
	text-decoration: none;
}

.wrapper {
	display: flex;
	align-items: stretch;
	width: 100%;
	flex-direction: column;
	/* overflow: auto; */
}

.wrapper .sidebar-nav {
	padding-top: 6rem;
}


.wrapper .sidebar-nav {
	position: fixed;
	top: 0;
	left: -280px;
	min-width: 280px;
	max-width: 280px;
	height: 100vh;
	background-color: #293042;
	font-size: .875rem;
	color: #fff;
	overflow-y: auto;
	transition: margin-left .35s ease-in-out,left .35s ease-in-out,margin-right .35s ease-in-out,right .35s ease-in-out;
	z-index: 100;
}

.wrapper .sidebar-nav.collapse {
	left: 0;
	transition: left .35s ease-in-out,left .35s ease-in-out,margin-right .35s ease-in-out,right .35s ease-in-out;
}

@media (max-width: 991px){
	.wrapper{
		overflow: auto;
	}
}

@media (min-width: 1025px) {
	.wrapper .sidebar-nav {
		position: static;
		left: 0;
		height: auto;
		transition: margin-left .35s ease-in-out,left .35s ease-in-out,margin-right .35s ease-in-out,right .35s ease-in-out;
	}

	.wrapper .sidebar-nav.collapse {
		left: auto;
		margin-left: -280px;
		transition: margin-left .35s ease-in-out,left .35s ease-in-out,margin-right .35s ease-in-out,right .35s ease-in-out;
	}
}

.sidebar-nav a {
	color: var(--light);
	text-decoration: none;
}

.sidebar-nav ul {
	margin-bottom: 3rem;
}

.sidebar-nav li {
	margin-top: 1rem;
	margin-left: 1.5rem;
}

.wrapper main {
	display: flex;
	min-height: 100vh;
	/* width: 100%; */
	min-width: 0;
}

.dropdown-menu-wide {
	min-width: 18rem;
}
.container {
	max-width: 95vw;
	/*overflow: auto;*/
}
/* Limit width of .container-fluid */
.container-fluid-limit {
	max-width: 1440px;
}

.card-customer-btn {
	width: 45px;
	height: 45px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* initials profile name */
@media (max-width: 576px) {
	.u-initials:not(::first-letter) {
		display: none;
	}
}

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



/* KRise Additions */

.r-margin {
	margin-right: 20px;
}

div[control-type] > div[control-title] {
	font-size: 10px;
	font-weight: bold;
	font-size: 0.86em;
	color: #175E8E;
}

.text-field-wrap,
.button-field-wrap {
	border-radius: 8px;
	margin-top: 5px;
	position: relative;
	display: block;
	background-color: white;
	font-weight: normal;
}

.text-field-wrap:not(:first-child) {
	margin-top: 10px;
}

.text-field-wrap input,
.text-field-wrap textarea,
.text-field-wrap select {
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	margin: 0;
	background-color: inherit;
	box-sizing: border-box;
	font-weight: normal;
	color: #707070;
}

	.text-field-wrap input:disabled,
	.text-field-wrap textarea:disabled,
	.text-field-wrap select:disabled {
		background: rgba(0,0,0,0.05);
	}

.text-field-wrap select {
	background: url("../svgs/solid/caret-down.svg") top 50% right 5px no-repeat;
	background-size: 10px auto;
}

.text-field-wrap .label-text {
	position: absolute;
	display: block;
	top: 8px;
	left: 20px;
	font-weight: normal;
	background-color: inherit;
	opacity: 0.7;
	transition: all 200ms ease-in-out;
}

.text-field-wrap input:disabled + .label-text,
.text-field-wrap textarea:disabled + .label-text,
.text-field-wrap select:disabled + .label-text {
	background: none;
}

.text-field-wrap select + .label-text,
.text-field-wrap select option.label-option {
	display: none;
}

.text-field-wrap .helper-text {
	font-size: 0.86em;
	padding-left: 18px;
	opacity: 0.75;
}

.text-field-wrap input:focus,
.text-field-wrap textarea:focus,
.text-field-wrap select:focus {
	border: 1px solid #175E8E;
}

	.text-field-wrap.field-active input + .label-text,
	.text-field-wrap input:focus + .label-text,
	.text-field-wrap.field-active textarea + .label-text,
	.text-field-wrap textarea:focus + .label-text,
	.text-field-wrap.field-active select + .label-text,
	.text-field-wrap select:focus + .label-text {
		top: -0.75em;
		left: 16px;
		display: block;
		padding-left: 6px;
		padding-right: 6px;
		font-weight: bold;
		font-size: 0.86em;
		opacity: 1;
		color: #175E8E;
		background-color: #FFFFFF;
	}

/* Field With Icons */

.text-field-wrap.left-icon input,
.text-field-wrap.left-icon textarea,
.text-field-wrap.left-icon select {
	padding-left: 53px;
}

.text-field-wrap.left-icon .label-text {
	left: 53px;
}

.text-field-wrap.left-icon input:focus,
.text-field-wrap.left-icon textarea:focus,
.text-field-wrap.left-icon select:focus {
	padding-left: 52px;
}
/* Rules for sizing the icon. */
.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; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

.text-field-wrap .material-icons {
	position: absolute;
	top: 8px;
	left: 18px;
	font-size: calc(1em + 6px);
}

.text-field-wrap.right-icon input,
.text-field-wrap.right-icon textarea,
.text-field-wrap.right-icon select {
	padding-right: 53px;
}

	.text-field-wrap.right-icon input:focus,
	.text-field-wrap.right-icon textarea:focus,
	.text-field-wrap.right-icon select:focus {
		padding-right: 52px;
	}


.text-field-wrap .material-icons.left-icon{
	position: absolute;
	top: 8px;
	right: initial;
	left: 18px;
	font-size: calc(1em + 6px);
}
.text-field-wrap .material-icons.right-icon{
	position: absolute;
	top: 8px;
	right: 18px;
	left: initial;
	font-size: calc(1em + 6px);
}

.text-field-wrap.field-success  .material-icons.val-Icon {
	position: absolute;
	top: 8px;
	right: 18px;
	left: initial;
	font-size: calc(1em + 6px);
}

.text-field-wrap.field-error .material-icons.unval-Icon {
	position: absolute;
	top: 8px;
	right: 18px;
	left: initial;
	font-size: calc(1em + 6px);
}

.text-field-wrap.field-success .material-icons.unval-Icon {
	display: none;
}

.text-field-wrap.field-error .material-icons.val-Icon {
	display: none;
}

/* Field Success */

.text-field-wrap.field-success input,
.text-field-wrap.field-success textarea {
	border-color: #85A73C;
	padding-right: 50px;
}

	.text-field-wrap.field-success .label-text,
	.text-field-wrap.field-success.field-active input + .label-text,
	.text-field-wrap.field-success input:focus + .label-text,
	.text-field-wrap.field-success.field-active textarea + .label-text,
	.text-field-wrap.field-success textarea:focus + .label-text {
		color: #85A73C;
	}

.text-field-wrap.field-success .material-icons {
	color: #85A73C;
	
}


/* Field Error */

.text-field-wrap.field-error input,
.text-field-wrap.field-error textarea {
	border-color: #B83C26;
	padding-right: 50px;
}

	.text-field-wrap.field-error .label-text,
	.text-field-wrap.field-error.field-active input + .label-text,
	.text-field-wrap.field-error input:focus + .label-text,
	.text-field-wrap.field-error.field-active textarea + .label-text,
	.text-field-wrap.field-error textarea:focus + .label-text {
		color: #B83C26;
	}

.text-field-wrap.field-error .helper-text {
	color: #B83C26;
}

.text-field-wrap.field-error .material-icons {
	color: #B83C26;
}

.text-field-wrap.hidden-icons:not(.left-icon) .material-icons {
	display: none;
}

.text-field-wrap.hidden-icons.left-icon.right-icon .material-icons:first-of-type {
	display: none;
}

.text-field-wrap.field-error .material-icons.unval-Icon {
	display: block;
}

.text-field-wrap.field-success .material-icons.val-Icon {
	display: block;
}

.text-field-wrap:not(.field-success):not(.field-error) .material-icons:nth-last-child(3) {
	display: block;
}



/* Prefix / Suffix */

.text-field-wrap.has-prefix input,
.text-field-wrap.has-prefix textarea,
.text-field-wrap.has-prefix select,
.text-field-wrap.has-suffix input,
.text-field-wrap.has-suffix textarea,
.text-field-wrap.has-suffix select {
	color: rgba(0,0,0,0);
}

	.text-field-wrap.has-prefix input:focus,
	.text-field-wrap.has-prefix textarea:focus,
	.text-field-wrap.has-prefix select:focus,
	.text-field-wrap.has-prefix.field-active input,
	.text-field-wrap.has-prefix.field-active textarea,
	.text-field-wrap.has-prefix.field-active select,
	.text-field-wrap.has-suffix input:focus,
	.text-field-wrap.has-suffix textarea:focus,
	.text-field-wrap.has-suffix select:focus,
	.text-field-wrap.has-suffix.field-active input,
	.text-field-wrap.has-suffix.field-active textarea,
	.text-field-wrap.has-suffix.field-active select {
		color: #707070;
	}

/* Radio Buttons */

.button-field-wrap input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	background-color: inherit;
	height: 20px;
	width: 20px;
	border: 1px solid #999;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	margin-right: 7px;
	outline: none;
	cursor: pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

	.button-field-wrap input[type="radio"]:checked {
		border: 2px solid #175E8E;
	}

		.button-field-wrap input[type="radio"]:checked::before {
			position: absolute;
			top: 3px;
			left: 3px;
			width: 10px;
			height: 10px;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
			border-radius: 50%;
			background-color: #175E8E;
			content: '';
			transform: rotate(40deg);
		}

/* Checkboxes */

.button-field-wrap input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	background-color: inherit;
	height: 20px;
	width: 20px;
	border: 1px solid #999;
	border-radius: 3px;
	margin-right: 7px;
	outline: none;
	cursor: pointer;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.button-field-wrap input[type="checkbox"]:checked {
	border: 2px solid #175E8E;
}

.button-field-wrap input[type="checkbox"]:checked::before {
	position: absolute;
	top: 2px;
	left: 2px;
	display: block;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 12px;
	content: "\f00c";
	color: #175E8E;
}

/* Disabled Buttons */

.button-field-wrap input[type="radio"]:disabled,
.button-field-wrap input[type="checkbox"]:disabled {
	background: rgba(0,0,0,0.05);
	border-color: #c9c9c9;
	cursor: default;
}

/* Checkbox Slider */
/* The switch - the box around the slider */
.ToggleSwitch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 25px;
}
/* Hide default HTML checkbox */
.ToggleSwitch input {
	display: none;
}
/* The slider */
.ToggleSlider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin-bottom: 0px;
	background-color: red;
	-webkit-transition: .4s;
	transition: .4s;
}

.ToggleSlider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	margin-bottom: 0px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .ToggleSlider {
	background-color: green;
}

input:focus + .ToggleSlider {
	/* box-shadow: 0 0 1px green; */
}

input:checked + .ToggleSlider:before {
	-webkit-transform: translateX(25px);
	-ms-transform: translateX(25px);
	transform: translateX(25px);
}
/* Rounded sliders */
.ToggleSlider.ToggleRound {
	border-radius: 25px;
}

.ToggleSlider.ToggleRound:before {
	border-radius: 50%;
}

.checkboxTextLabel {
	position: relative;
	padding: 5px;
	top: -8px;
}

.note {
	width: 500px;
	margin: 50px auto;
	font-size: 1.1em;
	color: #333;
	text-align: justify;
}

.DropAreaClass {
	border: 2px dashed #ccc;
	border-radius: 20px;
	width: 100%;
	padding: 20px;
}

.DropAreaClass.highlight {
	border-color: purple;
}

.gallery {
	margin-top: 10px;
}

.FileUploadButton {
	display: inline-block;
	padding: 10px;
	background: #ccc;
	cursor: pointer;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.FileUploadButton:hover {
	background: #ddd;
}

.fileElem {
	display: none !important;
}

.galleryItem {
	display: inline-block;
	padding: 5px;
	margin-right: 20px;
}

.galleryItemDelete {
	display: inline-block;
	width: 20px;
	content: url(https://platform1.krisesystems.com/DV/Applications/21000496/css/red-recycle-bin-icon-20.png);
	position: absolute;
	cursor: pointer;
}

input[type="text"], input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="url"], input[type="date"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], textarea, select {
	width: 100%;
	padding: 10px;
	border: 1px solid #d2d2d2;
	background: white;
}

input[type=checkbox]:not(:first-child), input[type=radio]:not(:first-child) {
	margin-left: 1rem;
}

.ListHeaderRow {
	background-color: #fff !important;
	font-size: 20px;
	font-weight: bold;
}
	.ListHeaderRow td {
		vertical-align: bottom;
		border-bottom: 2px solid #dee2e6;
		padding: .75rem;
		border-top: 1px solid #dee2e6;
	}
.ListHeaderRow > td {
    position: sticky;
    top: 0;
    background-color: #fff !important;
    font-size: 20px;
    z-index: 99;
    font-weight: bold;
    overflow-x: unset;
}
.table-responsive {
    overflow-x: unset;
}
[sortorder="ASC"] {
	background-image: url(../../../images/ep_asc.gif);
	background-repeat: no-repeat;
	background-position: right;
}

[sortorder="DESC"] {
	background-image: url(../../../images/ep_desc.gif);
	background-repeat: no-repeat;
	background-position: right;
}

[sortorder] {
	cursor: pointer;
	width: -moz-fit-content;
	width: fit-content;
	padding-right: 20px;
}

@media (max-width: 468px) {
	[listrow="True"]:nth-of-type(odd) > td > div {
		width: 100%;
		background: unset;
		/* box-shadow: 0px 0px 5px 1px grey; */
	}

	[listrow="True"]:nth-of-type(even) > td > div {
		width: 100%;
		/* background: rgba(0,0,0,.05); */
		/* box-shadow: 0px 0px 5px 1px grey; */
	}

	.table {
		width: 100%;
		margin-bottom: unset;
		color: unset;
	}

		.table td, .table th {
			padding: .40rem;
			border-top: unset;
		}

	.table-responsive {
		display: unset;
		width: 100%;
		overflow-x: unset;
	}

	.table-striped tbody tr:nth-of-type(odd) {
/* 		background-color: unset;
		color: #6c757d;
		font-size: 80%;
		font-weight: 400; */
	}
}

[iseof="True"] {
	display: none;
}

.bootstrap-dialog.type-primary .modal-header {
	background-color: #212121 !important;
	text-transform: uppercase !important;
	color: white !important;
	letter-spacing: 0.1em !important;
	font-weight: 600 !important;
}

.bootstrap-dialog-header {
	text-align: center;
	width: 100%;
}

.close {
	float: right;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	color: #000;
	background: transparent;
	border: 0;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: 1;
}

.close:hover, .close:focus {
	color: white;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
								
	opacity: 0.5;
}
[onclick] {
	cursor: pointer;
}
.SearchBox {
	margin: 5px;
	display: inline-flex;
}

.GridControlClass > tbody > tr:nth-of-type(even) > td:nth-of-type(odd) {
	/* box-shadow: 0px 0px 5px 1px grey; */
	margin: 5px;
	/* background: rgba(0,0,0,.05); */
}
.GridControlClass > tbody > tr:nth-of-type(odd) > td:nth-of-type(odd) {
	/* box-shadow: 0px 0px 5px 1px grey; */
	margin: 5px;
}
.GridControlClass > tbody > tr:nth-of-type(odd) > td:nth-of-type(even) {
	/* box-shadow: 0px 0px 5px 1px grey; */
	margin: 5px;
	/* background: rgba(0,0,0,.05); */
}
.GridControlClass > tbody > tr:nth-of-type(even) > td:nth-of-type(even) {
	/* box-shadow: 0px 0px 5px 1px grey; */
	margin: 5px;
}
.table-striped tbody tr:nth-of-type(odd) {
	background-color: unset;
}
.table-striped > tbody > tr:nth-of-type(odd) {
	background-color: rgba(0,0,0,.05);
}
.table td, .table th {
	padding: unset;
	/* vertical-align: unset; */
	border-top: unset;
}
.table > tbody > tr > td,
.table > tbody > tr > th {
	padding: .75rem;
	border-top: 1px solid #dee2e6;
}
.table > tbody > tr > td:not([valign]),
.table > tbody > tr > th:not([valign]) {
	vertical-align: top;
}
.text-field-wrap.field-error select{
    border-color: #B83C26;
    padding-right: 50px;
}
.text-field-wrap.field-error.field-active select + .label-text,
.text-field-wrap.field-error select:focus + .label-text {
    color: #B83C26;
}
.text-field-wrap.left-icon .fa {
    position: absolute;
    top: 8px;
    left: 18px;
    font-size: calc(1em + 6px);
    font-family: 'Font Awesome 5 Free';
}
.text-field-wrap.right-icon .fa {
    position: absolute;
    top: 8px;
    right: 18px;
    font-size: calc(1em + 6px);
}

.text-field-wrap.right-icon.left-icon .fa:nth-of-type(1) {
    position: absolute;
    top: 8px;
    left: unset;
    right: 18px;
    font-size: calc(1em + 6px);
}

.text-field-wrap.right-icon.left-icon .fa:nth-of-type(2) {
    position: absolute;
    top: 8px;
    left: 18px;
    right: unset;
    font-size: calc(1em + 6px);
}

.text-field-wrap.field-success .fa.val-Icon {
    position: absolute;
    top: 8px;
    right: 18px;
    left: initial;
    font-size: calc(1em + 6px);
}

.text-field-wrap.field-error .fa.unval-Icon {
    position: absolute;
    top: 8px;
    right: 18px;
    left: initial;
    font-size: calc(1em + 6px);
}

.text-field-wrap.field-success .fa.unval-Icon {
    display: none;
}

.text-field-wrap.field-error .fa.val-Icon {
    display: none;
}
.text-field-wrap.field-success .fa:before {
    color: #85A73C;
}
.text-field-wrap.field-error .fa:before {
    color: #B83C26;
}

.text-field-wrap.hidden-icons:not(.left-icon) .fa {
    display: none;
}

.text-field-wrap.hidden-icons.left-icon.right-icon .fa:first-of-type {
    display: none;
}

.text-field-wrap.field-error .fa.unval-Icon {
    display: block;
}

.text-field-wrap.field-success .fa.val-Icon {
    display: block;
}

.text-field-wrap:not(.field-success):not(.field-error) .fa:nth-last-child(3) {
    display: block;
}

.button-field-wrap input[type="checkbox"]:checked::before {
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 12px;
    content: "\f00c";
    color: #175E8E;
}

.autocomplete-items {
	display: none;
	position: absolute;
	min-width: 100px;
	max-height: 280px;
	z-index: 1;
	overflow-y: auto;
	background-color: white;
	border-radius: 3px;
	box-shadow: 0px 0px 1px grey;
}

.autocomplete-items > option {
	padding: 8px;
	margin: 4px;
	border-radius: 3px;
	border: 1px solid transparent;
	cursor: pointer;
}

.autocomplete-items > option.hover {
	border: 1px solid #2484c5;
	background-color: #175E8E22;
}

.text-field-wrap:focus-within > .autocomplete-items {
	display: block;
}

.sticky-top {
    position: unset;
}

.barcode-39 {
	font-family: 'Libre Barcode 39';
}

.barcode-39-text {
	font-family: 'Libre Barcode 39 Text';
}

[class*='barcode-39'] {
	display:inline-block;
	padding-left: 8px;
	padding-right: 8px;
	color: black;
	background-color: white;
}

[Visible='no']
[Visible='No'],
[Visible='false'],
[Visible='False'] {
	display: none;
}
