*,
:after,
:before {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

:root {
	--table-border-color: #e0e0e0;
	--table-header-bg: #34495e;
	--table-header-text: #fff;
	--table-row-hover-bg: #f1f1f1;
	--table-zebra-bg: #fafafa;
	--table-text-color: #212529;
	--action-button-bg: #01458c;
	--fleet-layout-color: #34495e;
}

* {
	word-wrap: anywhere;
}

body,
html {
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #f5f5f5 !important;
	color: #333;
	scrollbar-width: thin;
	font-family: Arial, sans-serif;
	font-size: 12px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

i.mdlCatalogImpExp.material-icons {
	color: inherit;
}

#btn-search .material-icons {
	font-size: 3rem;
	color: var(--fleet-layout-color);
}

i.material-icons {
	color: var(--action-button-bg);
}

#customFiltersToggle {
	background-color: var(--action-button-bg) !important;
}
hr {
	color: #dadce0;
	margin: initial;
	border-style: solid;
	border-width: 1px 0 0 0;
}

h1,
h2,
h3,
h4 {
	margin: .3rem .2rem;
}

h1 {
	font-size: 1.3rem;
}

h2 {
	font-size: 1.2rem;
}

h3 {
	font-size: 1.1rem;
}

h4 {
	font-size: .9rem;
}

table {
	border-collapse: collapse;
	empty-cells: show;
	min-width: 90%;
	margin: auto
}

a {
	text-decoration: none;
	color: var(--action-button-bg);
}

a:hover {
	text-decoration: none;
}

p,
pre,
ul {
	margin: 0;
}

.mdlFormDetailedFillSection pre {
	white-space: wrap;
}

.button,
button,
input,
select,
textarea {
	background-color: #fff;
	padding: .25rem .5rem;
	border: 1px solid #dadce0;
	width: 100%;
	border-radius: .5rem;
	color: #333;
	font-size: 1rem;
	line-height: 1.5rem;
}

input[type=file] {
	padding: 1px .5rem 1px .5rem;
}

textarea {
	margin: 0;
	overflow: hidden;
}

.button,
button,
input[type=button],
input[type=submit] {
	width: auto;
	cursor: pointer;
	border-radius: 4px;
	-webkit-appearance: none;
}

input[type=checkbox],
input[type=radio] {
	width: auto;
}

.button:hover,
button:active,
input[type=button]:active,
input[type=submit]:active {
	filter: brightness(.9);
}

select {
	width: 100%;
}

input[readonly] {
	opacity: .5;
}

textarea {
	resize: vertical;
}

label.file {
	border: 1px solid #36505b;
	border-radius: 8px;
	color: #fff;
	display: block;
	padding: .1rem .3rem;
	margin: 0 auto;
}

label.file span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	text-indent: 1.5rem;
	position: relative;
}

label.file span:before {
	content: '';
	background-image: url(../img/file.png);
	background-size: 1rem auto;
	display: block;
	position: absolute;
	width: 1rem;
	height: 1rem;
	top: .1rem;
}

label.file span.empty {
	color: var(--action-button-bg);
}

pre.debugPre {
	border: solid 1px #ccc;
}

.form-container {
	max-width: 770px;
	margin: auto;
}

/*!**************************************   general layout   **********************************************/

.layout-container {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100vh;
}

.main-panel {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	height: 100vh;
	overflow: hidden;
	transition: margin-left 0.3s ease-in-out;
}

.layout-sidebar {
	background-color: #34495e;
	color: #ecf0f1;
	width: 200px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	transition: margin-left 0.3s ease-in-out;
}

.layout-container.sidebar-collapsed .layout-sidebar {
	margin-left: -200px;
}

.sidebar-nav {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.layout-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	height: 4.8rem;
	padding: 0.5rem 0rem 0.5rem 3rem;
	background-color: #ffffff;
	border-bottom: 1px solid #ccc;
	flex-shrink: 0;
	gap: 1.5rem;
	color: #333;
}

.layout-body {
	flex-grow: 1;
	overflow-y: auto;
	color: #3c4043;
	background-color: white;
}

