.announcementbanner-stack {
	position: relative;
	top: var(--announcementbanner-offset, 56px);
	margin-bottom: 8px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.announcementbanner {
	position: relative;
	left: 0;
	right: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	font-weight: 600;
	border-radius: 10px;
	border: 1px solid transparent;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	margin: 0;
	color: var(--color-text, #fff);
}

.announcementbanner__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-size: 16px;
	opacity: 0.9;
}
.announcementbanner__icon svg {
	width: 20px;
	height: 20px;
}
.announcementbanner__icon img {
	width: 20px;
	height: 20px;
	display: block;
}

.announcementbanner__message {
	flex: 1;
	line-height: 1.4;
}

.announcementbanner__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	min-height: 24px;
	border: none;
	background: none !important;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	color: inherit;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box;
	vertical-align: middle;
	cursor: pointer;
	opacity: 1;
	color: var(--color-text, #fff);
}

.announcementbanner__close svg {
	width: 16px;
	height: 16px;
	color: var(--color-text, #fff);
	stroke: currentColor;
}

.announcementbanner--custom .announcementbanner__close,
.announcementbanner--custom .announcementbanner__close svg {
	color: inherit;
}

.announcementbanner__close:hover,
.announcementbanner__close:focus {
	opacity: 1;
}


.announcementbanner--danger {
  color: #fff;
  background: #c0392b;
  border-color: #a93226;
}

.announcementbanner--success {
  color: #fff;
  background: #27ae60;
  border-color: #229954;
}

.announcementbanner--warning {
  color: #fff;
  background: #f39c12;
  border-color: #e67e22;
}

.announcementbanner--info {
  color: #fff;
  background: #2980b9;
  border-color: #2471a3;
}

.announcementbanner--custom {
  color: #fff;
  background: #2980b9;
  border-color: #2471a3;
}

.announcementbanner__readmore {
	color: inherit;
	text-decoration: underline;
	font-weight: 600;
}
