@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&display=swap");

* {
	font-family: "Noto Sans", sans-serif;

	margin: 0;
	padding: 0;
}

html,
body {
	font-size: 14px;
}

:root {
	--color-primary: #020202;
	--color-primary-light: #f5f5f5;

	--color-gray: #767676;
	--color-gray-light: #76767626;

	--color-success: #25cb3b;
	--color-orange: #ff6d1c;
	--color-danger: #ff1c1c;

	--color-step-text: #1a517e;

	--color-step-1: #eff2f8;
	--color-step-1-opacity: hsla(220, 39%, 95%, 0.2);
	--color-step-2: #e3e9f1;
	--color-step-2-opacity: hsla(212, 32%, 92%, 0.2);
	--color-step-3: #dce5f4;
	--color-step-3-opacity: hsla(218, 52%, 91%, 0.2);
	--color-step-4: #cfdaee;
	--color-step-4-opacity: hsla(219, 48%, 87%, 0.2);
	--color-step-5: #c1cee8;
	--color-step-5-opacity: hsla(220, 46%, 83%, 0.2);
	--color-step-6: #b2c3e4;
	--color-step-6-opacity: hsla(220, 48%, 80%, 0.2);

	--border-radius: 0.14rem;
	--border-radius-dropdown: 0.42rem;
	--border-radius-dropdown: 0.14rem;
	--transition: 0.1s;

	--box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
	--box-shadow-dropdown: 2px 2px 12px 3px rgb(0 0 0 / 20%);
}

/* default */

.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1.5rem;
}

.modal-title {
	margin-bottom: 10px;
}

ul {
	padding: 0;
	margin: 0;

	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;

	font-weight: 600;
}

p {
	margin: 0;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5,
.title h6 {
	font-weight: 600;

	margin: 0;
}

/* margins */

.me--5 {
	margin-right: -3rem !important;
}

.me--4 {
	margin-right: -1.71rem !important;
}

.me--3 {
	margin-right: -1rem !important;
}

.me--2 {
	margin-right: -0.5rem !important;
}

.me--1 {
	margin-right: -0.25rem !important;
}

.ms--5 {
	margin-left: -3rem !important;
}

.ms--4 {
	margin-left: -1.71rem !important;
}

.ms--3 {
	margin-left: -1rem !important;
}

.ms--2 {
	margin-left: -0.5rem !important;
}

.ms--1 {
	margin-left: -0.25rem !important;
}

.g-4,
.gy-4 {
	--bs-gutter-y: 1.71rem;
}

.ps-4 {
	padding-left: 1.71rem;
}

.pe-4 {
	padding-right: 1.71rem;
}

/* drowpdown */

.dropdown_ {
	position: relative;
	display: inline-block;
}

.dropdown_.open ul {
	top: calc(100% + 0.57rem);
	visibility: visible;
	opacity: 1;
	transition: visibility 0.1s, opacity 0s;
}

.dropdown_ ul {
	max-width: 100vw;
	min-width: 160px;

	position: absolute;
	top: 80%;
	right: 0;
	z-index: 9999;

	padding: 0.85rem calc(1.42rem - 0.43rem);

	background: #ffffff;
	border: 1px solid #ffffff;
	box-shadow: var(--box-shadow-dropdown);
	border-radius: var(--border-radius-dropdown);

	list-style: none;

	visibility: hidden;
	opacity: 0;
	transition: 0.1s;
}

.dropdown_ ul li a,
.dropdown_ ul li button {
	display: flex;
	align-items: center;

	width: 100%;

	padding: 0.57rem 1rem;

	border-radius: var(--border-radius);

	color: var(--color-gray);
	background: transparent;
	border: none;

	transition: var(--transition);
}

@media screen and (min-width: 991px) {
	.dropdown_ ul li a,
	.dropdown_ ul li button {
		white-space: nowrap;
	}

	.dropdown_ ul.left {
		left: 0;
		right: unset;
	}
}

.dropdown_ ul li a:hover,
.dropdown_ ul li button:hover {
	background: var(--color-primary-light);
	color: var(--color-primary);
}

/* flex box */

.flex-center {
	display: flex;
	align-items: center;
}

.between {
	justify-content: space-between;
}

.center {
	justify-content: center;
}

.end {
	justify-content: flex-end;
}

/* links */

a,
a:link,
a:hover,
a:link:hover {
	color: var(--color-primary);

	font-weight: 600;
	text-decoration: none;

	transition: var(--transition);
}

a:hover,
a:link:hover {
	opacity: 0.9;
}

.link {
	background: transparent;
	border: transparent;
	color: var(--color-primary);

	display: inline-flex;
	align-items: center;

	font-weight: 600;
	text-decoration: none;

	transition: var(--transition);
}

.link:hover {
	opacity: 0.9;
}

.link ion-icon.large-icon {
	font-size: 1.14rem;
}

.link ion-icon:nth-of-type(2) {
	font-size: 0.57rem;
}

/* label */

label {
	display: block;

	font-size: 0.71rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* inputs */

.form-check-input[type="checkbox"] {
	margin: 0 0.57rem 0 0;
}

.form-check {
	padding-left: 0;

	display: flex;
	align-items: center;
}

.form-control {
	border-radius: var(--border-radius);

	min-height: 2.85rem;
}

.form-control.line {
	border-radius: 0;

	border: none;
	border-bottom: 1px solid var(--color-primary);

	padding-left: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	background: #ffffff;
	-webkit-text-fill-color: var(--color-primary) !important;
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* buttons */

.btn {
	padding: 8px 24px;

	min-height: 2.85rem;

	border-radius: var(--border-radius);

	display: inline-flex;
	align-items: center;
	justify-content: center;

	box-shadow: none !important;

	transition: var(--transition);
}

.btn:hover {
	opacity: 0.9;
}

.btn.btn-primary,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #ffffff;
}

.btn.btn-primary-light,
.btn.btn-primary-light:focus,
.btn.btn-primary-light:active,
.btn.btn-primary-light:hover {
	background: var(--color-primary-light);
	border-color: var(--color-primary-light);
	color: var(--color-gray);
}

.btn.btn-gray-light,
.btn.btn-gray-light:focus,
.btn.btn-gray-light:active,
.btn.btn-gray-light:hover {
	background: var(--color-gray-light);
	border-color: var(--color-gray-light);
	color: var(--color-gray);
}

.btn.btn-primary-outline,
.btn.btn-primary-outline:focus,
.btn.btn-primary-outline:active,
.btn.btn-primary-outline:hover {
	background: transparent;
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn.btn-success,
.btn.btn-success:focus,
.btn.btn-success:active,
.btn.btn-success:hover {
	background: var(--color-success);
	border-color: var(--color-success);
	color: #ffffff;
}

.btn.btn-orange,
.btn.btn-orange:focus,
.btn.btn-orange:active,
.btn.btn-orange:hover {
	background: var(--color-orange);
	border-color: var(--color-orange);
	color: #ffffff;
}

/* login */

body.login main {
	width: 100%;
	min-height: 100vh;

	display: flex;
	align-items: center;
	justify-content: center;
}

body.login main div.content {
	padding: 3.14rem;

	width: 100%;

	box-shadow: var(--box-shadow);

	background: #ffffff;
}

body.login main div.content a,
body.login main div.content a:link {
	font-size: 0.92rem;
}

body.login main div.logo {
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
}

body.login main div.logo img {
	height: 70px;
	filter: invert(1);
}

/* header */

header {
	position: fixed;
	top: 0;
	left: 0;

	z-index: 9999;

	width: 100%;

	padding: 0.71rem 0;

	background: var(--color-primary);
}

header div.content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header div.content button.menu {
	background: transparent;
	border: none;

	min-width: 1.71rem;

	font-size: 1.71rem;

	padding: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #ffffff;
}

header div.content div.logo {
	display: flex;
	align-items: center;
}

header div.content div.logo img {
	height: 1.14rem;

	filter: invert(1);
}

header div.content div.title {
	position: relative;
}

header div.content div.title h6 {
	color: #ffffff;

	font-weight: 500;
}

header div.content div.title::before {
	content: "";

	width: 1px;
	height: 1.14rem;

	background: #ffffff80;

	position: absolute;
	top: 50%;
	left: 0;

	transform: translateY(-50%);
}

header div.content button.settings {
	background: transparent;
	border: none;

	min-width: 1.42rem;

	font-size: 1.42rem;

	padding: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #ffffff;
}

header div.content button.profile {
	width: 2.28rem;
	min-width: 2.28rem;
	height: 2.28rem;
	min-height: 2.28rem;

	background: #ffffff;
	border: none;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 100%;
}

/* system */

body.system {
	background: var(--color-primary-light);
}

body.system main {
	padding-top: calc(3.71rem + 1.71rem);
}

body.system main section.default {
	padding: 2rem;

	background: #ffffff;
}

/* tabela */

table.table {
	color: var(--color-primary);
}

table.table-default {
	width: 100%;
}

table.table tr td,
table.table tr th {
	vertical-align: middle;
}

table.dataTable thead th,
table.dataTable thead td,
table.dataTable.no-footer {
	border-bottom: 0;
}

table.table span.buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

table.table span.buttons button,
table.table span.buttons a {
	background: transparent;
	color: var(--color-gray);
	border: none;

	font-size: 20px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 0.57rem;

	transition: var(--transition);
}

table.table span.buttons button:hover,
table.table span.buttons a:hover {
	color: var(--color-primary);
}

.table > :not(caption) > * > * {
	border: none;
}

table.table .badge {
	padding: 0.57rem;

	border-radius: var(--border-radius);

	display: inline-flex;
	align-items: center;
	justify-content: center;
}

table.table .badge.success {
	background: var(--color-success);
}

table.table .badge.secondary {
	background: var(--color-gray);
}

table.table .badge ion-icon {
	font-size: 1rem;

	margin-right: 0.57rem;
}

table.table td small {
	color: var(--color-gray);

	font-size: 0.85rem;
}

/* paginacao datatable */

.dataTables_wrapper .dataTables_paginate {
	display: flex;
	align-items: center;

	margin-top: 0.57rem;
}

ul.pagination li.disabled a.page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
	background: #f5f5f5;
	color: var(--color-primary-light);
	border-color: transparent;
}

ul.pagination li.active a.page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);

	color: #ffffff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	opacity: 0.9;
}

