@import url("reset.css");

/* Base */
:root {
	--primary-color: #ffa800;
	--primary-hover: #ffbb34;
	--dark-bg: #0d131a;
	--card-bg: #232e3c;
	--card-footer-bg: #19212b;
	--text-color: #ffffff;
	--text-muted: #6c757d;
	--success-color: #2fb344;
	--danger-color: #d63939;
	--warning-color: #f59f00;
	--info-color: #4299e1;
	--cyan-color: #17a2b8;
	--green-color: #2fb344;
	--red-color: #d63939;
	--yellow-color: #f59f00;
	--blue-color: #206bc4;
}

* {
	box-sizing: border-box;
	image-rendering: pixelated;
	overscroll-behavior: contain;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	background-color: rgba(35, 46, 60, 0.92);
	color: var(--text-color);
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 15px;
}

::-webkit-scrollbar-track {
	background: var(--dark-bg);
	border-radius: 2px;
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--primary-hover);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}

.text-white {
	color: var(--text-color) !important;
}

.text-muted {
	color: var(--text-muted) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}

.text-success {
	color: var(--success-color) !important;
}

.text-danger {
	color: var(--danger-color) !important;
}

.text-warning {
	color: var(--warning-color) !important;
}

.text-secondary {
	color: var(--text-muted) !important;
}

.text-center {
	text-align: center !important;
}

/* Layout */
.container-fluid {
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	margin-right: auto;
	margin-left: auto;
}

.container-tight {
	max-width: 30rem;
	margin-left: auto;
	margin-right: auto;
}

.container-xl {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -0.5rem;
	margin-left: -0.5rem;
}

.row-deck {
	margin-top: -1.5rem;
}

.row-deck > [class*="col-"] {
	margin-top: 1.5rem;
}

.row-cards {
	margin-top: -1.5rem;
}

.row-cards > [class*="col-"] {
	margin-top: 1.5rem;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
	position: relative;
	width: 100%;
	padding-right: 0.5rem;
	padding-left: 0.5rem;
}

.col-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

@media (min-width: 768px) {
	.col-md-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-md-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-md-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-md-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 992px) {
	.col-lg-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (min-width: 1200px) {
	.col-xl-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

/* Spacing */
.p-0 {
	padding: 0 !important;
}

.p-1 {
	padding: 0.25rem !important;
}

.p-2 {
	padding: 0.5rem !important;
}

.p-3 {
	padding: 1rem !important;
}

.p-4 {
	padding: 1.5rem !important;
}

.pt-1 {
	padding-top: 0.25rem !important;
}

.pt-2 {
	padding-top: 0.5rem !important;
}

.pt-3 {
	padding-top: 1rem !important;
}

.pt-4 {
	padding-top: 1.5rem !important;
}

.pb-1 {
	padding-bottom: 0.25rem !important;
}

.pb-2 {
	padding-bottom: 0.5rem !important;
}

.pb-3 {
	padding-bottom: 1rem !important;
}

.pb-4 {
	padding-bottom: 1.5rem !important;
}

.px-2 {
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}

.py-4 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.m-0 {
	margin: 0 !important;
}

.m-1 {
	margin: 0.25rem !important;
}

.m-2 {
	margin: 0.5rem !important;
}

.m-3 {
	margin: 1rem !important;
}

.m-4 {
	margin: 1.5rem !important;
}

.mb-1 {
	margin-bottom: 0.25rem !important;
}

.mb-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3 {
	margin-bottom: 1rem !important;
}

.mb-4 {
	margin-bottom: 1.5rem !important;
}

.mb-5 {
	margin-bottom: 3rem !important;
}

.mt-1 {
	margin-top: 0.25rem !important;
}

.mt-2 {
	margin-top: 0.5rem !important;
}

.mt-3 {
	margin-top: 1rem !important;
}

.mt-4 {
	margin-top: 1.5rem !important;
}

.ms-auto {
	margin-left: auto !important;
}

.me-2 {
	margin-right: 0.5rem !important;
}

.gap-2 {
	gap: 0.5rem !important;
}

/* Cards */
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: var(--card-bg);
	background-clip: border-box;
	border: 0;
	border-radius: 0.25rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-md {
	max-width: 25rem;
}

.bg-dark {
	background-color: var(--card-bg) !important;
}

.card-status-top {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	border-radius: 0.25rem 0.25rem 0 0;
}

.card-body {
	flex: 1 1 auto;
	min-height: 1px;
	padding: 1.5rem;
}

.card-title {
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 500;
}

.card-footer {
	padding: 1rem 1.5rem;
	background-color: var(--card-footer-bg);
	border-top: 0;
	border-radius: 0 0 0.25rem 0.25rem;
}

/* Navigation */
.navbar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 1rem;
}

.navbar-dark {
	background-color: var(--dark-bg);
}

.navbar-brand {
	display: inline-block;
	padding-top: 0.3125rem;
	padding-bottom: 0.3125rem;
	margin-right: 1rem;
	font-size: 1.25rem;
	line-height: inherit;
	white-space: nowrap;
	width: max-content;
}

.navbar-brand-image {
	height: 2rem;
	/* retain aspect ratio */
	object-fit: contain;
	width: max-content;
}

.navbar-toggler {
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	cursor: pointer;
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

.navbar-nav {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.nav-item {
	position: relative;
}

.nav-link {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--text-color);
	text-decoration: none;
}

.dropdown {
	position: relative;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1000;
	display: none;
	min-width: 10rem;
	padding: 0.5rem 0;
	margin: 0.125rem 0 0;
	font-size: 1rem;
	text-align: left;
	list-style: none;
	background-color: var(--dark-bg);
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 0.25rem;
}

.dropdown-menu.show {
	display: block;
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: 0.25rem 1.5rem;
	clear: both;
	font-weight: 400;
	color: var(--text-color);
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	text-decoration: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
	color: var(--primary-color);
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.1);
}

/* Tabs */
.nav-tabs {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	border-bottom: 1px solid var(--card-footer-bg);
}

.nav-tabs .nav-item {
	margin-bottom: -1px;
}

.nav-tabs .nav-link {
	border: 1px solid transparent;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
	padding: 0.75rem 1rem;
	background-color: var(--card-footer-bg);
	color: var(--text-muted);
	cursor: pointer;
}

.nav-tabs .nav-link.active {
	color: var(--text-color);
	background-color: var(--card-bg);
	border-bottom: 2px solid var(--blue-color);
}

/* Tab content */
.tab-content {
	flex: 1;
	min-width: 0;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

/* Fade animation for tabs */
.fade {
	transition: opacity 0.15s linear;
}

.fade:not(.show) {
	opacity: 0;
}

/* Buttons */
.btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	cursor: pointer;
	align-items: center;
}

.btn:hover {
	text-decoration: none;
}

.btn-sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0.2rem;
}

