.exchange-notification-bar {
	background: #ffffff;
	color: #333333;
	border-bottom: 1px solid #eeeeee;
	padding: 10px 10px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 120;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 1.35;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.exchange-notification-bar.scrolled {
	position: relative;
	top: auto;
	left: auto;
	width: auto;
}

.exchange-notification-bar button.ernb-nav,
.exchange-notification-bar .ernb-nav {
	flex: 0 0 auto;
	-webkit-appearance: none;
	appearance: none;
	background: none !important;
	background-color: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #333333 !important;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	padding: 0 6px;
	min-height: 0;
	opacity: 0.65;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.exchange-notification-bar button.ernb-nav:hover,
.exchange-notification-bar button.ernb-nav:focus,
.exchange-notification-bar button.ernb-nav:active,
.exchange-notification-bar .ernb-nav:hover,
.exchange-notification-bar .ernb-nav:focus,
.exchange-notification-bar .ernb-nav:active {
	background: none !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: #333333 !important;
	opacity: 1;
	outline: none;
}

.exchange-notification-bar button.ernb-nav:active,
.exchange-notification-bar .ernb-nav:active {
	transform: scale(0.92);
}

.ernb-nav.is-hidden {
	display: none;
}

.ernb-viewport {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	position: relative;
	overflow: hidden;
}

.ernb-track {
	position: relative;
	line-height: 1.35;
}

.ernb-slide {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	text-align: center;
	line-height: 1.35;
	opacity: 0;
	transform: translateX(0);
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ernb-slide.is-active {
	position: relative;
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.ernb-slide.is-enter-next {
	transform: translateX(100%);
	opacity: 0;
}

.ernb-slide.is-enter-prev {
	transform: translateX(-100%);
	opacity: 0;
}

.ernb-slide.is-leave-next {
	position: absolute !important;
	transform: translateX(-100%);
	opacity: 0;
	pointer-events: none;
}

.ernb-slide.is-leave-prev {
	position: absolute !important;
	transform: translateX(100%);
	opacity: 0;
	pointer-events: none;
}

.ernb-slide a {
	color: #1a73e8;
	text-decoration: underline;
}

.ernb-slide a:hover {
	color: #0d47a1;
}

@media (max-width: 600px) {
	.exchange-notification-bar {
		font-size: 12px;
		padding: 7px 8px;
	}

	.exchange-notification-bar button.ernb-nav,
	.exchange-notification-bar .ernb-nav {
		font-size: 12px;
		padding: 0 4px;
	}

	.ernb-slide {
		white-space: normal;
	}
}
