.card-flex {
	row-gap: 32px;
}

.card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	height: 100%;
	background: var(--color-gray-200);
}

.card__img {
	height: 170px;
	background-color: var(--color-white);
	overflow: hidden;

	a:hover {
		background: var(--color-white);

		img {
			scale: 1.1;
		}
	}

	img {
		object-fit: contain;
		object-position: center;
		transition: all 0.5s;
	}
}

.card__details {
	padding: 30px 19px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.card__title {
	margin-bottom: 9px;
	margin-top: 0;
	font-size: 25px;
	word-break: keep-all;
}

.card__price {
	font-size: 22px;
	margin-bottom: 9px;
}

.card__desciprtion {
	font-size: 18px;
	margin-bottom: 15px;

	a {
		color: var(--Black, #101010);
		font-family: 'urw_form_condregular';
	}
}

.card__location {
	margin-bottom: 20px;
}

.card__location p {
	margin-bottom: 0;
	font-size: 18px;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 6px;
}

.card__location p i {
	font-size: 25px;
	line-height: 1em;
}

.card__details .btn-group {
	row-gap: 20px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: auto;
}

.card-progress {
	display: block;
	width: 100%;
	height: 14px;
	border-radius: 0;
	overflow: hidden;
	background-color: var(--color-gray-400);
	background-image: linear-gradient(
		to right,
		var(--primary-color-light),
		var(--primary-color-light)
	);
	background-repeat: no-repeat;
	background-size: 0 100%;
	transition: background-size 0.4s ease-in-out;
	clip-path: polygon(1% 0, 100% 0, 99% 100%, 0% 100%);
	position: relative;
}

.card-progress::before {
	content: "";
	position: absolute;
	top: 0;
	left: var(--progress, 0%);
	width: 6px;
	height: 14px;
	background: var(--color-gray-400);
	border-radius: 0;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	margin-left: -5px;
	transition: left 0.4s ease-in-out;
}

.bg-light-grey .card {
	background: var(--color-white);
}

.cards__headlines {
	margin-bottom: 30px;
}

.cards__title :last-child {
	margin-bottom: 0;
}

.card-slider {
	margin: 0 -16px;
	font-size: 0;
	padding-bottom: 78px;

.slick-track
{
    display: flex !important;
}

.slick-slide
{
    height: inherit !important;
    display: flex !important;
    /* width: 100%; */
    
    
    
    
    
    
	> div {
		display: flex !important;
		height: inherit !important;
		width: 100%;
	}
}

}

.card-item {
	padding: 0 16px;

	.btn-link {
		margin-left: 0;
	}
}

.cards__bttn .btn-group {
	margin-top: 35px;
}

.moreitem {
	display: none;
}

.filter-size + .card-flex {
	margin-top: 65px;
}

.card-load-more {
	margin-top: 32px;
}

.card-load-more .btn-primary {
	padding-right: 44px;
}

.card-load-more .btn-primary::after {
	content: "\e90b";
	font-size: 14px;
	right: 14px;
}

#viewCount {
	color: #000;
	font-size: 18px;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.card-progress {
		width: 458px;
		margin-top: 50px;
		margin-bottom: 15px;
	}

	.card-slider {
		margin: 0 -68px;
		font-size: 0;
		padding-bottom: 0;
	}

	.card-slider .slick-arrow {
		bottom: -78px;
		margin: 0;
	}

	.card-slider .slick-next {
		right: 68px;
	}

	.card-slider .slick-prev {
		left: auto;
		right: 144px;
	}

	.filter-size + .card-flex {
		margin-top: 50px;
	}
}

@media (min-width: 1200px) {
	.cards__headlines {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.cards__title {
		width: 830px;
	}

	.card-progress {
		width: 678px;
		margin-left: auto;
		margin-right: 154px;
	}

	.card-slider {
		margin: 0 -16px;
	}

	.card-slider .slick-next {
		right: 16px;
	}

	.card-slider .slick-prev {
		right: 92px;
	}

	.filter-size + .card-flex {
		margin-top: 38px;
	}
}

/* Background detection modifiers for equipment images */
.card__img--white-bg img {
	/* Images with white backgrounds - contain to show full image */
	object-fit: contain;
	object-position: center;
}

.card__img--photo-bg img {
	/* Photos - cover to fill the space */
	object-fit: cover;
	object-position: center;
}
