* {
	box-sizing: border-box;
	max-width: 100%;
}

body,
html {
	font-family: 'Exo', sans-serif;
	font-size: 14px;
	background: #f4f6f8;
	/* Softer background */
	line-height: 1.6;
	color: #333333;
	/* Darker, more legible gray */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizelegibility;
	height: 100%;
	min-height: 100%;
}

.sh-select-loading-below {
	font-size: 12px;
	color: #6b7280;
	padding: 6px 4px 0 4px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.sh-select-loading-below .sh-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #d1d5db;
	border-top-color: #3b82f6;
	border-radius: 50%;
	animation: sh-spin 0.7s linear infinite;
}

@keyframes sh-spin {
	to {
		transform: rotate(360deg);
	}
}

#supporthero-button {
	background-color: #62b4af !important;
}

p {
	font-family: 'Arial', sans-serif;
}

.spaceIn {
	padding: 10px;
	padding-top: 45px;
}

.form {
	width: 450px;
	margin: auto;
}

.logo {
	width: 450px;
	margin: auto;
	padding-top: 10%;
	padding-bottom: 30px;
	text-align: center;
}

.card.login {
	padding: 50px;
}

.button {
	background-color: #ffffff;
	color: #333;
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0 16px;
	min-width: 52px;
	min-height: 44px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	/* slightly more rounded */
	vertical-align: top;
	text-align: center;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: 500;
	line-height: 42px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	/* Smooth hover transition */
}

.button:hover {
	color: #111;
	background-color: #f9fafb;
	border-color: #9ca3af;
	text-decoration: none;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	/* subtle lift on hover */
}

.button:active {
	transform: translateY(1px);
}

.button.button-positive {
	background-color: #62b4af;
	color: #fff;
	border-color: #549e99;
}

.button.button-positive:hover {
	background-color: #53a39e;
	border-color: #4b8f8b;
	box-shadow: 0 4px 6px rgba(98, 180, 175, 0.25);
}

.boxcheck {
	padding-top: 10px;
}

.checkbox {
	border-radius: 4px;
	border: 1px solid #ccc;
	float: left;
	margin-right: 5px;
	background-color: #fff;
	padding: 2px;
	margin-top: -3px;
	cursor: pointer;
}

.checkbox .checked {
	width: 15px;
	height: 15px;
	background-color: #fff;
	border-radius: 4px;
}

.on .checkbox .checked {
	background-color: #00AAFF;
}

.dialog-msg .text {
	font-size: 20px;
	padding-top: 10px;
}

.dialog-msg .text a {
	cursor: pointer;
	font-size: 14px;
}

.ilustrator {
	background-color: #ccc;
	width: 55px;
	height: 55px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	float: left;
	margin-right: 15px;
}

.ilustrator.s img {
	margin-top: 20px;
}

.ilustrator.s {
	background-color: #4dab8c;
}

.ilustrator.w {
	background-color: #f1d307;
}

.ilustrator.w img {
	margin-top: 14px;
}

.menu {
	width: 200px;
	height: 100%;
	background-color: #2d3748;
	/* slightly softer dark blue/gray */
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	transition: width 0.3s ease;
}

.menu.show {
	display: block;
}

.menu .top {
	background-color: #012A49;
	height: 70px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #012A49;
}

.menu .top img {
	max-height: 55px;
	width: auto;
	padding: 2px;
}