ul.pagination a.page-link,
.dataTables_wrapper .dataTables_paginate .paginate_button {
	width: 2.57rem;
	height: 2.57rem;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	margin: 0 0.57rem;

	border-radius: var(--border-radius) !important;

	border: 1px solid transparent;
	color: var(--color-gray) !important;
	background: transparent;

	font-size: 1rem;
	font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	background: var(--color-primary-light);
	color: var(--color-primary) !important;
	border: 1px solid transparent;
}

.dataTables_wrapper .dataTables_paginate .paginate_button ion-icon {
	min-width: 1rem;
}

.dataTables_wrapper .dataTables_info {
	font-size: 1rem;

	color: var(--color-gray);
}

.dataTables_wrapper .dataTables_length select {
	border-radius: 0.57rem;

	border-color: var(--color-primary-light);

	padding: 8px;
	margin: 0 0.57rem;

	border-radius: 0.57rem;

	letter-spacing: 0.05rem;
	line-height: 1;
}

/* alerts */

.alert {
	margin: 0;
	padding: 0;

	display: flex;
	align-items: flex-start;

	background: transparent;
	border: 1px solid transparent;
}

.alert-bg {
	padding: 1.14rem;
	margin: 0;

	display: flex;
	align-items: flex-start;

	border-radius: 0;
}

.alert > ion-icon:first-of-type,
.alert-bg > ion-icon:first-of-type {
	font-size: 24px;

	min-width: 24px;

	margin-top: 0.28rem;
}

.alert > button.close-alert,
.alert-bg > button.close-alert {
	background: transparent;
	border: 1px solid transparent;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0.28rem;

	font-size: 1.14rem;

	color: inherit;
}

.alert > button.close-alert:hover,
.alert-bg > button.close-alert:hover {
	opacity: 0.2s;
}

.alert.alert-primary {
	color: #0071bd;
}

.alert-bg.alert-primary {
	color: #0071bd;
	background: #0071bd33;
	border-color: #0071bd33;
}

.alert.alert-info {
	color: #003e78;
}

.alert-bg.alert-info {
	color: #003e78;
	background: #003e7833;
	border-color: #003e7833;
}

.alert.alert-danger {
	color: #d32222;
}

.alert-bg.alert-danger {
	color: #d32222;
	background: #d3222233;
	border-color: #d3222233;
}

.alert.alert-warning {
	color: #ffcc00;
}

.alert-bg.alert-warning {
	color: hsl(48, 100%, 24%);
	background: #ffcc0033;
	border-color: #ffcc0033;
}

.alert.alert-success {
	color: #22d33a;
}

.alert-bg.alert-success {
	color: hsl(128, 72%, 24%);
	background: #22d33a33;
	border-color: #22d33a33;
}

/* header */

body.system aside.menu {
	position: fixed;
	top: 52px;
	left: 0;

	z-index: 8888;

	width: 100%;
	height: 100%;

	background: #02020240;

	opacity: 0;
	visibility: hidden;

	transition: opacity 0.2s, visibility 0.4s;
}

