/* ============================================================================
   Help Desk - Estilos modernos (adaptado de sigsistem/inicial.body.css)
   ============================================================================ */

html {
	font-size: 16px;
}

body {
	margin: 0;
	background-color: var(--color-bg-body);
	color: var(--color-text-default);
}

* {
	font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
}

hr {
	border: 0;
	border-bottom: 1px solid var(--color-border-hr);
}

input, select, textarea, button, a {
	outline-color: var(--color-outline);
	color: var(--color-text-default);
}

input, select, textarea {
	border-radius: var(--sig-radius-sm) !important;
}

html.hd-theme-dark {
	color-scheme: dark;
	--color-primary: #60a5fa;
	--color-primary-hover: #3b82f6;
	--color-hover-light: #263244;
	--color-row-hover: #1f2a3a;
	--color-row-even: #151f2e;
	--color-outline: #60a5fa;
	--color-selected: #1d3557;
	--color-menu-hover: #1f3a5f;
	--color-tab-primary: #60a5fa;
	--color-tab-primary-hover: #93c5fd;
	--color-checkbox-border: #64748b;
	--color-checkbox-border-focus: #93c5fd;
	--color-checkbox-bg-focus: #1e3a5f;

	--sig-border-color: #334155;
	--sig-border-color-light: #253246;
	--sig-shadow-card: 0 1px 3px rgba(0, 0, 0, 0.45);
	--sig-shadow-dropdown: 0 12px 30px rgba(0, 0, 0, 0.45);
	--sig-focus-ring: 0 0 0 2px rgba(96, 165, 250, 0.28);
	--sig-label-color: #cbd5e1;

	--color-bg-body: #0f172a;
	--color-bg-white: #111827;
	--color-bg-disabled: #1f2937;
	--color-bg-row-odd: #111827;
	--color-bg-wrong: #4a1f2b;
	--color-bg-wrong-even: #3d1824;
	--color-bg-grid-header: #1f2937;
	--color-bg-tabs-default: #1f2937;
	--color-bg-tabs-hover: #263244;
	--color-bg-tabs-active: #111827;
	--color-bg-carregando: #111827;

	--color-border-hr: #334155;
	--color-border-default: #475569;
	--color-border-grid: #334155;
	--color-border-tabs: #334155;

	--color-text-default: #e5e7eb;
	--color-text-gray: #94a3b8;
	--color-text-tabs: #cbd5e1;
	--color-text-tabs-active: #f8fafc;
	--color-text-menu-active: #93c5fd;
	--color-text-carregando: #cbd5e1;

	--hd-topbar-bg: #111827;
	--hd-topbar-text: #e5e7eb;
	--hd-topbar-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

html.hd-theme-dark body {
	background-color: var(--color-bg-body);
	color: var(--color-text-default);
}

/* --- Topbar / Navbar (Bootstrap-inspired) --- */
.hd-topbar {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-height: auto;
	padding: 0;
	background: var(--hd-topbar-bg);
	border-bottom: 1px solid var(--sig-border-color);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	margin-bottom: 0;
	box-sizing: border-box;
	position: sticky;
	top: 0;
	z-index: 1030;
}

.hd-topbar__main {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	min-height: var(--hd-topbar-height);
	padding: 0 1rem;
	margin-bottom: 5px;
	box-sizing: border-box;
}

.hd-topbar__brand {
	flex-shrink: 0;
	margin-left: 0;
	padding: 0.25rem 0;
}

.hd-topbar__brand a {
	text-decoration: none;
	display: block;
}

.hd-topbar__brand-logo {
	text-align: left;
	position: relative;
	width: 155px;
}

.hd-topbar__brand-logo img.logo[src$="help_desk.svg"],
.hd-login-logo img.logo[src$="help_desk.svg"] {
	transition: filter 0.15s ease, opacity 0.15s ease;
}

.hd-topbar__brand-logo .helpdesk-logo {
	position: absolute;
	bottom: -6px;
	right: 0;
	border-radius: var(--sig-radius-md);
}

.hd-topbar__nav {
	flex: 1;
	min-width: 0;
	padding: 0;
}

.hd-topbar__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
	margin-left: auto;
}

.hd-theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 1px solid var(--sig-border-color);
	border-radius: 50%;
	background: var(--color-bg-white);
	color: var(--color-text-gray);
	cursor: pointer;
	box-shadow: none;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.hd-theme-toggle:hover {
	color: var(--color-primary);
	background: rgba(33, 150, 243, 0.08);
	border-color: rgba(33, 150, 243, 0.35);
}

.hd-theme-toggle__icon {
	font-size: 0.95rem !important;
	line-height: 1;
}

.hd-theme-toggle__icon--sun {
	display: none;
}

html.hd-theme-dark .hd-theme-toggle__icon--moon {
	display: none;
}

html.hd-theme-dark .hd-theme-toggle__icon--sun {
	display: inline-block;
}

.hd-topbar__nav ul.menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0.25rem;
}

.hd-topbar__nav ul.menu > li {
	display: flex;
	align-items: center;
}

.hd-topbar__nav ul.menu li a,
.hd-topbar__nav ul.menu li a.hd-topbar__nav-link {
	display: inline-flex;
	align-items: center;
	height: 2rem;
	padding: 0 0.7rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(33, 37, 41, 0.75) !important;
	text-decoration: none;
	border: none;
	border-radius: var(--sig-radius-pill);
	background: transparent;
	white-space: nowrap;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.hd-topbar__nav ul.menu li a:hover,
.hd-topbar__nav ul.menu li a.selected:hover {
	background: rgba(33, 150, 243, 0.08);
	color: var(--color-primary) !important;
}

.hd-topbar__nav ul.menu li a.selected {
	background: rgba(33, 150, 243, 0.12);
	color: var(--color-primary) !important;
	font-weight: 600;
	box-shadow: none;
}

.hd-nav-sep {
	display: block;
	width: 1px;
	height: 1.25rem;
	background: var(--sig-border-color);
	margin: 0 0.35rem;
	padding: 0;
	list-style: none;
	flex-shrink: 0;
}

/* Submenu secundario (navbar-light) */
.hd-sub-menu {
	overflow: visible;
	max-width: 100%;
	position: relative;
	padding: 0.25rem 1rem;
	display: none;
	background: #f8f9fa;
	border-bottom: 1px solid var(--sig-border-color);
}

.hd-sub-menu .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	white-space: normal;
	transition: none;
	transform: none !important;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0.25rem;
}

.hd-sub-menu:after,
.hd-sub-menu:before {
	display: none;
}

.hd-sub-menu ul.menu > li {
	display: flex;
	align-items: center;
}

.hd-sub-menu ul.menu li a,
.hd-sub-menu ul.menu li a.hd-topbar__nav-link {
	display: inline-flex;
	align-items: center;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1;
	padding: 0 0.65rem;
	height: 1.5rem;
	color: #495057 !important;
	text-decoration: none;
	border-radius: var(--sig-radius-pill);
	background: transparent;
	box-shadow: none;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.hd-sub-menu ul.menu li a:hover,
.hd-sub-menu ul.menu li a.selected:hover {
	background: #e9ecef;
	color: #212529 !important;
}

.hd-sub-menu ul.menu li a.selected {
	background: var(--color-primary);
	color: #fff !important;
	font-weight: 600;
	box-shadow: none;
}

.hd-topbar__nav ul.menu li a.hd-topbar__nav-link--danger {
	color: #dc3545 !important;
}

.hd-topbar__nav ul.menu li a.hd-topbar__nav-link--danger:hover {
	background: rgba(220, 53, 69, 0.08);
	color: #bb2d3b !important;
}

.hd-login-link-wrap {
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
}

.menu-toggle {
	display: none;
	background: none;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-sm);
	font-size: 1.25rem !important;
	line-height: 1;
	padding: 0.25rem 0.5rem;
	cursor: pointer;
	color: #495057;
}

html.hd-theme-dark .hd-topbar {
	background: var(--hd-topbar-bg);
	border-bottom-color: var(--sig-border-color);
	box-shadow: var(--hd-topbar-shadow);
}

html.hd-theme-dark .hd-topbar__brand-logo img.logo[src$="help_desk.svg"],
html.hd-theme-dark .hd-login-logo img.logo[src$="help_desk.svg"] {
	filter: brightness(0) invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.28));
	opacity: 0.92;
}

html.hd-theme-dark .hd-topbar__nav ul.menu li a,
html.hd-theme-dark .hd-topbar__nav ul.menu li a.hd-topbar__nav-link {
	color: rgba(229, 231, 235, 0.82) !important;
}

html.hd-theme-dark .hd-topbar__nav ul.menu li a:hover,
html.hd-theme-dark .hd-topbar__nav ul.menu li a.selected:hover {
	background: rgba(96, 165, 250, 0.16);
	color: #bfdbfe !important;
}

html.hd-theme-dark .hd-topbar__nav ul.menu li a.selected {
	background: rgba(96, 165, 250, 0.22);
	color: #bfdbfe !important;
}

html.hd-theme-dark .hd-topbar__nav ul.menu li a.hd-topbar__nav-link--danger {
	color: #fca5a5 !important;
}

html.hd-theme-dark .hd-topbar__nav ul.menu li a.hd-topbar__nav-link--danger:hover {
	background: rgba(248, 113, 113, 0.14);
	color: #fecaca !important;
}

html.hd-theme-dark .hd-nav-sep {
	background: var(--sig-border-color);
}

html.hd-theme-dark .hd-sub-menu {
	background: #151f2e;
	border-bottom-color: var(--sig-border-color);
}

html.hd-theme-dark .hd-sub-menu ul.menu li a,
html.hd-theme-dark .hd-sub-menu ul.menu li a.hd-topbar__nav-link {
	color: #cbd5e1 !important;
}

html.hd-theme-dark .hd-sub-menu ul.menu li a:hover,
html.hd-theme-dark .hd-sub-menu ul.menu li a.selected:hover {
	background: #263244;
	color: #f8fafc !important;
}

html.hd-theme-dark .hd-sub-menu ul.menu li a.selected {
	background: var(--color-primary);
	color: #08111f !important;
}

html.hd-theme-dark .menu-toggle {
	background: #111827;
	color: #cbd5e1;
	border-color: var(--sig-border-color);
}

html.hd-theme-dark .menu-toggle:hover,
html.hd-theme-dark .hd-theme-toggle:hover {
	background: rgba(96, 165, 250, 0.16);
	border-color: rgba(96, 165, 250, 0.45);
	color: #bfdbfe;
}

@media (max-width: 992px) {
	.hd-topbar__main {
		flex-wrap: wrap;
		padding: 0.5rem 0.75rem;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.hd-topbar__nav ul.menu {
		display: none;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		margin-top: 0.5rem;
		padding: 0.5rem;
		background: #fff;
		border: 1px solid var(--sig-border-color);
		border-radius: var(--sig-radius-md);
		box-shadow: var(--sig-shadow-dropdown);
	}

	html.hd-theme-dark .hd-topbar__nav ul.menu {
		background: #111827;
		border-color: var(--sig-border-color);
	}

	.hd-topbar__nav ul.menu.open {
		display: flex;
	}

	.hd-topbar__nav ul.menu li a {
		width: 100%;
		justify-content: flex-start;
		border-radius: var(--sig-radius-sm);
	}

	.hd-nav-sep {
		display: none;
	}

	.hd-sub-menu {
		padding: 0.25rem 0.75rem;
	}
}

/* --- Conteudo e loading --- */
.hd-loading {
	width: 100%;
	margin-top: 10px;
}

.hd-loading__inner {
	background: none;
	border: 0;
	padding: 16px;
	text-align: center;
	font-size: 13px;
	color: var(--color-text-carregando);
}

.hd-content {
	padding: 1rem 1.25rem 1.5rem 1.25rem;
	max-width: 100%;
	box-sizing: border-box;
}

body.hd-body-app {
	background: var(--color-bg-body);
}

body.hd-body-login {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 2rem 1rem;
	box-sizing: border-box;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 48%),
		linear-gradient(160deg, #eef3f7 0%, var(--color-bg-body) 48%, #e6edf2 100%);
}

body.hd-body-login .hd-login-page {
	width: 100%;
	max-width: 1160px;
	min-height: auto;
	display: block;
	background: transparent;
}

body.hd-body-login .hd-login-page form {
	width: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

div.tabs {
	border-top: 0;
	border-bottom: 0;
	border-left: 0;
	border-right: 0;
}

/* --- Login --- */
.hd-login-page {
	min-height: 100vh;
	background: var(--color-bg-body);
}

.hd-login-shell {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	align-items: start;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: var(--sig-radius-lg);
	background: var(--color-bg-white);
	box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, 0.14), 0 0.25rem 0.75rem rgba(15, 23, 42, 0.08);
}

.hd-login-shell--sem-carousel {
	max-width: 430px;
	grid-template-columns: 1fr;
}

.hd-login-shell--sem-carousel .hd-login-card {
	border-radius: var(--sig-radius-lg);
}

.hd-login-hero {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	aspect-ratio: 16 / 11;
	min-height: 0;
	box-sizing: border-box;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(140deg, #0e3654 0%, #1674a7 58%, #2ab0b2 100%);
}

.hd-login-hero:after {
	display: none;
}

.hd-login-slides,
.hd-login-slide {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.hd-login-slide {
	opacity: 0;
	background: #0e3654;
	transition: opacity 0.45s ease;
}

.hd-login-slide.is-active {
	opacity: 1;
}

.hd-login-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: fill;
	object-position: center;
}

.hd-login-slide-fallback,
.hd-login-carousel-fallback {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 2rem;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	background:
		repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 46px),
		linear-gradient(140deg, #0e3654 0%, #1674a7 58%, #2ab0b2 100%);
}

.hd-login-slide-fallback[hidden] {
	display: none;
}

.hd-login-carousel-fallback i {
	font-size: 2.25rem !important;
	color: rgba(255, 255, 255, 0.76);
}

.hd-login-carousel-fallback strong {
	font-size: 1.75rem;
	color: #fff;
}

.hd-login-carousel-fallback span {
	max-width: 360px;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
}

.hd-login-carousel-top {
	position: absolute;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

.hd-login-carousel-top > * {
	pointer-events: auto;
}

.hd-login-carousel-count {
	display: inline-flex;
	align-items: center;
	min-height: 1.75rem;
	padding: 0 0.7rem;
	border-radius: var(--sig-radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(7, 18, 30, 0.48);
	color: #eef7ff;
	font-size: 0.75rem;
	font-weight: 700;
}

.hd-login-carousel-pause,
.hd-login-carousel-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(7, 18, 30, 0.48);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.hd-login-carousel-pause:hover,
.hd-login-carousel-nav:hover {
	background: rgba(7, 18, 30, 0.72);
	border-color: rgba(255, 255, 255, 0.45);
}

.hd-login-carousel-nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
}

.hd-login-carousel-nav--prev {
	left: 1rem;
}

.hd-login-carousel-nav--next {
	right: 1rem;
}

.hd-login-carousel-dots {
	position: absolute;
	right: 0;
	bottom: 1rem;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.hd-login-carousel-dot {
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: width 0.15s ease, background-color 0.15s ease;
}

.hd-login-carousel-dot.is-active {
	width: 1.5rem;
	border-radius: var(--sig-radius-pill);
	background: #fff;
}

.hd-login-card {
	position: relative;
	z-index: 3;
	background: var(--color-bg-white);
	width: 100%;
	max-width: none;
	min-width: 0;
	margin: 0;
	padding: 2rem 2.125rem;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	box-sizing: border-box;
}

.hd-login-logo {
	text-align: center;
	margin: 0 auto 1.5rem;
	position: relative;
	width: 220px;
	max-width: 100%;
}

.hd-login-logo .helpdesk-logo {
	position: absolute;
	bottom: -10px;
	right: 0;
	border-radius: var(--sig-radius-md);
}

.hd-login-heading {
	margin-bottom: 1.25rem;
	text-align: left;
}

.hd-login-title {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 700;
	color: #1f2937;
}

.hd-login-heading p {
	margin: 0.35rem 0 0;
	color: var(--color-text-gray);
	font-size: 0.875rem;
	line-height: 1.45;
}

.hd-login-alert {
	padding: 0.75rem 0.875rem;
	margin-bottom: 1.25rem !important;
	border-radius: var(--sig-radius-lg) !important;
	border: 1px solid #b6effb !important;
	background: #effbff !important;
	color: #055160 !important;
}

body.hd-body-login .hd-login-alert p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 !important;
	line-height: 1.35;
}

.hd-login-alert .ui-icon {
	flex: 0 0 auto;
	margin: 0;
}

.hd-login-field {
	margin-bottom: 1rem;
}

.hd-login-field--row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.4rem;
}

.hd-login-field label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--sig-label-color);
	margin-bottom: 0.35rem;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hd-login-input-wrap {
	position: relative;
	width: 100%;
	margin-bottom: 1rem;
}

.hd-login-field .hd-login-input-wrap {
	margin-bottom: 0;
}

.hd-login-input-icon {
	position: absolute;
	left: 0.875rem;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
	color: #8a97a6;
	font-size: 0.95rem !important;
	pointer-events: none;
}

.hd-login-input {
	width: 100% !important;
	max-width: 100% !important;
	height: 2.875rem;
	padding: 0.65rem 0.875rem !important;
	margin-bottom: 0 !important;
	border-radius: var(--sig-radius-lg) !important;
	border: 1px solid #cfd8e3 !important;
	box-sizing: border-box;
	font-size: 0.9375rem !important;
	line-height: 1.5;
	color: #1f2937;
	background: #fbfcfe !important;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.hd-login-input-wrap--icon .hd-login-input {
	padding-left: 2.5rem !important;
}

.hd-login-input-wrap--password .hd-login-input {
	padding-right: 2.75rem !important;
}

.hd-login-input:hover {
	border-color: #b8c4d2 !important;
}

.hd-login-input:focus {
	border-color: var(--color-primary) !important;
	background: #fff !important;
	box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.16);
	outline: 0;
}