.btn-icon {
	padding: 0.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-primary {
	color: #000;
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-primary:hover {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
}

.btn-success {
	color: #fff;
	background-color: var(--success-color);
	border-color: var(--success-color);
}

.btn-success:hover {
	background-color: #28a745;
	border-color: #28a745;
}

.btn-danger {
	color: #fff;
	background-color: var(--danger-color);
	border-color: var(--danger-color);
}

.btn-danger:hover {
	background-color: #c82333;
	border-color: #bd2130;
}

.btn-warning {
	color: #212529;
	background-color: var(--warning-color);
	border-color: var(--warning-color);
}

.btn-warning:hover {
	background-color: #e0a800;
	border-color: #d39e00;
}

.btn-green {
	color: #fff;
	background-color: var(--green-color);
	border-color: var(--green-color);
}

.btn-green:hover {
	background-color: #28a745;
	border-color: #28a745;
}

.btn-cyan {
	color: #fff;
	background-color: var(--cyan-color);
	border-color: var(--cyan-color);
}

.btn-cyan:hover {
	background-color: #138496;
	border-color: #117a8b;
}

.btn-dark {
	color: #fff;
	background-color: var(--dark-bg);
	border-color: #343a40;
}

.btn-dark:hover {
	background-color: #23272b;
	border-color: #1d2124;
}

.btn-link {
	font-weight: 400;
	color: var(--blue-color);
	text-decoration: none;
	background-color: transparent;
	border: none;
}

.btn-link:hover {
	color: #0056b3;
	text-decoration: underline;
}

.btn-close {
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: 0.25em 0.25em;
	color: var(--text-color);
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	border: 0;
	border-radius: 0.25rem;
	opacity: 0.5;
	cursor: pointer;
}

.btn-close-white {
	filter: invert(1) grayscale(100%) brightness(200%);
}

.w-100 {
	width: 100% !important;
}

.w-1 {
	width: 1% !important;
}

/* Badges */
.badge {
	display: inline-block;
	padding: 0.25em 0.4em;
	font-size: 75%;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 0.25rem;
}

.bg-green {
	background-color: var(--green-color) !important;
}

.bg-red {
	background-color: var(--red-color) !important;
}

.bg-yellow {
	background-color: var(--yellow-color) !important;
}

.bg-blue {
	background-color: var(--blue-color) !important;
}

.bg-green-lt {
	color: var(--green-color) !important;
	background-color: rgba(47, 179, 68, 0.1) !important;
}

.bg-red-lt {
	color: var(--red-color) !important;
	background-color: rgba(214, 57, 57, 0.1) !important;
}

/* Forms */
.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + 0.75rem + 2px);
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-color);
	background-color: var(--dark-bg);
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
	color: var(--text-color);
	background-color: var(--dark-bg);
	border-color: var(--primary-color);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(255, 168, 0, 0.25);
}

.form-select {
	display: block;
	width: 100%;
	height: calc(1.5em + 0.75rem + 2px);
	padding: 0.375rem 2.25rem 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-color);
	background-color: var(--dark-bg);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	appearance: none;
}

