/**
 * NS Header icoontjes - uniforme stijl voor Winkelwagen, Offerte,
 * Account en Bel ons. Elk item: rond icoonvlak + label ernaast,
 * badges rechtsboven op het icoonvlak.
 */
.icoontjes {
	display: flex;
	align-items: center;
	gap: 22px;
}
.icoontjes .ns-hicon {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	color: #2C4329;
	cursor: pointer;
}
.icoontjes .ns-hicon__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #eef2e6;
	transition: background .15s ease;
}
.icoontjes .ns-hicon__icon i {
	font-size: 17px;
	line-height: 1;
	color: #2C4329;
}
.icoontjes .ns-hicon:hover .ns-hicon__icon {
	background: #ccdc46;
}
.icoontjes .ns-hicon__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	color: #2C4329;
}
.icoontjes .ns-hicon p {
	margin: 0;
}
.icoontjes .ns-hicon .ns-sc-count,
.icoontjes .ns-hicon .ns-offerte-count {
	position: absolute;
	top: -4px;
	right: -6px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 9px;
	background: #006f3b;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}
.icoontjes .ns-sc-toggle {
	flex-direction: row;
}
.icoontjes .ns-sc-count:not(.has-items) {
	display: none;
}