body.system aside.menu.open {
	opacity: 1;
	visibility: visible;

	transition: opacity 0.2s, visibility 0s;

	transition: 0.2s;
}

body.system aside.menu div.content {
	background: #ffffff;
	box-shadow: var(--box-shadow-dropdown);

	padding: 1.17rem;

	position: absolute;
	top: 0;
	left: -100vw;

	min-width: 300px;
	min-height: 100%;

	transition: var(--transition);

	transition: 0.4s;
}

body.system aside.menu.open div.content {
	left: 0;
}

body.system aside.menu div.content ul {
	list-style: none;

	padding: 0;
	margin: 0;
}

body.system aside.menu div.content ul li a {
	padding: 0.57rem;
	margin-bottom: 0.57rem;

	display: flex;
	align-items: center;
}

body.system aside.menu div.content ul li a ion-icon {
	font-size: 1.14rem;

	margin-right: 0.57rem;
}

body.system aside.menu div.content ul li a:hover {
	background: var(--color-primary-light);
}

/* crumb */

aside.crumb {
	margin-top: -1.71rem;

	background: var(--color-gray);
	color: #ffffff;

	padding: 0.57rem;
	margin-bottom: 1.14rem;
}

aside.crumb nav.content ul {
	display: flex;
	align-items: center;
}

aside.crumb nav.content ul li {
	display: flex;
	align-items: center;
}

aside.crumb nav.content ul li ion-icon {
	margin: 0 0.57rem;

	color: #ffffff86;

	display: flex;
}

aside.crumb nav.content ul li:first-child ion-icon {
	display: none;
}

aside.crumb nav.content ul li a {
	display: flex;

	color: #ffffff;
	text-decoration: none;

	font-size: 0.85rem;
	letter-spacing: 0.03rem;
}

aside.crumb nav.content ul li:last-child a {
	color: #ffffffb8;
}

/* select template */

section.select-template ul li button,
section.select-template ul li div.item {
	width: 100%;

	font-size: 1rem;
	font-weight: 600;

	padding: 1.14rem;

	display: flex;
	align-items: center;

	justify-content: space-between;

	color: var(--color-primary);
	background: transparent;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: var(--color-primary-light);
}

section.select-template ul li button:hover,
section.select-template ul li div.item:hover {
	background: var(--color-primary-light);
	color: var(--color-primary);
}

section.select-template ul li.active button,
section.select-template ul li.active div.item {
	background: var(--color-primary-light);
	color: var(--color-primary);
}

section.select-template ul li.add button,
section.select-template ul li.add div.item {
	background: var(--color-primary);
	color: #fff;
}

section.select-template ul li div.item div.buttons {
	display: flex;
	align-items: center;
}

section.select-template ul li div.item div.buttons .btn {
	padding: 0;

	width: 2rem;
	height: 2rem;

	max-width: 2rem;
	max-height: 2rem;

	min-width: 2rem;
	min-height: 2rem;

	display: flex;
	justify-content: center;
	align-items: center;

	margin-left: 0.57rem;
}

section.select-template ul li div.item div.buttons .btn.btn-danger {
	background: var(--color-danger);
	border: 1px solid var(--color-danger);
	color: #ffffff;
}

section.select-template ul li div.item div.buttons .btn.btn-primary {
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	color: #ffffff;
}

section.select-template ul li div.item div.buttons .btn.btn-primary-light {
	background: var(--color-primary-light);
	border: 1px solid var(--color-primary-light);
	color: var(--color-gray);
}

section.select-template ul li div.item:hover div.buttons .btn.btn-primary-light {
	border: 1px solid #76767666;
}

body.templates main div.template {
	max-width: 0;
	max-height: 0vh;

	padding: 0;

	overflow: hidden;

	border-radius: var(--border-radius);

	transition: 0.4s all;
}

body.templates main div.template.active {
	max-width: 100%;
	max-height: 8888vh;

	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
}

body.system.templates main section.default {
	min-width: calc((100vw - var(--bs-gutter-x) * 2) / 4);
}

body.system.templates main section.default button.close_ {
	background: transparent;
	color: var(--color-gray);
	border: none;

	padding: 0;

	font-size: 1.71rem;

	transition: 0.2s;
}

body.system.templates main section.default button.close_:hover {
	color: var(--color-primary);
}

@media screen and (max-width: 991px) {
	body.templates main div.template {
		max-width: 100%;

		position: relative;
		left: -100vw;
	}

	body.templates main div.template.active {
		left: 0;
	}

	body.system.templates main {
		min-height: 200vh;
	}
}

/* modal */

.modal {
	backdrop-filter: blur(4px);

	z-index: 88882;
}

.modal .modal-content {
	border: 1px solid #ffffff;

	border-radius: 0.57rem;
}

.modal .modal-header h5 {
	margin-bottom: 0.28rem;
}

.modal .modal-header button.close {
	background: transparent;
	border: none;

	padding: 0;

	font-size: 1.71rem;

	min-width: 1.71rem;

	display: flex;
	align-content: center;
	justify-content: center;

	color: var(--color-gray);
}

.modal-backdrop {
	background-color: var(--color-primary);
}

/* table chart */

table.table-chart,
table.table {
	width: 100%;

	margin-bottom: 0;
}

table.table-chart tr td {
	border-bottom: 0.28rem solid #ffffff;
	border-right: 0.28rem solid #ffffff;
}

table.table-chart tr.headers:nth-child(1) td:nth-child(n + 2) {
	text-align: center;
	border-bottom: 0.28rem solid #ffffff;
	border-right: 0.28rem solid #ffffff;
}

table.table-chart tr.headers:nth-child(1) td:nth-child(2),
table.table-chart tr td:nth-child(2) {
	background: rgba(0, 0, 0, 0.02);
}

table.table-chart tr.headers:nth-child(1) td:nth-child(3),
table.table-chart tr td:nth-child(3) {
	background: rgba(0, 0, 0, 0.04);
}

table.table-chart tr.headers:nth-child(1) td:nth-child(4),
table.table-chart tr td:nth-child(4) {
	background: rgba(0, 0, 0, 0.06);
}

table.table-chart tr.headers:nth-child(1) td:nth-child(5),
table.table-chart tr td:nth-child(5) {
	background: rgba(0, 0, 0, 0.08);
}

table.table-chart tr.headers:nth-child(1) td:nth-child(6),
table.table-chart tr td:nth-child(6) {
	background: rgba(0, 0, 0, 0.1);
}

table.table-chart tr.headers:nth-child(1) td:nth-child(7),
table.table-chart tr td:nth-child(7) {
	background: rgba(0, 0, 0, 0.12);
}

