
ml-menu-fragment-tools {
	display: flex;
	flex-direction: column;
	padding: 46px;
	height: 100%;
	width: 100%;
	flex: 1 1 100%;
	white-space: normal;
	overflow: auto;
	background-color: var(--ml-background-color);
}


.megamenu ml-menu-fragment-tools {
	overflow: hidden;
}

ml-menu-fragment-tools a {
	color: unset;
}

ml-menu-fragment-tools[one-column] {
	padding: var(--gutter-margin-xs);
}

ml-menu-fragment-tools[one-column] .h3 {
	display: none;
}

ml-menu-fragment-tools .column {
	display: flex;
	flex-direction: column;
	margin: auto 0;
}

ml-menu-fragment-tools .row {
	display: flex;
	flex-direction: row;
}

@media all and (max-width: 1599px) {
	.megamenu ml-menu-fragment-tools .row {
		animation: slideLeftRight 20s ease-in-out infinite;
	}
}

ml-menu-fragment-tools[one-column] .row {
	flex-direction: column;
	align-items: center;
}

ml-menu-fragment-tools .tools-item {
	display: flex;
	flex-direction: row;
	margin: var(--gutter-margin-xs);
	margin-left: 0;
	line-height: 1.5;
	width: 33%;
}

ml-sidenav ml-menu-fragment-tools .tools-item {
	width: 80%;
}

ml-menu-fragment-tools .tools-item.no-click {
	cursor: default;
	pointer-events: none;
}

ml-menu-fragment-tools .tools-item .dot {
	display: flex;
	min-height: 35px;
	min-width: 35px;
	max-height: 35px;
	max-width: 35px;
	align-self: center;
	justify-content: center;
	border-radius: 50%;
	margin-right: var(--gutter-margin-xs);
	color: #fff;
	background-color: var(--ml-primary-color);
}

ml-menu-fragment-tools .tools-item .new-tag {
	white-space: nowrap;
	display: flex;
	gap: 16px;
}

ml-menu-fragment-tools .tools-item .new-tag::after {
	display: flex;
	flex-direction: column;
	justify-content: center;
	content: "New";
	background-color: var(--ml-success-color);
	color: var(--ml-secondary-color);
	padding: 0px 12px;
	height: 20px;
	border-radius: 16px;
	font-size: var(--rem-xs);
}

[lang="sv"] ml-menu-fragment-tools .tools-item .new-tag::after {
	content: "Ny";
}

ml-menu-fragment-tools .h3 {
	margin-bottom: var(--gutter-margin-2xs);
	color: var(--ml-text-color);
}

ml-menu-fragment-tools .description {
	font-family: var(--text-font-family);
	color: var(--ml-text-color);
	opacity: 0.9;
	font-weight: normal;
	font-size: var(--rem-s);
}

@keyframes slideLeftRight {
	0% {
		transform: translateX(0%);
	}
	50% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0%);
	}
}
