.universal-banner {
	background-color: #6EBD8F;
	padding: 10px 0;	
	align-items: center;
}

.universal-banner[data-state-display="true"] {
	display: block;
}

.universal-banner[data-state-display="false"] {
	display: none;
}

.universal-banner .row {
 	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 0;
}

.universal-banner__content,
.universal-banner__content p,
.universal-banner__content a,
.universal-banner__content a:link,
.universal-banner__content a:active,
.universal-banner__content a:hover,
.universal-banner__content a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	color: black;
}

.universal-banner__content p {
	margin: 0;
}
 
.universal-banner__content a:link,
.universal-banner__content a:active,
.universal-banner__content a:visited {
	text-decoration: underline;
}
	
.universal-banner__content a:hover {
	text-decoration: none;
}

.universal-banner__icon {
	width: 0px;
}

.universal-banner--alert .universal-banner__icon {
	display: flex;
	flex: 0 0 auto;
	justify-content: center;
	align-items: center;
	height: 28px;
	width: 28px;
	border-radius: 50%;
	border: 2px solid white;
	box-sizing: border-box;
}

.universal-banner--alert .universal-banner__content {
	padding-left: 20px;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.2;
	}
}

.universal-banner--alert .universal-banner__icon-pulse {
	height: 14px;
	width: 14px;
	background: white;
	border-radius: 50%;
	box-sizing: border-box;
	animation: pulse 2s infinite;
}

.universal-banner__controls {
	display: flex;
	flex: 1;
	justify-content:flex-end;
	align-items: center;
	margin-left: 20px;
}

.universal-banner__close,
.universal-banner__close:hover,
.universal-banner__close:active,
.universal-banner__close:focus {
	display: flex;
	flex-direction: row;
	border: none;
	background-color: transparent;
	box-shadow: none;
	color: black;
	height: 42px;
	margin: 0;
	padding: 0;
	align-items: center;
	font-weight: bold;
	transition: opacity 0.3s ease-in-out;
}

.universal-banner__close:hover {
	opacity: 0.6;
}

.universal-banner__close-icon {
	height: 24px;
	width: 24px;
	border-radius: 50%;
	border: 2px solid black;
	box-sizing: border-box;
	margin-right: 10px;
	position: relative;
}

.universal-banner__close-icon:before,
.universal-banner__close-icon:after {
	content: '';
	height: 14px;
	width: 2px;
	background: black;
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 5px;
}

.universal-banner__close-icon:before {
	transform: translate(-1px, -7px) rotate(-45deg)
}

.universal-banner__close-icon:after {
	transform: translate(-1px, -7px) rotate(45deg)
}