.ua-slider {
	position: relative;
}

@media (max-width: 599px) {
	.ua-slider {
		overflow: hidden;
	}

	.ua-slider-list {
		flex-direction: row;
		flex-wrap: nowrap;
		scroll-behavior: smooth;
		overflow-x: auto;
	}

	.ua-slider-list::-webkit-scrollbar {
		display: none;
	}

	.ua-slider-item {
		flex: 0 0 100%;
		min-width: 100%;
	}

	/* dots */
	.ua-slider-dots {
		display: flex;
		justify-content: center;
		margin-top: 12px;
		gap: 14px;
	}

	.ua-slider-dots div {
		width: 14px;
		height: 8px;
		border-radius: 500px;
		background: var(--border-color-defoult, #cbd5e1);
		cursor: pointer;
	}

	.ua-slider-dots .active {
		background: var(--border-color-accent, #0350a5);
	}
}

@media (min-width: 600px) {
	.ua-slider-item {
		min-width: auto !important;
	}

	.ua-slider-dots {
		display: none;
	}
}
