.lnk_add {
	text-decoration: underline;
	color: blue;
	padding: 3px;
}

.lnk_remove {
	text-decoration: underline;
	color: red;
	padding: 3px;
}

.lnk_collect {
	text-align: center;
	font-weight: bold;
	padding: 10px;
	border-radius: 5px;
	background-color: lightblue;
	color: white
}

.popup-btn {
	border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 6px;
	font-weight: 700;
	display: inline-block;
}

#overlay {
	position: fixed;
	z-index: 5000;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
}

#overlay .cover {
	position: fixed;
	z-index: -1;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
}

#popup {
	max-width: 600px;
	min-width: 350px;
	width: 80%;
	max-height: 300px;
	padding: 40px 35px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	margin: 0 auto;
	border-radius: 6px;
	font-family: var(--e-global-typography-text-font-family ), Sans-serif;
    font-weight: var(--e-global-typography-text-font-weight );
}

#popup p:first-of-type { margin-top: 0; }

#popup p:last-of-type  { margin-bottom: 0; }

#popup.small {
	width: auto;
	text-align: center;
    font-size: 16px;
}

#close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	color: #000;
}

/* Facets accordion */

#facets-expand {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 767px) {
	#facets-expand:after {
		content: '+';
		font-size: 30px;
		line-height: 30px;
	}

	#facets-expand.active:after {
		content: '–';
	}

	.all-filters {
		opacity: 0;
		height: 0;
		visibility: hidden;
		transition: .25s all ease-in-out;
	}

	.all-filters.active {
		opacity: 1;
		height: auto;
		visibility: visible;
	}
}