.collection-v2.custom-collection {
	position: relative;
}

.collection-v2.custom-collection .collectionv2-component .collectionv2__content {
	display: flex;
	flex-wrap: wrap;
}

.collection-v2.custom-collection .collectionv2-component .collectionv2__content .collection__item {
	flex-grow: 0;
}

.collection-v2.custom-collection .collectionv2-component .collectionv2__content .collection__item.content-not-reachable {
	display: none;
}

.loading .collection-v2.custom-collection .collectionv2__content::before {
	content: "Loading content ...";
	font-size: 0px;
	line-height: 0px;

	display: block;
	margin: auto;
	width: 50px;
	height: 50px;
	border: 5px solid #efefef;
	border-top: 5px solid #444;
	border-radius: 50%;
	animation: spin-loading-animation 1s linear infinite;
}

.loading .collection-v2.custom-collection .collectionv2__content * {
	visibility: hidden;
}

