{#
  This file is auto-generated and can be overwritten at any time.
  Do not edit directly. To make changes, copy the file into a child theme.
#}

.loader {
  margin: auto;
  border: 10px solid #EAF0F6;
  border-radius: 50%;
  border-top: 10px solid var(--primary);
  width: 60px;
  height: 60px;
  animation: spinner 1s linear infinite;
}
@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

body{
  position:relative;
}
body.processing-checkin::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #000;
  opacity: 0.4;
  z-index: 1;
}