.layout-body a {
	color: var(--action-button-bg);
}

.logo-container {
	flex-grow: 1;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.user-data {
	display: flex;
	flex-direction: column;
	max-width: 160px;
	padding: 4px 5px;
}

.sidebar-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	box-sizing: border-box;
	min-height: 4.8rem;
	padding: 0.5rem 0rem;
	border-bottom: 1px solid transparent;
}

#toggle-sidebar-btn {
	background-color: transparent;
	border: none;
	box-shadow: none;
	cursor: pointer;
	z-index: 100;
	margin: 0px;
	transition: transform 0.3s ease;
}

#toggle-sidebar-btn .material-icons {
	color: #fff !important;
}

#toggle-sidebar-btn .icon-open {
	display: block ;
	color: #fff !important;
}

#toggle-sidebar-btn .icon-closed {
	display: none;
}

.layout-container.sidebar-collapsed #toggle-sidebar-btn .icon-open {
	display: none !important;
}

.layout-container.sidebar-collapsed #toggle-sidebar-btn .icon-closed {
	display: block;
}

.layout-container.sidebar-collapsed #toggle-sidebar-btn {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	background-color: #34495e;
	border-left: none;
	border-radius: 0 30% 30% 0;
	width: 2.5rem;
	height: 4.8rem;
	margin: 0px;
}

.sidebar-nav .org-name {
	font-size: 1.5rem;
	font-weight: bold;
	white-space: nowrap;
	overflow-x: hidden;
	text-overflow: ellipsis;
	color: #ffffff;
}

.sidebar-nav .user-name {
	color: #bdc3c7;
	white-space: nowrap;
	overflow-x: hidden;
	text-overflow: ellipsis;
}

.sidebar-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-nav a:hover {
	background-color: #2c3e50;
}

.sidebar-nav a.active {
	background-color: #7c879d;
	color: #ffffff;
	font-weight: bold;
}

/* ---------------------- Sidebar items ------------------------------ */

.sidebar {
	width: 250px;
	border-right: 1px solid #ccc;
	padding: 10px;
	background-color: #f4f4f4;
}

.sidebar-content {
	flex-grow: 1;
	overflow-y: auto;
}

.sidebar-content::-webkit-scrollbar {
	width: 8px;
}

.sidebar-content::-webkit-scrollbar-track {
	background: #2c3e50;
}

.sidebar-content::-webkit-scrollbar-thumb {
	background-color: #bdc3c7;
	border-radius: 10px;
	border: 2px solid #2c3e50;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
	background-color: #ffffff;
}

.sidebar-content ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.sidebar-content li a {
	text-decoration: none;
	color: #dbdada;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 10px;
	transition: background-color 0.2s ease;
}

.sidebar-content li a:hover {
	background-color: #7c879d;
}

.sidebar-content .material-icons {
	font-size: 1.9rem;
	color: #dbdada;
}

.material-icons.active {
	color: #fff;
}

.sidebar-content .material-icons.category {
	font-size: 2.2rem;
	color: #ffffff;
}

.sidebar-content li a span {
	font-size: 1.1rem;
	font-weight: 500;
}
.sidebar-content li a .field-name {
	font-weight: 700;
}

.sidebar-content .groupName {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 1.3rem;
	font-weight: bold;
	color: white;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	margin: 0px;
	margin-top: 20px;
	padding: 5px;
}

.sidebar-content .groupName.catalogGroup {
	margin-top: 10px;
}

.sidebar-content .option-item a {
	padding-left: 25px !important;
}

/*!**************************************   header nav   **********************************************/
tr.trHeader td>div>a>img {
	margin: .3rem 0 auto 0;
	max-height: 2.4rem;
	max-width: 11rem;
	vertical-align: bottom;
}

.header-search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

.settings-btn-group .material-icons {
	font-size: 3rem;
	vertical-align: middle;
	color: var(--fleet-layout-color);
}

.settings-btn-group .material-icons:hover {
	color: var(--action-button-bg);
}

settings-btn-group>button>i {
	font-size: 2.8rem;
}

