HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/sass/5-Components/_components.submenu.scss
.c-submenu {
	margin-left: 0;
	list-style: none;
}


.c-submenu__item {
	border-bottom: 1px solid palette(primary, 200);
	max-width: 45em;
}


.c-submenu__link {
	@include font-weight(semiBold);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: space(2) 0;
	color: palette(neutral, 700);
	transition: color 150ms linear;
	text-decoration: none;

	&:hover {
		color: palette(primary, 500);
	}

	&.is-active {
		@include font-weight(extraBold);
		color: palette(primary, 500);
	}
}


.c-submenu__arrow {
	flex: none;
	color: palette(primary, 500);
	transition: transform 150ms ease-in-out;

	.c-submenu__link:hover & {
		transform: translateX(space(1));
	}
}