table.table-chart tr.headers:nth-child(2) td:nth-child(n + 1) {
	text-align: center;
	border-bottom: 0.28rem solid #ffffff;
	border-right: 0.28rem solid #ffffff;
}

table.table-chart tr.headers:nth-child(2) td:nth-child(1) {
	background: rgba(0, 0, 0, 0.02);
}

table.table-chart tr.headers:nth-child(2) td:nth-child(2) {
	background: rgba(0, 0, 0, 0.04);
}

table.table-chart tr.headers:nth-child(2) td:nth-child(3) {
	background: rgba(0, 0, 0, 0.06);
}

table.table-chart tr.headers:nth-child(2) td:nth-child(4) {
	background: rgba(0, 0, 0, 0.08);
}

table.table-chart tr.headers:nth-child(2) td:nth-child(5) {
	background: rgba(0, 0, 0, 0.1);
}

table.table-chart tr.headers:nth-child(2) td:nth-child(6) {
	background: rgba(0, 0, 0, 0.12);
}

table.table-chart tr:nth-child(3) td:nth-child(1) table.table tr td {
	background: var(--color-primary);
	color: #ffffff;
	border: none;
}

table.table-chart tr td table.table tr td {
	background: #ffffff;
	border: none;
}

table.table-chart tr td:nth-child(1) table.table tr td:nth-child(2) {
	text-align: center;
}

table.table-chart tr.end td:nth-child(n + 2) {
	text-align: center;
}

table.table-chart tr.end td:nth-child(n + 2) span {
	font-size: 0.57rem;
	font-weight: 600;
	letter-spacing: 0.07rem;

	padding: 0.28rem 0.57rem;

	background: var(--color-primary);
	color: #ffffff;

	display: flex;
	justify-content: center;

	margin-top: 0.57rem;
}

table.table-chart tr.end td:nth-child(n + 2) small {
	width: 2.28rem;
	height: 2.28rem;

	border-radius: 2.28rem;

	border: 2px solid var(--color-primary);
	color: var(--color-primary);

	display: inline-flex;
	justify-content: center;
	align-items: center;

	font-weight: 600;
}

table.table-chart tr.margin td:nth-child(2) {
	padding: 0;
}

table.table-chart tr.margin td:nth-child(2) span {
	border: 2px solid var(--color-primary);
	border-width: 2px;
	color: var(--color-primary);

	font-size: 1.14rem;
	font-weight: 600;
	text-align: center;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0.57rem;
	margin-right: 0.1rem;
	background: #ffffff;
}

table.table-chart tr.margin td:nth-child(3) {
	padding: 0;
}

table.table-chart tr.margin td:nth-child(3) span {
	border: 2px dashed var(--color-primary);
	border-width: 2px;
	color: var(--color-primary);

	font-size: 1.14rem;
	font-weight: 600;
	text-align: center;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0.57rem;
	margin-left: 0;
	background: #ffffff;
}

/* table chart v2 */

body.table-chart main {
	padding-top: 1.71rem;
}

table.table-chart-v2 td {
	padding: 0.57rem;
}

table.table-chart-v2 td.brand-title {
	vertical-align: top;

	padding: 0;
}

table.table-chart-v2 td.brand-title img.logo {
	display: block;

	height: 60px;
}

table.table-chart-v2 td.header-title,
table.table-chart-v2 tr.footer-titles td {
	text-align: center;
	font-weight: 600;

	position: relative;

	border-right: 2px solid #ffffff;
}

table.table-chart-v2 td.header-title.color-1,
table.table-chart-v2 tr.footer-titles td.color-1 {
	background: var(--color-step-1);
	color: var(--color-step-text);

	border-radius: var(--border-radius);
}

table.table-chart-v2 td.header-title.color-1:not(.end) {
	border-bottom: 2px solid #ffffff;
}

table.table-chart-v2 td.header-title.color-2,
table.table-chart-v2 tr.footer-titles td.color-2 {
	background: var(--color-step-2) !important;
	color: var(--color-step-text);

	border-radius: var(--border-radius);
}

table.table-chart-v2 td.header-title.color-2:not(.end) {
	border-bottom: 2px solid #ffffff;
}

table.table-chart-v2 td.header-title.color-3,
table.table-chart-v2 tr.footer-titles td.color-3 {
	background: var(--color-step-3) !important;
	color: var(--color-step-text);

	border-radius: var(--border-radius);
}

table.table-chart-v2 td.header-title.color-3:not(.end) {
	border-bottom: 2px solid #ffffff;
}

table.table-chart-v2 td.header-title.color-4,
table.table-chart-v2 tr.footer-titles td.color-4 {
	background: var(--color-step-4) !important;
	color: var(--color-step-text);

	border-radius: var(--border-radius);
}

table.table-chart-v2 td.header-title.color-4:not(.end) {
	border-bottom: 2px solid #ffffff;
}

table.table-chart-v2 td.header-title.color-5,
table.table-chart-v2 tr.footer-titles td.color-5 {
	background: var(--color-step-5) !important;
	color: var(--color-step-text);

	border-radius: var(--border-radius);
}

table.table-chart-v2 td.header-title.color-5:not(.end) {
	border-bottom: 2px solid #ffffff;
}

table.table-chart-v2 td.header-title.color-6,
table.table-chart-v2 tr.footer-titles td.color-6 {
	background: var(--color-step-6) !important;
	color: var(--color-step-text);

	border-radius: var(--border-radius);
}

table.table-chart-v2 td.header-title.color-6:not(.end) {
	border-bottom: 2px solid #ffffff;
}

table.table-chart-v2 td.header-title span.item,
table.table-chart-v2 tr.footer-titles td span.item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

table.table-chart-v2 td.header-title span.item span,
table.table-chart-v2 tr.footer-titles td span.item span {
	display: flex;
}

table.table-chart-v2 td.header-title span.item::before,
table.table-chart-v2 tr.footer-titles td span.item::before {
	content: "";

	display: flex;

	width: 0;
	height: 0;
	border-left: calc(7.14rem - (0.57rem)) solid transparent;
	border-right: calc(7.14rem - (0.57rem)) solid transparent;
}

table.table-chart-v2 td.header-title span.item::after,
table.table-chart-v2 tr.footer-titles td span.item::after {
	content: "";

	display: flex;

	width: 0;
	height: 0;
	border-left: 7.14rem solid transparent;
	border-right: 7.14rem solid transparent;
	border-top: 1.71rem solid #949396;

	/* filter: brightness(.9); */

	position: absolute;

	left: 0;
	right: 0;
	bottom: -1.71rem;
}

table.table-chart-v2 td.header-title.color-1 span.item::after,
table.table-chart-v2 tr.footer-titles td.color-1 span.item::after {
	border-top: 1.71rem solid var(--color-step-1);
}