.settingsProfilePicture {
	vertical-align: middle;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	object-fit: cover;
}

.popup_content {
	margin-top: 3.5rem;
}

.settings-btn-group {
	top: 0 !important;
	right: 0 !important;
}

.settings-btn-group>button {
	padding: 0;
	background: transparent;
}

.settings-btn-group>button>i:hover {
	color: var(--action-button-bg);
}

.dl-menuwrapper li a {
	color: #555;
}

.dl-menuwrapper li a:hover {
	color: var(--action-button-bg);
}

.display-section {
	height: 100%;
}

.display-section>div {
	margin-left: auto;
	margin-right: auto;
}

#context-menu,
#settings-account-menu {
	position: absolute;
	border-radius: 8px;
	padding: 8px;
	top: calc(4.3rem - 2px) !important;
	z-index: 1000;
}

#settings-account-menu ul,
#context-menu ul {
	height: fit-content;
	border: 1px solid #ccc;
}

tr td.tdMenu {
	width: 10rem;
}

tr td.tdMenu ul {
	list-style: none;
	padding: 0;
}

tr td.tdMenu ul li {
	box-sizing: border-box;
}

tr td.tdMenu ul li.selected {
	color: var(--action-button-bg);
	border-radius: 8px;
	background: rgba(80, 134, 236, .1);
}

tr td.tdBody {
	padding: .5rem;
}

ul.modList {
	list-style-type: disclosure-closed;
}

.sm-caret {
	cursor: pointer;
	position: absolute;
	top: .1rem;
	left: -.2rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.sm-caret-down::after {
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.sm-nested {
	display: none;
	font-size: .9rem;
	margin-left: 5px;
}

.sm-active {
	display: block;
}

.sm-highlight {
	text-decoration: underline;
}

ul.smartMenu li {
	position: relative;
	text-indent: .3rem;
}

#msg_div {
	position: fixed;
	pointer-events: none;
	width: 100%;
	max-width: 100%;
	left: 0;
	z-index: 99999;
	display: none;
	color: #fff;
	font-weight: 700;
	text-align: center;
	font-size: 1.5rem;
}

#msg_div a {
	color: #eee;
	text-decoration: none;
	font-size: 1rem;
	position: relative;
	top: -.6rem;
}

#msg_div table {
	pointer-events: auto;
	border-radius: .5rem;
	background-color: #9abf18;
	max-width: 80%;
	margin: auto;
}

#msg_div.errorMsg table {
	background-color: #ff00c8;
}

.not-allowed {
	cursor: not-allowed;
}

.not-allowed a {
	pointer-events: none;
}

.highlight a {
	text-decoration: underline;
}

.thumbnail-img {
	max-width: 50px;
}

/**************************************** BREADCRUMB **************************** */
.menu-section {
	width: 100%;
}

.myBreadcrumb {
	min-width: 100% !important;
}

.breadcrumbContent {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 100% !important;
	padding: 6px 16px 12px;
	background-color: #fff;
	box-sizing: border-box;
	scrollbar-width: none;
}

.breadcrumbContent::-webkit-scrollbar {
	display: none;
}

.breadLeftTd-content {
	color: #212529;
	font-weight: 600;
	display: flex;
	align-items: stretch;
	gap: 0;
	width: fit-content;
	max-width: 100%;
	flex-wrap: nowrap;
	overflow-x: auto;

	&::-webkit-scrollbar {
			display: none;
		}
	
	scrollbar-width: none;
}


.breadMiddleTd {
	text-align: center;
}

.breadcrumbContent>.breadRightTd {
	text-align: right;
	white-space: nowrap;
}

div.mdlItemNav {
	position: relative;
	top: calc(50vh - 12rem);
}

/**************************************** HomeMenu **************************** */
ul.homeMenu {
	display: flex;
	flex-direction: column;
}

/* -------------------------------- Signin section ----------------------------------- */
.login-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
}

.login-container button {
	color: white;
}

.mdlBtnPrimary {
	background-color: var(--action-button-bg);
}

.login-header {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 130px;
	flex-shrink: 0;
}

.login-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

