body {
	width: 100%;
	height: 100%;
}

.basic-sidebar {
	width: 500px;
	background: var(--gray-400);
	position: relative;
	background-size: cover;
}

.basic-sidebar-container {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(222, 234, 242, 0.5);
}

.app-container {
}

.app-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--gray-100);
	z-index: 100;
	opacity: .5;
}

.app-sidebar {
	display: flex;
	flex-direction: column;
	min-width: 250px;
	max-width: 250px;
	background: var(--white);
	border-right: 1px solid var(--gray-100);
	margin-left: -251px;
	transition: margin-left .15s linear;
	overflow-y: auto;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: 101;
}

body.app-sidebar-opened .app-sidebar {
	margin-left: 0;
}

@media (min-width: 992px) {
	.app-sidebar {
		margin-left: 0;
	}
}

[data-theme-style="dark"] .app-sidebar {
	border-color: var(--gray-200);
}

.app-sidebar-title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .5rem;
	height: 75px;
}

[data-theme-style="dark"] .app-sidebar-title {
	border-color: var(--gray-200);
}

.app-sidebar-title a {
	font-size: 1.4rem;
	color: var(--black);
}

[data-theme-style="dark"] .app-sidebar-title a {
	color: var(--gray-700);
}

.app-sidebar-title a:hover {
	text-decoration: none;
}

.app-sidebar-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.app-sidebar-links li {
	width: 100%;
	transition: all .3s;
	padding: 0.5rem 0.5rem;
}

.app-sidebar-links li a {
	width: 100%;
	display: flex;
	align-items: center;
	color: var(--gray-600);
	background: var(--gray-50);
	border-radius: .5rem;
	padding: 0.6rem 1rem;
}

[data-theme-style="dark"] .app-sidebar-links li a {
	background: var(--gray-100);
}

.app-sidebar-links li a:hover {
	text-decoration: none;
	background: var(--gray-100);
	color: var(--gray-700);
}

[data-theme-style="dark"] .app-sidebar-links li a:hover {
	color: var(--gray-600);
}

.app-sidebar-links li.active a {
	background: var(--gray-200);
	color: var(--gray-700);
	font-weight: 500;
}

[data-theme-style="dark"] .app-sidebar-links li.active a {
	background: var(--gray-100);
	color: var(--black);
}

.app-sidebar-avatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.app-sidebar-footer {
	padding: 1rem 1.5rem;
	background: var(--gray-50);
}

[data-theme-style="dark"] .app-sidebar-footer {
	background: var(--gray-100);
}

.app-sidebar-footer > a:hover {
	text-decoration: none;
}

.app-sidebar-footer-text {
	color: var(--gray-600);
}

[data-theme-style="dark"] .app-sidebar-footer-text {
	color: var(--gray-600);
}

.app-content {
	margin-left: 0;
	flex-grow: 1;
	overflow: auto;
}

@media (min-width: 992px) {
	.app-content {
		margin-left: 250px;
	}
}

.app-navbar {
	min-height: 75px;
	/*height: 75px;*/
	border-bottom: 1px solid var(--gray-100);
}

[data-theme-style="dark"] .app-navbar {
	border-color: var(--gray-200);
}

.navbar .dropdown-item svg {
	color: var(--gray-700);
}

.navbar .dropdown-item:active svg {
	color: white;
}

/* App menu search */
@media (min-width: 768px) {
	#app_menu_reports_form button {
		opacity: 0;
		transition: opacity .3s ease-in-out;
	}

	#app_menu_reports_form:focus-within button {
		opacity: 1;
	}

	#app_menu_reports_form input[name="input"] {
		width: 375px !important;
	}
}


/* Footer */
.app-footer {
	margin: 6rem 0 0 0;
	font-size: .95rem;
	border-top: 1px solid var(--gray-100);
}

[data-theme-style="dark"] .app-footer {
	/*background: hsla(225, 15%, 5%, 1);*/
}

.app-footer {
	color: var(--gray-700);
}

.app-footer a:not(.dropdown-item), .app-footer a:hover:not(.dropdown-item) {
	color: var(--gray-700);
}

.app-footer a.icon {
	color: var(--gray-700);
}

/* Filters */
.filters-dropdown {
	width: 18rem;
}

