.loading-popup {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: black;
	padding: 20px;
	border: 2px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	text-align: center;
	height: 128px;
    height: 128px;
    width: 128px;
	/*width: 100%;100vw; 128px;*/
    color: aqua;
    border-radius: 50%;
}

.pf { position: fixed; }

.w100 { width: 100%; }

.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FFF;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}
.loader::after {
  animation-delay: 1s;
}

.error {
	background-color: #ffcccc; /* Light red background */
	color: #cc0000; /* Dark red text */
	border: 1px solid #cc0000; /* Dark red border */
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	font-family: Arial, sans-serif;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}		
