.nav-acc-ser-res{
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}

.nav-acc-ser-res li::marker{
	display: none;
}

.nav-acc-ser-res li label{
	display: flex;
	align-items: center;
	column-gap: 1rem;
	cursor: pointer;
}
.nav-acc-ser-res li label span.checkbox{
	position: relative;
	width:  24px;
	height: 24px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.nav-acc-ser-res li label span.checkbox::after{
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	background: blue;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 2px;
	opacity: 0;
	transition: .4s;
}
.nav-acc-ser-res li label input{
	display: none;
}
.nav-acc-ser-res li label input:checked + span.checkbox::after{
	opacity: 1;
}

.nav-acc-ser-res li label span.text span.small{
	font-size: 12px;
	color: #aaa;
}


.accreditation-modal__item .no-result {
	color: #737373;
	font-size: 14px;
}