
.notification-content {
	width: 100%;
	margin: 0 auto;
	position: relative;
	
}
.notification {
	background: transparent;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.notification ul li a {
	font-size: 10px;
	color: #333333;
	text-overflow: ellipsis;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	width: calc(100% - 60px);
	margin: 0 auto;
}
.notification .bx-controls-direction{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
}
.notification a.bx-prev {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	display: flex;
	width: 30px;
	justify-content: center;
	align-items: center;
	text-indent: -9999px;
	background: #fff;
}
.notification a.bx-prev::after {
    display: block;
    width: 5px;
    height: 5px;
    border-left: 1px solid #838282;
    border-bottom: 1px solid #838282;
    transform: rotate(45deg);
    content: "";
}
.notification a.bx-next {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	display: flex;
	width: 30px;
	justify-content: center;
	align-items: center;
	text-indent: -9999px;
	background: #fff;
}
.notification a.bx-next::after {
    display: block;
    width: 5px;
    height: 5px;
    border-right: 1px solid #838282;
    border-bottom: 1px solid #838282;
    transform: rotate(-45deg);
    content: "";
}