.pm-notification-banner {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #f1c40f;
	padding: 20px 15px;
	font-size: 15px;
	line-height: 168%;
	z-index: 9999;
	display: flex;
	justify-content: center;
	white-space: pre-wrap; /* This preserves the line breaks in the text */
	align-items: center;
}

.pm-notification-banner .container {
	width: 100%;
	max-width: 1330px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.pm-notification-banner .close-banner {
	cursor: pointer;
	padding: 8px;
	display: flex;
	background: #e88100;
	align-items: center;
	border-radius: 4px;
	position: absolute;
	top: -35px;
	right: 20px;
}

.pm-notification-banner .close-banner svg {
	width: 20px;
	height: 20px;
	color: #fff;
}

@media (max-width: 768px) {
	.pm-notification-banner{
		text-align: center;
	}
	.pm-notification-banner .close-banner {
		top: -40px;
		right: 0px;
	}
}