.divider {
	display: flex;
	align-items: center;
	text-align: center;
	color: #8a919e;
	margin: 20px 0;
}


.divider::before,
.divider::after {
	content: '';
	flex-grow: 1;
	border-bottom: 1px solid #d4d8e0;
}

.divider::before {
	margin-right: 15px;
}

.divider::after {
	margin-left: 15px;
}

.social-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 10px 15px;
	background-color: #ffffff;
	border: 1px solid #d4d8e0;
	border-radius: 6px;
	color: #3c4043;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	box-sizing: border-box;
	transition: background-color 0.2s ease-in-out;
}

.social-button:hover {
	background-color: #f8f9fa;
}

.social-button span {
	display: flex;
	align-items: center;
}

.social-logo {
	width: 20px;
	height: 20px;
	margin-right: 12px;
}

.social-button font {
	color: #8a919e;
	font-size: 1.2rem;
}

#msg_div {
	margin-bottom: 1rem;
	width: 100%;
	max-width: 100%;
	text-align: center;
}

form.mdlForm {
	background-color: white;
	padding: 1rem;
}

.form-section {
	display: flex;
		align-items: stretch;
}

.menu-actions {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.add-new-icon,
.custom-menu-tab {
	display: flex;
	align-items: center;
	padding: 12px 10px;
	color: #776f6f;
	text-decoration: none;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s ease;
	white-space: nowrap;
	position: relative;
}

.add-new-icon {
	color: var(--action-button-bg) !important;
	margin-left: -2px;
}

.add-new-icon::after,
.custom-menu-tab::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #e1e1e1;
}

.add-new-icon:hover,
.custom-menu-tab:hover {
	color: #a0a0a0;
}

.custom-menu-tab.active {
	color: var(--action-button-bg);
	font-weight: 600;
}

.custom-menu-tab.active::after {
	background-color: var(--action-button-bg);
	height: 3px;
}

.main-tab {
	color: #212529;
	font-weight: 600;
	align-content: center;
	
}
.main-tab.custom-menu-tab:hover {
	color: inherit;
}

/* ------------------------------------ Display module section ------------------------------------ */

#mdlCatalogItems {
	background-color: #ffffff;
	padding: 0 16px;
	overflow: hidden;
}

#mdlCatalogItemEditor {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#mdlCatalogForm {
	width: 70%;
}


.mdlTableMenuWrapper {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.mdlTableMenuWrapper a {
	color: var(--action-button-bg);
}

#mdlTableDeleteSelected,
.mdlCatalogImpExp {
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

#mdlTableDeleteSelected:hover,
.mdlCatalogImpExp:hover {
	background-color: #7c879d;
}

tr.mdlViewCounterIncrement td,
tr.mdlViewCounterIncrement td>* {
	text-align: center;
	vertical-align: middle;
}

tr.mdlViewCounterIncrement td.mdlTdAction {
	text-align: right;
}

table.mdlViewTable {
	width: 100%;
	color: var(--table-text-color);
}

table.mdlViewTable thead th {
	background-color: var(--table-header-bg);
	color: var(--table-header-text);
	font-weight: 600;
	padding: 12px 16px;
	font-size: 12px;
	letter-spacing: 0.5px;
}

/* -----------------------  Card section ----------------------------- */

.mdlViewCardTitle {
	color: white;
	background-color: #34495e;
	text-align: left;
	border-radius: .8rem .8rem 0 0;
	padding: .5rem;
	font-weight: bold;
	font-size: 1.2rem;
}

/* ----------------------------------------------------------------- */
.header-actions .dl-menuwrapper li a {
	color: var(--fleet-layout-color);
}

.header-actions .dl-menuwrapper li a:hover {
	color: var(--action-button-bg);
}

#pwdimg {
	position: absolute;
	width: 24px;
	cursor: pointer;
	left: calc(100% - 2rem);
	top: calc(100% - 2.6rem);
}

#trKeepIn,
#trForgottPass {
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
	margin-top: 1rem;
}

.checkbox-container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
	margin: 0;
}

@media only screen and (max-width: 1024px) {
	html {
		font-size: 18px;
	}

	#mdlCatalogForm {
		width: 100%;
	}
}