table.table-chart-v2 td.header-title.color-2 span.item::after,
table.table-chart-v2 tr.footer-titles td.color-2 span.item::after {
	border-top: 1.71rem solid var(--color-step-2);
}

table.table-chart-v2 td.header-title.color-3 span.item::after,
table.table-chart-v2 tr.footer-titles td.color-3 span.item::after {
	border-top: 1.71rem solid var(--color-step-3);
}

table.table-chart-v2 td.header-title.color-4 span.item::after,
table.table-chart-v2 tr.footer-titles td.color-4 span.item::after {
	border-top: 1.71rem solid var(--color-step-4);
}

table.table-chart-v2 td.header-title.color-5 span.item::after,
table.table-chart-v2 tr.footer-titles td.color-5 span.item::after {
	border-top: 1.71rem solid var(--color-step-5);
}

table.table-chart-v2 td.header-title.color-6 span.item::after,
table.table-chart-v2 tr.footer-titles td.color-6 span.item::after {
	border-top: 1.71rem solid var(--color-step-6);
}

table.table-chart-v2 tr:nth-child(4) td:nth-child(1) {
	background: var(--color-primary);
	color: #ffffff;

	font-weight: 700;

	position: relative;
}

table.table-chart-v2 tr:nth-child(4) td:nth-child(1)::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -24px;

	border-left: 24px solid #000;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;

	transform: translateY(-50%);
}

/* list */

table.table-chart-v2 tr:nth-child(n + 3) td:nth-child(n + 3) {
	border-bottom: 1px dashed var(--color-primary-light);
	border-right: 1px dashed var(--color-primary-light);
	border-left: 1px dashed var(--color-primary-light);
	border-bottom: 1px dashed #ffffff;
	border-right: 1px dashed #ffffff;
	border-left: 1px dashed #ffffff;
}

table.table-chart-v2 tr:nth-child(n + 3) td:nth-child(3),
table.table-chart-v2 tr:nth-child(1) td.header-title:nth-child(3),
table.table-chart-v2 td.header-title.color-2 {
	border-right: 2px dashed var(--color-danger);
}

table.table-chart-v2 tr:nth-child(n + 4):nth-of-type(even) > * {
	box-shadow: inset 0 0 0 9999px #b2c3e41a;
}

table.table-chart-v2 tr:nth-child(4) td:nth-child(1) {
	background: var(--color-primary);
	color: #ffffff;

	box-shadow: none;

	/* border-right: 2px solid #ffffff; */
}

/* table.table-chart-v2 tr:nth-child(4) td:nth-child(2) {
    background: var(--color-primary);
    color: #ffffff;

    box-shadow: none;
} */

table.table-chart-v2 tr:nth-child(n + 4):not(.footer-titles):not(.rules) td:nth-child(1) {
	font-weight: 500;
}

table.table-chart-v2 tr:nth-child(n + 4):not(.footer-titles):not(.rules) td:nth-child(2) {
	/* font-weight: 700;
    text-align: center;

    border-left: 1px dashed var(--color-primary-light); */
}

table.table-chart-v2 tr.footer-titles span {
	text-transform: uppercase;

	font-size: 0.85rem;
	letter-spacing: 0.07rem;
}

table.table-chart-v2 tr.footer-titles small {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 3.42rem;
	height: 3.42rem;

	border-radius: 3.42rem;

	border: 2px solid var(--color-step-text);
	color: var(--color-step-text);

	font-size: 1.14rem;
	font-weight: 700;

	margin: 0.57rem 0;
}

/* table.table-chart-v2 tr.footer-titles td.color-1 small {
    color: var(--color-step-1);
}

table.table-chart-v2 tr.footer-titles td.color-2 small {
    color: var(--color-step-2);
}

table.table-chart-v2 tr.footer-titles td.color-3 small {
    color: var(--color-step-3);
}

table.table-chart-v2 tr.footer-titles td.color-4 small {
    color: var(--color-step-4);
}

table.table-chart-v2 tr.footer-titles td.color-5 small {
    color: var(--color-step-5);
}

table.table-chart-v2 tr.footer-titles td.color-6 small {
    color: var(--color-step-6);
} */

table.table-chart-v2 tr.rules td:nth-child(2) {
	border: 2px dashed hsl(0, 0%, 90%);

	color: var(--color-gray);

	font-weight: 700;

	padding-left: 1rem;
}

table.table-chart-v2 tr.rules td:nth-child(3) {
	border: 2px solid var(--color-step-text);

	color: var(--color-step-text);

	font-weight: 700;

	padding-left: 1rem;
}

table.table-chart-v2 tr.div td,
table.table-chart-v2 tr.rules td {
	box-shadow: none !important;
}

table.table-chart-v2 tr.div td {
	border: none !important;
}

table.table-chart-v2 tr.list td:nth-child(n + 2) a,
table.table-chart-v2 tr:nth-child(4) td:nth-child(n + 2) a {
	padding: 0.26rem 0.57rem;

	left: -0.57rem;
	position: relative;

	display: inline-flex;

	font-weight: 600;

	border-radius: var(--border-radius);
}

table.table-chart-v2 tr:nth-child(4) td:nth-child(3) a {
	background: var(--color-primary);
	color: #ffffff;
}

table.table-chart-v2 tr.list td:nth-child(2) a {
	background: var(--color-step-1);
	color: var(--color-step-text);
}

table.table-chart-v2 tr.list td:nth-child(3) a {
	background: var(--color-step-2);
	color: var(--color-step-text);
}

table.table-chart-v2 tr.list td:nth-child(4) a {
	background: var(--color-step-3);
	color: var(--color-step-text);
}

table.table-chart-v2 tr.list td:nth-child(5) a {
	background: var(--color-step-4);
	color: var(--color-step-text);
}

table.table-chart-v2 tr.list td:nth-child(6) a {
	background: var(--color-step-5);
	color: var(--color-step-text);
}

table.table-chart-v2 tr.list td:nth-child(7) a {
	background: var(--color-step-6);
	color: var(--color-step-text);
}

/* table chart details */

/* table chart v2 */

body.table-chart {
	padding: 0.57rem;
}

body.table-chart div.brand-title {
	vertical-align: top;

	padding: 0;
}

body.table-chart div.brand-title img.logo {
	display: block;

	height: 60px;
}

body.table-chart div.gap {
	margin-top: 1.71rem;
}

body.table-chart div.gap div.item {
	padding: 1.14rem;

	border-radius: var(--border-radius);

	border-bottom: 1px solid var(--color-primary-light);
	border-left: 1px solid var(--color-primary-light);
	border-right: 1px solid var(--color-primary-light);
}

body.table-chart div.gap div.item label {
	margin-bottom: 4px;
}

