/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.pws-loader {
  border: 10px solid #f3f3f3; /* Light grey */
  border-top: 10px solid #30A7AA; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.pws-loader-frame {
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,.8);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
right: 0;display: flex;align-items: center;justify-content: center;}