/**
* Notificaciones Toast
* */
#contenedor-toasts {
	position: fixed;
	right: 1rem;
	z-index: 1100;
	max-width: 300px;
}

#contenedor-toasts > .toast {
	width: 300px;
}

.toast.error .toast-header {
	background-color: #DC3545;
	color: #FFFFFF;
}

.toast.error .toast-header .close {
	color: inherit;
}

.toast.correcto .toast-header {
	background-color: #28A745;
	color: #FFFFFF;
}

.toast.correcto .toast-header .close {
	color: inherit;
}

.toast.aviso .toast-header {
	background-color: #FFC107;
	color: #FFFFFF;
}

.toast.aviso .toast-header .close {
	color: inherit;
}