.ws-tms {
	--ws-card-width: 308px;
	--ws-card-height: 500px;
	--ws-card-gap: 18px;
	--ws-side-opacity: 0.55;
	--ws-active-opacity: 1;
	--ws-active-count: 3;
	--ws-autoplay: 1;
	--ws-autoplay-delay: 3500;
	--ws-transition-speed: 550;
	--ws-drag-enabled: 1;
	--ws-arrow-size: 38px;
	--ws-arrow-horizontal-offset: 0;
	--ws-arrow-vertical-offset: 0;
	--ws-arrow-left: 25%;
	--ws-arrow-right: 75%;
	--ws-star-size: 17px;
	--ws-star-gap: 2px;
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 4px 0;
	background: #e9e9e9;
}

.ws-tms__stage {
	position: relative !important;
}

.ws-tms__viewport {
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
	cursor: grab;
}

.ws-tms.is-dragging .ws-tms__viewport {
	cursor: grabbing;
}

.ws-tms__track {
	display: flex;
	align-items: stretch;
	gap: var(--ws-card-gap);
	width: max-content;
	transform: translate3d(0, 0, 0);
	will-change: transform;
	user-select: none;
}

.ws-tms__card {
	display: flex;
	flex: 0 0 var(--ws-card-width);
	flex-direction: column;
	align-items: center;
	width: var(--ws-card-width);
	height: var(--ws-card-height);
	padding: 24px 22px;
	overflow: hidden;
	background: #fff;
	border-radius: 18px;
	text-align: center;
	box-sizing: border-box;
	opacity: var(--ws-side-opacity);
	transition: opacity 300ms ease;
}

.ws-tms__card.is-center-card {
	opacity: var(--ws-active-opacity);
}

.ws-tms__stars {
	display: inline-flex;
	justify-content: center;
	gap: var(--ws-star-gap);
	flex-shrink: 0;
}

.ws-tms__star {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--ws-star-size);
	height: var(--ws-star-size);
	background: #b8b8b8;
	color: #fff;
	font-size: calc(var(--ws-star-size) * 0.7);
	line-height: 1;
}

.ws-tms__star.is-filled {
	background: #111;
	color: #fff;
}

.ws-tms__title {
	margin: 16px 0 10px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.08;
}

.ws-tms__review {
	overflow: hidden;
	font-size: 14px;
	line-height: 1.45;
}

.ws-tms__review p {
	margin: 0;
}

.ws-tms__author {
	margin-top: auto;
	padding-top: 18px;
	font-size: 12px;
}

.ws-tms__arrow {
	-webkit-appearance: none !important;
	appearance: none !important;
	position: absolute !important;
	top: 50% !important;
	bottom: auto !important;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--ws-arrow-size) !important;
	height: var(--ws-arrow-size) !important;
	min-width: var(--ws-arrow-size) !important;
	min-height: var(--ws-arrow-size) !important;
	padding: 0 !important;
	border: 0 solid;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: calc(var(--ws-arrow-size) * 0.72);
	font-weight: 400;
	line-height: 1 !important;
	transform: translate(-50%, -50%);
	cursor: pointer;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}

.ws-tms__arrow--prev {
	left: var(--ws-arrow-left);
}

.ws-tms__arrow--next {
	left: var(--ws-arrow-right);
}

.ws-tms__arrow:hover,
.ws-tms__arrow:focus-visible {
	transform: translate(-50%, -50%) scale(1.06);
}

@media (max-width: 767px) {
	.ws-tms {
		--ws-card-width: 78vw;
		--ws-card-height: 380px;
		--ws-active-count: 1;
	}

}

.ws-tms__arrow svg,.ws-tms__star svg {width:1em;height:1em;fill:currentColor;}
