@font-face {
	font-family: "Segoe UI Regular";
	font-style: normal;
	font-weight: normal;
	src: local("Segoe UI Regular"), url("Segoe UI.woff") format("woff");
}
html,
body {
	width: 100%;
	height: 100%;
	background: #000;
	color: #fff;
	overflow-y: hidden;
}
a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}
.wrapper {
	display: flex;
	width: 100%;
	height: 100%;
}
nav .container-fluid img {
	height: 59px;
}
#sidebar {
	width: 175px;
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	z-index: 999;
	font-family: "Segoe UI Regular";
	font-variant: small-caps;
	font-weight: bold;
	color: #000;
	transition: all 0.6s cubic-bezier(0.945, 0.02, 0.27, 0.665);
}
#sidebar::before {
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #252a35;
	border-left: 4px solid;
	border-image: linear-gradient(
			to bottom,
			rgb(53, 51, 51),
			rgb(255, 197, 71),
			rgb(53, 51, 51)
		)
		1;
	background-size: 100% 100%;
}
.sidebar-header img {
	width: 90px;
	display: block;
	margin: auto;
	filter: drop-shadow(0 0 10px rgb(122, 216, 245));
}
a[data-toggle="collapse"] {
	position: relative;
}

.dropdown-toggle::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}

#sidebar .sidebar-header {
	padding: 20px;
}

#sidebar ul.components {
	padding: 20px 0;
}

#sidebar ul p {
	color: #fff;
	padding: 10px;
}

#sidebar ul li a {
	padding: 10px;
	font-size: 1.1rem;
	display: block;
	color: rgb(250, 248, 117);
	text-shadow: 0 0 1px rgb(2, 39, 7), 0 0 1px rgb(2, 39, 7),
		0 0 1px rgb(2, 39, 7);
}
#sidebar ul li a:hover {
	color: rgb(122, 216, 245);
	background-color: rgba(0, 0, 0, 0.1);
}

#sidebar ul li.active > a,
a[aria-expanded="true"] {
	background: rgba(0, 0, 0, 0.2);
}
#sidebarCollapse {
	display: none;
}
#rightBand {
	width: 60px;
	background-color: #252a35;
}

#content {
	width: calc(100% - 235px);
	height: 100vh;
	position: fixed;
	top: 0;
	left: 60px;
	transition: all 0.6s ease-in-out;
}
#mCSB_1_container {
	background-color: #060e1f;
	background-attachment: scroll;
	min-height: 100%;
	border-left: 4px solid;
	border-image: linear-gradient(
			to bottom,
			rgb(53, 51, 51),
			rgb(255, 197, 71),
			rgb(53, 51, 51)
		)
		1;
}
#error-content {
	font-variant: small-caps;
}
.custom-loader {
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 20%;
	background-color: #000;
	height: 100vh;
	width: 100%;
	z-index: 9999;
}
.custom-spinner {
	margin-left: auto;
	margin-right: auto;
	height: 150px;
	width: 150px;
	border-left: 10px solid #000;
	border-right: 10px solid #000;
	border-top: 10px solid #37eee5;
	border-bottom: 10px solid #37eee5;
	border-radius: 50%;
	animation: spin 2s infinite ease-out;
}
@keyframes spin {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(90deg) scale(1.05);
	}
	0% {
		transform: rotate(720deg) scale(1);
	}
}
#content.blur,
#toggle-nav.blur {
	filter: blur(10px);
}
#content .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
	right: auto;
	left: 0;
}
#content .topic {
	color: rgb(255, 197, 71);
	font-size: 2rem;
	text-shadow: 0 0 1px rgb(2, 39, 7), 0 0 1px rgb(2, 39, 7),
		0 0 1px rgb(2, 39, 7);
}
#toggle-nav {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	transition: all 0.6s ease-in-out;
}
.overlay-content {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.9);
	z-index: 998;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

.overlay-content.active {
	opacity: 1;
}

#dismiss {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: rgba(255, 255, 255, 0.3);
	position: absolute;
	top: 10px;
	left: 20px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	display: none;
}

#dismiss:hover {
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
}
@media (max-width: 768px) {
	#sidebar {
		margin-right: -250px;
		transform: rotateY(100deg);
	}
	#sidebar.active {
		margin-right: 0;
		transform: none;
	}
	.sidebar-header img {
		width: 0px;
		display: none;
	}
	#rightBand {
		width: 0px;
		display: none;
	}
	#content {
		width: 100%;
		height: calc(100vh - 75px);
		top: auto;
		left: 0;
		bottom: 0;
	}
	#sidebarCollapse {
		display: inline-block;
	}
	#dismiss {
		display: block;
	}
	.mCustomScrollBox {
	    overflow-y: scroll;
	}
}
#footer-copy {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 0.75rem;
}

#online-exhibition-desc p a {
    color: rgb(250, 248, 117);
}
#online-exhibition-desc p a:hover {
	color: rgb(122, 216, 245);
}

