<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Alerts */
#alerts {
	background: #fff;
	width: 60%;
	padding: 5px;
    padding-right: 25px;
    margin: 15px auto;
	border-radius: 3px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
	border-left: 15px solid #f9fafb;

	/* Flotante */
	position: fixed;
	/* top: -50px; */
	bottom: -100px;
	left: 50%;
	/* transform: translate(-50%, -50%); */
	transform: translate(-50%, -0%);
	z-index: 20;
	max-height: 100px;
	opacity: 0;
}

#alerts button.button-close {
	position: absolute;
	top: 50%;
	right: 2px;
	transform: translate(0, -50%);
}

#alerts button.button-send-details {
	display: none;
	width: 34px;
	height: 34px;
	position: absolute;
	top: 10px;
	right: 35px;
}

#alert-content {
	min-height: 28px;
	max-height: 80px;
	color: #576a75;
	overflow-x: hidden;
	overflow-y: auto;
}

#alerts.error {
	border-left-color: rgba(232, 83, 68, 0.95);
}

#alerts.warning {
	border-left-color: rgba(237, 157, 43, 0.95);
}

#alerts.success {
	border-left-color: rgba(109, 191, 109, 0.95)
}

#alerts.info {
	border-left-color: rgba(90, 183, 210, 0.95)
}
</pre></body></html>