.hd-login-eye {
	position: absolute;
	right: 0.45rem;
	top: 50%;
	z-index: 2;
	width: 2rem;
	height: 2rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #8a97a6;
	cursor: pointer;
	transform: translateY(-50%);
}

.hd-login-eye:hover {
	background: rgba(33, 150, 243, 0.08);
	color: var(--color-primary);
}

.hd-login-link {
	color: var(--color-primary);
	cursor: pointer;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.hd-login-link:hover {
	text-decoration: underline;
}

.hd-login-help {
	margin: -0.25rem 0 1rem;
	padding: 0.75rem 0.875rem;
	border: 1px solid #fde3bd;
	border-radius: var(--sig-radius-lg);
	background: #fff8ed;
	color: #8a4b10;
	font-size: 0.8125rem;
	line-height: 1.45;
}

.hd-login-actions {
	margin-top: 0.25rem;
}

.hd-login-actions .submit,
.hd-btn-primary.submit {
	width: 100%;
	min-height: 2.875rem;
	padding: 0.725rem 1rem !important;
	border-radius: var(--sig-radius-lg) !important;
	background: linear-gradient(135deg, var(--color-primary), #1178bd) !important;
	color: #fff !important;
	border: 1px solid var(--color-primary) !important;
	font-size: 0.9375rem !important;
	font-weight: 700 !important;
	cursor: pointer;
	box-shadow: 0 0.75rem 1.25rem -0.75rem rgba(33, 150, 243, 0.8);
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.hd-login-actions .submit:hover,
.hd-btn-primary.submit:hover {
	background: var(--color-primary-hover) !important;
	border-color: var(--color-primary-hover) !important;
	box-shadow: 0 1rem 1.5rem -0.75rem rgba(33, 150, 243, 0.9);
}

.hd-login-footer {
	color: #6c757d;
	font-size: 0.8125rem;
	line-height: 1.4;
	text-align: center;
}

@media (max-width: 900px) {
	body.hd-body-login {
		padding: 1rem;
		place-items: start center;
	}

	body.hd-body-login .hd-login-page {
		max-width: 430px;
	}

	.hd-login-shell {
		display: block;
		border-radius: var(--sig-radius-lg);
	}

	.hd-login-hero {
		display: none;
	}

	.hd-login-card {
		padding: 1.5rem 1.25rem;
		border-radius: var(--sig-radius-lg);
	}

	.hd-login-logo {
		width: 180px;
		margin-bottom: 1.25rem;
	}

	.hd-login-logo .helpdesk-logo {
		height: 13px !important;
	}
}

@media (max-width: 420px) {
	.hd-login-field--row {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.15rem;
	}

	.hd-login-link {
		white-space: normal;
	}
}

/* --- Quadro de Chamados (totais no form) --- */
body:not(.hd-out) #box-quadro_chamado table.hd-quadro-chamados,
body:not(.hd-out) .ui-widget table.hd-quadro-chamados {
	margin-bottom: 0;
}

body:not(.hd-out) #box-quadro_chamado table.hd-quadro-chamados td.hd-quadro-chamados__count,
body:not(.hd-out) .ui-widget table.hd-quadro-chamados td.hd-quadro-chamados__count {
	width: 1%;
	white-space: nowrap;
	text-align: center;
	padding-right: 0.5rem !important;
	vertical-align: middle;
}

body:not(.hd-out) #box-quadro_chamado .hd-quadro-total,
body:not(.hd-out) .ui-widget .hd-quadro-total {
	display: inline-block;
	min-width: 1.75rem;
	padding: 0.25rem 0.6rem;
	border-radius: var(--sig-radius-pill, 999px);
	color: #fff;
	font-weight: 600;
	font-size: 0.8125rem;
	line-height: 1.2;
	text-align: center;
	box-sizing: border-box;
}

/* --- Grids / listagens (Bootstrap table) --- */
body:not(.hd-out) .ui-widget table.grid {
	margin: 0 0 1rem 0;
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-lg);
	overflow: hidden;
	background: var(--color-bg-white);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
}

body:not(.hd-out) .ui-widget table.grid tr.ui-widget-header th,
body:not(.hd-out) .ui-widget table.grid thead th {
	background: #f8f9fa !important;
	color: #495057 !important;
	font-weight: 600;
	font-size: 0.8125rem;
	border-bottom: 2px solid var(--sig-border-color) !important;
	padding: 0.75rem 0.875rem !important;
	vertical-align: middle;
	line-height: 1.15;
	white-space: normal;
	overflow-wrap: normal;
	word-break: normal;
}

body:not(.hd-out) .ui-widget table.grid th.texto-vertical {
	width: 34px;
	min-width: 34px;
	max-width: 42px;
	height: 96px !important;
	padding: 0.625rem 0.35rem !important;
	border-top: 0 !important;
	border-bottom: 2px solid var(--sig-border-color) !important;
	rotate: none;
	text-align: center;
	text-orientation: mixed;
	vertical-align: bottom;
	white-space: nowrap;
	writing-mode: vertical-lr;
	writing-mode: sideways-lr;
}

body:not(.hd-out) .ui-widget table.grid th.texto-vertical small {
	font-size: 0.6875rem !important;
	line-height: 1;
}

body:not(.hd-out) .ui-widget table.grid td,
body:not(.hd-out) .ui-widget table.grid th {
	border: 0 !important;
	border-bottom: 1px solid var(--sig-border-color-light) !important;
	text-align: left;
	font-size: 0.875rem;
	min-height: auto !important;
	padding: 0.625rem 0.875rem !important;
	vertical-align: middle;
	color: #212529;
}

body:not(.hd-out) .ui-widget table.grid tbody tr:last-child td {
	border-bottom: 0 !important;
}

body:not(.hd-out) .ui-widget table.grid tr:nth-child(odd) td {
	background: var(--color-bg-white);
}

body:not(.hd-out) .ui-widget table.grid tr:nth-child(even) td {
	background: #f8f9fa;
}

body:not(.hd-out) .ui-widget table.grid tr:not(.no-hover):hover td,
body:not(.hd-out) .ui-widget table.grid tr:not(.no-hover):nth-child(even):hover td {
	background: #e7f1ff !important;
}

body:not(.hd-out) .ui-widget table.grid tr.selecionavel {
	cursor: pointer;
}

body:not(.hd-out) .ui-widget table.grid tr.selecionavel:hover td {
	background: #e7f1ff !important;
}

body:not(.hd-out) .ui-widget table.grid tr.wrong td {
	background: var(--color-bg-wrong) !important;
}

body:not(.hd-out) .ui-widget table.grid tr.wrong:nth-child(even) td {
	background: var(--color-bg-wrong-even) !important;
}

body:not(.hd-out) .ui-widget table.grid-scroll {
	display: block;
	overflow-y: auto;
	border-radius: var(--sig-radius-lg);
	border: 1px solid var(--sig-border-color);
}

body:not(.hd-out) .ui-widget table.grid-scroll thead th {
	background: #f8f9fa !important;
	border-bottom: 2px solid var(--sig-border-color) !important;
	position: sticky;
	top: 0;
	z-index: 2;
}

body:not(.hd-out) .ui-widget table.grid-scroll tfoot td,
body:not(.hd-out) .ui-widget table.grid-scroll tfoot th {
	background: #f8f9fa !important;
	border-top: 2px solid var(--sig-border-color) !important;
}

/* --- Tabs (Bootstrap nav-tabs) --- */
body:not(.hd-out) div.tabs {
	border: 0;
	margin: 0 0 1rem 0;
	background: transparent;
}

body:not(.hd-out) div.tabs ul.ui-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	border: 0 !important;
	border-bottom: 1px solid var(--sig-border-color) !important;
	background: transparent !important;
	font-weight: 500;
	padding: 0 0.25rem !important;
	margin: 0 !important;
}

body:not(.hd-out) div.tabs ul.ui-tabs-nav li {
	float: none !important;
	margin: 0 0 -1px 0 !important;
	border: none !important;
	background: transparent !important;
	border-radius: 0 !important;
	top: 0 !important;
	padding: 0 !important;
	list-style: none;
}

body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default,
body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default:hover,
body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active,
body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active:hover {
	background: transparent !important;
	border: none !important;
}

body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default a,
body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default a:link,
body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default a:visited {
	display: block;
	padding: 0.5625rem 1.25rem !important;
	margin: 0 !important;
	color: var(--color-primary) !important;
	font-size: 0.875rem;
	font-weight: 500;
	border: 1px solid transparent !important;
	border-radius: 0.5rem 0.5rem 0 0 !important;
	background: transparent !important;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease, background-color 0.15s ease;
}

body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default a:hover {
	color: #0a58ca !important;
	background: rgba(33, 150, 243, 0.06) !important;
	border-color: transparent !important;
}

body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active a,
body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active a:link,
body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active a:visited {
	position: relative;
	z-index: 2;
	color: #495057 !important;
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) var(--sig-border-color) var(--color-bg-white) !important;
	border-bottom-color: var(--color-bg-white) !important;
	margin-bottom: -1px !important;
	font-weight: 600;
}

body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active a:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	height: 3px;
	background: var(--color-bg-white);
}

body:not(.hd-out) div.tabs div.ui-tabs-panel {
	background: var(--color-bg-white) !important;
	padding: 1rem 1.125rem !important;
	border: 1px solid var(--sig-border-color) !important;
	border-top: none !important;
	border-radius: 0 0 var(--sig-radius-lg) var(--sig-radius-lg) !important;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
}

/* --- Subabas (tabs dentro de uma aba): nav-tabs compacta --- */
body:not(.hd-out) div.tabs div.tabs,
body:not(.hd-out) div.tabs-secundaria {
	margin: 0 !important;
}

body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav,
body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav {
	gap: 0.25rem;
	border-bottom: 1px solid var(--sig-border-color) !important;
	padding: 0 !important;
	margin: 0 !important;
}

body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li,
body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li {
	margin: 0 0 -1px 0 !important;
}

body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-default a,
body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-default a {
	padding: 0.375rem 0.875rem !important;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #6c757d !important;
	background: #f1f3f5 !important;
	border: 1px solid var(--sig-border-color-light) !important;
	border-bottom: 1px solid var(--sig-border-color) !important;
	border-radius: var(--sig-radius-md) var(--sig-radius-md) 0 0 !important;
}

body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-default a:hover,
body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-default a:hover {
	color: #212529 !important;
	background: #e9ecef !important;
}

body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-active a,
body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-active a,
body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-active a:hover,
body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-active a:hover {
	position: relative;
	z-index: 2;
	color: var(--color-primary) !important;
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) var(--sig-border-color) var(--color-bg-white) !important;
	font-weight: 600;
}

body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-active a:after,
body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-active a:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	height: 3px;
	background: var(--color-bg-white);
}

body:not(.hd-out) div.tabs div.tabs div.ui-tabs-panel,
body:not(.hd-out) div.tabs-secundaria div.ui-tabs-panel {
	position: relative;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none;
	padding: 0.75rem 1rem 0.5rem 1rem !important;
}

