/**
 * BAMZE Cotizacion - estilos del toast (bc-toast.js).
 */

.bc-toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%) translateY(12px);
	max-width: min(420px, 90vw);
	padding: 10px 18px;
	border-radius: 6px;
	background: #1f2430;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
	opacity: 0;
	transition: opacity .2s, transform .2s;
	z-index: 1000000010;
	pointer-events: none;
}
.bc-toast--visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
.bc-toast--ok { background: #1A7F43; }
.bc-toast--error { background: #C0392B; }
