.coda-simple-carousel-wrapper {
	width: 100%;
	position: relative;
	margin-top: 20px;
	margin-bottom: 20px;
}

.coda-simple-carousel {
	width: 100%;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: height 0.5s ease;
	padding-bottom: 40px;
	box-sizing: content-box;
}

.coda-simple-track {
	display: flex;
	width: 100%;
	align-items: flex-start;
	margin: 0 -4px;
}

.coda-simple-slide {
	min-width: calc(100% / var(--coda-per-view, 1));
	flex: 0 0 calc(100% / var(--coda-per-view, 1));
	box-sizing: border-box;
	padding: 0 4px;
}

.coda-simple-slide img {
	width: 100%;
	height: var(--coda-image-height, auto);
	object-fit: cover;
	display: block;
}

.coda-simple-arrow {
	position: absolute;
	top: calc(50% - 36px);
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
}

.coda-simple-prev {
	left: 10px;
}

.coda-simple-next {
	right: 10px;
}

.coda-simple-dots {
	text-align: center;
	margin-top: 10px;
	flex-shrink: 0;
}

.coda-simple-dot {
	width: 12px;
	height: 12px;
	background: rgba(0, 0, 0, 0.25);
	border: none;
	border-radius: 50%;
	display: inline-block;
	margin: 0 4px;
	cursor: pointer;
}

.coda-simple-dot.is-active {
	background: rgba(0, 0, 0, 0.6);
}