body.table-chart div.gap div.item:nth-child(1) {
	background: var(--color-step-5);
	color: var(--color-step-text);
}

body.table-chart div.gap div.item:nth-child(1) span {
	font-weight: 700;
	letter-spacing: 0.07rem;
}

table.table-chart-v2-details tr.header-title td:nth-child(2),
table.table-chart-v2-details tr.header-title td:nth-child(3) {
	text-align: center;
	font-weight: 600;

	position: relative;

	border-radius: var(--border-radius);

	border-right: 2px solid #ffffff;
}

table.table-chart-v2-details tr.header-title td span.item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

table.table-chart-v2-details tr.header-title td span.item span {
	display: flex;
}

table.table-chart-v2-details tr.header-title td span.item::before {
	content: "";

	display: flex;

	width: 0;
	height: 0;
	border-left: calc(16.14rem - (0.57rem)) solid transparent;
	border-right: calc(16.14rem - (0.57rem)) solid transparent;
}

@media screen and (max-width: 1400px) {
	table.table-chart-v2-details tr.header-title td span.item::before {
		border-left: calc(12.14rem - (0.57rem)) solid transparent;
		border-right: calc(12.14rem - (0.57rem)) solid transparent;
	}
}

table.table-chart-v2-details tr.header-title td span.item::after {
	content: "";

	display: flex;

	width: 0;
	height: 0;
	border-left: 16.14rem solid transparent;
	border-right: 16.14rem solid transparent;
	border-top: 1.71rem solid #949396;

	/* filter: brightness(.9); */

	position: absolute;

	left: 50%;
	transform: translateX(-50%);

	right: 0;
	bottom: -1.71rem;
}

@media screen and (max-width: 1400px) {
	table.table-chart-v2-details tr.header-title td span.item::after {
		border-left: 12.14rem solid transparent;
		border-right: 12.14rem solid transparent;
	}
}

table.table-chart-v2-details tr.header-title td:nth-child(2) {
	background: var(--color-step-1);
	color: var(--color-step-text);
}

table.table-chart-v2-details tr.header-title td:nth-child(3) {
	background: var(--color-step-2);
	color: var(--color-step-text);
}

table.table-chart-v2-details tr.header-title td:nth-child(2) span.item::after {
	border-top: 1.71rem solid var(--color-step-1);
}

table.table-chart-v2-details tr.header-title td:nth-child(3) span.item::after {
	border-top: 1.71rem solid var(--color-step-2);
}

table.table-chart-v2-details tr.row-list:nth-of-type(2) td:nth-child(1),
table.table-chart-v2-details tr.row-list:nth-of-type(2) td:nth-child(4) {
	background: var(--color-step-3);
	color: var(--color-step-text);

	border-bottom: 2px solid #ffffff;
}

table.table-chart-v2-details tr.row-list:nth-of-type(3) td:nth-child(1),
table.table-chart-v2-details tr.row-list:nth-of-type(3) td:nth-child(4) {
	background: var(--color-step-4);
	color: var(--color-step-text);

	border-bottom: 2px solid #ffffff;
}

table.table-chart-v2-details tr.row-list:nth-of-type(4) td:nth-child(1),
table.table-chart-v2-details tr.row-list:nth-of-type(4) td:nth-child(4) {
	background: var(--color-step-5);
	color: var(--color-step-text);

	border-bottom: 2px solid #ffffff;
}

table.table-chart-v2-details tr.row-list td {
	position: relative;

	border-radius: var(--border-radius);
}

table.table-chart-v2-details tr.row-list td span.item {
	display: flex;
	flex-direction: column;
	align-items: center;

	width: 48px;
}

table.table-chart-v2-details tr.row-list td:nth-child(1) span.item span,
table.table-chart-v2-details tr.row-list td:nth-child(4) span.item span {
	transform: rotate(90deg);

	display: flex;

	font-weight: 700;
	white-space: nowrap;
}

table.table-chart-v2-details tr.row-list td:nth-child(2),
table.table-chart-v2-details tr.row-list td:nth-child(3) {
	padding: 1.14rem;

	border-bottom: 1px dashed var(--color-primary-light);
}

table.table-chart-v2-details tr.row-list td:nth-child(2) {
	border-right: 1px dashed var(--color-primary-light);
}

table.table-chart-v2-details tr.row-list:nth-of-type(2) td:nth-child(2),
table.table-chart-v2-details tr.row-list:nth-of-type(2) td:nth-child(3) {
	padding: calc(1.14rem + 1.71rem) 1.14rem 1.14rem;

	text-align: center;
}

