/**/
.nav-link i:not(.fa) {
	position: initial;
	top: initial;
}

#list-products .dropdown-item i.fas {
	width: 24px;
	text-align: center;
}

@media (max-width: 992px) {
	#sidebar-menu {
		width: 75%;
		max-width: 290px;
		top: 0px;
		left: -100%;
		position: fixed;
		background: white;
		box-shadow: 5px 0px 3px rgba(100, 100, 100, .3);
		transition: ease all .3s;
		padding: 1.5rem;
		overflow-y: auto;
		z-index: 3;
	}

	#sidebar-menu.show {
		left: 0;
	}

	#sidebar-body {
		flex-wrap: wrap;
	}

	#sidebar-body .nav-item {
		width: 100%;
	}

	#list-products {
		display: initial;
		position: initial;
		box-shadow: none;
		width: 100%;
	}

	#sidebar-body .nav-link-icon i {
		width: 24px;
		text-align: center;
		margin-right: 1rem;
	}
}

@media (min-width: 993px) {
	#list-products {
		max-height: calc(100vh - 130px);
		overflow-y: auto;
	}

	#list-products::-webkit-scrollbar {
		width: 8px;
		height: 8px;
		background: white;
	}

	#list-products::-webkit-scrollbar-thumb {
		background: #ccc;
		border-radius: 4px;
	}
}