.page-loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  border: 8px solid #37AECD;
  border-top: 8px solid #1c1563;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 0 4px #e0f7fa inset;
}

.page-loader-spinner::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: #057EAC;
  border-radius: 50%;
  box-shadow: 0 20px 0 0 #1c1563;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
