.nav-toggle {
	position: relative;
	background: transparent;
	outline: 0;
	cursor: pointer;
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--spacing-5);
}

.nav-toggle__icon {
	background-color: var(--purple-500);
		border-radius: var(--btn-radius);
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;

	svg {
		width: 18px;
		height: 18px;
	}
}