/**************************************** Time filters menu **************************** */
ul.sortableList li {
	position: relative;
}

ul.sortableList li input[type=text] {
	width: calc(100% - 2rem);
}

li.gu-mirror {
	list-style-type: none;
}

li.gu-mirror input[type=text] {
	width: calc(100% - 2rem);
	border-width: 0 0 1px 0;
	border-radius: 0;
}

/*!**************************************   SMART ITEMS  **********************************************/
.smart-item {
	display: inline-block;
	width: 16rem;
	margin: 10px;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: -8px -8px 8px rgb(255, 255, 255, .9), 8px 8px 8px rgb(0, 0, 0, .15);
}

.smart-item>tbody>tr:first-child td {
	text-align: center;
	height: 7rem;
	overflow: hidden;
	width: 16rem;
}

.smart-item>tbody>tr:first-child td a {
	color: #fff;
	font-weight: 700;
	display: inline-block;
	padding: 0 1.5rem 0 1.5rem;
	font-size: 1.5rem;
	text-decoration: underline;
	white-space: nowrap;
	max-width: 13rem;
	overflow: hidden;
	text-overflow: ellipsis;
}

.smart-item>tbody>tr:first-child td div {
	max-width: 16rem;
	max-height: 7rem;
}

.smart-item>tbody>tr:first-child td div img {
	width: 17rem;
	position: relative;
	top: -1rem;
}

.smart-item>tbody>tr:nth-child(2) {
	background-color: #fff;
}

.smart-item>tbody>tr:nth-child(2) td {
	padding: .3rem .4rem .4rem .3rem;
}

div.overflow {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.smart-item-icon {
	max-width: 1rem;
	max-height: 1rem;
}

.smart-item .form-buttons {
	margin-left: -1rem;
}

/*!**************************************   DATETIMEPICKER  **********************************************/
.dpicker+i,
.tpicker+i,
.dtpicker+i {
	position: absolute;
	padding: .4rem 0 0 0;
	text-indent: -2rem;
	color: var(--action-button-bg);
}

/*!**************************************  Profile Picture  **********************************************/
.profilePicture {
	border-radius: 50%;
	width: 100px;
	height: 100px;
	/*vertical-align: middle;*/
}

.groupProfilePicture {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	vertical-align: middle;
}

.settingsProfilePicture {
	vertical-align: middle;
	width: 1.8em;
	height: 1.8em;
	border-radius: 50%;
}

#imgDiv {
	text-align: center;
}

#deleteLink {
	white-space: nowrap;
}

/*!**************************************  Summmernote  **********************************************/
.note-editor .note-toolbar .note-btn-group button.note-btn.note-current-color-button {
	margin-right: 0;
}

/****************************************   HOME PAGE BOXES   **********************************************/
.mdlBox span.material-icons.iconPlaceholder {
	font-size: 8em;
	color: #aaa;
}

.material-icons.hasYes {
	color: #188532;
	font-weight: bold;
}

.material-icons.hasNot {
	color: red;
	font-weight: bold;
}

@media only screen and (max-width: 1024px) {

	body,
	html {
		font-size: 16px;
	}

	.layout-sidebar {
		position: fixed;
		margin-left: -200px;
		height: 100%;
		z-index: 1000;
		box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
	}
	
	.main-panel {
		margin-left: 0;
		width: 100%;
	}
	
	.layout-container:not(.sidebar-collapsed) .layout-sidebar {
		margin-left: 0;
	}
	
	.layout-container:not(.sidebar-collapsed) .sidebar-overlay {
		display: block;
	}

	td.tdMenu {
		display: none;
		width: 0 !important;
		min-width: auto !important;
	}

	form.mdlForm {
		max-width: 380px;
		margin: 0;
	}

	td.tdMenu>div {
		display: none;
	}

	tr td.tdMenu ul li a {
		width: 150px;
	}

	.mdlBreadcrumb>div {
		width: 100%;
		left: 0;
	}

	.smart-item {
		display: table;
		width: calc(80vw);
		margin: 1rem auto;
	}

	table.table-editor tr td.profilePictureCell {
		display: table-cell !important;
	}

	.note-editor .note-toolbar .note-btn-group button.note-btn {
		margin-right: 2px;
	}

	.mdlViewCard {
		max-width: 95% !important;
	}

	div.mdlItemPrev {
		left: -1.2rem;
	}

	div.mdlItemNext {
		right: 0.5rem;
	}

	#mdlItemFlt {
		margin: 0;
		min-width: 95%;
	}

	div.mdlItemNav {
		position: relative;
		top: calc(50vh - 20rem);
	}