.form-label {
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-check {
	position: relative;
	display: block;
	padding-left: 1.25rem;
}

.form-check-input {
	position: absolute;
	margin-top: 0.3rem;
	margin-left: -1.25rem;
}

.form-check-label {
	margin-bottom: 0;
}

/* Tables */
.table {
	width: 100%;
	margin-bottom: 1rem;
	color: var(--text-color);
	border-collapse: collapse;
}

.table th,
.table td {
	padding: 0.75rem;
	vertical-align: top;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.table-vcenter td,
.table-vcenter th {
	vertical-align: middle;
}

.table-vcenter th {
	border-top: 0;
}

/* Utilities */
.d-flex {
	display: flex !important;
}

.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-inline-block {
	display: inline-block !important;
}

.flex-row {
	flex-direction: row !important;
}

.flex-column {
	flex-direction: column !important;
}

.flex-wrap {
	flex-wrap: wrap !important;
}

.justify-content-center {
	justify-content: center !important;
}

.justify-content-between {
	justify-content: space-between !important;
}

.align-items-center {
	align-items: center !important;
}

.position-relative {
	position: relative !important;
}

.position-absolute {
	position: absolute !important;
}

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

.end-0 {
	right: 0 !important;
}

.border-0 {
	border: 0 !important;
}

.shadow-none {
	box-shadow: none !important;
}

.h-100 {
	height: 100% !important;
}

.h1 {
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1.2;
}

.subheader {
	font-size: 0.625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Progress */
.progress {
	display: flex;
	height: 1rem;
	overflow: hidden;
	font-size: 0.75rem;
	background-color: var(--dark-bg);
	border-radius: 0.25rem;
}

.progress-sm {
	height: 0.25rem;
}

.progress-bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: var(--primary-color);
	transition: width 0.6s ease;
}

.progress-bar.bg-blue {
	background-color: var(--blue-color) !important;
}

.progress-bar.bg-green {
	background-color: var(--green-color) !important;
}

.progress-bar.bg-red {
	background-color: var(--red-color) !important;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Alerts */
.alert {
	position: relative;
	padding: 0.75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}

.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.alert-important {
	font-weight: 700;
}

.alert-dismissible {
	padding-right: 4rem;
}

/* Empty state */
.empty {
	text-align: center;
	padding: 2rem;
}

.empty-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--text-muted);
}

.empty-title {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.empty-subtitle {
	font-size: 1rem;
}

/* Modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
	opacity: 0;
	transition: opacity 0.15s linear;
}

.modal.show {
	opacity: 1;
	display: block;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	opacity: 0;
	transition: opacity 0.15s linear;
}

.modal-backdrop.show {
	opacity: 0.5;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: none;
}

.modal-dialog-centered {
	display: flex;
	align-items: center;
	min-height: calc(100% - 1rem);
}

.modal-dialog-scrollable {
	display: flex;
	max-height: calc(100% - 1rem);
}

.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--card-bg);
	background-clip: padding-box;
	border: 0;
	border-radius: 0.25rem;
	outline: 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.5;
	font-size: 1.25rem;
}

.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding: 0.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}

	.modal-dialog-scrollable {
		max-height: calc(100% - 3.5rem);
	}

	.modal-dialog-centered {
		min-height: calc(100% - 3.5rem);
	}

	.modal-lg {
		max-width: 800px;
	}
}

/* Avatar */
.avatar {
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--card-bg) no-repeat center/cover;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.avatar-sm {
	width: 1.5rem;
	height: 1.5rem;
}

/* Icons */
.icon {
	width: 1.25rem;
	height: 1.25rem;
	stroke-width: 2;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	vertical-align: -0.125em;
}

/* Animations */
.spinner {
	width: 40px;
	height: 40px;
	border: 5px solid;
	border-left-color: transparent;
	border-right-color: transparent;
	border-radius: 50%;
	animation: 0.8s linear infinite spin;
}

@keyframes spin {
	from {
		rotate: 0deg;
	}
	to {
		rotate: 360deg;
	}
}

/* Code */
code {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 87.5%;
	word-wrap: break-word;
}

pre {
	display: block;
	font-size: 87.5%;
	color: var(--text-color);
}

pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal;
}

/* Media queries */
@media (min-width: 576px) {
	.d-sm-flex {
		display: flex !important;
	}

	.d-sm-none {
		display: none !important;
	}

	.d-sm-block {
		display: block !important;
	}
}

@media (min-width: 768px) {
	.d-md-flex {
		display: flex !important;
	}

	.d-md-none {
		display: none !important;
	}

	.d-md-block {
		display: block !important;
	}

	.d-none-navbar-horizontal {
		display: flex !important;
	}
}

@media (min-width: 992px) {
	.d-lg-flex {
		display: flex !important;
	}

	.d-lg-none {
		display: none !important;
	}

	.d-lg-block {
		display: block !important;
	}
}

@media (min-width: 1200px) {
	.d-xl-flex {
		display: flex !important;
	}

	.d-xl-none {
		display: none !important;
	}

	.d-xl-block {
		display: block !important;
	}
}
