.wishlist-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;

}

.delete-all-objects {
	border-radius: 0;
	border: 1px solid rgba(96, 96, 95, 0.50);
	background-color: #ffffff;
	padding: 1.7rem 3.5rem;
	text-align: center;
	justify-content: center;


}

.delete-all-objects:hover {
	background-color: #E0E0E0;

}

.delete-wishlist-btn {
	gap: .8rem;
	transition: all .35s ease-in-out;
	cursor: pointer;


	align-items: center;

	display: flex;
	text-decoration: none;
	font-size: 1.6rem;
	line-height : 2.24rem;
	font-weight: 600;
	font-family: inherit;
}

.delete-wishlist-btn::before {
	content           : '';
	background-image  : url(icons/delete.svg);
	width             : 2.4rem;
	min-width         : 2.4rem;
	height            : 2.4rem;
	display           : inline-block;
	background-size   : contain;
	background-repeat : no-repeat;
	transition        : 350ms ease;
}

.delete-single-object {
	color: #BC2E1C;
	margin-top: 3rem;
}

.delete-single-object::before {
	background-image  : url(icons/delete-primary.svg);

}

#wishlist-container h2 {
	margin-bottom: 0;
}



.wishlist-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 4rem;
}

.share-right::after {
		content           : '';
		background-image  : url(icons/share.svg);
		width             : 2.4rem;
		min-width         : 2.4rem;
		height            : 2.4rem;
		display           : inline-block;
		background-size   : contain;
		background-repeat : no-repeat;
		transition        : 350ms ease;
}

#wishlist-container  {
padding-top: 8rem;
	padding-bottom: 8rem;

}


#wishlist-container ul {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	list-style: none;
	margin: 4rem 0 0 0;

}



#wishlist-container li .add-to-wishlist {
	background-color: #BC3E1C;
}
.wishlist-object-info {
	padding: 3rem 5rem;
}

.wishlist-object-info .object-title {
	margin-bottom : 0;
	font-weight: 900;
	font-size: 2.2rem;
	text-transform: uppercase;
	line-height: normal;
}

#wishlist-container li {
	width: 100%;
	border-radius: 0.4rem;
	padding-right: 5rem;

	background-color: #EDEDED;
	display: flex;
	justify-content: space-between;
}


@media all and (min-width: 768px) {
	#wishlist-container li {
		width: calc(50% - 1rem);

	}

}

.wishlist-object-image {
	min-width: 33.33%;
}

.wishlist-object-image img {
	height: 100%;
	aspect-ratio: 1;
	display: block;
	width: 100%;
	border-radius: 0.4rem 0 0 0.4rem;
}

.add-to-wishlist-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}