/**
 * Product after images service boxes.
 */

.product-after-images-element {
	margin-top: 20px;
}

.autofoxy-product-services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.autofoxy-product-services__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 72px;
	padding: 15px;
	background: #f3f4fc;
	border: 1px solid #dee3f2;
	color: #47486f;
}

.autofoxy-product-services__item--1 {
	border-radius: 5px 0 0 5px;
}

.autofoxy-product-services__item--2 {
	border-left: 0;
}

.autofoxy-product-services__item--3 {
	border-left: 0;
	border-radius: 0 5px 5px 0;
}

.autofoxy-product-services__icon {
	display: inline-flex;
	flex: 0 0 auto;
	color: #47486f;
}

.autofoxy-product-services__icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.autofoxy-product-services__content {
	min-width: 0;
}

.autofoxy-product-services__title {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
}

.autofoxy-product-services__description {
	margin-top: 2px;
	font-size: 12px;
	line-height: 1.2;
}

@media (max-width: 1024px) {
	.autofoxy-product-services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.autofoxy-product-services__item {
		align-items: flex-start;
	}

	.autofoxy-product-services__item--1,
	.autofoxy-product-services__item--2,
	.autofoxy-product-services__item--3 {
		border-radius: 0;
		border-left: 1px solid #dee3f2;
	}

	.autofoxy-product-services__item--3 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.autofoxy-product-services {
		grid-template-columns: 1fr;
	}

	.autofoxy-product-services__item--3 {
		grid-column: auto;
	}
}
