:root {
	--theme-color: #d22828;
	--theme-color-light: red;
	--theme-color-dark: #a00;
}

.text-theme {
	color: var(--theme-color) !important;
}
.bg-theme {
	background-color: var(--theme-color) !important;
}
.border-theme {
	border-color: var(--theme-color) !important;
}
.btn-theme {
	color: white;
	background-color: var(--theme-color);
}
.btn-theme:hover {
	color: white;
}
.btn-theme-outline {
	color: var(--theme-color);
	border-color: var(--theme-color);
}
.btn-theme-outline:hover {
	color: var(--theme-color)
}

.sidebar .sidebar-body .nav .nav-item .nav-link {
  color: white;
}
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
  color: white;
  background: var(--theme-color-dark);
}
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
  font-size: 1rem;
  font-weight: bold;
}
.sidebar .sidebar-header .sidebar-toggler span {
  background: white;
}
