.carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: 15px;
	height: 266px;
}

.carousel-viewport {
	position: relative;
	width: 100%;
	height: 225px;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	transition: transform 0.4s ease;
	will-change: transform;
}

.carousel-track.no-transition {
	transition: none !important;
}

.carousel-image-wrapper {
	flex-shrink: 0;
	width: 100%;
	position: relative;
}

.carousel-image {
	width: 100%;
	display: block;
	object-fit: cover;
	max-height: 225px;
	margin: 0 auto;
}

/*
button.prev,
button.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.3);
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	z-index: 1;
	transition: opacity 0.3s ease;
}
*/

button.prev,
button.next {
	cursor: pointer;
	width: 25px;
	height: 25px;
	background: white;
	border: 1px solid black;
}

.carousel .nav-hidden {
	opacity: 0;
	pointer-events: none;
}

.carousel-loader {
	position: absolute;
	top: 42%;
	left: 50%;
	width: 30px;
	height: 30px;
	margin: -15px 0 0 -15px;
	border: 3px solid rgba(255, 255, 255, 0.6);
	border-top-color: #333;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 1;
	pointer-events: none;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.hidden {
	display: none !important;
}


/*
.carousel-caption {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	color: #282828;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 14px;
}
*/

.carousel-nav-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 15px;
	min-height: 25px;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}

.carousel-caption {
	min-width: 65px;
	text-align: center;
	font-family: 'MainFontBold';
	padding-left: 10px;
	padding-right: 10px;
}
