.sasec_wrapper {
	box-sizing: border-box;
	overflow: hidden;
}

.sasec_carousel {
	position: relative;
	visibility: hidden;
	overflow: hidden;
	width: 100%;
}

.sasec_track {
	display: flex;
	width: 100%;
}

.sasec_slide {
	box-sizing: border-box;
	flex: 0 0 auto;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.sasec_vert_center .sasec_slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sasec_prev,
.sasec_next {
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	background: rgba( 0, 0, 0, 0.4 );
	border: none;
	color: #fff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
}

.sasec_prev::before,
.sasec_next::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 auto;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.sasec_prev {
	left: 10px;
}

.sasec_prev::before {
	transform: rotate( -135deg );
}

.sasec_next {
	right: 10px;
}

.sasec_next::before {
	transform: rotate( 45deg );
}

.sasec_dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 2;
}

.sasec_dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba( 255, 255, 255, 0.6 );
	cursor: pointer;
	padding: 0;
}

.sasec_dot.active {
	background: #fff;
}
