#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader .loader-spinner {
  border: 5px solid #ccc;
  border-top: 5px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#bckdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1050;
}
#myAlert {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #198754; /* Bootstrap green */
	color: #fff;
	border: none;
	z-index: 2055;
	opacity: 0.95;
	min-width: 250px;
	max-width: 400px;
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
	border-radius: 0.25rem;
}
.alert-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1rem;
}
.alert-body {
	padding: 0px /*0px 10px 0px*/;
}
.alert-buttons {
	text-align: right;
	/*margin-top: 0.5rem;*/
}
.btn-close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	filter: invert(1);
}
