.nbe-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
	background: #FFC700;
	padding: 10px 20px;
	position: relative;
	box-sizing: border-box;
}

.nbe-bar.nbe-sticky {
	position: sticky;
	top: 0;
	z-index: 999;
}

.nbe-bar.nbe-dismissed {
	display: none !important;
}

.nbe-notice {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}

.nbe-notice-link {
	text-decoration: underline;
	font-weight: 700;
	cursor: pointer;
}

.nbe-close {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 4px;
	line-height: 1;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	.nbe-bar {
		justify-content: center;
		text-align: center;
	}
}
