custom-aside {
	width: 100%;
	max-width: 15rem;
	height: calc(100vh - 3rem);
	position: absolute;
	top: calc(3rem + 1px);
	left: -100%;
	z-index: 2;
	background-color: #fff;
	border-right: 1px solid var(--gray-200);
	box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
}

custom-aside.active {
	left: 0;
}

custom-aside li + li {
	padding-top: 0.5rem;
	margin-top: 0.5rem;
	border-top: 1px solid var(--gray-200);
}

custom-aside li.active a {
	color: var(--primary);
}

custom-aside li button {
	margin: 0;
}

custom-aside li button svg {
	width: 0.55rem;
	height: 0.55rem;
}

custom-aside li.prev {
	margin: 0;
	background-color: var(--primary);
}

custom-aside li.prev + li {
	margin-top: 0;
}

custom-aside li.prev button {
	color: #fff;
}

custom-aside li.prev button svg * {
	fill: #fff;
}

custom-aside a,
custom-aside button {
	width: 100%;
	display: inline-block;
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	text-align: left;
}

@media (min-width: 720px) {
	custom-aside,
	custom-aside.active {
		position: relative;
		top: 0;
		left: 0;
		border: none;
		box-shadow: none;
	}
}