/*----------------------------- Breadcrumbs mobile display settings ---------------------------------*/
	.breadcrumbContent {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		gap: 8px 10px;
		padding: 8px 10px;
	}

	.breadcrumbContent>.breadLeftTd {
		grid-column: 1 / 3;
		grid-row: 1;
		display: flex;
		align-items: center;
		gap: 8px;
		overflow-x: auto;
		white-space: nowrap;
		scrollbar-width: none;
		-ms-overflow-style: none;
	
		&::-webkit-scrollbar {
			display: none;
		}
	}

	.breadcrumbContent>.breadMiddleTd {
		grid-column: 1 / 3;
		grid-row: 2;
		text-align: center;
		justify-self: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.breadcrumbContent>.breadRightTd {
		grid-column: 2 / 3;
		grid-row: 2;
		justify-self: end;
		display: flex;
		align-items: center;
		gap: 8px;
		white-space: nowrap;
	}

	.breadcrumbContent:has(> .breadMiddleTd:empty)>.breadLeftTd {
		grid-column: 1 / 2;
		grid-row: 1;
		justify-self: start;
	}
		
	.breadcrumbContent:has(> .breadMiddleTd:empty)>.breadRightTd {
		grid-column: 2 / 3;
		grid-row: 1;
		justify-self: end;
	}

	.display-section>div {
		max-width: 90%;
	}

	.header-search {
		gap: 8px;
	}

	.settings-btn-group .material-icons {
		font-size: 2.2rem;
	}

	#btn-search .material-icons {
		font-size: 2.2rem;
	}
}



/*----------------------------- View table ---------------------------------*/

div.mdlViewWrapper div.mdlViewCard div.mdlViewCardTitle {
	color: white;
	background-color: #34495e;
	text-align: left;
	border-radius: .8rem .8rem 0 0;
	padding: .5rem;
	font-weight: bold;
	font-size: 1.2rem;
}


/***************************************   LIST TABLE   **********************************************/
table.mdlListTable {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	min-width: 80%;
	max-width: 100%;
	margin: auto;
	border-radius: .75rem;
	overflow: hidden;
}

table.mdlListTable>tr>td,
table.mdlListTable>thead>tr>td,
table.mdlListTable>tbody>tr>td {
	padding: .25rem .5rem;
}

table.mdlListTable>thead>tr>th>div.mdlTableMenuWrapper a {
	color: var(--table-header-text);
	text-decoration: underline;
}

table.mdlListTable>thead>tr>th>div.mdlTableMenuWrapper>a[id="mdlTableDeleteSelected"],
table.mdlListTable>thead>tr>th>div.mdlTableMenuWrapper>a[id="mdlTableUpdateSelected"] {
	float: left;
	padding-left: 5px;
}

table.mdlListTable>thead>tr>th>div.mdlTableMenuWrapper>a[id="mdlTableExport"],
table.mdlListTable>thead>tr>th>div.mdlTableMenuWrapper>div[class="mdlTableExportActions"] {
	float: right;
	padding-right: 5px;
}

table.mdlListTable th.mdlTdSmall,
table.mdlListTable td.mdlTdSmall {
	white-space: nowrap;
}

table.mdlListTable td.mdlTdLeft {
	text-align: left;
}

table.mdlListTable td.mdlTdRight {
	text-align: right;
}

table.mdlListTable>thead>tr i.material-icons,
table.mdlListTable>tfoot>tr>td i.material-icons {
	color: #FFF;
}

