body {
	background: #000;
}

.side-menu {
	max-width: 30vw !important;
	min-width: 363px !important;
	transition: transform 0.3s ease-in-out;
	transform: translateX(-100%);
	background-color: #000;
	z-index: 10000;
	/* border-right: 1px solid rgba(255, 255, 255, 0.15); */
	box-shadow:
			inset -10px 0 50px rgba(255, 255, 255, 0.15) !important;
}

.side-menu.active {
	overflow: hidden !important;
	transform: translateX(0);
}

@media (max-width: 500px) {
	.side-menu.active {
			max-width: 100vw !important;
			min-width: none;
			overflow: hidden !important;
			transform: translateX(0);
	}
}

.bg-main-menu {
	pointer-events: none;
	z-index: -10;
	width: 70%;
	height: 70%;
	background-image: url('/client/image/icons/bg-menu.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	filter: blur(30px);
	/* animation:
			pulse 30s ease-in-out infinite alternate; */
}



.header {
	z-index: 1000;
	background: rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(10px);
	width: 100%;
}

.title-container {
	width: 150px !important;
	cursor: pointer;
	transition: filter 0.3s ease-in-out;
}

.title-container:hover {
	filter: brightness(2);
}

.back-btn {
	cursor: pointer;
	width: 72px !important;
	height: 72px !important;
	object-fit: contain;
	left: 0;
	top: 0;
	transition: filter 0.3s ease-in-out;
}

.back-btn:hover {
	filter: brightness(2);
}

.nav-link {
	font-family: Unbounded !important;
	color: #c6c4c4;
	opacity: 70%;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: -0.03em;
	transition:
			color 0.3s ease-in-out,
			transform 0.3s ease-in-out;
}

.nav-link:hover,
.nav-link:active,
.nav-link:focus {
	color: #fff;
}

.nav-link:active,
.nav-link:focus {
	transform: scale(1.02);
	transform: translateY(-2px);
}

.bobr {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bobr-container {
	bottom: -11%;
	right: -40px;
	width: auto;
	height: 50vh;
	transform: translateX(100%);
	transition:
			transform 0.6s ease-in-out;
	z-index: 100;
	pointer-events: none;
}

.bobr-container.active {
	transform: translateX(0);
	overflow: hidden;
	z-index: 100;
}

.hidden {
	display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.menu-overlay.hidden {
  display: none;
}