.custom-dropdown {
	display: none;

	min-width: 27rem;

	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;

	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);

	padding: 0.7rem;
}

.custom-dropdown.custom-dropdown--big {
	min-width: 36rem;
}

.custom-dropdown:has(li + li) li:not(:last-child) {
	margin-bottom: 2.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.custom-dropdown__item {
	line-height: 1;
}

.custom-dropdown__link {
	font-size: 1.4rem;
}

.nav-list__item--has-dropdown:hover .custom-dropdown {
  display: block;
}


/* Adaptiv */

@media only screen and (min-width: 360px) and (max-width: 991px) {
	.custom-dropdown {
		display: none;
	}
}