body:not(.hd-out) div.tabs div.tabs div.ui-tabs-panel:before,
body:not(.hd-out) div.tabs div.tabs div.ui-tabs-panel:after,
body:not(.hd-out) div.tabs-secundaria div.ui-tabs-panel:before,
body:not(.hd-out) div.tabs-secundaria div.ui-tabs-panel:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0.25rem;
	width: 1px;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(222, 226, 230, 0.95), rgba(222, 226, 230, 0));
}

body:not(.hd-out) div.tabs div.tabs div.ui-tabs-panel:before,
body:not(.hd-out) div.tabs-secundaria div.ui-tabs-panel:before {
	left: 0;
}

body:not(.hd-out) div.tabs div.tabs div.ui-tabs-panel:after,
body:not(.hd-out) div.tabs-secundaria div.ui-tabs-panel:after {
	right: 0;
}

/* Botoes submit padrao Bootstrap */
body:not(.hd-out) .ui-widget input.submit.ui-button,
body:not(.hd-out) .ui-widget button.submit.ui-button {
	padding: 0.375rem 0.75rem !important;
	font-size: 0.875rem !important;
	font-weight: 500;
	border-radius: var(--sig-radius-md) !important;
	border: 1px solid #ced4da !important;
	background: #fff !important;
	color: #212529 !important;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

body:not(.hd-out) .ui-widget input.submit.ui-button:hover,
body:not(.hd-out) .ui-widget button.submit.ui-button:hover {
	background: #f8f9fa !important;
	border-color: #adb5bd !important;
}

body:not(.hd-out) .ui-widget input.submit.button-blue,
body:not(.hd-out) .ui-widget button.submit.button-blue {
	background: var(--color-button-blue) !important;
	border-color: var(--color-button-blue-hover) !important;
	color: #fff !important;
}

/* --- Botoes semanticos --- */
.button-blue,
.ui-widget .button-blue {
	background: var(--color-button-blue) !important;
	color: #fff !important;
	border-color: var(--color-button-blue-hover) !important;
}

.button-blue:hover,
.ui-widget .button-blue:hover {
	background: var(--color-button-blue-hover) !important;
}

.button-green,
.ui-widget .button-green {
	background: var(--color-button-green) !important;
	color: #fff !important;
	border-color: var(--color-button-green-hover) !important;
}

.button-green:hover,
.ui-widget .button-green:hover {
	background: var(--color-button-green-hover) !important;
}

.button-red,
.ui-widget .button-red {
	background: var(--color-button-red) !important;
	color: #fff !important;
	border-color: var(--color-button-red-hover) !important;
}

.button-red:hover,
.ui-widget .button-red:hover {
	background: var(--color-button-red-hover) !important;
}

/* --- Cards --- */
.hd-card {
	background: var(--color-bg-white);
	border: 1px solid var(--sig-border-color-light);
	border-radius: var(--sig-radius-lg);
	box-shadow: var(--sig-shadow-card);
	padding: 16px;
}

.hd-card::after {
	content: "";
	display: table;
	clear: both;
}

.hd-card + .hd-card {
	margin-top: 12px;
}

/* --- Embed mailbox (comunicados) --- */
.sig-mailbox-embed {
	padding: 20px 24px 28px 24px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--color-text-default);
	font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.sig-mailbox-embed p {
	margin: 0 0 1em 0;
}

.sig-mailbox-embed img {
	max-width: 100%;
	height: auto;
}

.sig-mailbox-embed table {
	max-width: 100%;
}

/* --- Embed out.php --- */
body.hd-out {
	background: var(--color-bg-body);
}

body.hd-out.hd-out--white {
	background: var(--color-bg-white);
}

body.hd-out.hd-out--gray {
	background: var(--color-bg-body);
}

/* --- Embed out.php: tabs/botoes (ajuda no SIG) --- */
body.hd-out {
	color: var(--color-text-default);
	box-sizing: border-box;
}

body.hd-out * {
	font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body.hd-out .ui-widget * {
	font-size: 13px;
}

body.hd-out .ui-widget a {
	color: var(--color-text-default);
}

body.hd-out div.tabs {
	border: 0;
	margin: 0 0 0.75rem 0;
	background: transparent;
}

/* Ajuda no SIG: abas fixas, so o painel rola */
html:has(body.hd-out .hd-ajuda-content) {
	height: 100%;
}

body.hd-out:has(.hd-ajuda-content),
body.hd-out.hd-out--gray:has(.hd-ajuda-content) {
	height: 100%;
	overflow: hidden;
	background: #ffffff !important;
}

body.hd-out .hd-ajuda-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	padding: 12px 8px 0.5rem;
	overflow: hidden;
	background: #ffffff;
}

body.hd-out:has(.hd-ajuda-edit-bar) .hd-ajuda-content {
	padding-bottom: 4.5rem;
}

body.hd-out .hd-ajuda-content > div.tabs {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	background: #ffffff;
}

body.hd-out .hd-ajuda-content > div.tabs > ul.ui-tabs-nav {
	flex: 0 0 auto;
	position: relative;
	z-index: 5;
	background: #ffffff !important;
}

body.hd-out .hd-ajuda-content > div.tabs > div.ui-tabs-panel {
	flex: 1 1 auto;
	min-height: 0;
	overflow: auto;
	margin: 0 !important;
}

body.hd-out .hd-ajuda-content > div.tabs > div.ui-tabs-panel > div {
	box-sizing: border-box;
}

body.hd-out .hd-ajuda-content > div.tabs > div.ui-tabs-panel:has(.frame-centra_ajuda) {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

body.hd-out .hd-ajuda-content > div.tabs > div.ui-tabs-panel:has(.frame-centra_ajuda) > div {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

body.hd-out .hd-ajuda-content .frame-centra_ajuda {
	display: block;
	flex: 1 1 auto;
	width: 100%;
	height: 100% !important;
	min-height: 0;
	border: 0;
}

body.hd-out div.tabs ul.ui-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	border: 0 !important;
	border-bottom: 1px solid var(--sig-border-color) !important;
	background: transparent !important;
	font-weight: 500;
	padding: 0 0.25rem !important;
	margin: 0 !important;
}

body.hd-out div.tabs ul.ui-tabs-nav li {
	float: none !important;
	margin: 0 0 -1px 0 !important;
	border: none !important;
	background: transparent !important;
	border-radius: 0 !important;
	top: 0 !important;
	padding: 0 !important;
	list-style: none;
}

body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default,
body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default:hover,
body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active,
body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active:hover {
	background: transparent !important;
	border: none !important;
}

body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default a,
body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default a:link,
body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default a:visited {
	display: block;
	padding: 0.5625rem 1rem !important;
	margin: 0 !important;
	color: var(--color-primary) !important;
	font-size: 0.875rem;
	font-weight: 500;
	border: 1px solid transparent !important;
	border-radius: 0.5rem 0.5rem 0 0 !important;
	background: transparent !important;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease, background-color 0.15s ease;
}

body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default a:hover {
	color: #0a58ca !important;
	background: rgba(33, 150, 243, 0.06) !important;
	border-color: transparent !important;
}

body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active a,
body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active a:link,
body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active a:visited {
	position: relative;
	z-index: 2;
	color: #495057 !important;
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) var(--sig-border-color) var(--color-bg-white) !important;
	border-bottom-color: var(--color-bg-white) !important;
	margin-bottom: -1px !important;
	font-weight: 600;
}

body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active a:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	height: 3px;
	background: var(--color-bg-white);
}

body.hd-out div.tabs div.ui-tabs-panel {
	background: var(--color-bg-white) !important;
	padding: 1rem 1.125rem !important;
	border: 1px solid var(--sig-border-color) !important;
	border-top: none !important;
	border-radius: 0 0 var(--sig-radius-lg) var(--sig-radius-lg) !important;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
}

body.hd-out .ui-widget input.submit,
body.hd-out .ui-widget button.submit,
body.hd-out input.submit,
body.hd-out input[type=submit].submit {
	padding: 0.375rem 0.75rem !important;
	font-size: 0.8125rem !important;
	font-weight: 500;
	border-radius: var(--sig-radius-md) !important;
	border: 1px solid #ced4da !important;
	background: #fff !important;
	color: #212529 !important;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

body.hd-out .ui-widget input.submit:hover,
body.hd-out .ui-widget button.submit:hover,
body.hd-out input.submit:hover,
body.hd-out input[type=submit].submit:hover {
	background: #f8f9fa !important;
	border-color: #adb5bd !important;
}

body.hd-out .ui-state-highlight {
	background: #e7f3ff !important;
	border: 1px solid #b6dcfe !important;
	border-left: 4px solid var(--color-primary) !important;
	color: #084298 !important;
	padding: 0.75rem 1rem !important;
	border-radius: var(--sig-radius-md) !important;
}

body.hd-out .ui-state-highlight p {
	margin: 0.25rem 0;
}

body.hd-out .hd-ajuda-edit-bar {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 50;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 0.875rem;
	border-top: 1px solid var(--sig-border-color);
	background: var(--color-bg-white);
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
}

body.hd-out .hd-ajuda-edit-bar form {
	padding: 0;
	margin: 0;
	display: inline-block;
}

body.hd-out .frame-centra_ajuda {
	border: 0;
	background: transparent;
}


/* --- FAQ central (topo do SIG) --- */
html:has(body.hd-out .hd-faq-central) {
	height: 100%;
}
body.hd-out:has(.hd-faq-central),
body.hd-out.hd-out--gray:has(.hd-faq-central) {
	height: 100%;
	overflow: hidden;
	background: #ffffff !important;
}
body.hd-out .hd-faq-central {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	box-sizing: border-box;
	padding: 0;
	background: #ffffff;
	overflow: hidden;
}
body.hd-out .hd-faq-central__header {
	flex: 0 0 auto;
	padding: 1.25rem 1.25rem 1rem;
	text-align: center;
	background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
	border-bottom: 1px solid var(--sig-border-color-light);
}
body.hd-out .hd-faq-central__title {
	margin: 0 0 0.875rem 0;
	font-size: 1.25rem !important;
	font-weight: 700;
	color: var(--color-text-default);
	line-height: 1.3;
}
body.hd-out .hd-faq-central__busca-wrap {
	max-width: 420px;
	margin: 0 auto;
}
body.hd-out .hd-faq-central__busca {
	width: 100% !important;
	box-sizing: border-box;
	padding: 0.625rem 1rem !important;
	font-size: 0.9375rem !important;
	border: 1px solid var(--sig-border-color) !important;
	border-radius: var(--sig-radius-pill) !important;
	background: #ffffff !important;
	color: var(--color-text-default);
	box-shadow: var(--sig-shadow-inset);
}
body.hd-out .hd-faq-central__busca:focus {
	outline: none;
	border-color: var(--color-primary) !important;
	box-shadow: var(--sig-focus-ring);
}
body.hd-out .hd-faq-central__intro {
	flex: 0 0 auto;
	padding: 0.875rem 1.25rem 0.25rem;
}
body.hd-out .hd-faq-central__subtitle {
	margin: 0;
	font-size: 0.875rem !important;
	font-weight: 500;
	color: var(--color-text-gray);
	line-height: 1.4;
}
body.hd-out .hd-faq-central__subtitle--erro {
	color: #b02a37 !important;
	font-weight: 600;
}
body.hd-out .hd-faq-central__lista {
	flex: 1 1 auto;
	min-height: 0;
	overflow: auto;
	padding: 0.5rem 1rem 1rem;
	background: #ffffff;
}
body.hd-out .hd-faq-central__lista .hd-ajuda-sumario__grupo:first-of-type {
	margin-top: 8px;
}
body.hd-out .hd-faq-central .label-faq.hd-faq-hit {
	background: #fff3cd !important;
	border-radius: var(--sig-radius-sm);
	padding: 0.1rem 0.25rem;
}
body.hd-out .hd-faq-central__footer {
	flex: 0 0 auto;
	padding: 0.875rem 1.25rem 1rem;
	background: #f8fbff;
	border-top: 1px solid var(--sig-border-color);
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}
body.hd-out .hd-faq-central__footer-title {
	margin: 0 0 0.5rem 0;
	font-size: 0.875rem !important;
	font-weight: 500;
	color: var(--color-text-default);
}
body.hd-out .hd-faq-central__msg {
	display: inline-block;
	margin-left: 0.5rem;
	padding: 0.15rem 0.45rem;
	border-radius: var(--sig-radius-md);
	font-size: 0.75rem !important;
	font-weight: 700;
	color: #fff;
}
body.hd-out .hd-faq-central__msg--ok {
	background: var(--color-primary);
}
body.hd-out .hd-faq-central__msg--erro {
	background: #dc3545;
}
body.hd-out .hd-faq-central__sugestao {
	width: 100% !important;
	min-height: 56px;
	box-sizing: border-box;
	padding: 0.625rem 0.75rem !important;
	font-size: 0.875rem !important;
	border: 1px solid var(--sig-border-color) !important;
	border-radius: var(--sig-radius-md) !important;
	resize: vertical;
	background: #ffffff !important;
}
body.hd-out .hd-faq-central__sugestao:focus {
	outline: none;
	border-color: var(--color-primary) !important;
	box-shadow: var(--sig-focus-ring);
}
body.hd-out .hd-faq-central__footer-actions {
	margin-top: 0.5rem;
	text-align: right;
}
body.hd-out .hd-faq-central__btn {
	background: var(--color-primary) !important;
	border-color: var(--color-primary-hover) !important;
	color: #ffffff !important;
	padding: 0.45rem 1rem !important;
	border-radius: var(--sig-radius-pill) !important;
	font-weight: 600 !important;
}
body.hd-out .hd-faq-central__btn:hover {
	background: var(--color-primary-hover) !important;
}
html.hd-theme-dark body.hd-out .hd-faq-central,
html.hd-theme-dark body.hd-out .hd-faq-central__lista,
html.hd-theme-dark body.hd-out:has(.hd-faq-central) {
	background: var(--color-bg-white) !important;
}
html.hd-theme-dark body.hd-out .hd-faq-central__header {
	background: linear-gradient(180deg, #1e293b 0%, var(--color-bg-white) 100%);
	border-bottom-color: var(--sig-border-color);
}
html.hd-theme-dark body.hd-out .hd-faq-central__footer {
	background: #111827;
	border-top-color: var(--sig-border-color);
}
html.hd-theme-dark body.hd-out .hd-faq-central__busca,
html.hd-theme-dark body.hd-out .hd-faq-central__sugestao {
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) !important;
	color: var(--color-text-default);
}
/* --- Relatorios forum (out.php) --- */
body.hd-out .hd-relatorio {
	width: 100%;
	margin: 0;
	padding: 12px 12px 1.5rem;
	box-sizing: border-box;
}
body.hd-out .hd-relatorio .hd-forum__title {
	margin-bottom: 1rem;
}
body.hd-out .hd-relatorio table.grid.hd-forum__grid {
	width: 100%;
	margin: 0 0 1rem 0;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-lg);
	overflow: hidden;
	border-collapse: separate;
	border-spacing: 0;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
}
body.hd-out .hd-relatorio table.grid.hd-forum__grid thead th {
	background: #f8f9fa !important;
	border-bottom: 1px solid var(--sig-border-color) !important;
	padding: 0.7rem 0.85rem !important;
	font-size: 0.875rem !important;
	font-weight: 700;
	color: var(--color-text-default);
	text-align: left;
}
body.hd-out .hd-relatorio table.grid.hd-forum__grid tbody td {
	background: #ffffff !important;
	border-bottom: 1px solid var(--sig-border-color-light) !important;
	padding: 0.65rem 0.85rem !important;
	font-size: 0.875rem !important;
	vertical-align: middle;
}
body.hd-out .hd-relatorio table.grid.hd-forum__grid tbody tr:nth-child(even) td {
	background: #f8f9fa !important;
}
body.hd-out .hd-relatorio table.grid.hd-forum__grid tbody tr:hover td {
	background: rgba(33, 150, 243, 0.06) !important;
}
body.hd-out .hd-relatorio table.grid.hd-forum__grid tbody tr:last-child td {
	border-bottom: 0 !important;
}
body.hd-out .hd-relatorio table.grid.hd-forum__grid a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 500;
}
body.hd-out .hd-relatorio table.grid.hd-forum__grid a:hover {
	color: #0a58ca;
	text-decoration: underline;
}
/* --- Forum (out.php) --- */
body.hd-out:has(.hd-forum),
body.hd-out.hd-out--white:has(.hd-forum) {
	background: #ffffff !important;
	margin: 0;
}
body.hd-out .hd-forum,
body.hd-out .hd-forum__shell {
	width: 100%;
	max-width: none;
	margin: 0;
	box-sizing: border-box;
}
html:has(body.hd-out .hd-forum__table-wrap),
body.hd-out:has(.hd-forum__table-wrap) {
	height: 100%;
	overflow: hidden;
}
body.hd-out .hd-forum__shell {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	padding: 12px 12px 1.5rem;
	box-sizing: border-box;
	overflow: hidden;
}
body.hd-out .hd-forum__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	margin: 0 0 1rem 0;
	padding: 0.75rem 1rem;
	background: #ffffff;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-lg);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
	flex: 0 0 auto;
	position: relative;
	z-index: 20;
}
body.hd-out .hd-forum__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	flex: 0 0 auto;
}
body.hd-out .hd-forum__filters {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	flex: 1 1 auto;
	min-width: 0;
}
body.hd-out .hd-forum__label {
	font-size: 0.8125rem !important;
	font-weight: 600;
	color: var(--color-text-gray);
	margin: 0;
	white-space: nowrap;
	flex: 0 0 auto;
}
body.hd-out .hd-forum__filters .hd-forum__select,
body.hd-out .hd-forum__filters .hd-forum__busca,
body.hd-out .hd-forum__filters select.text,
body.hd-out .hd-forum__filters input.text {
	width: auto !important;
	max-width: none !important;
	flex: 0 0 auto;
}
body.hd-out .hd-forum__select,
body.hd-out .hd-forum__busca {
	box-sizing: border-box;
	padding: 0.4rem 0.65rem !important;
	font-size: 0.875rem !important;
	border: 1px solid var(--sig-border-color) !important;
	border-radius: var(--sig-radius-md) !important;
	background: #ffffff !important;
	color: var(--color-text-default);
	height: auto !important;
}
body.hd-out .hd-forum__select {
	min-width: 140px;
	width: 160px !important;
}
body.hd-out .hd-forum__busca {
	min-width: 180px;
	width: 220px !important;
}