canvas {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.modal-header {
	padding: 1rem;
	border-bottom: 0;
}

.modal-subheader {
	padding: 0 1rem;
	border-bottom: 0;
	margin: 0;
}

.modal-content {
	padding: 1rem;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

/* Report page */
.report-search-avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
}

.report-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.report-example-avatar {
	width: 65px;
	height: 65px;
	border-radius: 50%;
}

/* TikTok video downloader */
.tiktok-video-downloader-music-image {
	width: 50px;
	height: 50px;
}

/* Forms */
.input-group-text {
	font-size: 0.9rem;
}

/* Footer */
.footer {
	padding: 4rem 0;
	margin: 6rem 0 0 0;
	font-size: 0.95rem;
	background: var(--gray-50);
}

.footer {
	color: var(--gray-700);
}

.footer a:not(.dropdown-item), .footer a:hover:not(.dropdown-item) {
	color: var(--gray-700);
}

/* Custom breadcrumbs */
.custom-breadcrumbs {
	list-style: none;
	padding: 0;
	display: flex;
}

.custom-breadcrumbs > li {
	margin-right: .5rem;
}

.custom-breadcrumbs > li > a {
	color: var(--gray);
}

.custom-breadcrumbs > li > svg {
	color: var(--gray-400);
	margin-left: .5rem;
}

.custom-breadcrumbs > li.active {
}

/* Helper classes */
.list-style-none {
	list-style: none;
	padding: 0;
}

.appearance-none {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.select-custom-altum {
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232D3748' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
	padding: .375rem 1.75rem .375rem .75rem;
	background-color: var(--gray-200);
}

.clickable {
	cursor: pointer;
}

.icon-stripe {
	color: #6772E5;
}

.icon-paypal {
	color: #283B81;
}

/* Navbar custom menu */
.navbar-main .navbar-nav > li > a {
	padding: 1rem !important;
}

.navbar-logo {
	max-height: 2.5rem;
	height: 2.5rem;
}

.navbar-avatar {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.navbar-custom-toggler {
	padding: 0.5rem .8rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border-radius: .25rem;

	color: var(--gray-500);
	border-color: var(--gray-300);
}

.chart-container {
	position: relative;
	margin: auto;
	height: 275px;
	width: 100%;
}

/* Index */
.index-header {
	font-size: 2.6rem;
	line-height: 1;
	font-weight: bold;
}

.index-subheader {
	font-size: 1.25rem;
}

.index-register-container {
	padding: 6rem 0;
}

/* Header container */
.header {
	margin-bottom: 1.5rem;
}

.user-avatar {
	border-radius: 50%;
	max-width: 70px;
	max-height: 70px;
}

/* Others */
.container-disabled {
	pointer-events: none;
	opacity: .5;
}

.container-disabled-simple {
	pointer-events: none;
}

/* Tables */
.table-custom-container {
	border-radius: .5rem;
	border: 1px solid var(--gray-100);
}

.table-custom {
	margin-bottom: 0;
}

.table-custom thead th {
	border-top: 0;
	border-bottom: 0;
	background: var(--white);
}

[data-theme-style="dark"] .table-custom thead th {
	background: var(--white);
	color: var(--gray-800)
}

.table-custom th {
	padding: 1.25rem 1rem;
}

.table-custom td {
	padding: 1.25rem 1rem;
	vertical-align: middle;
}

.table-custom td:not(.table-success):not(.table-danger) {
	background: var(--white);
}

.table-custom tbody tr td {
	border-color: var(--gray-100);
}

[data-theme-style="dark"] .table-custom tbody tr td {
	border-color: var(--gray-200)
}

.table-custom tbody tr {
	transition: all .3s ease-in-out;
}

.table-custom tbody tr:hover td {
}


/* Custom PRE container */
.pre-custom {
	background: var(--gray-300);
	padding: 2rem;
	font-size: 0.75rem;
}

/* Custom Radio Boxes */
.custom-radio-box {
	cursor: pointer;
}

.custom-radio-box .custom-radio-box-main-text {
	font-size: 2.25rem;
}

.custom-radio-box .custom-radio-box-main-icon {
	font-size: 2.5rem;
}

.custom-radio-box input[type="radio"] + div {
	border: 2px solid var(--gray-100);
	color: var(--gray-800);
	transition: all .3s ease-in-out;
}

.custom-radio-box input[type="radio"]:checked + div {
	border-color: var(--primary);
}

.custom-radio-box input[type="radio"] + div .payment-price-savings {
}

.custom-radio-box input[type="radio"]:checked + div .payment-price-savings {
}

/* Round circles */
.round-circle-md {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.round-circle-lg {
	width: 4.5rem;
	height: 4.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

/* Badge colors */
.badge-primary {
	color: hsl(211, 100%, 35%);
	background-color: hsl(211, 100%, 85%);
}

[data-theme-style="dark"] .badge-primary {
	background-color: hsl(211, 100%, 35%);
	color: hsl(211, 100%, 85%);
}

.badge-secondary {
	color: hsl(208, 7%, 35%);
	background-color: hsl(208, 7%, 85%);
}

[data-theme-style="dark"] .badge-secondary {
	background-color: hsl(208, 7%, 35%);
	color: hsl(208, 7%, 85%);
}

.badge-success {
	color: hsla(134, 50%, 30%, 1);
	background-color: hsla(134, 50%, 85%, 1);
}

[data-theme-style="dark"] .badge-success {
	background-color: hsla(134, 50%, 30%, 1);
	color: hsla(134, 50%, 85%, 1);
}

.badge-danger {
	color: hsla(354, 70%, 35%, 1);
	background-color: hsla(354, 70%, 85%, 1);
}

[data-theme-style="dark"] .badge-danger {
	background-color: hsla(354, 70%, 35%, 1);
	color: hsla(354, 70%, 85%, 1);
}

.badge-warning {
	background-color: hsla(45, 100%, 85%, 1);;
	color: hsla(40, 80%, 30%, 1);
}

[data-theme-style="dark"] .badge-warning {
	background-color: hsla(50, 20%, 20%, 1);
	color: hsla(45, 100%, 85%, 1);
}

.badge-info {
	color: hsla(188, 60%, 30%, 1);
	background-color: hsla(188, 78%, 85%, 1);
}

[data-theme-style="dark"] .badge-info {
	background-color: hsla(188, 60%, 30%, 1);
	color: hsla(188, 78%, 85%, 1);
}

.badge-light {
	color: hsla(210, 15%, 35%, 1);
	background-color: hsl(210, 17%, 95%);
}

[data-theme-style="dark"] .badge-light {
	background-color: hsla(210, 15%, 35%, 1);
	color: hsl(210, 17%, 95%);
}

.badge-dark {
	color: hsla(210, 10%, 90%, 1);
	background-color: hsla(210, 10%, 20%, 1);
}

[data-theme-style="dark"] .badge-dark {
	background-color: hsla(210, 10%, 90%, 1);
	color: hsla(210, 10%, 20%, 1);
}

/* Invoice css */
.invoice-table th {
	border-top: 0 !important;
}

@media print {
	.invoice-logo {
		filter: grayscale(100%);
	}
}

