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

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

/* 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;
	color: var(--gray);
}

.table-custom th {
	padding: 0.8rem 1rem;
	font-size: .9rem;
}

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

.table-custom tr:nth-child(even) {
	background: var(--gray-50);
}

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

.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 breadcrumbs */
.custom-breadcrumbs {
	list-style: none;
	padding: 0;
	display: flex;
}

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

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

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

.custom-breadcrumbs > li.active {
}

/* Base animation */
.altum-animate {
	-webkit-animation-duration:500ms;
	animation-duration:500ms;
}

.altum-animate-fill-both {
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
}

.altum-animate-fill-none {
	-webkit-animation-fill-mode:none;
	animation-fill-mode:none;
}

@-webkit-keyframes fadeIn{
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
@keyframes fadeIn{
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
.altum-animate-fade-in {
	-webkit-animation-name:fadeIn;
	animation-name:fadeIn
}

/* Navbar */
.status-page-navbar {
	border-bottom: 1px solid var(--gray-100)
}

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

/* Others */
.status-page-title {
	color: var(--black);
}

[data-theme-style="dark"] .status-page-description {
	color: var(--gray);
}

/* Footer */
.status-page-footer {
	margin-top: 3rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
	font-size: .95rem;
	border-top: 1px solid var(--gray-100);
}

/* Images, icons */
img {
	vertical-align: inherit !important;
}

.icon-favicon {
	width: 1rem;
	height: auto;
}

.icon-favicon-small {
	width: .75rem;
	height: auto;
}

.status-page-logo {
	width: 4rem;
	max-width: 4rem;
}

.svg-sm,.svg-sm svg {
	width: 1rem;
	height: 1rem;
}

.svg-md,.svg-md svg {
	width: 1.25rem;
	height: 1.25rem;
}

.svg-lg,.svg-lg svg {
	width: 1.5rem;
	height: 1.5rem;
}

.svg-card-icon {
	width: 2.25rem;
	height: auto;
}

.svg-head-status {
	width: 4rem;
	height: auto;
}
