.transition-menu {
	width: auto !important;
}
.left-menu-orion {
	/* display: flex; */
	width: auto;
	/* height: 100%; */
	padding: 0;
	/* overflow-x: hidden; */
	/* overflow-y: auto; */
	/* transition: all .3s; */
	position: unset;
	scrollbar-width: none;
}
.left-menu-orion__nav {
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 129;
	pointer-events: auto;
	width: 250px;
	margin-top: 15px;
	margin-left: 15px;
}
.left-menu__search-games {
	display: flex;
	justify-content: space-between;
	padding: 10px;
	border: 2px solid transparent;
	border-radius: 5px;
	background: var(--desktop-left-menu-search-btn-bg);
	box-shadow: 0 1px 1px color-mix(in srgb,var(--sidenav-category-shadow),transparent 70%),inset 2px 1px color-mix(in srgb,var(--inset-shadow),transparent 80%);
	color: var(--desktop-left-menu-search-btn-txt);
	transition: border .3s;
	cursor: pointer;
	align-items: center;
}
.left-menu__search-games:hover {
	border: 1px solid var(--desktop-left-menu-search-btn-border-hover);
}
.left-menu__search-games-text{
	font-size: 13px;
}
.left-menu__search-games-icon {
	width: 25px;
	height: 25px;
	background: var(--desktop-left-menu-search-btn-search-icon);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: 80%;
	mask-position: 80%;
}
.left-menu-orion__nav .item-box {
	background: var(--desktop-left-menu-1st-bg);
}
.left-menu-orion .item-box {
	width: 100%;
	padding: 15px 10px;
	border-radius: 5px;
	box-shadow: 0 1px 1px color-mix(in srgb,var(--sidenav-category-shadow),transparent 70%),inset 2px 1px color-mix(in srgb,var(--inset-shadow),transparent 80%);
}
.left-menu__nav-item {
	position: relative;
	display: grid;
	grid-template-columns: 34px 1fr 75px;
	grid-gap: 5px;
	align-items: center;
	width: 100%;
	height: 35px;
	padding: 5px 5px;
	border-radius: 5px;
	color: var(--desktop-left-menu-1st-item-txt);
	transition: color .4s ease-in-out,background-position .4s ease-in-out;
	background-size: 200% auto;
	background-position: right center;
	background-image: var(--desktop-left-menu-1st-item-bg-hover);
}
.left-menu__color {
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: var(--left-menu-icon-bg);
}
.left-menu__nav-icon {
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.left-menu-orion__nav .left-menu__nav-item span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	line-height: 1.1;
}
.left-menu__nav-arrow {
	justify-self: flex-end;
	width: 20px;
	height: 10px;
	background: var(--desktop-left-menu-1st-item-arrow);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: 80%;
	mask-position: 80%;
	transform: rotate(-90deg);
	transition: background .8s,border .8s,color .8s;
}
.left-menu-orion__nav .left-menu__nav-item + .left-menu__nav-item {
	margin-top: 8px;
}
.left-menu__other-nav-box .left-menu__nav-item {
	display: flex;
	width: 100%;
	height: 35px;
	padding: 5px;
	border-radius: 5px;
	transition: background .8s,border .8s,color .8s;
}
.typeitem-box .left-menu__nav-item.selected {

  background-position:left center;
  background-image:linear-gradient( to left, transparent 0%, transparent 50%, #24262d 50%, #4b442f 100% );
  color:var(--desktop-left-menu-1st-item-txt-checked)
}
.left-menu__other-nav-box .left-menu__nav-item a {
	display: grid;
	grid-template-columns: 20px 1fr;
	grid-gap: 10px;
	align-items: center;
	width: 100%;
	color: inherit;
}
.aside_click_item {
	width: 0px;
	margin: 15px 0;
	background: #ffffff61;
	max-height: 100%;
	overflow: auto;
	border-radius: 5px;
	backdrop-filter: blur(10px);
	transform: translateX(-100px);
	opacity: 0;
	pointer-events: none;
	transition: transform .35s ease, opacity .25s ease;
	padding: 10px;
}
.aside_click_item.open {
	width: 200px;
}
.aside_click_item.open {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}
.left-menu-orion__nav .item-box:last-child {
	flex-grow: 0;
}
.sidebar_type {
	width: 40%;
	float: left;
	margin: 5px 5px;
}
@media(max-width:599px) {
	.left-menu__search-games {
		display: flex;
		justify-content: space-between;
		padding: 5px 10px;
		border: 1px solid transparent;
		border-radius: 5px;
		background: var(--desktop-left-menu-search-btn-bg);
		box-shadow: 0 1px 1px color-mix(in srgb,var(--sidenav-category-shadow),transparent 70%),inset 2px 1px color-mix(in srgb,var(--inset-shadow),transparent 80%);
		color: var(--desktop-left-menu-search-btn-txt);
		transition: border .3s;
		cursor: pointer;
	}
	.left-menu__search-games-icon {
		width: 13px;
		height: 13px;
		background: var(--desktop-left-menu-search-btn-search-icon);
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-size: contain;
		mask-size: contain;
		-webkit-mask-position: 80%;
		mask-position: 80%;
	}
	.left-menu__search-games-text{
		font-size: 11px;
	}

	.left-menu-orion__nav .typeitem-box {
		background: unset;
	}
	.left-menu__nav-arrow{
		display: none;
	}
	.left-menu-orion__nav {
		display: flex;
		flex-direction: column;
		gap: 15px;
		z-index: 129;
		pointer-events: auto;
		max-width: 200px;
		margin-top: 15px;
		margin-left: 0;
	}
	.left-menu-orion .typeitem-box {
		width: 100%;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		box-shadow: unset;
		gap: 5px;
	}
	.left-menu-orion__nav .left-menu__nav-item + .left-menu__nav-item {
		margin-top: 0px;
	}
	.typeitem-box .left-menu__nav-item {
		flex: 0 0 calc(33.333% - 4px);
		box-sizing: border-box;
		position: relative;
		display: flex;
		grid-gap: 3px;
		align-items: center;
		width: auto;
		height: auto;
		padding: 5px 5px;
		border-radius: 5px;
		justify-content: center;
		flex-direction: column;
		background: #393f55;
		box-shadow: 0 1px 1px color-mix(in srgb,var(--sidenav-category-shadow),transparent 70%),inset 1px 1px color-mix(in srgb,var(--inset-shadow),transparent 80%);
	}
	.typeitem-box .left-menu__nav-item.selected {
		background: rgba(206, 206, 206, 0.47) !important;
		backdrop-filter: blur(50px) brightness(75%);
		-webkit-backdrop-filter: blur(14px) saturate(180%);
		color: #fff;
	}
	.left-menu__nav-item.selected .left-menu__color {
		background-color: #fff;
	}
	.left-menu-orion__nav .left-menu__nav-item span {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		white-space: normal;
		line-height: 1.1;
		font-size: 11px;
	}
	.left-menu-orion .promotion-item-box {
		width: 100%;
		padding: 2px;
		border-radius: 5px;
		box-shadow: 0 1px 1px color-mix(in srgb,var(--sidenav-category-shadow),transparent 70%),inset 2px 1px color-mix(in srgb,var(--inset-shadow),transparent 80%);
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		background: #393f55;
	}
	.promotion-item-box .left-menu__nav-item {
		display: flex;
		width: auto;
		padding: 5px;
		border-radius: 5px;
		transition: background .8s,border .8s,color .8s;
		flex: 0 0 calc(33.333% - 4px);
		height: auto;
		background: #393f55;
	}
	.promotion-item-box .left-menu__nav-item a {
		display: flex;
		flex-direction: column;
		grid-gap: 10px;
		align-items: center;
		width: auto;
		color: inherit;
		justify-content: left;
	}
	.aside_click_item {
		width: 0px;
		margin: 0;
		overflow: auto;
		min-height: 250px;
		padding: 10px;
		overflow: auto;
		max-height: 530px;
	}
	.aside_click_item {
		width: 0px;
		margin: 0;
		overflow: auto;
		min-height: 250px;
	}
	.aside_click_item.open {
		width: 120px;
	}
	.sidebar_type {
		width: 100%;
		margin: auto;
	}
}