@media (max-width: 900px) {
	.hd-forum__filters {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}
body.hd-out .hd-forum__busca.hd-forum__busca--ph {
	color: #9aa3af !important;
}
body.hd-out .hd-forum__busca:focus,
body.hd-out .hd-forum__select:focus {
	outline: none;
	border-color: var(--color-primary) !important;
	box-shadow: var(--sig-focus-ring);
}
body.hd-out .hd-forum .submit.hd-forum__btn,
body.hd-out .hd-forum input.submit.hd-forum__btn {
	padding: 0.4rem 0.85rem !important;
	font-size: 0.8125rem !important;
	font-weight: 600;
	border-radius: var(--sig-radius-md) !important;
	border: 1px solid #ced4da !important;
	background: #fff !important;
	color: #212529 !important;
}
body.hd-out .hd-forum .submit.hd-forum__btn:hover,
body.hd-out .hd-forum input.submit.hd-forum__btn:hover {
	background: #f8f9fa !important;
	border-color: #adb5bd !important;
}
body.hd-out .hd-forum .submit.hd-forum__btn--primary,
body.hd-out .hd-forum input.submit.hd-forum__btn--primary {
	background: var(--color-primary) !important;
	border-color: var(--color-primary-hover) !important;
	color: #fff !important;
}
body.hd-out .hd-forum .submit.hd-forum__btn--primary:hover,
body.hd-out .hd-forum input.submit.hd-forum__btn--primary:hover {
	background: var(--color-primary-hover) !important;
}
body.hd-out .hd-forum__table-wrap {
	flex: 1 1 auto;
	min-height: 0;
	background: #ffffff;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-lg);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
	overflow: auto;
}
body.hd-out .hd-forum table.grid.hd-forum__grid {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 0;
	cursor: pointer;
	border: 0;
	border-radius: 0;
}
body.hd-out .hd-forum table.grid.hd-forum__grid thead th {
	position: sticky;
	top: 0;
	z-index: 10;
	background: #f8f9fa !important;
	border-bottom: 1px solid var(--sig-border-color) !important;
	color: var(--color-text-default);
	font-size: 0.8125rem !important;
	font-weight: 700;
	padding: 0.7rem 0.75rem !important;
	text-align: left;
	box-shadow: 0 1px 0 var(--sig-border-color);
}
body.hd-out .hd-forum table.grid.hd-forum__grid thead th.center {
	text-align: center;
}
body.hd-out .hd-forum table.grid.hd-forum__grid tbody td {
	border-bottom: 1px solid var(--sig-border-color-light) !important;
	padding: 0.7rem 0.75rem !important;
	vertical-align: top;
	background: #ffffff !important;
}
body.hd-out .hd-forum table.grid.hd-forum__grid tbody tr.lin-fixa td {
	background: #f8fbff !important;
}
body.hd-out .hd-forum table.grid.hd-forum__grid tbody tr.hd-forum__row:hover td {
	background: rgba(33, 150, 243, 0.06) !important;
}
body.hd-out .hd-forum table.grid.hd-forum__grid tbody tr:last-child td {
	border-bottom: 0 !important;
}
body.hd-out .hd-forum .col-topico strong {
	font-size: 0.975rem !important;
	font-weight: 600;
	color: var(--color-text-default);
}
body.hd-out .hd-forum .col-topico strong:hover {
	color: var(--color-primary);
	text-decoration: underline;
}
body.hd-out .hd-forum .col-topico small {
	color: var(--color-text-gray);
	font-size: 0.75rem !important;
}
body.hd-out .hd-forum .col-padrao-1 {
	font-size: 0.875rem !important;
	color: var(--color-text-default);
}
body.hd-out .hd-forum .col-padrao-2 {
	font-size: 0.8125rem !important;
	color: var(--color-text-gray);
}
body.hd-out .hd-forum__badge {
	display: inline-block;
	margin-left: 0.35rem;
	padding: 0.1rem 0.4rem;
	border-radius: var(--sig-radius-pill);
	font-size: 0.6875rem !important;
	font-weight: 700;
	line-height: 1.4;
	vertical-align: middle;
}
body.hd-out .hd-forum__badge--warn {
	background: #f8d7da;
	color: #842029;
}
body.hd-out .hd-forum__title {
	margin: 0 0 0.875rem 0;
	font-size: 1.15rem !important;
	font-weight: 700;
	color: var(--color-text-default);
	line-height: 1.35;
}
body.hd-out .hd-forum--show,
body.hd-out .hd-forum--form {
	width: 100%;
	margin: 0;
	padding: 12px 12px 1.5rem;
	box-sizing: border-box;
}
body.hd-out .hd-forum--show table.grid.hd-forum__grid thead th {
	background: #f8f9fa !important;
	font-weight: 500;
	color: var(--color-text-gray);
}
body.hd-out .hd-forum--show .hd-forum__grid thead th,
body.hd-out .hd-forum--form .hd-forum__title {
	border-radius: var(--sig-radius-md);
}
html.hd-theme-dark body.hd-out:has(.hd-forum) {
	background: var(--color-bg-white) !important;
}
html.hd-theme-dark body.hd-out .hd-forum__toolbar,
html.hd-theme-dark body.hd-out .hd-forum__table-wrap {
	background: var(--color-bg-white);
	border-color: var(--sig-border-color);
	box-shadow: none;
}
html.hd-theme-dark body.hd-out .hd-forum table.grid.hd-forum__grid thead th {
	background: var(--color-bg-grid-header) !important;
	border-bottom-color: var(--sig-border-color) !important;
	color: var(--color-text-default);
}
html.hd-theme-dark body.hd-out .hd-forum table.grid.hd-forum__grid tbody td {
	background: var(--color-bg-white) !important;
	border-bottom-color: var(--sig-border-color) !important;
	color: var(--color-text-default);
}
html.hd-theme-dark body.hd-out .hd-forum table.grid.hd-forum__grid tbody tr.lin-fixa td {
	background: #1e293b !important;
}
html.hd-theme-dark body.hd-out .hd-forum table.grid.hd-forum__grid tbody tr.hd-forum__row:hover td {
	background: rgba(96, 165, 250, 0.12) !important;
}
/* --- Visualizacao FAQ (SHOW) --- */
body.hd-out:has(.hd-faq-show) {
	margin: 0;
	background: #ffffff !important;
	color: var(--color-text-default);
}
body.hd-out .hd-faq-show {
	width: 98%;
	max-width: none;
	margin: 0 auto;
	padding: 1.25rem 0 2rem;
	box-sizing: border-box;
}
body.hd-out .hd-faq-show__header {
	margin-bottom: 1rem;
	padding: 1rem 1.125rem;
	background: #ffffff;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-lg);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
}
body.hd-out .hd-faq-show__eyebrow {
	margin: 0 0 0.35rem 0;
	font-size: 0.75rem !important;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-primary);
}
body.hd-out .hd-faq-show__title {
	margin: 0 0 0.65rem 0;
	font-size: 1.35rem !important;
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-text-default);
}
body.hd-out .hd-faq-show__meta {
	margin: 0;
	font-size: 0.8125rem !important;
	color: var(--color-text-gray);
}
body.hd-out .hd-faq-show__meta-label {
	margin-right: 0.35rem;
}
body.hd-out .hd-faq-show__meta-sep {
	margin: 0 0.35rem;
	color: var(--color-text-gray);
}
body.hd-out .hd-faq-show__content {
	background: #ffffff;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-lg);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
	padding: 1.125rem 1.25rem;
	box-sizing: border-box;
}
body.hd-out .hd-faq-show__video {
	text-align: center;
	margin-bottom: 0.75rem;
}
body.hd-out .hd-faq-show__video iframe,
body.hd-out .hd-faq-show__video embed,
body.hd-out .hd-faq-show__video object,
body.hd-out .hd-faq-show__video video {
	max-width: 100%;
}
body.hd-out .hd-faq-show__divider {
	border: 0;
	border-bottom: 1px solid var(--sig-border-color-light);
	margin: 1rem 0;
}
body.hd-out .hd-faq-show__descricao {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--color-text-default);
	overflow-wrap: anywhere;
}
body.hd-out .hd-faq-show__descricao img {
	max-width: 100%;
	height: auto;
}
body.hd-out .hd-faq-show__descricao p {
	margin: 0.65rem 0;
}
body.hd-out .hd-faq-show__descricao h1,
body.hd-out .hd-faq-show__descricao h2,
body.hd-out .hd-faq-show__descricao h3 {
	margin: 1rem 0 0.5rem;
	line-height: 1.3;
	color: var(--color-text-default);
}
html.hd-theme-dark body.hd-out:has(.hd-faq-show) {
	background: var(--color-bg-white) !important;
}
html.hd-theme-dark body.hd-out .hd-faq-show__header,
html.hd-theme-dark body.hd-out .hd-faq-show__content {
	background: var(--color-bg-white);
	border-color: var(--sig-border-color);
	box-shadow: none;
}
/* --- Filtro sumario manual / FAQ --- */
body.hd-out .hd-ajuda-sumario__filtro {
	margin: 12px 0 0.75rem 0;
}
body.hd-out .hd-ajuda-sumario__filtro-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
body.hd-out .hd-ajuda-sumario__busca {
	width: 100% !important;
	box-sizing: border-box;
	padding: 0.55rem 0.9rem !important;
	font-size: 0.875rem !important;
	border: 1px solid var(--sig-border-color) !important;
	border-radius: var(--sig-radius-pill) !important;
	background: #ffffff !important;
	color: var(--color-text-default);
	box-shadow: var(--sig-shadow-inset);
}
body.hd-out .hd-ajuda-sumario__busca:focus {
	outline: none;
	border-color: var(--color-primary) !important;
	box-shadow: var(--sig-focus-ring);
}
body.hd-out .hd-ajuda-sumario__filtro-ok,
body.hd-out .hd-ajuda-sumario__filtro-vazio {
	margin: 0;
	font-size: 0.8125rem !important;
	font-weight: 500;
	color: var(--color-text-gray);
}
body.hd-out .hd-ajuda-sumario__filtro-vazio {
	color: #b02a37 !important;
	font-weight: 600;
}
body.hd-out .hd-ajuda-sumario .hd-ajuda-sumario__nome.hd-faq-hit {
	background: #fff3cd !important;
	border-radius: var(--sig-radius-sm);
	padding: 0.1rem 0.25rem;
}
body.hd-out .hd-ajuda-sumario__nome-extra {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
/* --- Sumario manual / FAQ (iframe ajuda) --- */
body.hd-out:has(.hd-ajuda-sumario),
body.hd-out.hd-out--gray:has(.hd-ajuda-sumario) {
	background: #ffffff !important;
}
body.hd-out .hd-ajuda-sumario {
	padding: 0.25rem 0.15rem 0.75rem;
	background: #ffffff;
	min-height: 100%;
	box-sizing: border-box;
}
body.hd-out .hd-ajuda-sumario > .hd-alert,
body.hd-out .hd-ajuda-sumario > .ui-state-highlight {
	margin-bottom: 0.5rem;
}
body.hd-out .hd-ajuda-sumario__grupo {
	background: #ffffff;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-lg);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
	margin-bottom: 0.75rem;
	overflow: hidden;
}
body.hd-out .hd-ajuda-sumario > .hd-ajuda-sumario__grupo:first-of-type {
	margin-top: 12px;
}
body.hd-out .hd-ajuda-sumario__titulo {
	margin: 0;
	padding: 0.625rem 0.875rem;
	font-size: 0.8125rem !important;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--color-text-default);
	background: #ffffff;
	border-bottom: 1px solid var(--sig-border-color-light);
}
body.hd-out .hd-ajuda-sumario__lista {
	list-style: none;
	margin: 0;
	padding: 0.35rem;
}
body.hd-out .hd-ajuda-sumario__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 0.7rem;
	margin: 0 0 0.25rem 0;
	border-radius: var(--sig-radius-md);
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
body.hd-out .hd-ajuda-sumario__item:last-child {
	margin-bottom: 0;
}
body.hd-out .hd-ajuda-sumario__item:hover {
	background: rgba(33, 150, 243, 0.06);
	border-color: #cfe7fc;
	box-shadow: inset 3px 0 0 var(--color-primary);
}
body.hd-out .hd-ajuda-sumario__nome {
	flex: 1 1 auto;
	min-width: 0;
	color: var(--color-text-default);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.35;
}
body.hd-out .hd-ajuda-sumario__item:hover .hd-ajuda-sumario__nome {
	color: #0a58ca;
}
body.hd-out .hd-ajuda-sumario__metas {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0.3rem;
	flex: 0 1 auto;
}
body.hd-out .hd-ajuda-sumario__badge {
	display: inline-block;
	padding: 0.1rem 0.4rem;
	border-radius: var(--sig-radius-pill);
	background: #e9ecef;
	color: #495057;
	font-size: 0.6875rem !important;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
}
body.hd-out .hd-ajuda-sumario__badge--warn {
	background: #fff3cd;
	color: #856404;
}
body.hd-out .hd-ajuda-sumario__edit {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #ced4da;
	background: #fff;
	color: #495057;
	border-radius: var(--sig-radius-md);
	padding: 0.15rem 0.45rem;
	font-size: 0.6875rem !important;
	font-weight: 600;
	cursor: pointer;
	line-height: 1.4;
}
body.hd-out .hd-ajuda-sumario__edit:hover {
	background: #f8f9fa;
	border-color: #adb5bd;
	color: #212529;
}
body.hd-out .hd-ajuda-sumario__chevron {
	flex: 0 0 auto;
	color: #adb5bd;
	font-size: 1.25rem;
	line-height: 1;
	padding-left: 0.15rem;
}
body.hd-out .hd-ajuda-sumario__item:hover .hd-ajuda-sumario__chevron {
	color: var(--color-primary);
}
html.hd-theme-dark body.hd-out:has(.hd-ajuda-sumario),
html.hd-theme-dark body.hd-out.hd-out--gray:has(.hd-ajuda-sumario) {
	background: var(--color-bg-white) !important;
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario {
	background: var(--color-bg-white);
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario__grupo {
	background: var(--color-bg-white);
	border-color: var(--sig-border-color);
	box-shadow: none;
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario__titulo {
	background: var(--color-bg-white);
	border-bottom-color: var(--sig-border-color);
	color: var(--color-text-default);
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario__item:hover {
	background: rgba(96, 165, 250, 0.12);
	border-color: #334155;
	box-shadow: inset 3px 0 0 var(--color-primary);
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario__item:hover .hd-ajuda-sumario__nome {
	color: var(--color-tab-primary-hover);
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario__badge {
	background: #1f2937;
	color: #cbd5e1;
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario__badge--warn {
	background: #3f2e10;
	color: #fbbf24;
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario__edit {
	background: var(--color-bg-white);
	border-color: var(--sig-border-color);
	color: var(--color-text-default);
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario__edit:hover {
	background: var(--color-hover-light);
}
html.hd-theme-dark body.hd-out .hd-ajuda-sumario__chevron {
	color: #64748b;
}

/* --- Alertas --- */
.hd-alert {
	padding: 8px 12px;
	margin-bottom: 12px;
	border-radius: var(--sig-radius-md);
	border: 1px solid var(--sig-border-color);
}

.tip-area {
	border-radius: var(--sig-radius-md);
}

.tip-area.ui-state-highlight,
#tipArea.ui-state-highlight,
#tip-area.ui-state-highlight,
.hd-alert.ui-state-highlight {
	background: #e7f3ff !important;
	border: 1px solid #b6dcfe !important;
	border-left: 4px solid var(--color-primary) !important;
	color: #084298 !important;
	padding: 0.75rem 1rem !important;
	border-radius: var(--sig-radius-md) !important;
}

.tip-area.ui-state-highlight p,
#tipArea.ui-state-highlight p,
#tip-area.ui-state-highlight p,
.hd-alert.ui-state-highlight p {
	margin: 0.25rem 0;
}

.tip-area.ui-state-error,
#tipArea.ui-state-error,
#tip-area.ui-state-error,
.hd-alert.ui-state-error {
	background: #f8d7da !important;
	border: 1px solid #f5c2c7 !important;
	border-left: 4px solid #dc3545 !important;
	color: #842029 !important;
}

.hd-alert p {
	margin: 0.7em;
	margin-left: 0;
}

.hd-alert .ui-icon {
	float: left;
	margin-right: .3em;
}

/* --- Acoes de formulario --- */
.hd-form-actions {
	text-align: right;
	margin-bottom: 8px;
}

.hd-form-actions .submit {
	margin-left: 4px;
}

.hd-form-actions--spaced {
	margin-top: 5px;
}

.hd-btn-link {
	display: inline-block;
	padding: 8px 16px;
	text-decoration: none;
	border-radius: var(--sig-radius-sm);
	border: none;
	cursor: pointer;
	font-weight: bold;
	font-size: 12px;
}

a.hd-btn-link,
a.hd-btn-link:link,
a.hd-btn-link:visited,
a.hd-btn-link:hover,
a.hd-btn-link:focus {
	color: #fff !important;
}

a.hd-btn-install,
a.hd-btn-install:link,
a.hd-btn-install:visited {
	background-color: var(--color-button-blue) !important;
}

a.hd-btn-install:hover,
a.hd-btn-install:focus {
	background-color: var(--color-button-blue-hover) !important;
}

a.hd-btn-test,
a.hd-btn-test:link,
a.hd-btn-test:visited {
	background-color: #ba6900 !important;
}

a.hd-btn-test:hover,
a.hd-btn-test:focus {
	background-color: #a15c00 !important;
	opacity: 0.92;
}

.hd-btn-sig-run {
	background: #5b21b6 !important;
	color: #fff !important;
	border-color: #4c1d95 !important;
	font-weight: bold !important;
}

/* --- Toolbar inferior fixa --- */
body:not(.hd-out) #div-TOOLBAR-BOTTOM {
	position: fixed;
	bottom: 8px;
	right: 8px;
	padding: 5px 15px;
	z-index: 9999999;
}

body:not(.hd-out) #div-TOOLBAR-BOTTOM-BOX {
	display: inline-block;
	text-align: right;
	padding: 0.5rem 0.625rem;
	background: rgba(255, 255, 255, 0.92) !important;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border: 1px solid var(--sig-border-color) !important;
	border-radius: var(--sig-radius-lg) !important;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}

body:not(.hd-out) #div-TOOLBAR-BOTTOM-BOX input {
	margin: 3px;
}

/* --- Lista de chamados (botoes inline) --- */
.bttn-MODERADO { background: #ffff00; color: black; }
.bttn-MODERADO:hover { background: #e3e166; color: black; }
.bttn-COMPLEXO { background: #F05050; color: white; }
.bttn-COMPLEXO:hover { background: #EE3939; color: white; }
.bttn-FACIL { background: #666; color: white; }
.bttn-FACIL:hover { background: #666; color: white; }
.bttn-ROTINA { background: green; color: white; }
.bttn-ROTINA:hover { background: green; color: white; }
.bttn-ESTRATEGIA { background: blue; color: white; }
.bttn-ESTRATEGIA:hover { background: blue; color: white; }

.bttn-visibilidade {
	background: white;
	color: silver;
}

.bttn-visibilidade hr {
	margin: 0;
	padding: 0;
}

.bttn-visibilidade:hover {
	background: #EFEFEF;
	color: black;
}

.bttn-visibilidade[destacado='1'] {
	background: black;
	color: white;
}

.bttn-visibilidade[destacado='1']:hover {
	background: #777;
	color: white;
}

.bttn {
	cursor: default;
	width: 17px;
	height: 15px;
	border: 1px solid silver;
	padding-top: 2px;
	border-radius: var(--sig-radius-sm);
}

.hd-chamado-list--editable .bttn {
	cursor: pointer;
}

/* --- Lista de chamados (layout compacto) --- */
body:not(.hd-out) #tabsLIST_I table.grid-scroll {
	max-width: 100%;
	overflow-x: auto;
	table-layout: fixed;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th,
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td {
	box-sizing: border-box;
	padding: 0.55rem 0.5rem !important;
	line-height: 1.25;
	white-space: normal !important;
	overflow-wrap: anywhere;
	word-break: normal;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th {
	overflow-wrap: normal !important;
	word-break: normal !important;
	hyphens: none;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(1),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(1) {
	width: 28px !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(2),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(2) {
	width: 46px !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(3),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(3) {
	width: 72px !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(4),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(4) {
	width: 66px !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(10),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(10) {
	width: 46px !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(1),
body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(2),
body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(3),
body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(4),
body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(10),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(1),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(2),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(3),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(4),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(10),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(13),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(14),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(15),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(16),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(17) {
	overflow-wrap: normal;
	white-space: nowrap !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(5),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(5) {
	width: 9% !important;
	min-width: 88px;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(6),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(6) {
	width: 13% !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(7),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(7) {
	width: 13% !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(8),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(8) {
	width: 20% !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(9),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(9) {
	width: 12% !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(11),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(11) {
	width: 10% !important;
	min-width: 96px;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(11) span {
	display: inline-block;
	max-width: 100%;
	box-sizing: border-box;
	padding: 2px 5px;
	line-height: 1.2;
	white-space: normal !important;
	overflow-wrap: anywhere;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td[nowrap] {
	white-space: normal !important;
	overflow-wrap: anywhere;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td[nowrap] span {
	display: inline-block;
	max-width: 100%;
	box-sizing: border-box;
	white-space: normal !important;
	overflow-wrap: anywhere;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll .input-prioridade {
	width: 30px;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll .bttn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 17px;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll .bttn-visibilidade {
	width: 44px;
	height: auto;
	max-width: 44px;
	padding: 2px 4px;
	line-height: 1.15;
	white-space: normal;
	overflow-wrap: normal;
	word-break: normal;
	text-align: center;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(17),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(17),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td[class*="td_producao_"] {
	width: 26px !important;
	min-width: 26px;
	max-width: 26px;
	padding-left: 0.12rem !important;
	padding-right: 0.12rem !important;
	text-align: center;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(18),
body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(18) {
	width: 52px !important;
	min-width: 52px;
	max-width: 52px;
	padding-left: 0.18rem !important;
	padding-right: 0.18rem !important;
	text-align: center;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:has(.bttn-visibilidade) {
	width: 52px !important;
	min-width: 52px;
	max-width: 52px;
	padding-left: 0.18rem !important;
	padding-right: 0.18rem !important;
	text-align: center;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td[class*="td_producao_"] .ui-icon {
	margin: 0 auto;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tbody td.producao_hover .ui-icon-star {
	background-image: url("../sigsistem_lib/css/custom-theme/images/ui-icons_cccccc_256x240.png") !important;
	filter: none;
	opacity: 0.95;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tbody td.producao_hover .ui-icon-star:hover,
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tbody td.producao_hover.producao .ui-icon-star,
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tbody td.producao .ui-icon-star {
	background-image: url("../sigsistem_lib/css/custom-theme/images/ui-icons_ffffff_256x240.png") !important;
	filter: none;
	opacity: 1;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-ADMINISTRADOR td,
body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-ADMINISTRADOR:hover td {
	background: #fafad2 !important;
	color: #111827 !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-ATENDENTE td,
body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-ATENDENTE:hover td {
	background: #ececff !important;
	color: #111827 !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-COLABORADOR td,
body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-COLABORADOR:hover td {
	background: #fff8a8 !important;
	color: #111827 !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-CONSULTOR td,
body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-CONSULTOR:hover td {
	background: #ffead2 !important;
	color: #111827 !important;
}

body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-CLIENTE td,
body:not(.hd-out) #tabsLIST_I table.grid-scroll tr.producao-CLIENTE:hover td {
	background: #ffe1e8 !important;
	color: #111827 !important;
}

@media only screen and (max-width: 1600px) {
	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th,
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td {
		padding: 0.45rem 0.35rem !important;
		font-size: 12px !important;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th *,
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td * {
		font-size: 12px !important;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(3),
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(3) {
		width: 66px !important;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(4),
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(4) {
		width: 58px !important;
	}

	body:not(.hd-out) #div-TOOLBAR-BOTTOM-BOX {
		padding: 0.4rem 0.5rem;
	}

	body:not(.hd-out) #div-TOOLBAR-BOTTOM-BOX input.submit {
		padding: 0.45rem 0.6rem !important;
		font-size: 12px !important;
	}
}

@media only screen and (max-width: 1366px) {
	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th,
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td {
		padding: 0.35rem 0.25rem !important;
		font-size: 11px !important;
		line-height: 1.2;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th *,
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td * {
		font-size: 11px !important;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(1),
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(1) {
		width: 24px !important;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(2),
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(2) {
		width: 40px !important;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(3),
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(3) {
		width: 58px !important;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(4),
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(4) {
		width: 52px !important;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(10),
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(10) {
		width: 34px !important;
	}

	body:not(.hd-out) #tabsLIST_I table.grid-scroll thead th:nth-child(11),
	body:not(.hd-out) #tabsLIST_I table.grid-scroll tbody td:nth-child(11) {
		min-width: 82px;
	}
}

body:not(.hd-out) #tb-CONTRATO {
	display: table;
	table-layout: auto;
	width: 100%;
	max-width: 100%;
	overflow-x: visible;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(1),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(1) {
	width: 2% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(2),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(2) {
	width: 4.5% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(3),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(3),
body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(4),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(4) {
	width: 5% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(5),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(5) {
	width: 26% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(6),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(6) {
	width: 7% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(7),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(7) {
	width: 3.5% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(8),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(8),
body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(9),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(9) {
	width: 5% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(10),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(10),
body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(11),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(11) {
	width: 5.5% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(12) {
	width: 15% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:nth-child(2) th,
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(n+12):nth-child(-n+16) {
	width: 3% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(17),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(17) {
	width: 4% !important;
}

body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(18),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(18),
body:not(.hd-out) #tb-CONTRATO thead tr:first-child th:nth-child(19),
body:not(.hd-out) #tb-CONTRATO tbody td:nth-child(19) {
	width: 3.5% !important;
}

body:not(.hd-out) #tb-CONTRATO td:last-child span {
	display: inline-block;
	max-width: 100%;
	box-sizing: border-box;
	white-space: normal !important;
}

body:not(.hd-out) #tb-COBRANCA {
	display: table;
	table-layout: fixed;
	width: 100%;
	max-width: 100%;
	overflow-x: visible;
}

body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(1),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(1) {
	width: 1.5% !important;
}

body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(2),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(2),
body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(3),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(13),
body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(9),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(3),
body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(10),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(14) {
	width: 4.8% !important;
}

body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(4),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(4) {
	width: 31% !important;
}

body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(5),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(5) {
	width: 6% !important;
}

body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(6),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(6),
body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(8),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(12),
body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(12),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(20) {
	width: 4.5% !important;
}

body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(7) {
	width: 12% !important;
}

body:not(.hd-out) #tb-COBRANCA thead tr:nth-child(2) th:nth-child(-n+5),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(n+7):nth-child(-n+11) {
	width: 2.4% !important;
}

body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(11) {
	width: 9% !important;
}

body:not(.hd-out) #tb-COBRANCA thead tr:nth-child(2) th:nth-child(n+6),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(n+15):nth-child(-n+19) {
	width: 1.8% !important;
	text-align: center;
}

body:not(.hd-out) #tb-COBRANCA thead tr:first-child th:nth-child(13),
body:not(.hd-out) #tb-COBRANCA tbody td:nth-child(21) {
	width: 7.8% !important;
}

body:not(.hd-out) #tb-COBRANCA nobr {
	white-space: normal;
}

body:not(.hd-out) #tb-COBRANCA img {
	max-width: 14px;
	height: auto;
}

@media only screen and (max-width: 1600px) {
	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll thead th,
	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll tbody td,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll thead th,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll tbody td,
	body:not(.hd-out) #tb-CONTRATO thead th,
	body:not(.hd-out) #tb-CONTRATO tbody td,
	body:not(.hd-out) #tb-CONTRATO tfoot th,
	body:not(.hd-out) #tb-COBRANCA thead th,
	body:not(.hd-out) #tb-COBRANCA tbody td,
	body:not(.hd-out) #tb-COBRANCA tfoot th {
		padding: 0.4rem 0.3rem !important;
		font-size: 12px !important;
	}

	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll thead th *,
	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll tbody td *,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll thead th *,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll tbody td *,
	body:not(.hd-out) #tb-CONTRATO thead th *,
	body:not(.hd-out) #tb-CONTRATO tbody td *,
	body:not(.hd-out) #tb-COBRANCA thead th *,
	body:not(.hd-out) #tb-COBRANCA tbody td * {
		font-size: 12px !important;
	}

	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll th.texto-vertical,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll th.texto-vertical {
		width: 2.6% !important;
		min-width: 0;
		max-width: none;
		height: 96px !important;
	}
}

@media only screen and (max-width: 1366px) {
	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll thead th,
	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll tbody td,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll thead th,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll tbody td,
	body:not(.hd-out) #tb-CONTRATO thead th,
	body:not(.hd-out) #tb-CONTRATO tbody td,
	body:not(.hd-out) #tb-CONTRATO tfoot th,
	body:not(.hd-out) #tb-COBRANCA thead th,
	body:not(.hd-out) #tb-COBRANCA tbody td,
	body:not(.hd-out) #tb-COBRANCA tfoot th {
		padding: 0.32rem 0.22rem !important;
		font-size: 11px !important;
	}

	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll thead th *,
	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll tbody td *,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll thead th *,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll tbody td *,
	body:not(.hd-out) #tb-CONTRATO thead th *,
	body:not(.hd-out) #tb-CONTRATO tbody td *,
	body:not(.hd-out) #tb-COBRANCA thead th *,
	body:not(.hd-out) #tb-COBRANCA tbody td * {
		font-size: 11px !important;
	}

	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll th:nth-child(3),
	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll td:nth-child(3),
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll th:nth-child(3),
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll td:nth-child(3) {
		width: 3.5% !important;
	}

	body:not(.hd-out) form[name="form_empresa"] table.grid-scroll .hd-img-logo,
	body:not(.hd-out) form[name="form_empresa_inativo"] table.grid-scroll .hd-img-logo {
		max-width: 42px;
		max-height: 30px;
	}
}

/* --- Painel sig-run (automatizacao) --- */
.sig-run-painel-wrap { display: none; margin-bottom: 10px; }

.sig-run-painel {
	padding: 12px 14px;
	border: 1px solid #c4b5fd;
	border-left: 5px solid #5b21b6;
	background: #faf5ff;
	border-radius: var(--sig-radius-md);
	font-size: 13px;
	line-height: 1.4;
}

.sig-run-painel-cabecalho {
	cursor: pointer;
	color: #5b21b6;
	font-size: 15px;
	font-weight: bold;
	margin: 0 0 8px 0;
}

.sig-run-painel-cabecalho span {
	font-size: 11px;
	color: #6b7280;
	font-weight: normal;
}

.sig-run-painel-intro {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 8px;
}

.sig-run-grid { display: table; width: 100%; border-collapse: collapse; margin: 8px 0; }
.sig-run-grid dl { display: table-row; }
.sig-run-grid dt { display: table-cell; width: 140px; padding: 3px 8px 3px 0; font-weight: bold; color: #374151; vertical-align: top; }
.sig-run-grid dd { display: table-cell; padding: 3px 0; vertical-align: top; }

.sig-run-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: var(--sig-radius-sm);
	font-weight: bold;
	font-size: 12px;
}

.sig-run-badge--eleg { background: #5b21b6; color: #fff; }

.sig-run-badge-detail {
	font-size: 12px;
	color: #4b5563;
}

.sig-run-meta {
	color: #6b7280;
	font-size: 11px;
}

.sig-run-alerta {
	background: #fef3c7;
	border: 1px solid #fcd34d;
	padding: 8px 10px;
	border-radius: var(--sig-radius-sm);
	margin: 8px 0;
	font-size: 12px;
}

.sig-run-alerta strong { color: #92400e; }

.sig-run-botoes {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #ddd6fe;
}

.sig-run-botoes .submit { margin: 0 6px 6px 0; }

.sig-run-status { font-size: 12px; margin-top: 6px; }
.sig-run-status--ok { color: green; }
.sig-run-status--err { color: red; }

/* --- Novo chamado (pre-chamado) --- */
.hd-pre-chamado {
	padding: 0 10px;
}

.hd-pre-chamado .mensagem * {
	color: rgba(255, 0, 0, 0.75) !important;
	font-size: 14px !important;
}

.hd-pre-chamado.hd-card {
	padding: 16px 20px;
	margin-bottom: 12px;
}

html.hd-theme-dark .hd-pre-chamado.hd-card {
	background: #111827;
	border-color: #334155;
}

html.hd-theme-dark .hd-pre-chamado .mensagem {
	background: rgba(127, 29, 29, 0.16);
	border: 1px solid rgba(248, 113, 113, 0.32);
	border-radius: var(--sig-radius-md);
	padding: 14px 18px;
}

html.hd-theme-dark .hd-pre-chamado .mensagem * {
	color: #fca5a5 !important;
}

html.hd-theme-dark .hd-pre-chamado .mensagem h1,
html.hd-theme-dark .hd-pre-chamado .mensagem strong {
	color: #fecaca !important;
}

.chamado-orientacoes * {
	color: red !important;
}

.chamado-orientacoes {
	padding: 0 15px;
	margin-bottom: 10px !important;
	clear: both;
}

/* --- Tema escuro --- */
html.hd-theme-dark a {
	color: #93c5fd;
}

html.hd-theme-dark hr {
	border-bottom-color: var(--color-border-hr);
}

html.hd-theme-dark body.hd-body-login {
	background:
		linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0) 48%),
		linear-gradient(160deg, #020617 0%, var(--color-bg-body) 52%, #111827 100%);
}

html.hd-theme-dark body.hd-body-login .hd-login-page,
html.hd-theme-dark .hd-login-page {
	background: transparent;
}

html.hd-theme-dark .hd-login-shell {
	background: var(--color-bg-white);
	border-color: rgba(148, 163, 184, 0.28);
	box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.45), 0 0.25rem 0.75rem rgba(0, 0, 0, 0.35);
}

html.hd-theme-dark .hd-login-card {
	background: var(--color-bg-white);
}

html.hd-theme-dark .hd-login-title {
	color: #f8fafc;
}

html.hd-theme-dark .hd-login-heading p,
html.hd-theme-dark .hd-login-footer {
	color: var(--color-text-gray);
}

html.hd-theme-dark .hd-login-field label {
	color: var(--sig-label-color);
}

html.hd-theme-dark .hd-login-input {
	background: #0f172a !important;
	border-color: #334155 !important;
	color: #e5e7eb;
}

html.hd-theme-dark .hd-login-input:hover {
	border-color: #475569 !important;
}

html.hd-theme-dark .hd-login-input:focus {
	background: #111827 !important;
	border-color: var(--color-primary) !important;
	box-shadow: var(--sig-focus-ring);
}

html.hd-theme-dark .hd-login-input-icon,
html.hd-theme-dark .hd-login-eye {
	color: #94a3b8;
}

html.hd-theme-dark .hd-login-eye:hover {
	background: rgba(96, 165, 250, 0.14);
	color: #bfdbfe;
}

html.hd-theme-dark .hd-login-help {
	background: #2a2213;
	border-color: #854d0e;
	color: #fde68a;
}

html.hd-theme-dark .hd-login-alert,
html.hd-theme-dark body:not(.hd-body-login) .ui-state-highlight,
html.hd-theme-dark .tip-area.ui-state-highlight,
html.hd-theme-dark #tipArea.ui-state-highlight,
html.hd-theme-dark #tip-area.ui-state-highlight,
html.hd-theme-dark .hd-alert.ui-state-highlight {
	background: #172033 !important;
	border-color: #334155 !important;
	border-left-color: var(--color-primary) !important;
	color: #dbeafe !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-state-highlight p,
html.hd-theme-dark body:not(.hd-body-login) .ui-state-highlight span,
html.hd-theme-dark body:not(.hd-body-login) .ui-state-highlight strong,
html.hd-theme-dark body:not(.hd-body-login) .ui-state-highlight li {
	color: #dbeafe !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-state-highlight hr {
	border-bottom-color: rgba(148, 163, 184, 0.28);
}

html.hd-theme-dark .tip-area.ui-state-error,
html.hd-theme-dark #tipArea.ui-state-error,
html.hd-theme-dark #tip-area.ui-state-error,
html.hd-theme-dark .hd-alert.ui-state-error {
	background: #3b1720 !important;
	border-color: #7f1d1d !important;
	border-left-color: #ef4444 !important;
	color: #fecaca !important;
}

html.hd-theme-dark body.hd-out {
	background: var(--color-bg-body);
	color: var(--color-text-default);
}

html.hd-theme-dark body.hd-out.hd-out--white,
html.hd-theme-dark body.hd-out.hd-out--gray {
	background: var(--color-bg-white);
}

html.hd-theme-dark body.hd-out:has(.hd-ajuda-content),
html.hd-theme-dark body.hd-out.hd-out--gray:has(.hd-ajuda-content) {
	background: var(--color-bg-white) !important;
}

html.hd-theme-dark body.hd-out .hd-ajuda-content,
html.hd-theme-dark body.hd-out .hd-ajuda-content > div.tabs,
html.hd-theme-dark body.hd-out .hd-ajuda-content > div.tabs > ul.ui-tabs-nav {
	background: var(--color-bg-white) !important;
}

html.hd-theme-dark body.hd-out div.tabs ul.ui-tabs-nav {
	border-bottom-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default a,
html.hd-theme-dark body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default a:link,
html.hd-theme-dark body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default a:visited {
	color: var(--color-primary) !important;
}

html.hd-theme-dark body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-default a:hover {
	color: var(--color-tab-primary-hover) !important;
	background: rgba(96, 165, 250, 0.12) !important;
}

html.hd-theme-dark body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active a,
html.hd-theme-dark body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active a:link,
html.hd-theme-dark body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active a:visited {
	color: var(--color-text-tabs-active) !important;
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) var(--sig-border-color) var(--color-bg-white) !important;
}

html.hd-theme-dark body.hd-out div.tabs ul.ui-tabs-nav li.ui-state-active a:after {
	background: var(--color-bg-white);
}

html.hd-theme-dark body.hd-out div.tabs div.ui-tabs-panel {
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) !important;
	color: var(--color-text-default);
	box-shadow: none;
}

html.hd-theme-dark body.hd-out .ui-widget input.submit,
html.hd-theme-dark body.hd-out .ui-widget button.submit,
html.hd-theme-dark body.hd-out input.submit,
html.hd-theme-dark body.hd-out input[type=submit].submit {
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) !important;
	color: var(--color-text-default) !important;
}

html.hd-theme-dark body.hd-out .ui-widget input.submit:hover,
html.hd-theme-dark body.hd-out .ui-widget button.submit:hover,
html.hd-theme-dark body.hd-out input.submit:hover,
html.hd-theme-dark body.hd-out input[type=submit].submit:hover {
	background: var(--color-hover-light) !important;
	border-color: var(--color-border-default) !important;
}

html.hd-theme-dark body.hd-out .hd-ajuda-edit-bar {
	background: var(--color-bg-white);
	border-top-color: var(--sig-border-color);
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.35);
}

html.hd-theme-dark .hd-loading__inner {
	color: var(--color-text-carregando);
}

html.hd-theme-dark .hd-content,
html.hd-theme-dark .hd-card,
html.hd-theme-dark body:not(.hd-out) .ui-widget-content {
	background: var(--color-bg-white);
	color: var(--color-text-default);
	border-color: var(--sig-border-color);
}

html.hd-theme-dark .hd-card {
	box-shadow: var(--sig-shadow-card);
}

html.hd-theme-dark body:not(.hd-out) .ui-widget input:not(.submit):not([type=button]):not([type=submit]),
html.hd-theme-dark body:not(.hd-out) .ui-widget select,
html.hd-theme-dark body:not(.hd-out) .ui-widget textarea,
html.hd-theme-dark body:not(.hd-out) input.text,
html.hd-theme-dark body:not(.hd-out) textarea.text {
	background: #0f172a !important;
	border-color: #334155 !important;
	color: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-out) .ui-widget input:not(.submit):not([type=button]):not([type=submit]):focus,
html.hd-theme-dark body:not(.hd-out) .ui-widget select:focus,
html.hd-theme-dark body:not(.hd-out) .ui-widget textarea:focus {
	border-color: var(--color-primary) !important;
	box-shadow: var(--sig-focus-ring);
}

html.hd-theme-dark body:not(.hd-out) .ui-widget input[disabled],
html.hd-theme-dark body:not(.hd-out) .ui-widget select[disabled],
html.hd-theme-dark body:not(.hd-out) .ui-widget textarea[disabled] {
	background: var(--color-bg-disabled) !important;
	color: #94a3b8 !important;
}

html.hd-theme-dark body:not(.hd-out) .cke_chrome {
	border-color: #334155 !important;
	box-shadow: none !important;
}

html.hd-theme-dark body:not(.hd-out) .cke_top {
	background: #1f2937 !important;
	border-bottom-color: #334155 !important;
	box-shadow: none !important;
}

html.hd-theme-dark body:not(.hd-out) .cke_bottom {
	background: #1f2937 !important;
	border-top-color: #334155 !important;
}

html.hd-theme-dark body:not(.hd-out) .cke_toolgroup,
html.hd-theme-dark body:not(.hd-out) .cke_combo_button {
	background: #111827 !important;
	border-color: #334155 !important;
	box-shadow: none !important;
}

html.hd-theme-dark body:not(.hd-out) .cke_button_icon {
	filter: invert(1) grayscale(1) brightness(1.55);
	opacity: 0.78;
}

html.hd-theme-dark body:not(.hd-out) .cke_button:hover,
html.hd-theme-dark body:not(.hd-out) .cke_button:focus,
html.hd-theme-dark body:not(.hd-out) .cke_combo_button:hover,
html.hd-theme-dark body:not(.hd-out) .cke_combo_button:focus {
	background: #263244 !important;
	border-color: #475569 !important;
}

html.hd-theme-dark body:not(.hd-out) .cke_combo_text,
html.hd-theme-dark body:not(.hd-out) .cke_combo_open {
	color: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-out) .cke_wysiwyg_frame,
html.hd-theme-dark body:not(.hd-out) .cke_wysiwyg_div {
	background: #f8fafc !important;
}

html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid {
	background: var(--color-bg-white);
	border-color: var(--sig-border-color);
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.32);
}

html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid tr.ui-widget-header th,
html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid thead th,
html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid-scroll thead th {
	background: #1f2937 !important;
	color: #e5e7eb !important;
	border-bottom-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid td,
html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid th {
	color: #e5e7eb;
	border-bottom-color: var(--sig-border-color-light) !important;
}

html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid tr:nth-child(odd) td {
	background: var(--color-bg-row-odd);
}

html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid tr:nth-child(even) td {
	background: var(--color-row-even);
}

html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid tr:not(.no-hover):hover td,
html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid tr:not(.no-hover):nth-child(even):hover td,
html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid tr.selecionavel:hover td {
	background: var(--color-row-hover) !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-ADMINISTRADOR td,
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-ADMINISTRADOR:hover td {
	background: #2f2f20 !important;
	color: #fef9c3 !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-ATENDENTE td,
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-ATENDENTE:hover td {
	background: #242847 !important;
	color: #dbeafe !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-COLABORADOR td,
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-COLABORADOR:hover td {
	background: #33310f !important;
	color: #fef08a !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-CONSULTOR td,
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-CONSULTOR:hover td {
	background: #33261a !important;
	color: #fed7aa !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-CLIENTE td,
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST_I table.grid-scroll tr.producao-CLIENTE:hover td {
	background: #3a1f2a !important;
	color: #fbcfe8 !important;
}

html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid-scroll {
	border-color: var(--sig-border-color);
}

html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid-scroll tfoot td,
html.hd-theme-dark body:not(.hd-out) .ui-widget table.grid-scroll tfoot th {
	background: #1f2937 !important;
	border-top-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body:not(.hd-out) div.tabs ul.ui-tabs-nav,
html.hd-theme-dark body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav,
html.hd-theme-dark body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav {
	border-bottom-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default a,
html.hd-theme-dark body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default a:link,
html.hd-theme-dark body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default a:visited {
	color: #93c5fd !important;
}

html.hd-theme-dark body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-default a:hover {
	background: rgba(96, 165, 250, 0.14) !important;
	color: #bfdbfe !important;
}

html.hd-theme-dark body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active a,
html.hd-theme-dark body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active a:link,
html.hd-theme-dark body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active a:visited {
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) var(--sig-border-color) var(--color-bg-white) !important;
	border-bottom-color: var(--color-bg-white) !important;
	color: #f8fafc !important;
}

html.hd-theme-dark body:not(.hd-out) div.tabs ul.ui-tabs-nav li.ui-state-active a:after,
html.hd-theme-dark body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-active a:after,
html.hd-theme-dark body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-active a:after {
	background: var(--color-bg-white);
}

html.hd-theme-dark body:not(.hd-out) div.tabs div.ui-tabs-panel {
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) !important;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.32);
}

html.hd-theme-dark body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-default a,
html.hd-theme-dark body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-default a {
	background: #1f2937 !important;
	border-color: var(--sig-border-color-light) !important;
	color: #cbd5e1 !important;
}

html.hd-theme-dark body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-default a:hover,
html.hd-theme-dark body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-default a:hover {
	background: #263244 !important;
	color: #f8fafc !important;
}

html.hd-theme-dark body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-active a,
html.hd-theme-dark body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-active a,
html.hd-theme-dark body:not(.hd-out) div.tabs div.tabs ul.ui-tabs-nav li.ui-state-active a:hover,
html.hd-theme-dark body:not(.hd-out) div.tabs-secundaria ul.ui-tabs-nav li.ui-state-active a:hover {
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) var(--sig-border-color) var(--color-bg-white) !important;
	color: #93c5fd !important;
}

html.hd-theme-dark body:not(.hd-out) div.tabs div.tabs div.ui-tabs-panel:before,
html.hd-theme-dark body:not(.hd-out) div.tabs div.tabs div.ui-tabs-panel:after,
html.hd-theme-dark body:not(.hd-out) div.tabs-secundaria div.ui-tabs-panel:before,
html.hd-theme-dark body:not(.hd-out) div.tabs-secundaria div.ui-tabs-panel:after {
	background: linear-gradient(to bottom, rgba(51, 65, 85, 0.95), rgba(51, 65, 85, 0));
}

html.hd-theme-dark body:not(.hd-out) .ui-widget input.submit.ui-button,
html.hd-theme-dark body:not(.hd-out) .ui-widget button.submit.ui-button {
	background: #1f2937 !important;
	border-color: #475569 !important;
	color: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-out) .ui-widget input.submit.ui-button:hover,
html.hd-theme-dark body:not(.hd-out) .ui-widget button.submit.ui-button:hover {
	background: #263244 !important;
	border-color: #64748b !important;
}

html.hd-theme-dark body:not(.hd-out) #div-TOOLBAR-BOTTOM-BOX {
	background: rgba(17, 24, 39, 0.92) !important;
	border-color: var(--sig-border-color) !important;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.42);
}

html.hd-theme-dark .sig-run-painel {
	background: #1f1635;
	border-color: #6d28d9;
	color: #e9d5ff;
}

html.hd-theme-dark .sig-run-painel-cabecalho,
html.hd-theme-dark .sig-run-grid dt {
	color: #c4b5fd;
}

html.hd-theme-dark .sig-run-painel-intro,
html.hd-theme-dark .sig-run-meta,
html.hd-theme-dark .sig-run-badge-detail,
html.hd-theme-dark .sig-run-painel-cabecalho span {
	color: #cbd5e1;
}

html.hd-theme-dark .sig-run-alerta {
	background: #2a2213;
	border-color: #854d0e;
	color: #fde68a;
}

html.hd-theme-dark .sig-run-alerta strong {
	color: #fbbf24;
}

html.hd-theme-dark .sig-run-status--err {
	color: #fca5a5;
}

html.hd-theme-dark body:not(.hd-body-login) .chamado-orientacoes *,
html.hd-theme-dark body:not(.hd-body-login) .interacao-orientacoes *,
html.hd-theme-dark body:not(.hd-body-login) td.td-strong,
html.hd-theme-dark body:not(.hd-body-login) td.td-strong * {
	color: #fca5a5 !important;
}

html.hd-theme-dark body:not(.hd-body-login) td.td-strong .s-destaque,
html.hd-theme-dark body:not(.hd-body-login) .s-destaque {
	border: 1px solid rgba(226, 232, 240, 0.28) !important;
	border-radius: var(--sig-radius-sm);
	text-decoration-color: currentColor;
}

html.hd-theme-dark body:not(.hd-body-login) td.td-strong .s-destaque-ADMINISTRADOR,
html.hd-theme-dark body:not(.hd-body-login) .s-destaque-ADMINISTRADOR {
	background: #2f2f20 !important;
	color: #fef9c3 !important;
}

html.hd-theme-dark body:not(.hd-body-login) td.td-strong .s-destaque-ATENDENTE,
html.hd-theme-dark body:not(.hd-body-login) .s-destaque-ATENDENTE {
	background: #242847 !important;
	color: #dbeafe !important;
}

html.hd-theme-dark body:not(.hd-body-login) td.td-strong .s-destaque-COLABORADOR,
html.hd-theme-dark body:not(.hd-body-login) .s-destaque-COLABORADOR {
	background: #33310f !important;
	color: #fef08a !important;
}

html.hd-theme-dark body:not(.hd-body-login) td.td-strong .s-destaque-CONSULTOR,
html.hd-theme-dark body:not(.hd-body-login) .s-destaque-CONSULTOR {
	background: #33261a !important;
	color: #fed7aa !important;
}

html.hd-theme-dark body:not(.hd-body-login) td.td-strong .s-destaque-CLIENTE,
html.hd-theme-dark body:not(.hd-body-login) .s-destaque-CLIENTE {
	background: #3a1f2a !important;
	color: #fbcfe8 !important;
}

/* Ajustes para estilos inline legados das views */
html.hd-theme-dark body:not(.hd-body-login) [style*="background: white"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:white"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #ffffff"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#ffffff"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #fff;"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#fff;"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #FFF;"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#FFF;"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color: #ffffff"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color:#ffffff"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color: white"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color:white"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #FAFAFA"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#FAFAFA"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #fafafa"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#fafafa"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #F9F9F9"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#F9F9F9"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #fffff8"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#fffff8"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #fffff5"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#fffff5"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #f0f8ff"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#f0f8ff"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #e9f5fc"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#e9f5fc"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #EFEFEF"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#EFEFEF"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #EEE"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#EEE"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #DDDDDD"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#DDDDDD"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #DDD"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#DDD"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #CCCCCC"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#CCCCCC"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #CCC"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#CCC"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color: #f0f0f0"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color:#f0f0f0"] {
	background: var(--color-bg-white) !important;
	color: var(--color-text-default) !important;
	border-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body:not(.hd-body-login) [style*="background: #e8f4f8"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#e8f4f8"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #b6dde8"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#b6dde8"] {
	background: #12243b !important;
	color: #bfdbfe !important;
	border-color: #1d4ed8 !important;
}

html.hd-theme-dark body:not(.hd-body-login) [style*="background: yellow"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: lightgoldenrodyellow"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color: yellow"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color: lightgoldenrodyellow"] {
	background: #4a3500 !important;
	color: #fde68a !important;
	border-color: #a16207 !important;
}

html.hd-theme-dark body:not(.hd-body-login) [style*="background: #ffd7c7"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#ffd7c7"] {
	background: #3b1720 !important;
	color: #fecaca !important;
	border-color: #7f1d1d !important;
}

html.hd-theme-dark body:not(.hd-body-login) [style*="background: red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color: red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background-color:red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #f00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#f00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #ff0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#ff0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background: #f20000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="background:#f20000"] {
	background: #7f1d1d !important;
	color: #fecaca !important;
	border-color: #b91c1c !important;
}

html.hd-theme-dark body:not(.hd-body-login) [style*="color: red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color : red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color :red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: Red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:Red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color : Red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color :Red"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: RED"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:RED"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color : RED"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color :RED"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: #f00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#f00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color : #f00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color :#f00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: #F00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#F00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color : #F00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color :#F00"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: #ff0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#ff0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color : #ff0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color :#ff0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: #FF0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#FF0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color : #FF0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color :#FF0000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: #f20000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#f20000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: #F20000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#F20000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: rgb(255, 0, 0"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:rgb(255, 0, 0"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: rgb(255,0,0"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:rgb(255,0,0"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: rgba(255, 0, 0"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:rgba(255, 0, 0"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: rgba(255,0,0"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:rgba(255,0,0"] {
	color: #fca5a5 !important;
}

html.hd-theme-dark body:not(.hd-body-login) [style*="color: #777"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#777"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: #555"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#555"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: #000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#000"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: black"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:black"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: #17365d"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:#17365d"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: darkblue"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:darkblue"] {
	color: var(--color-text-default) !important;
}

html.hd-theme-dark body:not(.hd-body-login) [style*="color: gray"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:gray"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color: silver"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:silver"] {
	color: var(--color-text-gray) !important;
}

html.hd-theme-dark body:not(.hd-body-login) [style*="color: blue"],
html.hd-theme-dark body:not(.hd-body-login) [style*="color:blue"] {
	color: #93c5fd !important;
}

html.hd-theme-dark body:not(.hd-body-login) [style*="border: 1px solid silver"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border:1px solid silver"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border: 1px solid #DDD"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border:1px solid #DDD"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border-top: 1px solid silver"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border-top:1px solid silver"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border-bottom: 1px solid silver"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border-bottom:1px solid silver"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border-bottom:1px solid #c3c5cc"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border-top: 1px dashed #add8e6"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border-top:1px dashed #add8e6"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border-bottom: 1px dashed #add8e6"],
html.hd-theme-dark body:not(.hd-body-login) [style*="border-bottom:1px dashed #add8e6"] {
	border-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body:not(.hd-body-login) table[style*="background"],
html.hd-theme-dark body:not(.hd-body-login) tr[style*="background"] {
	color: var(--color-text-default) !important;
}

html.hd-theme-dark body:not(.hd-body-login) table.grid {
	background: var(--color-bg-white) !important;
	border-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body:not(.hd-body-login) table.grid thead tr,
html.hd-theme-dark body:not(.hd-body-login) table.grid thead th,
html.hd-theme-dark body:not(.hd-body-login) table.grid tr.ui-widget-header th {
	background: #1f2937 !important;
	color: #e5e7eb !important;
	border-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body:not(.hd-body-login) table.grid tbody tr.lin-padrao td,
html.hd-theme-dark body:not(.hd-body-login) table.grid tbody tr.lin-padrao:nth-child(even) td,
html.hd-theme-dark body:not(.hd-body-login) table.grid tbody tr.lin-fixa td,
html.hd-theme-dark body:not(.hd-body-login) table.grid tbody tr.lin-fixa:nth-child(even) td,
html.hd-theme-dark body:not(.hd-body-login) table.grid tr:nth-child(odd) td {
	background: var(--color-bg-row-odd) !important;
	color: var(--color-text-default) !important;
	border-color: var(--sig-border-color-light) !important;
}

html.hd-theme-dark body:not(.hd-body-login) table.grid tr:nth-child(even) td {
	background: var(--color-row-even) !important;
	color: var(--color-text-default) !important;
	border-color: var(--sig-border-color-light) !important;
}

html.hd-theme-dark body:not(.hd-body-login) table.grid tbody td.col-topico strong,
html.hd-theme-dark body:not(.hd-body-login) table.grid tbody td.col-topico small,
html.hd-theme-dark body:not(.hd-body-login) table.grid tbody td.col-padrao-2 {
	color: var(--color-text-default) !important;
}

html.hd-theme-dark body:not(.hd-body-login) table.grid tbody td.col-topico strong:hover {
	color: #bfdbfe !important;
}

html.hd-theme-dark body:not(.hd-body-login) .red,
html.hd-theme-dark body:not(.hd-body-login) .ui-widget .red {
	color: #fca5a5 !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .blue {
	color: #93c5fd !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .yellow {
	color: #fde68a !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .green {
	color: #86efac !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .orange {
	color: #fdba74 !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .purple {
	color: #c4b5fd !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .pink {
	color: #f9a8d4 !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .brown {
	color: #d6b28a !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .black,
html.hd-theme-dark body:not(.hd-body-login) .ui-widget .white {
	color: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .gray {
	color: #cbd5e1 !important;
}

html.hd-theme-dark body:not(.hd-body-login) .ui-widget .silver {
	color: #94a3b8 !important;
}

html.hd-theme-dark body:not(.hd-body-login) .draft-b,
html.hd-theme-dark body:not(.hd-body-login) .ui-widget table.grid .draft-b {
	background-color: #1d3557 !important;
	border-color: #2563eb !important;
	color: #dbeafe !important;
}

html.hd-theme-dark body:not(.hd-body-login) .draft-r,
html.hd-theme-dark body:not(.hd-body-login) .ui-widget table.grid .draft-r {
	background-color: #3b1720 !important;
	border-color: #7f1d1d !important;
	color: #fecaca !important;
}

html.hd-theme-dark body:not(.hd-body-login) .draft-y,
html.hd-theme-dark body:not(.hd-body-login) .draft-Y,
html.hd-theme-dark body:not(.hd-body-login) .ui-widget table.grid .draft-y,
html.hd-theme-dark body:not(.hd-body-login) .ui-widget table.grid .draft-Y {
	background-color: #2a2213 !important;
	border-color: #854d0e !important;
	color: #fde68a !important;
}

html.hd-theme-dark body:not(.hd-body-login) input.submit,
html.hd-theme-dark body:not(.hd-body-login) button.submit {
	background: #1f2937 !important;
	border-color: #475569 !important;
	color: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) input.submit:hover,
html.hd-theme-dark body:not(.hd-body-login) button.submit:hover {
	background: #263244 !important;
	border-color: #64748b !important;
	color: #f8fafc !important;
}

html.hd-theme-dark body:not(.hd-body-login) a {
	color: #93c5fd !important;
}

html.hd-theme-dark body:not(.hd-body-login) a:hover {
	color: #bfdbfe !important;
}

html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-link,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-link:link,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-link:visited,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-link:hover,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-link:focus {
	color: #fff !important;
}

html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-install,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-install:link,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-install:visited {
	background-color: #0284c7 !important;
	border-color: #0369a1 !important;
}

html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-install:hover,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-install:focus {
	background-color: #0369a1 !important;
}

html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-test,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-test:link,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-test:visited {
	background-color: #c2410c !important;
	border-color: #9a3412 !important;
}

html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-test:hover,
html.hd-theme-dark body:not(.hd-body-login) a.hd-btn-test:focus {
	background-color: #9a3412 !important;
}

html.hd-theme-dark body:not(.hd-body-login) #div-interacao.ui-accordion .ui-accordion-header,
html.hd-theme-dark body:not(.hd-body-login) #div-interacao.ui-accordion .ui-accordion-header-active,
html.hd-theme-dark body:not(.hd-body-login) #div-interacao.ui-accordion .ui-accordion-header-active:hover,
html.hd-theme-dark body:not(.hd-body-login) #div-interacao.ui-accordion .ui-accordion-header:hover {
	background: #1f2937 !important;
	background-image: none !important;
	border: 1px solid var(--sig-border-color) !important;
	color: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) #div-interacao.ui-accordion .ui-accordion-header a,
html.hd-theme-dark body:not(.hd-body-login) #div-interacao.ui-accordion .ui-accordion-header a:hover {
	color: #dbeafe !important;
}

html.hd-theme-dark body:not(.hd-body-login) #div-interacao.ui-accordion .area-comentario,
html.hd-theme-dark body:not(.hd-body-login) #div-interacao.ui-accordion .ui-accordion-content {
	background: #111827 !important;
	border-color: var(--sig-border-color) !important;
	color: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) #div-interacao .span-INTERNA {
	background: #dc2626 !important;
	color: #fff !important;
}

html.hd-theme-dark body:not(.hd-body-login) #div-interacao .span-INTERNA_CONSULTOR {
	background: #facc15 !important;
	color: #111827 !important;
}

html.hd-theme-dark body:not(.hd-body-login) #div-interacao .span-EXTERNA {
	background: #2563eb !important;
	color: #fff !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tb-COBRANCA img[src$="gerais/clip.png"],
html.hd-theme-dark body:not(.hd-body-login) #tb-COBRANCA img[src$="gerais/copy_clip.png"] {
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

html.hd-theme-dark body:not(.hd-body-login) #tb-COBRANCA img[src$="gerais/clip_off.png"] {
	filter: brightness(0) invert(1);
	opacity: 0.35;
}

html.hd-theme-dark body:not(.hd-body-login) #icons {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
}

html.hd-theme-dark body:not(.hd-body-login) #icons li.ui-state-default {
	background: #1f2937 !important;
	border-color: #475569 !important;
	color: #e5e7eb !important;
	cursor: pointer;
}

html.hd-theme-dark body:not(.hd-body-login) #icons li.ui-state-default:hover {
	background: #263244 !important;
	border-color: #64748b !important;
}

html.hd-theme-dark body:not(.hd-body-login) #icons .ui-icon {
	filter: invert(1) grayscale(1) brightness(1.35);
}

html.hd-theme-dark body:not(.hd-body-login) #icons select.ui-state-default {
	background: #111827 !important;
	border-color: #475569 !important;
	color: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) #icons select.ui-state-default option {
	background: #111827 !important;
	color: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) #icons select.ui-state-default option:checked,
html.hd-theme-dark body:not(.hd-body-login) #icons select.ui-state-default option[style] {
	background: #1d3557 !important;
	color: #bfdbfe !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 [id^="grafico_chamado"] {
	background: #111827 !important;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-md);
	padding: 8px;
	box-sizing: border-box;
	overflow-x: auto;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg,
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg > rect {
	background: #111827 !important;
	fill: #111827 !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg rect[fill="#ffffff"],
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg rect[fill="#FFFFFF"],
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg rect[fill="white"] {
	fill: #111827 !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg text {
	fill: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg text[fill="#222222"],
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg text[fill="#333333"],
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg text[fill="#444444"],
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg text[fill="#666666"] {
	fill: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg path[stroke="#cccccc"],
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg path[stroke="#ebebeb"],
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg line[stroke="#cccccc"],
html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 svg line[stroke="#ebebeb"] {
	stroke: #334155 !important;
}

html.hd-theme-dark body:not(.hd-body-login) #tabsLIST-4 .google-visualization-tooltip {
	background: #1f2937 !important;
	border-color: #475569 !important;
	color: #e5e7eb !important;
	box-shadow: var(--sig-shadow-dropdown) !important;
}

html.hd-theme-dark body:not(.hd-body-login) #grafico,
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] {
	background: #111827 !important;
	border: 1px solid var(--sig-border-color);
	border-radius: var(--sig-radius-md);
	padding: 8px;
	box-sizing: border-box;
	overflow-x: auto;
}

html.hd-theme-dark body:not(.hd-body-login) #grafico svg,
html.hd-theme-dark body:not(.hd-body-login) #grafico svg > rect,
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg,
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg > rect {
	background: #111827 !important;
	fill: #111827 !important;
}

html.hd-theme-dark body:not(.hd-body-login) #grafico svg rect[fill="#ffffff"],
html.hd-theme-dark body:not(.hd-body-login) #grafico svg rect[fill="#FFFFFF"],
html.hd-theme-dark body:not(.hd-body-login) #grafico svg rect[fill="white"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg rect[fill="#ffffff"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg rect[fill="#FFFFFF"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg rect[fill="white"] {
	fill: #111827 !important;
}

html.hd-theme-dark body:not(.hd-body-login) #grafico svg text,
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg text {
	fill: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) #grafico svg text[fill="#222222"],
html.hd-theme-dark body:not(.hd-body-login) #grafico svg text[fill="#333333"],
html.hd-theme-dark body:not(.hd-body-login) #grafico svg text[fill="#444444"],
html.hd-theme-dark body:not(.hd-body-login) #grafico svg text[fill="#666666"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg text[fill="#222222"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg text[fill="#333333"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg text[fill="#444444"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg text[fill="#666666"] {
	fill: #e5e7eb !important;
}

html.hd-theme-dark body:not(.hd-body-login) #grafico svg path[stroke="#cccccc"],
html.hd-theme-dark body:not(.hd-body-login) #grafico svg path[stroke="#ebebeb"],
html.hd-theme-dark body:not(.hd-body-login) #grafico svg line[stroke="#cccccc"],
html.hd-theme-dark body:not(.hd-body-login) #grafico svg line[stroke="#ebebeb"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg path[stroke="#cccccc"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg path[stroke="#ebebeb"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg line[stroke="#cccccc"],
html.hd-theme-dark body:not(.hd-body-login) [id^="grafico_chamado"] svg line[stroke="#ebebeb"] {
	stroke: #334155 !important;
}

html.hd-theme-dark body:not(.hd-body-login) .google-visualization-tooltip {
	background: #1f2937 !important;
	border-color: #475569 !important;
	color: #e5e7eb !important;
	box-shadow: var(--sig-shadow-dropdown) !important;
}

html.hd-theme-dark body:not(.hd-body-login) .box-abc:hover {
	background: #0f172a !important;
}

html.hd-theme-dark body:not(.hd-body-login) .box-abc .box-titulo {
	color: #cbd5e1 !important;
	border-bottom-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body:not(.hd-body-login) .box-abc .item-opcao,
html.hd-theme-dark body:not(.hd-body-login) .box-itens .item-item {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.42), 0 8px 18px rgba(0, 0, 0, 0.28);
}

html.hd-theme-dark body:not(.hd-body-login) .box-abc .item-opcao:hover,
html.hd-theme-dark body:not(.hd-body-login) .box-opcoes .item-opcao:hover,
html.hd-theme-dark body:not(.hd-body-login) .box-itens .item-item:not(.item-sem_link):hover {
	filter: brightness(0.82) saturate(1.08);
	box-shadow: 0 0 0 1px rgba(147, 197, 253, 0.38), 0 10px 22px rgba(0, 0, 0, 0.42) !important;
}

html.hd-theme-dark body:not(.hd-body-login) .box-opcoes {
	border-bottom-color: var(--sig-border-color) !important;
}

html.hd-theme-dark body:not(.hd-body-login) .item-icon,
html.hd-theme-dark body:not(.hd-body-login) .item-info {
	border-color: var(--sig-border-color) !important;
}

/* --- Listagens: helpers --- */
.hd-img-logo {
	max-width: 75px;
	max-height: 50px;
}

.hd-small {
	font-size: 11px;
}

#dd-situacao div {
	display: inline-block;
	margin-right: 25px;
}

@media only screen and (max-width: 1400px) {
	.box-http_sistema {
		max-width: none;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
		overflow-wrap: anywhere;
	}
}

/* --- Filtro rapido por numero (lista de chamados) --- */
.hd-filtro-rapido__hint {
	margin: 0 0 10px 0;
	font-size: 13px;
}

.hd-filtro-rapido__input {
	width: 100%;
	box-sizing: border-box;
	font-size: 28px !important;
	text-align: center;
	letter-spacing: 0.05em;
	padding: 10px 8px !important;
	height: auto !important;
}

.hd-filtro-rapido__input--codigo {
	text-align: center;
	letter-spacing: 0.05em;
	font-size: 28px !important;
}

.hd-filtro-rapido__input--assunto {
	text-align: left;
	letter-spacing: normal;
	font-size: 18px !important;
}