table.mdlListTable>thead>tr>th {
	text-align: center;
	font-weight: 700;
	word-wrap: break-word;
}

table.mdlListTable th.mdlTdAction,
table.mdlListTable td.mdlTdAction {
	white-space: nowrap;
	text-align: right;
}

table.zebra td table.mdlListTable>tbody>tr>td {
	border-style: none;
}

table.mdlListTable tr td span.mdlCellFieldSeparator {
	display: block;
	white-space: break-spaces;
	max-width: 90vw;
	overflow: hidden;
	text-overflow: ellipsis;
}

table.mdlListTable tr td.mdlTdAction span.mdlCellFieldSeparator {
	white-space: nowrap;
	text-align: right;
}

table.mdlListTable tr td.mdlTdNoWrap {
	white-space: nowrap;
}

table.mdlListTable tr td.mdlTdNoWrap span.mdlCellFieldSeparator {
	display: initial;
	white-space: nowrap;
}

@media only screen and (max-width:1024px) {

	table.mdlListTable,
	table.mdlTable {
		width: 100%;
	}

	table.mdlListTable>tbody>tr>td,
	table.mdlListTable>tfoot>tr>td,
	table.mdlListTable>thead>tr>th {
		width: auto !important;
		display: block !important;
		border-top: 0;
		border-bottom: 0;
	}

	table.mdlListTable>tbody>tr>td,
	table.mdlListTable>tfoot>tr>td,
	table.mdlListTable>thead>tr>th {
		border-style: none;
	}

	table.mdlListTable th.mdlTdSmall input[id="mdlTableCheckAll"] {
		float: left
	}

	table.mdlListTable td.mdlTdSmall {
		text-align: left;
	}

	table.mdlListTable td.mdlTdAction,
	table.mdlTable td.mdlTdAction {
		text-align: right;
	}

	table.mdlListTable td.mdlTdLeft {
		text-align: center;
	}

	table.mdlListTable td.mdlTdRight {
		text-align: center;
	}
}

@media only screen and (max-width:400px) {
	.settings-btn-group .material-icons {
		font-size: 2rem;
	}
}

/**************************     FORM      ****************************************************/
.mdlWrapperTitle {
	display: inline-block;
	background-color: var(--fleet-layout-color);
	color: #fff;
	padding: 7px 10px;
	border-radius: 10px 10px 0 0;
}

.mdlWrapperLine {
	background-color: var(--fleet-layout-color);
}

/***************************************   LIST TABLE   **********************************************/
table.mdlListTable>thead>tr {
	background-color: var(--fleet-layout-color);
	color: #FFF;
	font-size: 1.1em;
}

table.mdlListTable>tfoot>tr>td {
	font-weight: 700;
	background-color: var(--fleet-layout-color);
	color: #FFF;
}

table.zebra>tbody>tr:nth-child(even),
tr.lister_alt {
	background-color: #1c2b3617;
}

/*************************************************************		Boxes	****************************************************************/
div.mdlBox>table>tbody>tr:nth-child(2)>td:nth-child(2) i:active {
	color: #1c2b36;
}

#btn-menu i,
#btn-search i {
	font-size: 2.8rem;
	width: 3rem;
	color: #FFF;
	vertical-align: top;
}

.settings-btn-group>button>i {
	height: 1.8rem;
	font-size: 1.8rem;
	line-height: 1.8rem;
	vertical-align: middle;
	color: #FFF;
}

.sm-caret::after {
	content: '▸';
	font-size: 1rem;
	color: #FFF;
	display: inline-block;
}

a.mdlLogo {
	display: inline-block;
	background-image: url("/img/logoLight.png");
	background-repeat: no-repeat;
	background-size: 10rem;
	background-position: 0;
	height: 100%;
	width: 10rem;
}

.ajaxdropSelectedOption {
	background: var(--action-button-bg);
}

.layout-body a.ajaxdropSelectedOption {
	color: white;
}

#mdlChangeUserLink {
	color: white;
}

#mdlFormItems {
	overflow-x: scroll;
	height: 100%;
}

tfoot td {
	text-align: center;
	vertical-align: middle;
}