.uap-alerts-wrap {
	display: flex;
	flex-direction: column;
	gap: 3px;
	position: relative;
	z-index: 2;
	box-sizing: border-box;
}

.uap-alert {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 24px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	font-family: inherit;
	font-size: 15px;
	line-height: 1.4;
	width: 100%;
	box-sizing: border-box;
	animation: uapFadeIn 0.35s ease;
}

.uap-alert-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
}

.uap-alert-icon {
	display: inline-flex;
	flex-shrink: 0;
}

.uap-alert-message a {
	color: inherit;
	text-decoration: underline;
}

.uap-alert-message strong {
	font-weight: 700;
}

.uap-alert-close {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	color: inherit;
	opacity: 0.65;
	padding: 0 4px;
	flex-shrink: 0;
}

.uap-alert-close:hover,
.uap-alert-close:focus {
	opacity: 1;
}

.uap-alert.uap-dismissing {
	animation: uapFadeOut 0.25s ease forwards;
}

@keyframes uapFadeIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes uapFadeOut {
	from {
		opacity: 1;
		max-height: 100px;
	}
	to {
		opacity: 0;
		max-height: 0;
		padding-top: 0;
		padding-bottom: 0;
		margin: 0;
	}
}

@media (max-width: 600px) {
	.uap-alert {
		font-size: 14px;
		padding: 8px 12px;
	}
}