table.table-chart-v2-details tr.row-list ul li {
	margin-bottom: 1.14rem;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

table.table-chart-v2-details tr.row-list ul li a {
	text-decoration: underline;
}

table.table-chart-v2-details tr td table {
	width: 100%;
}

table.table-chart-v2-details tr td table tr td {
	background: transparent !important;
	color: var(--color-primary) !important;
	border-right: none !important;
	border-bottom: none !important;

	padding: 0.57rem !important;
}

table.table-chart-v2-details tr td table tr td ion-icon {
	min-width: 1.14rem;
}

/*  */

.language-text {
	color: #ffffff;

	font-weight: 600;
	font-size: 0.85rem;

	margin-right: 0.57rem;
}

/*  */

table.table-chart-v2 tr:nth-child(n + 3) td:nth-child(3) {
	background: var(--color-step-1-opacity);
}

table.table-chart-v2 tr:nth-child(n + 3) td:nth-child(4) {
	background: var(--color-step-2-opacity);
}

table.table-chart-v2 tr:nth-child(n + 3) td:nth-child(5) {
	background: var(--color-step-3-opacity);
}

table.table-chart-v2 tr:nth-child(n + 3) td:nth-child(6) {
	background: var(--color-step-4-opacity);
}

table.table-chart-v2 tr:nth-child(n + 3) td:nth-child(7) {
	background: var(--color-step-5-opacity);
}

table.table-chart-v2 tr:nth-child(n + 3) td:nth-child(8) {
	background: var(--color-step-6-opacity);
}

/* print */

.header-print {
	display: none;
}

.container-print {
	display: flex;
	align-items: center;
}

@page {
	margin: 24px;
	padding: 0;
}

@media print {
	*,
	body.table-chart,
	body.table-chart main,
	body.system main section.default {
		padding: 0;
		margin: 0;
	}

	.container-print {
		display: none;
	}

	table.table tr td,
	table.table tr th {
		font-size: 0.5rem;
	}

	body.details table.table tr td {
		font-size: 0.85rem;
	}

	table.table {
		max-width: 100vw;
	}

	table.table-chart-v2 td.header-title span.item::before,
	table.table-chart-v2 tr.footer-titles td span.item::before {
		content: "";

		border-left: 0;
		border-right: 0;

		width: calc(100px - 0.57rem);
	}

	table.table-chart-v2 td.header-title span.item::after,
	table.table-chart-v2 tr.footer-titles td span.item::after {
		content: "";

		border-width: 0 50px;

		left: 50%;
		transform: translateX(-50%);
	}

	.header-print {
		/* display: block; */
	}

	body.table-chart.details div.brand-title {
		padding-left: 4px;
	}

	table.table-chart-v2 td.brand-title span {
		/* display: none; */
	}

	table.table-chart-v2 tr:nth-child(n + 4):not(.footer-titles):not(.rules) td:nth-child(1) {
		white-space: nowrap;
	}

	table.table-chart-v2 td.brand-title img,
	.header-print img,
	body.table-chart.details div.brand-title img {
		height: 40px !important;

		display: block;

		margin-right: 16px;
	}

	table.table-chart-v2 td.brand-title h4,
	.header-print h4,
	body.table-chart.details div.brand-title h4 {
		font-size: 14px;

		margin-top: 4px;
	}

	table.table-chart-v2 td.brand-title h6,
	.header-print h6,
	body.table-chart.details div.brand-title h6 {
		font-size: 10px;
	}

	table.table-chart-v2 td.brand-title span,
	.header-print span,
	body.table-chart.details div.brand-title span {
		font-size: 8px;
	}

	table.table-chart-v2 tr:nth-child(4) td:nth-child(1) {
		max-width: 40px;
	}

	table.table-chart-v2 tr:nth-child(4) td:nth-child(1) {
		/* box-shadow: inset 0 0 9999px #000; */
		color: var(--color-primary);

		filter: invert(1);
	}

	/* table.table-chart-v2 tr:nth-child(4) td:nth-child(2) {
        color: var(--color-primary);

        filter: invert(1);
    } */

	table.table-chart-v2 td.header-title.color-1,
	table.table-chart-v2 tr.footer-titles td.color-1,
	table.table-chart-v2-details tr.header-title td:nth-child(2),
	table.table-chart-v2 tr.list td:nth-child(2) a {
		box-shadow: inset 0 0 9999px #eff2f8;
	}

	table.table-chart-v2 td.header-title.color-1 span.item::after,
	table.table-chart-v2 tr.footer-titles td.color-1 span.item::after,
	table.table-chart-v2-details tr.header-title td:nth-child(2) span.item::after {
		border-top: 1.71rem solid #f6f7fb !important;
		bottom: -1.7rem;
	}

	table.table-chart-v2 td.header-title.color-2,
	table.table-chart-v2 tr.footer-titles td.color-2,
	table.table-chart-v2-details tr.header-title td:nth-child(3),
	table.table-chart-v2 tr.list td:nth-child(3) a {
		box-shadow: inset 0 0 9999px #e3e9f1;
	}

	table.table-chart-v2 td.header-title.color-2 span.item::after,
	table.table-chart-v2 tr.footer-titles td.color-2 span.item::after,
	table.table-chart-v2-details tr.header-title td:nth-child(3) span.item::after {
		border-top: 1.71rem solid #eff2f7 !important;
		bottom: -1.7rem;
	}

	table.table-chart-v2 td.header-title.color-3,
	table.table-chart-v2 tr.footer-titles td.color-3,
	table.table-chart-v2-details tr.row-list:nth-of-type(2) td:nth-child(1),
	table.table-chart-v2-details tr.row-list:nth-of-type(2) td:nth-child(4),
	table.table-chart-v2 tr.list td:nth-child(4) a {
		box-shadow: inset 0 0 9999px #dce5f4;
	}

	table.table-chart-v2 td.header-title.color-3 span.item::after,
	table.table-chart-v2 tr.footer-titles td.color-3 span.item::after {
		border-top: 1.71rem solid #ecf0f9 !important;
		bottom: -1.7rem;
	}

	table.table-chart-v2 td.header-title.color-4,
	table.table-chart-v2 tr.footer-titles td.color-4,
	table.table-chart-v2-details tr.row-list:nth-of-type(3) td:nth-child(1),
	table.table-chart-v2-details tr.row-list:nth-of-type(3) td:nth-child(4),
	table.table-chart-v2 tr.list td:nth-child(5) a {
		box-shadow: inset 0 0 9999px #cfdaee;
	}

	table.table-chart-v2 td.header-title.color-4 span.item::after,
	table.table-chart-v2 tr.footer-titles td.color-4 span.item::after {
		border-top: 1.71rem solid #e3e9f5 !important;
		bottom: -1.7rem;
	}

	table.table-chart-v2 td.header-title.color-5,
	table.table-chart-v2 tr.footer-titles td.color-5,
	table.table-chart-v2-details tr.row-list:nth-of-type(4) td:nth-child(1),
	table.table-chart-v2-details tr.row-list:nth-of-type(4) td:nth-child(4),
	table.table-chart-v2 tr.list td:nth-child(6) a {
		box-shadow: inset 0 0 9999px #c1cee8;
	}

	table.table-chart-v2 td.header-title.color-5 span.item::after,
	table.table-chart-v2 tr.footer-titles td.color-5 span.item::after {
		border-top: 1.71rem solid #dce3f2 !important;
		bottom: -1.7rem;
	}

	table.table-chart-v2-details tr td table tr td {
		box-shadow: none !important;
	}

	table.table-chart-v2 td.header-title.color-6,
	table.table-chart-v2 tr.footer-titles td.color-6,
	table.table-chart-v2 tr.list td:nth-child(7) a {
		box-shadow: inset 0 0 9999px #b2c3e4;
	}

	table.table-chart-v2 td.header-title.color-6 span.item::after,
	table.table-chart-v2 tr.footer-titles td.color-6 span.item::after {
		border-top: 1.71rem solid #d2dcef !important;
		bottom: -1.7rem;
	}

	table.table-chart-v2 tr.footer-titles small {
		width: 24px;
		height: 24px;

		font-size: 10px;
	}

	table.table-chart-v2 tr.footer-titles span {
		font-size: 6px;
	}

	table.table-chart-v2 tr.rules td:nth-child(2),
	table.table-chart-v2 tr.rules td:nth-child(3) {
		text-transform: uppercase;
		letter-spacing: 1px;

		vertical-align: middle;

		padding-bottom: 4px;
	}

	body.table-chart div.gap div.item:nth-child(1) {
		box-shadow: inset 0 0 9999px var(--color-step-5), inset 0 0 9999px var(--color-step-5), inset 0 0 9999px var(--color-step-5), inset 0 0 9999px var(--color-step-5);
	}

	body.table-chart div.gap div.item:nth-child(1) span {
		/* filter: brightness(2); */
	}

	table.table-chart-v2 tr:nth-child(4) td:nth-child(3) a {
		filter: invert(1);
		color: var(--color-primary);
	}

	table.table-chart-v2 tr.list td a.gap-color-1,
	body.table-chart div.gap div.item.gap-color-1 {
		box-shadow: inset 0 0 9999px hsl(0, 100%, 77%), inset 0 0 9999px hsl(0, 100%, 77%), inset 0 0 9999px hsl(0, 100%, 77%), inset 0 0 9999px hsl(0, 100%, 77%) !important;
		color: hsl(0, 66%, 22%) !important;
	}

	table.table-chart-v2 tr.list td a.gap-color-2,
	body.table-chart div.gap div.item.gap-color-2 {
		box-shadow: inset 0 0 9999px hsl(30, 100%, 77%), inset 0 0 9999px hsl(30, 100%, 77%), inset 0 0 9999px hsl(30, 100%, 77%), inset 0 0 9999px hsl(30, 100%, 77%) !important;
		color: hsl(30, 66%, 22%) !important;
	}

	table.table-chart-v2 tr.list td a.gap-color-3,
	body.table-chart div.gap div.item.gap-color-3 {
		box-shadow: inset 0 0 9999px hsl(45, 100%, 77%), inset 0 0 9999px hsl(45, 100%, 77%), inset 0 0 9999px hsl(45, 100%, 77%), inset 0 0 9999px hsl(45, 100%, 77%) !important;
		color: hsl(45, 66%, 22%) !important;
	}

	table.table-chart-v2 tr.list td a.gap-color-4,
	body.table-chart div.gap div.item.gap-color-4 {
		box-shadow: inset 0 0 9999px hsl(55, 100%, 77%), inset 0 0 9999px hsl(55, 100%, 77%), inset 0 0 9999px hsl(55, 100%, 77%), inset 0 0 9999px hsl(55, 100%, 77%) !important;
		color: hsl(55, 66%, 22%) !important;
	}

	table.table-chart-v2 tr:nth-child(4) td:nth-child(1)::before {
		border-left: 24px solid #fff;
		border-top: 16.5px solid transparent;
		border-bottom: 16.5px solid transparent;
	}

	body.table-chart main[class*="details-gap"] table span,
	body.table-chart main[class*="details-gap"] table strong,
	body.table-chart main[class*="details-gap"] table label,
	body.table-chart main[class*="details-gap"] table td {
		font-size: 1rem !important;
	}
}

/* structure-dematel */

.structure-dematel div.card-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.structure-dematel div.card-body .buttons-control {
	display: flex;
	align-items: center;
}

.structure-dematel div.card-body button.btn {
	padding: 0;

	width: 32px;
	height: 32px;
	min-height: unset;
	max-height: 32px;

	border-radius: var(--border-radius);

	background: rgba(0, 0, 0, 0.02);

	display: inline-flex;
	align-items: center;
	justify-content: center;

	font-size: 1.28rem;

	margin-left: 0.57rem;

	transition: var(--transition);
}

.structure-dematel div.card-body button.btn:hover {
	opacity: 0.8;
}

.structure-dematel div.card-body button.btn ion-icon {
	transition: var(--transition);
}

.rotate180 {
	transform: rotate(180deg);
}

.structure-dematel .card {
	border: none;
}

.structure-dematel .card-body {
	background: rgb(0 0 0 / 7%);

	font-weight: 600;

	padding: 1.14rem 1.71rem;
}

.structure-dematel .card.card-principle .card-body {
	background: rgb(0 0 0 / 5%);

	padding-left: calc(1.71rem + 1.14rem);
}

.structure-dematel .card.card-capacity .card-body {
	background: rgb(0 0 0 / 2%);

	padding-left: calc(1.71rem + 1.14rem + 1.14rem);
}

.structure-dematel .card.card-field {
	margin-top: 1.14rem;
}

.structure-dematel .card.card-add-field {
	margin-top: 1.14rem;
}

/*  */

.container-quiz {
	position: fixed;
	top: 52px;
	left: 0;

	z-index: 8888;

	width: 100%;
	height: 100%;

	background: #02020240;

	opacity: 0;
	visibility: hidden;

	transition: opacity 0.2s, visibility 0.4s;
}

.container-quiz.open {
	opacity: 1;
	visibility: visible;

	transition: opacity 0.2s, visibility 0s;

	transition: 0.2s;
}

.container-quiz div.content {
	background: #ffffff;
	box-shadow: var(--box-shadow-dropdown);

	padding: 1.17rem;

	position: absolute;
	top: 0;
	right: -500px;

	max-width: 500px;
	min-width: 300px;
	min-height: 100%;

	transition: 0.4s;
}

.container-quiz.open div.content {
	right: 0;
}

/* att */

body.table-chart div.gap div.item:nth-child(1) {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

table.table-chart-v2 tr.list td a.gap-color-1,
body.table-chart div.gap div.item.gap-color-1 {
	background: hsl(0, 100%, 77%) !important;
	color: hsl(0, 66%, 22%) !important;
}

table.table-chart-v2 tr.list td a.gap-color-2,
body.table-chart div.gap div.item.gap-color-2 {
	background: hsl(30, 100%, 77%) !important;
	color: hsl(30, 66%, 22%) !important;
}

table.table-chart-v2 tr.list td a.gap-color-3,
body.table-chart div.gap div.item.gap-color-3 {
	background: hsl(45, 100%, 77%) !important;
	color: hsl(45, 66%, 22%) !important;
}

table.table-chart-v2 tr.list td a.gap-color-4,
body.table-chart div.gap div.item.gap-color-4 {
	background: hsl(55, 100%, 77%) !important;
	color: hsl(55, 66%, 22%) !important;
}

.table ion-icon {
	pointer-events: none;
}

/* item project */

div.item-project-vsm {
	position: relative;
}
div.item-project-vsm div.content {
	padding: 1.14rem;
	margin-top: calc(-1.14rem - 1.14rem - 1rem);
}
div.item-project-vsm div.buttons {
	position: absolute;

	top: 1.14rem;
	right: 1.14rem;
}
div.item-project-vsm div.buttons .btn {
	padding: 0;

	width: 2.28rem;
	height: 2.28rem;
	min-width: 2.28rem;
	min-height: 2.28rem;
}
div.item-project-vsm div.image {
	width: 100%;

	display: flex;

	padding-top: 100%;
}

aside.version {
	position: fixed;
	bottom: 0;
	left: 0;

	padding: 0.5rem 0;

	color: #6c757d;
	background: var(--color-primary-light);

	font-size: .85rem;
}

aside.login-version {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0.5rem 0;
    color: #c5c5c5;
    background: #f5f5f575;
    font-size: .85rem;
}