:root {
	--color-primary: #020210;
	--color-secondary: #1c1a29;
	--color-highlight: #63697b;
	--color-text-primary: #c1c1c1;
	--color-text-secondary: #ababab;

	--transition-default: .3s all ease-in-out;
}

a {
	color: #00c9ff;
}

body {
	margin: 0;
	position: relative;
	width: 100%;
	height: 100vh;
	color: var(--color-text-primary);
	background-color: #1C1A29;
	font: normal 400 14px/1.5 'Roboto', sans-serif;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent
}

.minwidth-auto {
	min-width: auto !important;
}

.button-tooltip {
	width: 22px;
	height: 22px;
	padding: 3px;
	outline: none;
	box-shadow: none;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	cursor: pointer;
}

.button-tooltip svg {
	fill: var(--color-text-secondary);
	width: 20px;
	height: 20px;
	transition: var(--transition-default);
}

.button-tooltip:hover svg {
	fill: var(--bs-white);
}

.tooltip {
	--bs-tooltip-bg: #6c697b
}

.tooltip .tooltip-inner {
	max-width: 320px;
	line-height: 1.3;
}

.button-theme {
	outline: none;
	box-shadow: none;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0.375rem 0.75rem;
	height: 42px;
	border-radius: 4px;
	color: var(--bs-white);
	background: #1aa67c;
	font-size: 1em;
	transition: var(--transition-default);
	text-decoration: none !important;
	user-select: none;
}

.button-theme:hover {
	background: #14936c;
}

.button-theme_secondary {
	outline: none;
	box-shadow: none;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0.375rem 0.75rem;
	height: 42px;
	border-radius: 4px;
	color: var(--bs-white);
	background: #363645;
	font-size: 1em;
	transition: var(--transition-default);
	text-decoration: none !important;
	user-select: none;
}

.button-theme_secondary:not(:disabled):hover {
	background: #444454;
}

.button-theme_secondary:not(:disabled).active {
	background: #1aa67c;
}

.button-theme_medium {
	padding: 0.5rem 1rem;
	font-size: 1em;
	height: 37px;
}

.button-theme_sm {
	padding: 0.275rem 0.5rem;
	height: 28px;
	font-size: .925em;
}

.button-theme_secondary:disabled {
	opacity: 0.7;
}

.section-gap {
	padding: 30px 0;
}

.section-gap_large {
	padding: 60px 0 30px;
}

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

.section-heading {
	text-align: center;
}

.section-heading .heading-title {
	font-size: 3em;
	font-weight: 700;
	color: var(--bs-white);
}

.section-heading.section-heading_medium .heading-title {
	font-size: 2.6em;
	font-weight: 700;
	color: var(--bs-white);
	line-height: 1.3;
}

.section-heading.section-heading_small .heading-title {
	font-size: 2em;
	font-weight: 700;
	color: var(--bs-white);
}

.section-heading .heading-description {
	font-size: 1.075em;
	color: var(--color-text-secondary);
	max-width: 991px;
	margin: 8px auto 0;
}

.section-hero {
	padding: 20px 0;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.section-hero > * {
	position: relative;
	z-index: 2;
}

.section-hero .section-heading .heading-title {
	font-size: 2.3em;
	text-transform: uppercase;
	line-height: 1.25;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), -2px -2px 4px rgba(0, 0, 0, 0.4);
}

.section-wrapper {
	padding: 30px 0;
}

.section-filter {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	gap: 20px;
	padding: 30px;
	border-radius: 12px;
	background: rgb(var(--bs-white-rgb), 0.05);
}

.section-filter .filter-item {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	gap: 6px;
}

