.disabled-element {
	pointer-events: none; /* Prevents click events */
	opacity: 0.4;
}

#SimpleNotify {
	position: fixed;
	bottom: 10px;
	right: 20px;
	z-index: 9999;
}
    
#SimpleNotify  .notification {
	position: relative;
	margin-bottom: 10px;
	padding: 15px;
	color: white;
	border-radius: 5px;
	transition: all 0.5s ease;
	width: 300px;
}
    
#SimpleNotify .notification.success {
	background-color: #00ac69;
}
    
#SimpleNotify .notification.danger {
	background-color: #e81500;
}
    
#SimpleNotify .notification.warning {
	background-color: #f4a100;
}

#SimpleNotify .notification.info {
	background-color: #00cfd5;
}

#SimpleNotify .notification .progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 5px;
	background-color: rgba(255, 255, 255, 0.5);
}