/* Circle Review Slider - frontend styles */
.crs-wrapper {
	position: relative;
	max-width: 760px;
	margin: 40px auto;
	display: flex;
	align-items: center;
	justify-content: center
}

.crs-center {
	position: absolute;
	z-index: 12;
	width: 260px;
	background: #fff;
	border-radius: 18px;
	padding: 20px 18px;
	text-align: center;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08)
}

.crs-center .crs-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 10px;
	display: block
}

.crs-center h3 {
	margin: 0 0 8px;
	font-size: 18px
}

.crs-center p {
	margin: 0;
	color: #444;
	font-size: 14px;
	line-height: 1.5
}

.crs-circle {
	width: 520px;
	height: 520px;
	border-radius: 50%;
	position: relative;
	transition: transform .9s cubic-bezier(.2, .9, .2, 1)
}

.crs-item {
	position: absolute;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	transition: transform .35s, box-shadow .35s
}

.crs-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%
}

.crs-item.active {
	transform: scale(1.12);
	box-shadow: 0 12px 30px rgba(30, 115, 190, 0.18)
}

@media (max-width:900px) {
	.crs-circle {
		width: 360px;
		height: 360px
	}

	.crs-item {
		width: 64px;
		height: 64px
	}

	.crs-center {
		width: 200px
	}

	.crs-center .crs-avatar {
		width: 64px;
		height: 64px
	}
}