.menu li {
	width: 100%;
	padding: 14px 12px;
	cursor: pointer;
	transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.menu li:hover {
	background-color: #4a5568;
}

.menu li.selected {
	background-color: #62b4b0;
	background-image: url(../images/ico_menu_selected.png);
	background-repeat: no-repeat;
	background-position: right center;
	font-weight: 600;
}

.menu .menu-ico {
	float: left;
	margin-right: 15px;
	margin-left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.menu .menu-ico img {
	max-width: 100%;
	max-height: 100%;
}

.menu .menu-ico img[src$=".svg"] {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.menu .menu-text {
	color: #fff;
	white-space: nowrap;
}

.view {
	width: 100%;
}

.space {
	width: 100%;
	height: 10px;
}

.view .menu-mobile {
	display: none;
}

.view .top {
	background-color: #fff;
	height: 70px;
	padding-top: 0;
	display: flex;
	align-items: center;
	position: fixed;
	width: 100%;
	padding-left: 200px;
	z-index: 50;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	/* Softer, more modern shadow */
}

.view .top .left {
	margin-left: 20px;
	font-size: 18px;
	color: #4a5568;
	font-weight: 600;
}

.view .top .api-meta {
	margin-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	max-width: 320px;
}

.view .top .api-host {
	font-size: 11px;
	color: #a0aec0;
	margin-left: 0;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.view .top .build-info {
	margin-left: 0;
	font-size: 11px;
	line-height: 1.35;
	min-width: 0;
}

.view .top .build-front {
	color: #a0aec0;
	white-space: nowrap;
}

.view .top .right {
	margin-left: auto;
	/* push to the right */
	padding-right: 20px;
	display: flex;
	align-items: center;
}

.view .right img {
	cursor: pointer;
}

.right-force {
	float: right;
}

.view .left {
	float: left;
}

.view .user-info {
	text-align: right;
	font-size: 13px;
	margin-right: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.view .user-info .title {
	font-weight: 600;
	color: #2d3748;
}

.view .user-img {
	margin-right: 10px;
	border-radius: 50%;
	/* Modern circular avatars */
}

.view .body-view {
	padding-right: 24px;
	padding-bottom: 30px;
	padding-left: 224px;
	/* accounting for menu */
	padding-top: 94px;
	/* space for top bar + margin */
}

.view h1 {
	font-size: 18px;
	font-weight: 800;
}

.view .action {
	float: left;
	margin-left: 10px;
}

/* Header Dashboard */
.header-dashboard {
	margin-bottom: 0;
}

.header-dashboard h2 {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 5px 0;
}

/* Report Filters Container (global) */
.report-filters-container {
	background-color: #f9f9f9;
	padding: 15px;
	margin-bottom: 0;
	border-radius: 4px;
	border: 1px solid #ddd;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: flex-end;
}

.filter-label {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: 600;
	color: #555;
}

.report-filters-container .action {
	float: none;
	margin-left: 0;
	width: 100%;
}

.report-filters-container .action .form-control {
	width: 100%;
}

.filter-group-sh {
	flex: 0 1 33%;
	min-width: 250px;
	max-width: 33%;
}

.filter-group-item {
	flex: 0 0 auto;
	width: 180px;
}

.filter-group-search {
	flex: 0 1 300px;
	min-width: 200px;
}

.filter-group-actions {
	display: flex;
	flex-grow: 0;
	margin-left: auto;
	justify-content: flex-end;
	gap: 10px;
}

.filter-group-actions .bt-new,
.filter-group-actions .bt-action {
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 34px;
	padding: 0 20px;
	line-height: 34px;
}

/* =========================================================================
   UI-SELECT & SELECT2 MODERNIZATION OVERRIDES
   ========================================================================= */

/* Base combobox input container */
.select2-container .select2-choice,
.ui-select-bootstrap .ui-select-match>.btn {
	background-image: none !important;
	/* Remove old gradients */
	background-color: #fff !important;
	border: 1px solid #d1d5db !important;
	border-radius: 6px !important;
	color: #333 !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
	height: 40px !important;
	/* Fixed height to match standard inputs */
	padding: 0 12px !important;
	/* Unified padding for horizontal alignment */
	line-height: normal !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	font-family: 'Exo', sans-serif !important;
	display: flex !important;
	align-items: center !important;
}

/* Fix internal spans vertical centering for select2 */
.select2-container .select2-choice>.select2-chosen,
.ui-select-bootstrap .ui-select-match-text {
	line-height: 40px !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Fix clear button (cross) vertical alignment in ui-select */
.ui-select-bootstrap .ui-select-match .close {
	line-height: 40px !important;
	margin-top: 0 !important;
	padding-right: 10px !important;
}

/* Hover and Focus States */
.select2-container:hover .select2-choice,
.ui-select-bootstrap:hover .ui-select-match>.btn {
	border-color: #9ca3af !important;
}

.select2-dropdown-open .select2-choice,
.select2-container-active .select2-choice,
.ui-select-bootstrap.open .ui-select-match>.btn {
	border-color: #62b4af !important;
	box-shadow: 0 0 0 3px rgba(98, 180, 175, 0.2) !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

/* Arrow/Caret styling */
.select2-container .select2-choice .select2-arrow,
.ui-select-bootstrap>.ui-select-match>.caret {
	background-image: none !important;
	background-color: transparent !important;
	border-left: none !important;
	opacity: 0.5;
}

/* Dropdown menu container */
.select2-drop,
.ui-select-bootstrap .ui-select-choices {
	border: 1px solid #62b4af !important;
	z-index: 1050 !important;
	border-top: none !important;
	/* Connects smoothly with the active input */
	border-radius: 0 0 6px 6px !important;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
	background-color: #fff !important;
}

/* Dropdown Search Input */
.select2-search input,
.ui-select-bootstrap>.ui-select-choices .ui-select-search {
	background-image: none !important;
	border: 1px solid #d1d5db !important;
	border-radius: 4px !important;
	padding: 8px !important;
	margin-top: 5px !important;
	box-shadow: none !important;
}

.select2-search input:focus,
.ui-select-bootstrap>.ui-select-choices .ui-select-search:focus {
	border-color: #62b4af !important;
	box-shadow: 0 0 0 2px rgba(98, 180, 175, 0.2) !important;
}

/* Dropdown Items */
.select2-results .select2-result-label,
.ui-select-bootstrap .ui-select-choices-row>a {
	padding: 8px 12px !important;
	color: #374151 !important;
	font-size: 14px !important;
	transition: background-color 0.1s ease;
}

/* Hover/Active states on items */
.select2-results .select2-highlighted,
.ui-select-bootstrap .ui-select-choices-row>a:hover,
.ui-select-bootstrap .ui-select-choices-row.active>a {
	background-color: #f3f4f6 !important;
	/* Soft gray hover instead of harsh blue */
	color: #111827 !important;
	background-image: none !important;
}

.box-config-plugs {
	padding: 10px;
	background-color: rgb(226, 226, 226);
}

.plug-label.box {
	border-radius: 0;
}

.preview-upload {
	float: left;
	height: 57px;
	margin-right: 5px;
}

.field.p25 input[type=file] {
	width: 120px;
}

.field.p25 small {
	display: block;
}

.plufPlansID {
	float: right !important;
	padding-right: 0;
}

.p100 {
	float: left;
	width: 100%;
}

.p90 {
	float: left;
	width: 90%;
}

.p80 {
	float: left;
	width: 80%;
}

.p75 {
	float: left;
	width: 75%;
}

.p60 {
	float: left;
	width: 60%;
}

.p50 {
	float: left;
	width: 50%;
}

.p45 {
	float: left;
	width: 45%;
}

.p48 {
	float: left;
	width: 48%;
}

.p40 {
	float: left;
	width: 40%;
}

.p35 {
	float: left;
	width: 35%;
}

.p34 {
	float: left;
	width: 34%;
}

.p33 {
	float: left;
	width: 33%;
}

.p30 {
	float: left;
	width: 30%;
}

.p25 {
	float: left;
	width: 25%;
}

.p20 {
	float: left;
	width: 20%;
}

.p15 {
	float: left;
	width: 15%;
}

.p10 {
	float: left;
	width: 10%;
}

.card {
	background-color: #fff;
	border: 1px solid #e2e8f0;
	/* softer border */
	border-radius: 8px;
	/* Slightly more rounded */
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	/* Modern, soft shadow */
	margin-top: 15px;
	transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.card .card-content {
	padding: 20px;
	/* More breathing room */
}

.card .footer {
	background-color: #f8fafc;
	padding: 15px 20px;
	border-top: 1px solid #e2e8f0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.card .info label {
	color: #64748b;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	margin-bottom: 4px;
	display: block;
}

.card .info .description {
	font-size: 15px;
	color: #1e293b;
	margin-bottom: 12px;
	font-family: 'Open Sans', sans-serif;
}

.card.oneLine .info .description {
	margin-bottom: 0;
}

.card .mark {
	float: right;
	padding-left: 10px;
	padding-right: 10px;
	color: #fff;
	border-radius: 8px;
	margin-left: 5px;
	font-size: 13px;
}

.card .mark.green {
	background-color: #79bd9a;
}

.card .mark.grey {
	background-color: #cdcdcd;
}

.line {
	width: 100%;
	background-color: #e5e5e5;
	height: 1px;
	margin-bottom: 10px;
}

.card .mark-progress {
	border-radius: 2px;
	background-color: #ccc;
	color: #fff;
	width: 125px;
	text-align: center;
	font-size: 13px;
	background-repeat: no-repeat;
	background-position: -125px;
	background-image: url(../images/back_progress.png);
}

.card .mark-done {
	font-size: 13px;
	color: #6aa586;
}

.card .mark-circo-group {
	float: left;
	margin-right: 10px;
}

.card .mark-circo {
	border-radius: 8px;
	background-color: #ccc;
	color: #fff;
	text-align: center;
	font-weight: bold;
	float: left;
	margin-right: 5px;
	padding: 4px;
	padding-left: 8px;
	padding-right: 8px;
	margin-top: 4px;
}

.card .text-circo {
	float: left;
	margin-top: 8px;
}

.card .mark-circo.blue {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0e5177+1,093e5c+100 */
	background: #0e5177;
	/* Old browsers */
	background: -moz-linear-gradient(top, #0e5177 1%, #093e5c 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #0e5177), color-stop(100%, #093e5c));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #0e5177 1%, #093e5c 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #0e5177 1%, #093e5c 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, #0e5177 1%, #093e5c 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, #0e5177 1%, #093e5c 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0e5177', endColorstr='#093e5c', GradientType=0);
	/* IE6-9 */
}

.card .mark-circo.red {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00AAFF+0,0088CC+100 */
	background: #00AAFF;
	/* Old browsers */
	background: -moz-linear-gradient(top, #00AAFF 0%, #012A49 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00AAFF), color-stop(100%, #012A49));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #00AAFF 0%, #012A49 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #00AAFF 0%, #012A49 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, #00AAFF 0%, #012A49 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, #00AAFF 0%, #012A49 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00AAFF', endColorstr='#012A49', GradientType=0);
	/* IE6-9 */
}

.card.card-mark-apontamento {
	background-image: url(../images/back_apontamento.png);
	background-repeat: repeat-y;
	padding-left: 20px;
}

.card.card-mark-verificacao {
	background-image: url(../images/back_verificacao.png);
	background-repeat: repeat-y;
	padding-left: 20px;
}

.clr {
	clear: both;
}

.line {
	width: 100%;
	height: 1px;
	background-color: #ccc;
}

.title-form {
	display: block;
	padding-top: 20px;
	padding-bottom: 10px;
}

.plug-label {
	padding: 2px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: #00AAFF;
	color: #fff;
	border-radius: 6px;
	margin-right: 10px;
}

.mark-plug {
	border: 1px solid #ccc;
	border-radius: 4px;
	display: inline-block;
}

.mark-plug button.bt-new {
	margin: 10px;
}

.mark-plug .title {
	background-color: #00AAFF;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
	position: absolute;
	color: #fff;
	margin-top: -1px;
	margin-left: -1px;
}

.col-device {
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	border: 1px solid #fff;
	padding: 10px;
	border-radius: 4px;
	font-size: 14px;
	margin-left: 19px;
	margin-top: 50px;
	float: left;
	margin-right: 10px;
	margin-bottom: 15px;
	width: 250px;
}

.col-device.remove {
	border-color: #00AAFF;
}

.col-device a {
	cursor: pointer;
}

.col-device .buttons {
	padding-top: 10px;
}

.col-device label {
	font-weight: bold;
}

.col-device .row {
	border-bottom: none;
	padding-bottom: 0;
}

.col-device .inactive {
	border: 1px solid #e6b500;
	background-color: #ffc900;
	padding-left: 5px;
	padding-right: 5px;
	color: #fff;
	float: left;
	border-radius: 4px;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
}

.margin-right {
	margin-right: 10px;
}

.msg-inativada {
	border: 1px solid #e6b500;
	background-color: #ffc900;
	padding: 8px;
	color: #574400;
	border-radius: 4px;
}

.col-device .img-mark {
	float: left;
}

.col-device .img-mark img {
	height: 50px;
}

.col-device .token {
	padding-left: 30px;
}

.col-device .text {
	font-style: italic;
}

.info-dialog {
	padding: 10px;
	border-left-width: 5px;
	border-radius: 4px;
	margin-bottom: 10px;
}

.info-dialog.w {
	background-color: #FFFEE0;
	border: 1px solid #D0C92D;
}

.info-dialog.e {
	background-color: #FFD3D3;
	border: 1px solid #FF7676;
}

.info-dialog h4 {
	font-weight: 800;
}

.info-dialog p {
	margin: 0;
}

.loadMore {
	width: 25%;
	margin: 25px auto;
	display: block;
}

.admin {
	cursor: default !important;
	margin-bottom: 10px;
	background-color: #00AAFF;
	color: white;
}

.menu-dots {
	display: none;
	position: fixed;
	right: 30px;
	border: solid 1px #fefefe;
	top: 70px;
	width: 120px;
	padding: 5px 10px;
	background: white;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
	transition: all ease-in-out 0.9s;
}

.showMenuDots {
	transition: all ease-in-out 0.9s;
	/* transition: opacity 1s linear, transform 1s linear; */
	-webkit-transition: width 2s;
	display: block;
}

.menu-dots ul li {
	padding: 0 10px;
	cursor: pointer;
	margin-bottom: 15px;
	margin-top: 10px;
}

input[type="text"]:disabled {
	cursor: not-allowed;
	background: #f2f2f2;
}

.cursorPointer {
	cursor: pointer;
}

.bold {
	font-weight: bold;
}

.edit-img {
	text-align: right;
	padding-right: 15px;
	padding-top: 8px;
}

.img-sh-icon {
	width: 24px;
	float: left;
	margin-right: 10px
}

.b {
	border: solid 1px #012A49
}

.btn-edit {
	color: #fff;
	background-color: #00AAFF;
	border-color: #00AAFF;
}

.btn-trash {
	color: #fff;
	background-color: #6ec9c4;
	border-color: #6ec9c4;
}

.btn-copy {
	color: #ffffff;
	background-color: #FF7E27;
	border-color: #FF7E27;
}

.btn-active {
	color: #fff;
	background-color: #80c96e;
	border-color: #80c96e;
}

input:focus,
textarea:focus,
select:focus {
	border: 1px solid #00AAFF !important;
	box-shadow: 0 0 3px #00AAFF !important;
	-moz-box-shadow: 0 0 3px #00AAFF !important;
	-webkit-box-shadow: 0 0 3px #00AAFF !important;
}

.btnT {
	display: inline-block;
	padding: 5px 8px;
	/* margin-bottom: 0; */
	font-size: 10px;
	/* font-weight: normal; */
	/* line-height: 1.42857143; */
	/* text-align: center; */
	/* white-space: nowrap; */
	/* vertical-align: middle; */
	cursor: pointer;
	/* -webkit-user-select: none; */
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/* user-select: none; */
	/* background-image: none; */
	border-radius: 4px;
	/* border: 1px solid #fff; */
	border: 1px;
	font-weight: bolder;
}

.panel-body {
	padding-bottom: 0
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
	z-index: 2;
	color: #fff;
	cursor: default;
	background-color: #00AAFF;
	border-color: #00AAFF;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
	color: #00AAFF;
	background-color: #eee;
	border-color: #ddd;
}

.pagination>li>a,
.pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #00AAFF;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}

.label-internal {
	background-color: #000;
	color: #fff !important;
}

.label-canceled {
	background-color: #012A49;
}

.label-alert {
	background-color: #FF8C00;
}

.label-trial-ok {
	background-color: #24da1e;
}

.disableButton {
	cursor: not-allowed !important;
}

.valueInativo {
	color: #012A49 !important
}

.ativoEmp {
	color: #000 !important;
	text-align: center;
	cursor: pointer;
	font-size: 15px;
	font-weight: bold;
}

.inativoEmp {
	color: #012A49 !important;
	text-align: center;
	cursor: pointer;
	font-size: 15px;
	font-weight: bold;
}

.dashValores,
.devicesValues {
	color: #69B29E;
	text-align: center;
	font-weight: bold;
	background-color: #fff;
	border-radius: 4px;
	border: 1px solid #d3d3d3;
	padding: 30px;
	margin-top: 20px;
	margin-bottom: 15px;
	padding-bottom: 24px;
	line-height: 0.9;
	font-size: 55px;
}

.titleDashValores {
	color: #39434F;
	font-weight: normal;
	margin-bottom: 16px;
	font-size: 18px;
}

.no-padding-left {
	padding-left: 0;
}

.no-padding-right {
	padding-right: 0;
}

@media print {
	.printInfo p {
		margin-bottom: 0 !important;
		font-size: 12px !important;
	}

	.printInfo {
		padding: 0;
		font-size: 12px !important;
		margin-top: 5px;
		margin-bottom: 0;
	}

	.fontPrint td {
		padding: 2px !important;
	}

	.titleRelatorio,
	.inativoEmp,
	.ativoEmp {
		font-size: 10px !important;
	}

	.panel-body {
		padding: 0 !important;
	}

	.view .body-view {
		padding-right: 0 !important;
		padding-bottom: 0 !important;
		padding-left: 0 !important;
		padding-top: 0 !important;
	}

	.marginRelatorio {
		margin-top: 0 !important;
	}

	.fontPrint {
		font-size: 8px !important;
	}

	body {
		page-break-before: always;
	}

	#supporthero-button {
		display: none !important;
		;
	}

	.qtdDevices {
		display: none;
	}

	.menu,
	.selectEmp {
		display: none;
	}

	.top {
		display: none;
	}

	.clr {
		clear: none;
		display: none;
	}

	.search {
		display: none;
	}

	.user-info {
		display: none;
	}

	.view .body-view {
		padding-left: 0 !important;
	}
}

.borderManutencao {
	border: solid 2px #00AAFF;
}

.card-content .description .attachment-preview .caption {
	display: none;
}

em {
	font-style: italic !important;
}

ul {
	list-style: initial !important;
}

ol {
	list-style-type: decimal !important;
}

.description ol {
	list-style-type: decimal !important;
	padding-left: 35px;
}

.description ul {
	padding-left: 35px;
}

.showMenuDots ul {
	list-style: none !important;
}

.modal {
	padding-top: 100px !important;
	top: 0 !important
}

.p60 {
	width: 60%;
	float: left;
}

.sem-personalizacao {
	border-bottom: 2px solid #00AAFF;
	color: #012A49;
	font-weight: bold;
	font-size: 16px;
}

.box-config-plugs:nth-child(even) {
	background-color: lightgrey;
}

.personalizacao-card {
	background-color: rgb(226, 226, 226);
}

.alert-modo-edicao-sh {
	clear: both;
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin-top: 12px;
	padding: 10px 12px;
	color: #8a6d3b;
	background-color: #fcf8e3;
	border: 1px solid #faebcc;
	border-radius: 4px;
	line-height: 1.4;
	white-space: normal;
}

/* Agree (LGPD) -> */

#agree-consent-form h2 {
	font-size: 1.5em;
	margin: 20px 0;
}

#agree-consent-form h3 {
	font-size: 1.3em;
}

#agree-consent-form .tp-all {
	margin-top: 20px;
}

#agree-consent-form button {
	background-color: #6ec9c4;
	background: #6ec9c4;
	background: -moz-linear-gradient(top, #6ec9c4 1%, #62b4af 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #6ec9c4), color-stop(100%, #62b4af));
	background: -webkit-linear-gradient(top, #6ec9c4 1%, #62b4af 100%);
	background: -o-linear-gradient(top, #6ec9c4 1%, #62b4af 100%);
	background: -ms-linear-gradient(top, #6ec9c4 1%, #62b4af 100%);
	background: linear-gradient(to bottom, #6ec9c4 1%, #62b4af 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6ec9c4', endColorstr='#62b4af', GradientType=0);
	border: 1px solid #549e99;
	color: #fff;
	border-radius: 4px;
	padding: 7px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	cursor: pointer;
	font-size: 14px;
	margin-top: 10px;
}

#agree-consent-form button:hover {
	background: #549e99;
}

/* <- Agree (LGPD) */

/* Devices Quantity -> */

#devicesQuantity {
	margin-top: 25px;
}

#devicesQuantity .row {
	margin: 0;
}

#devicesQuantity>div:last-child>div>.devicesValues {
	margin-top: 0;
}

#devicesQuantity .devicesValues {
	margin-top: 0px;
	font-size: 36px;
	padding: 25px 5%;
}

#devicesQuantity .row h2 {
	font-weight: bold;
	margin-bottom: 5px;
}

#devicesQuantity .devicesValues .row p {
	color: #39434F;
	font-size: 14px;
}

@media (max-width: 768px) {

	#devicesQuantity .row>div {
		padding-left: 0;
		padding-right: 0;
	}

}

/* <- Devices Quantity */

/* DataTable -> */

.dataTables_wrapper>.row {
	margin: 0;
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.dataTables_wrapper>.row>div {
	width: auto !important;
	float: none !important;
	text-align: left !important;
}

div.dataTables_wrapper div.dataTables_paginate {
	text-align: left !important;
	float: left !important;
	width: auto !important;
	margin-top: 10px !important;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
	display: flex !important;
	justify-content: flex-start !important;
	margin: 0 !important;
	padding-left: 0 !important;
}

div.dataTables_wrapper div.dataTables_filter {
	text-align: right !important;
	/* Reverted search to right to match common patterns, or keep it left based on user explicitly wanting it left. User said: "a barra de pesquisa coloca na esquerda". So we keep it left. */
	float: left !important;
}

div.dataTables_wrapper div.dataTables_filter label {
	display: flex;
	align-items: center;
	gap: 10px;
}

div.dataTables_wrapper div.dataTables_length {
	text-align: left !important;
	float: left !important;
	margin-right: 20px;
}

div.dataTables_wrapper div.dataTables_info {
	text-align: right !important;
	float: right !important;
	padding-top: 15px !important;
}

/* Scoped overrides: Usuários & Pedidos (DataTables) */
#usuariosTable_wrapper div.dataTables_paginate,
#pedidosTable_wrapper div.dataTables_paginate {
	float: right !important;
	text-align: right !important;
}

#usuariosTable_wrapper div.dataTables_paginate ul.pagination,
#pedidosTable_wrapper div.dataTables_paginate ul.pagination {
	justify-content: flex-end !important;
}

#usuariosTable_wrapper>.row,
#pedidosTable_wrapper>.row {
	justify-content: space-between !important;
}

/* Clearfix for datatable rows to ensure floats don't break layout */
div.dataTables_wrapper .row::after {
	content: "";
	clear: both;
	display: table;
}

/* <- DataTable */

/* Rodapé padronizado de listagens (itens por página + paginação) */
.list-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 20px;
	padding-bottom: 40px;
}

.list-footer-size {
	display: flex;
	align-items: center;
	gap: 8px;
}

.list-footer-size label {
	margin: 0;
	font-weight: 600;
	color: #64748b;
	white-space: nowrap;
}

.list-footer-size select.form-control {
	width: auto;
	display: inline-block;
	height: 34px;
}

.list-footer .pagination {
	margin: 0;
}