.angie-rb-slider-feb1ee1a {
	position: relative;
	overflow: hidden;
	width: 100%;
    max-width: 100%;
	user-select: none;
	touch-action: pan-y;
    display: block;
}

.angie-rb-slides-feb1ee1a {
	display: flex;
	transition: transform 0.6s ease-in-out;
}

.angie-rb-slide-feb1ee1a {
	box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.angie-rb-slide-feb1ee1a a {
    width: 100%;
    display: block;
}

.angie-rb-slide-feb1ee1a img {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

.angie-rb-prev-feb1ee1a, .angie-rb-next-feb1ee1a {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 30; /* Increased z-index */
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.3);
	border-radius: 50%;
	transition: background 0.3s ease;
}

.angie-rb-prev-feb1ee1a:hover, .angie-rb-next-feb1ee1a:hover {
	background: rgba(0,0,0,0.6);
}

.angie-rb-prev-feb1ee1a::before, .angie-rb-next-feb1ee1a::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: border-color 0.3s ease;
}

.angie-rb-prev-feb1ee1a::before {
	transform: rotate(-135deg);
	margin-left: 5px;
}

.angie-rb-next-feb1ee1a::before {
	transform: rotate(45deg);
	margin-right: 5px;
}

.angie-rb-prev-feb1ee1a { left: 15px; }
.angie-rb-next-feb1ee1a { right: 15px; }

.angie-rb-dots-feb1ee1a {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 30; /* Increased z-index */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Allow clicks to pass through container if needed... */
}

.angie-rb-dot-feb1ee1a {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 6px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.4);
	cursor: pointer;
	transition: background-color 0.3s ease;
    pointer-events: auto; /* ...but make dots clickable */
}

.angie-rb-dot-feb1ee1a.active {
	background-color: rgba(255,255,255,0.9);
}