.ui-notification-balloon {
	display: block;
	position: fixed;
	opacity: 0;
	z-index: 3200;
	transform: translateZ(0px);
	transition: opacity .25s linear, left .5s ease, top .5s ease, right .5s ease, bottom .5s ease;
}

.ui-notification-balloon-animate {
	opacity: 1;
}

.ui-notification-balloon-content {
	display: flex;
	background: #D70029;
	border-radius: 5px;
	min-height: 42px;
	font: 12px var(--ui-font-family-primary, var(--ui-font-family-helvetica));
	align-items: center;
	width: 211px !important;
}

.ui-notification-balloon-message {
	color: #ffffff;
	padding: 20px;
	width: 100%;
	height: 14px;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	display: flex;
	align-items: center;
	text-align: center;
}

.ui-notification-balloon-message:empty:before {
	content: "\00a0";
}

.ui-notification-balloon-message a,
.ui-notification-balloon-message a:hover {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.ui-notification-balloon-message a:hover {
	border-bottom-color: #fff;
}

.ui-notification-balloon-actions {
	display: flex;
	position: absolute;
	left: 195px;
	top: 10px;
	align-items: center;
	margin-right: 38px;
}

.ui-notification-balloon-action {
	position: absolute;
	width: 10px;
	height: 10px;
	background: url('/local/images/akar-icons_cross.png');
	background-size: 10px 10px;
	filter: brightness(0) invert(1);
	cursor: pointer;
	padding: 0 !important;
}

.ui-notification-balloon-action:hover:before {
	opacity: 1;
}

.ui-notification-balloon-close-btn {
	position: absolute;
	top: 0;
	right: 2px;
	display: inline-block;
	width: 33px;
	height: 43px;
	opacity: .2;
	cursor: pointer;
	transition: 180ms opacity linear;
}

.ui-notification-balloon-close-btn:hover {
	opacity: .7;
}

.ui-notification-balloon-close-btn:active {
	opacity: 1;
}

.ui-notification-balloon-close-btn:after,
.ui-notification-balloon-close-btn:before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	background: #fff;
	content: "";
	transform: translate(-50%, -50%) rotate(45deg);
}

.ui-notification-balloon-close-btn:after {
	width: 2px;
	height: 8px;
}

.ui-notification-balloon-close-btn:before {
	width: 8px;
	height: 2px;
}