.section-filter .filter-item .filter-item_picker {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.section-filter .filter-item .filter-item_picker .filter-item_picker__input label {
	background: rgb(var(--bs-white-rgb), 0.15);
	border-radius: 50px;
	padding: 8px 16px 8px 32px;
	display: block;
	position: relative;
	white-space: nowrap;
	color: var(--bs-white);
	user-select: none;
	cursor: pointer;
}

.section-filter .filter-item .filter-item_picker .filter-item_picker__input.isVip label {
	background: rgb(var(--bs-white-rgb), 0.45);
	cursor: not-allowed;
}

.section-filter .filter-item .filter-item_picker .filter-item_picker__input label:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 15px;
	border-radius: 3px;
	border: 1px solid var(--color-text-primary);
	top: calc(50% - 1px);
	left: 12px;
	transform: translateY(-50%);
	transition: var(--transition-default);
}

.section-filter .filter-item .filter-item_picker .filter-item_picker__input label:after {
	position: absolute;
	content: "";
	height: 10px;
	width: 10px;
	top: calc(50% - 1px);
	left: 15px;
	transform: translateY(-50%);
	background: url('../image/check-mark.png') center center/cover no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-default);
	z-index: 1;
}

.section-filter .filter-item .filter-item_picker .filter-item_picker__input label svg {
	width: 14px;
	height: 14px;
	margin-left: 2px;
	display: inline-block;
	vertical-align: middle;
	fill: var(--color-text-primary);
	transition: var(--transition-default);
	cursor: pointer;
	outline: none;
	box-shadow: none;
}

.section-filter .filter-item .filter-item_picker .filter-item_picker__input input {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	pointer-events: none;
	user-select: none;
	opacity: 0;
	visibility: hidden;
}

.section-filter .filter-item .filter-item_picker .filter-item_picker__input input:checked + label {
	background: rgb(var(--bs-white-rgb), 0.35);
}

.section-filter .filter-item .filter-item_picker .filter-item_picker__input input:checked + label:before {
	background: #1aa67c;
	border-color: #1aa67c;
}

.section-filter .filter-item .filter-item_picker .filter-item_picker__input input:checked + label:after {
	opacity: 1;
	visibility: visible;
}

.section-filter .filter-item.filter-item_small {
	width: 66%;
}

.section-filter .filter-item.filter-item_button {
	width: auto;
	max-width: calc(33.333333% - 15px);
	white-space: nowrap;
}

.section-filter .filter-item .filter-item_title {
	font-size: 1.075em;
	color: var(--color-text-secondary);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	user-select: none;
}

.section-filter .filter-item .filter-item_select {
	flex: 1;
	min-width: 0;
}

.section-filter .filter-item .filter-item_select > select {
	border-radius: 4px;
	-o-appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.section-filter .filter-item .filter-item_select > select::-ms-expand {
	display: none;
}

.section-filter .filter-item .filter-item_select > select,
.section-filter .filter-item .filter-item_select .select2-container {
	width: 100%;
}

.section-filter .filter-item .filter-item_select > select,
.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--single {
	background: #14121a;
	border: 1px solid #3f4160;
	height: 42px;
}

.section-filter .filter-item .filter-item_select .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 42px;
	color: var(--bs-white);
	padding-left: 12px;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 42px;
	width: 30px;
}

.section-filter .filter-item .filter-item_select .select2-container .select2-search--dropdown {
	padding: 8px 12px;
	border-bottom: 1px solid #3f4160;
}

.section-filter .filter-item .filter-item_select .select2-container .select2-search--dropdown .select2-search__field {
	background: #201d28;
	border-color: #3f4160;
	border-radius: 4px;
	min-height: 32px;
	outline: none;
	box-shadow: none;
	padding: 6px 10px;
	color: var(--color-text-secondary);
}

.section-filter .filter-item .filter-item_select .select2-container .select2-dropdown {
	background: #14121a;
	border-color: #3f4160;
}

.section-filter .filter-item .filter-item_select .select2-container .select2-results > .select2-results__options {
	max-height: 315px;
}

.section-filter .filter-item .filter-item_select .select2-container .select2-results > .select2-results__options::-webkit-scrollbar {
	width: 5px;
}

