

/* Start:/local/templates/tpl-new/components/bitrix/news.list/customer-photos/style.css?17540371555735*/
.customer-photo {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 30px 0;
	flex-wrap: wrap;
	align-items: flex-start;
}

.customer-photo__filters {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background-color: #f8f9fa;
	padding: 20px;
	align-self: flex-start;
}

/* Фильтр группа с разделителями */
.customer-photo__filter-group {
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.customer-photo__filter-group:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.customer-photo__filter-header {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-bottom: 12px;
	padding: 10px 15px;
}

.customer-photo__filter-toggle {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #e0387e;
	margin-right: 12px;
	transition: transform 0.3s;
}

.customer-photo__filter-group.collapsed .customer-photo__filter-toggle {
	transform: rotate(-90deg);
}

.customer-photo__filter-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: #444;
}

.customer-photo__filter-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-left: 10px;
	overflow: visible;
	transition: max-height 0.3s, opacity 0.3s;
	margin-bottom: 15px;
}

.customer-photo__filter-group.collapsed .customer-photo__filter-options {
	max-height: 0;
	opacity: 0;
	margin: 0;
	padding: 0 0 0 10px;
	overflow: hidden;
}

.customer-photo__filter-option {
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 5px 8px;
	transition: background-color 0.2s;
}

.customer-photo__filter-option:hover {
	background-color: rgba(224, 56, 126, 0.05);
}

.customer-photo__filter-checkbox {
	position: absolute;
	opacity: 0;
	height: 0;
	width: 0;
}

.customer-photo__custom-checkbox {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 1px solid #a1a1a1;
	border-radius: 3px;
	margin-right: 10px;
	transition: border-color 0.2s, background-color 0.2s;
}

.customer-photo__filter-checkbox:checked ~ .customer-photo__custom-checkbox {
	background-color: #e0387e;
	border-color: #e0387e;
}

.customer-photo__filter-checkbox:checked ~ .customer-photo__custom-checkbox::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 3px;
	width: 4px;
	height: 8px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.customer-photo__option-text {
	color: #555;
	font-size: 14px;
	transition: color 0.2s;
}

.customer-photo__filter-checkbox:checked ~ .customer-photo__option-text {
	color: #e0387e;
	font-weight: 500;
}

.reset-filters {
	background-color: transparent;
	border: 1px solid #e0387e;
	color: #e0387e;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
	margin-top: 10px;
	display: none;
	text-align: center;
}

.reset-filters:hover {
	background-color: #e0387e;
	color: white;
}

.reset-filters.active {
	display: inline-block;
}

.customer-photo__gallery {
	flex: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	position: relative;
	align-self: flex-start;
}

.customer-photo__card {
	width: 31%;
	display: flex;
	justify-content: center;
	font-size: 0;
}

.customer-photo__image-wrapper {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.customer-photo__image {
	width: 100%;
	height: 100%;
	max-height: 400px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.customer-photo__image-wrapper:hover .customer-photo__image {
	transform: scale(1.1);
}

.empty-result {
	display: none;
	padding: 25px;
	text-align: center;
	width: 100%;
	background-color: #f9f9f9;
	margin-top: 15px;
	border: 1px dashed #ddd;
}

.empty-result.active {
	display: block;
}

.empty-result__text {
	color: #666;
	font-size: 15px;
	margin-bottom: 30px;
}

.empty-result__button {
	display: block;
	margin: 0 auto;
	background-color: #e0387e;
	color: white;
	border: none;
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.empty-result__button:hover {
	background-color: #c02c66;
}

@media screen and (max-width: 1024px) {
	.customer-photo__card {
		width: 31%;
	}

	.customer-photo__image {
		max-height: 350px;
	}
}

@media screen and (max-width: 768px) {
	.customer-photo {
		flex-direction: column;
		padding: 15px 0;
	}

	.customer-photo__filters {
		width: 100%;
		order: 1;
		margin-bottom: 20px;
		padding: 15px;
	}

	.customer-photo__filter-header {
		padding: 8px 12px;
	}

	.customer-photo__gallery {
		width: 100%;
		order: 2;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.customer-photo__card {
		width: 100%;
		margin-bottom: 0;
	}

	.customer-photo__image {
		max-height: 280px;
	}

	.reset-filters.active {
		display: block;
		width: 100%;
	}
}

@media screen and (max-width: 576px) {
	.customer-photo__image {
		max-height: 240px;
	}

	.customer-photo__filter-options {
		padding-left: 5px;
	}
}

@media screen and (max-width: 375px) {
	.customer-photo__gallery {
		gap: 8px;
	}

	.customer-photo__image {
		max-height: 180px;
	}

	.customer-photo__option-text {
		font-size: 13px;
	}

	.customer-photo__custom-checkbox {
		width: 16px;
		height: 16px;
	}

	.customer-photo__filter-checkbox:checked ~ .customer-photo__custom-checkbox::after {
		left: 5px;
		top: 2px;
		width: 3px;
		height: 7px;
	}
}

/* End */
/* /local/templates/tpl-new/components/bitrix/news.list/customer-photos/style.css?17540371555735 */
