.interne-notif-bar {
	position: sticky;
	top: 0;
	z-index: 9999;
	width: 100%;
	box-sizing: border-box;
	padding: 0.75rem 1rem;
}

.interne-notif-bar__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

.interne-notif-bar__title {
	flex-shrink: 0;
}

.interne-notif-bar__content {
	flex: 1 1 auto;
}

.interne-notif-bar__close {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0.35rem;
	cursor: pointer;
	line-height: 0;
	color: inherit;
}

.interne-notif-bar__close-icon {
	position: relative;
	display: block;
	width: 1.125rem;
	height: 1.125rem;
}

.interne-notif-bar__close-line {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	border-radius: 1px;
	transform-origin: center;
}

.interne-notif-bar__close-line:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.interne-notif-bar__close-line:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.interne-notif-bar[hidden] {
	display: none;
}
