@charset "utf-8";
/* CSS Document */

.ct-object-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 14px;
	background: #f3f5f6;
}

.ct-object-slider__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ct-object-slider__track {
	display: flex;
	width: 100%;
	transform: translate3d(0, 0, 0);
	transition: transform 0.36s ease;
	will-change: transform;
}

.ct-object-slider__slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
}

.ct-object-slider__link {
	display: block;
	width: 100%;
	height: 100%;
}

.ct-object-slider__image {
	display: block;
	width: 100%;
	height: 380px;
	object-fit: cover;
	object-position: center;
	user-select: none;
	-webkit-user-drag: none;
}

.ct-object-slider__button {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(26, 45, 58, 0.88);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.2s ease, transform 0.2s ease;
}

.ct-object-slider__button:hover {
	background: rgba(26, 45, 58, 1);
}

.ct-object-slider__button:focus {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: 2px;
}

.ct-object-slider__button--prev {
	left: 14px;
}

.ct-object-slider__button--next {
	right: 14px;
}

.ct-object-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 15px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	transform: translateX(-50%);
}

.ct-object-slider__dot {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.62);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.ct-object-slider__dot.is-active {
	background: #fff;
	transform: scale(1.18);
}

.ct-object-slider__counter {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 6;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(26, 45, 58, 0.88);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
}

@media (max-width: 767px) {
	.ct-object-slider {
		border-radius: 12px;
	}

	.ct-object-slider__image {
		height: 260px;
	}

	.ct-object-slider__button {
		width: 34px;
		height: 34px;
		font-size: 15px;
	}

	.ct-object-slider__button--prev {
		left: 10px;
	}

	.ct-object-slider__button--next {
		right: 10px;
	}

	.ct-object-slider__dots {
		bottom: 12px;
		gap: 6px;
	}

	.ct-object-slider__dot {
		width: 7px;
		height: 7px;
	}

	.ct-object-slider__counter {
		right: 10px;
		bottom: 10px;
		font-size: 12px;
	}
}