.section-filter .filter-item .filter-item_select .select2-container .select2-results > .select2-results__options::-webkit-scrollbar-track {
	background: #201e25;
}

.section-filter .filter-item .filter-item_select .select2-container .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
	background: #333131;
	border-radius: 50px;
}

.section-filter .filter-item .filter-item_select .select2-container .select2-results__option {
	color: var(--color-text-secondary);
	padding: 7px 12px;
	transition: var(--transition-default);
}

.section-filter .filter-item .filter-item_select .select2-container .select2-results__option:hover,
.section-filter .filter-item .filter-item_select .select2-container .select2-results__option.select2-results__option--highlighted {
	background: transparent;
	color: var(--bs-white);
}

.section-filter .filter-item .filter-item_select .select2-container .select2-results__option[aria-selected=true] {
	background: rgba(229, 229, 229, 0.1);
	color: var(--bs-white);
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple {
	position: relative;
	padding-right: 30px;
	cursor: pointer;
	background: #14121a;
	border: 1px solid #3f4160;
	min-height: 42px;
	padding-left: 6px;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple:before {
	border-color: #888 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	right: 10px;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 20px;
	width: 0;
	display: block;
	content: "";
}

.section-filter .filter-item .filter-item_select .select2-container--default.select2-container--open .select2-selection--multiple:before {
	transform: rotate(180deg);
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__choice {
	background: #1aa67c;
	border-color: #1aa67c;
	color: var(--bs-white);
	white-space: nowrap;
	margin-top: 6px;
	padding: 2px 8px;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-search--inline .select2-search__field {
	color: var(--bs-white);
	margin-top: 10px;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-search--inline {
	width: 100% !important;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
	width: 100% !important;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
	color: var(--bs-white);
	opacity: .4;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__choice + .select2-search--inline,
.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__choice + .select2-search--inline .select2-search__field {
	width: 0 !important;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__choice__tooltip {
	display: inline-flex;
	align-items: center;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__choice__tooltip svg {
	width: 14px;
	height: 14px;
	margin-left: 4px;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__choice__tooltip svg path {
	fill: var(--color-text-primary);
	transition: var(--transition-default);
	cursor: pointer;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__choice__tooltip svg path:hover {
	fill: var(--bs-white);
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: var(--color-text-primary);
	transition: var(--transition-default);
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: var(--bs-white);
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__rendered {
	max-width: 100%;
	white-space: normal;
	padding-left: 0;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar {
	height: 5px;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar-track {
	background: #201e25;
}

.section-filter .filter-item .filter-item_select .select2-container--default .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar-thumb {
	background: #333131;
	border-radius: 50px;
}

.section-chart {
	padding-top: 50px;
}

.section-chart .chart-title {
	font-size: 2em;
	font-weight: 700;
	color: var(--bs-white);
	text-align: center;
}

.section-chart .chart-button {
	margin-bottom: 30px;
	margin-top: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.section-tabs .chart-button .active {
	background: #a520c9
}

.section-chart .chart-preview {
	padding: 15px 15px 0;
	background: #201d2a;
	width: 100%;
	height: auto;
}

.section-chart .chart-preview.chart-preview_small {
	width: 60% !important;
	margin: 0 auto;
}

.section-chart .chart-button .active {
	background: #a520c9
}

.section-item + .section-item {
	border-top: 1px solid #3b3a3a60;
	margin-top: 50px;
}

.chart-table {
	margin-top: 24px;
	background: #201d2a;
}

.chart-table .chart-table_header .chart-table_header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border-bottom: 1px solid #2D2D2D
}

.chart-table .chart-table_header .chart-table_header__top .chart-table_title {
	padding: 13px 16px;
	font-size: 1.15em;
	font-weight: 700;
	color: var(--bs-white);
	text-transform: uppercase;
}

.chart-table .chart-table_header .chart-table_header__top .chart-table_list {
	padding: 13px 16px;
	display: flex;
	align-items: center;
	position: relative;
	gap: 20px;
}

.chart-table .chart-table_header .chart-table_header__top .chart-table_list .chart-table_list__button {
	outline: none;
	box-shadow: none;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	cursor: pointer;
	color: var(--bs-white);
	font-size: 0.925em;
	font-weight: 500;
	transition: .3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	padding: 0;
	white-space: nowrap;
}

.chart-table .chart-table_header .chart-table_header__top .chart-table_list .chart-table_list__button.active {
	color: #df75ff;
}

.chart-table .chart-table_header .chart-table_header__top .chart-table_list .chart-table_line {
	position: absolute;
	bottom: -3px;
	height: 3px;
	transition: .3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	background: #a520c9;
	left: 0;
	border-radius: 5px;
}

.chart-table .chart-table_header .chart-table_header__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	border-bottom: 1px solid #2D2D2D;
	padding: 0 24px 0 16px;
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_money {
	font-size: 12px;
	width: calc(30% - 25px / 2);
	flex-shrink: 0;
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time {
	position: relative;
	width: calc(70% - 25px / 2);
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	gap: 25px;
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list .chart-table_time__list___item {
	display: flex;
	flex-direction: column;
	background: transparent;
	text-align: right;
	line-height: 1.5;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-text-primary);
	padding: 16px 0;
	white-space: nowrap;
	user-select: none;
	width: calc(100% / 4);
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__button {
	padding: 0;
	border: 0;
	outline: none;
	box-shadow: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: var(--transition-default);
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__button svg {
	width: 14px;
	height: 14px;
	fill: #a520c9;
	transition: var(--transition-default);
	opacity: 1;
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__button.buttonPrev {
	left: -24px;
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__button.buttonNext {
	right: -24px;
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__button:hover svg {
	fill: #901ab0;
}

.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__button:disabled svg {
	fill: var(--color-text-secondary);
	opacity: 0.5;
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__heading {
	background: rgba(255, 255, 255, 0.05);
	padding: 13px 16px;
	font-size: 1.075em;
	font-weight: 600;
	font-style: italic;
	color: var(--bs-white);
	text-transform: uppercase;
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__child .chart-table_item__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px 0 16px;
	gap: 25px;
	height: 54px;
	transition: var(--transition-default);
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__child .chart-table_item__wrapper:hover {
	background: rgba(255, 255, 255, 0.04);
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__title {
	width: 30%;
	flex-shrink: 0;
	padding: 16px 0;
	line-height: 1.5;
	font-size: 13px;
	font-weight: 600;
	color: var(--bs-white);
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__row {
	width: 70%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	gap: 25px;
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__column {
	padding: 16px 0;
	width: calc(100% / 4);
	text-align: right;
	line-height: 1.5;
	font-size: 13px;
	font-weight: 600;
	color: var(--bs-white);
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__child + .chart-table_item__child {
	border-top: 1px solid #2D2D2D;
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__sub .chart-table_item__title {
	padding-left: 16px;
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__sub {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px 0 16px;
	gap: 25px;
	height: 54px;
	border-top: 1px solid #2D2D2D;
	transition: var(--transition-default);
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__sub:hover {
	background: rgba(255, 255, 255, 0.04);
}

.chart-table .chart-table_body .chart-table_item .chart-table_item__sub .chart-table_item__column {
	font-size: 12px;
	font-weight: 400;
	font-style: italic;
	color: var(--color-text-primary);
}

.section-table {
	padding-top: 50px;
}

.scrollbar {
	overflow-x: auto;
	overflow-y: hidden;
	height: 6px;
	max-width: 100%;
}

.scrollbar .scrollbar-sync {
	height: 6px;
	background: #333131;
	border-radius: 50px;
	margin-bottom: 2px;
}

.scrollbar::-webkit-scrollbar,
.section-table .table-responsive::-webkit-scrollbar {
	width: 5px;
	height: 6px;
}

.scrollbar::-webkit-scrollbar-track,
.section-table .table-responsive::-webkit-scrollbar-track {
	background: #201e25;
}

.scrollbar::-webkit-scrollbar-thumb,
.section-table .table-responsive::-webkit-scrollbar-thumb {
	background: #333131;
	border-radius: 50px;
}

.table-theme_2 {
	overflow-y: auto;
	max-height: calc(36.42px * 21);
}

.table-theme .table {
	--bs-table-bg: #201d2a;
	--bs-table-color: var(--color-text-primary);
	--bs-border-color: #262734;
	font-size: 0.925em;
	vertical-align: middle;
	margin-bottom: 2px;
	position: relative;
}

.table-theme .table tr th,
.table-theme .table tr td {
	padding: 8px;
	transition: var(--transition-default);
}

.table-theme .table tr th {
	color: var(--bs-white);
	text-transform: uppercase;
	min-width: 200px;
	vertical-align: middle;
	text-align: left;
}

.table-theme .table tr th button {
	background: transparent;
	border: 0;
	outline: none;
	box-shadow: none;
	padding: 0;
}

.table-theme .table tr th button svg {
	fill: var(--bs-white);
	width: 16px;
	height: 16px;
}

.table-theme .table tr th:nth-child(1) {
	min-width: 120px;
}

.table-theme .table tr th:nth-child(2) {
	min-width: 100px;
}

.table-theme .table tr th:nth-child(10),
.table-theme .table tr th:nth-child(11) {
	min-width: 100px;
}

.table-theme .table.table-sticky tr th:nth-child(1),
.table-theme .table.table-sticky tr td:nth-child(1) {
	position: sticky;
	left: 0;
	z-index: 2;
}

.table-theme .table tbody tr:nth-child(odd) td {
	background: #1e1a26;
}

.table-theme .table tbody tr:hover td {
	background: #25202d;
}

.column-flicker {
	background: #201d2a;
	animation: flickColor 2s infinite 3s;
}

@keyframes flickColor {
	0%, 85%, 100% {
		background-color: #201d2a; /* Nền bình thường */
	}
	15% {
		background-color: var(--flicker); /* Màu sáng nhấp nháy */
	}
}

.table-theme .table-filter {
	font-size: 0.85em;
}

.table-filter thead tr th,
.table-filter tbody tr td:first-of-type {
	background: #1F1F30 !important;
}

.table-filter tbody tr td:first-of-type {
	font-size: 1.15em;
	font-weight: 500;
}

.page-account {
	min-height: 100vh;
	align-items: center;
	justify-content: center;
	display: flex;
	padding: 50px 0;
}

.section-account {
	background: #23212c;
	border: 1px solid #3f4160;
	border-radius: 8px;
	padding: 32px;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}

.section-account .account-title {
	color: var(--bs-white);
	font-size: 1.7em;
	font-weight: 700;
}

.section-account .account-form {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.section-account .account-form .account-form_item {
	display: flex;
	flex-wrap: wrap;
}

.section-account .account-form .account-form_item .form-label {
	font-size: 1em;
	font-weight: 500;
	color: var(--bs-white);
	width: 100%;
}

.section-account .account-form .account-form_item .invalid-feedback {
	width: 100%;
}

.section-account .account-form .account-form_item .form-control {
	background: #201f26;
	border: 1px solid #3f4160;
	border-radius: 6px;
	font-size: 1em;
	font-weight: 400;
	color: var(--bs-white);
	padding: 10px 12px;
	outline: none !important;
	box-shadow: none !important;
}

.section-account .account-form .account-form_item .form-control:focus-within {
	border: 1px solid var(--color-text-secondary);
}

.section-account .account-form .account-form_item .form-control::placeholder {
	color: var(--color-text-secondary);
}

.section-account .account-form .account-form_item.account-form_item__captcha .form-control {
	width: calc(100% - 128px);
	margin-right: 8px;
}

.section-account .account-form .account-form_item.account-form_item__captcha .captcha-image {
	height: 43px;
	width: 120px;
	position: relative;
}

.section-account .account-form .account-form_item.account-form_item__captcha .captcha-image canvas {
	width: 100%;
	height: 100%;
	background: #201f26;
	border: 1px solid #3f4160;
	border-radius: 6px;
}

.section-account .account-form .account-form_item.account-form_item__captcha .captcha-image button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.swal2-title {
	color: var(--bs-black);
	font-size: 1.5em;
}

.swal2-html-container {
	margin-top: .75em;
	font-size: 1em;
}

.section-marquee {
	background: #131313;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	overflow: hidden;
	gap: 25px;
}

.section-marquee .marquee-list {
	flex: 0 0 auto;
	min-width: 100%;
	display: flex;
	align-items: center;
	gap: 25px;
	animation: scroll 60s linear 0s infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

.section-marquee .marquee-list .marquee-item {
	color: #ffb91f;
	font-weight: 500;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), -2px -2px 4px rgba(0, 0, 0, 0.4);
}

.modal-theme .modal-content {
	border: 0;
	background: #1d1d26;
}

.modal-theme .modal-content .modal-header {
	border-bottom: 0;
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 16px;
	background: #1F1F30;
}

.modal-theme .modal-content .modal-header .modal-title {
	font-size: 1.45em;
	line-height: 1.3;
	font-weight: 700;
	color: var(--bs-white);
}

.modal-theme .modal-content .modal-header .btn-close {
	--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
	outline: none;
	border: none;
	box-shadow: none;
}

.modal-theme .modal-content .modal-body .modal-description {
	color: var(--bs-white);
	font-size: 1.075em;
}

.modal-theme .modal-content .modal-body .modal-sub {
	color: var(--bs-white);
	font-size: 1.225em;
}

.loading-fetch {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 10;
	background: rgba(0, 0, 0, .9);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	font-size: 1.3em;
	font-weight: 500;
	gap: 10px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: var(--transition-default);
}

.loading-fetch svg {
	fill: var(--bs-white);
	animation: rotate 1.5s infinite ease-in-out;
}

.loading .loading-fetch {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

@keyframes rotate {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}

.section-bgImage {
	position: relative;
	height: 100%;
}

.section-bgImage > * {
	position: relative;
	z-index: 3;
}

.section-bgImage:before {
	content: "";
	background: url('../image/bg.webp') center center/cover;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 1;
	display: block;
	opacity: 0.1;
	top: 0;
	left: 0;
}

.section-bgImage:after {
	content: "";
	background: #020210;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 2;
	display: block;
	top: 0;
	left: 0;
	opacity: 0.35;
}

.toolbar-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.toolbar-button .toolbar-button_item {
	padding: 0;
	border: 0;
	outline: none;
	box-shadow: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	transition: var(--transition-default);
	pointer-events: auto;
}

.toolbar-button .toolbar-button_item svg {
	width: 22px;
	height: 22px;
	fill: #a520c9;
	transition: var(--transition-default);
	opacity: 1;
}

.toolbar-button .toolbar-button_item:hover svg {
	fill: #901ab0;
}

.toolbar-button .toolbar-button_item:disabled {
	opacity: 0;
	pointer-events: none;
}

@media screen and (max-width: 991px) {
	.section-heading .heading-title {
		font-size: 2em;
	}

	.section-heading.section-heading_medium .heading-title {
		font-size: 1.75em;
	}

	.section-heading.section-heading_small .heading-title {
		font-size: 1.6em;
		line-height: 1.3;
	}

	.section-heading .heading-description {
		font-size: 1em;
	}

	.section-tabs .chart-button [class*=button-theme] {
		height: auto;
		line-height: 1.3;
		text-align: center;
	}

	.section-wrapper {
		padding: 30px 0;
	}

	.section-chart {
		padding-top: 30px;
	}


	.section-filter {
		flex-direction: column;
		gap: 10px
	}

	.section-filter .filter-item {
		flex-direction: row;
		align-items: center;
	}

	.section-filter .filter-item .filter-item_select {
		width: 100%;
	}

	.section-filter .filter-item.filter-item_button {
		max-width: 100%;
		align-self: flex-end;
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.section-chart .chart-title {
		font-size: 1.45em;
		line-height: 1.3;
	}

	.chart-table .chart-table_header .chart-table_header__top .chart-table_title {
		font-size: 1.075em;
		padding: 8px 12px;
		line-height: 1.25;
	}

	.chart-table .chart-table_header .chart-table_header__top .chart-table_list {
		padding: 8px 12px;
	}

	.chart-table .chart-table_header .chart-table_header__bottom,
	.chart-table .chart-table_body .chart-table_item .chart-table_item__child .chart-table_item__wrapper {
		padding: 0 24px 0 12px;
		gap: 18px;
	}

	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_money,
	.chart-table .chart-table_body .chart-table_item .chart-table_item__title {
		width: 35%;
		line-height: 1.3;
	}

	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list,
	.chart-table .chart-table_body .chart-table_item .chart-table_item__row {
		gap: 18px;
	}

	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time,
	.chart-table .chart-table_body .chart-table_item .chart-table_item__row {
		width: 65%;
	}

	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list .chart-table_time__list___item,
	.chart-table .chart-table_body .chart-table_item .chart-table_item__column {
		width: 50%;
	}

	.chart-table .chart-table_body .chart-table_item .chart-table_item__heading {
		padding: 8px 12px;
	}

	.chart-table .chart-table_body .chart-table_item .chart-table_item__title,
	.chart-table .chart-table_body .chart-table_item .chart-table_item__column {
		padding: 8px 0;
	}

	.chart-table .chart-table_body .chart-table_item .chart-table_item__child .chart-table_item__wrapper,
	.chart-table .chart-table_body .chart-table_item .chart-table_item__sub {
		height: auto;
	}

	.chart-table .chart-table_body .chart-table_item .chart-table_item__sub {
		padding: 0 24px 0 12px;
		gap: 18px;
	}
}

@media screen and (max-width: 768px) {
	.section-filter .filter-item.filter-item_small {
		width: 100%;
	}

	.section-filter .filter-item .filter-item_title {
		font-size: 1em;
		width: 40%;
	}
}

@media screen and (max-width: 1199px) {
	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list .chart-table_time__list___item,
	.chart-table .chart-table_body .chart-table_item .chart-table_item__column {
		display: none;
	}

	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list .chart-table_time__list___item:nth-of-type(1),
	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list .chart-table_time__list___item:nth-of-type(2),
	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list .chart-table_time__list___item:nth-of-type(3) {
		display: flex;
	}

	.chart-table .chart-table_body .chart-table_item .chart-table_item__column:nth-of-type(1),
	.chart-table .chart-table_body .chart-table_item .chart-table_item__column:nth-of-type(2),
	.chart-table .chart-table_body .chart-table_item .chart-table_item__column:nth-of-type(3) {
		display: block;
	}
}

@media screen and (max-width: 991px) {
	.section-hero {
		height: auto;
	}

	.section-hero .section-heading .heading-title {
		font-size: 1.6em;
	}

	.section-table {
		padding-top: 30px;
	}

	.table-theme_2 .table tr th {
		min-width: 100px !important;
	}
}

@media screen and (max-width: 575px) {
	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list .chart-table_time__list___item,
	.chart-table .chart-table_body .chart-table_item .chart-table_item__column {
		display: none !important;
	}

	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list .chart-table_time__list___item:nth-of-type(1),
	.chart-table .chart-table_header .chart-table_header__bottom .chart-table_time__list .chart-table_time__list___item:nth-of-type(2) {
		display: flex !important;
	}

	.chart-table .chart-table_body .chart-table_item .chart-table_item__column:nth-of-type(1),
	.chart-table .chart-table_body .chart-table_item .chart-table_item__column:nth-of-type(2) {
		display: block !important;
	}
}
