.angie-menu-scroll-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}
.angie-menu-scroll-btn {
	position: absolute;
	z-index: 10;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.angie-menu-scroll-wrapper:hover .angie-menu-scroll-btn.is-active {
	opacity: 1;
	visibility: visible;
}
.angie-menu-scroll-prev { left: 0; transform: translateX(-50%); }
.angie-menu-scroll-next { right: 0; transform: translateX(50%); }
.angie-menu-scroll-btn svg { width: 14px; height: 14px; fill: #333; }
.e-n-menu {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.e-n-menu::-webkit-scrollbar {
    display: none;
}