@keyframes rotator {
  0% {
    transform: rotate(0deg); }

  100% {
    transform: rotate(270deg); } }
.loading {
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .loading.unobtrusive {
    background-size: contain;
    background: white url(/img/eventjet/loading.svg) no-repeat center;
    padding: .5em;
    background-origin: content-box;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transition: opacity .3s;
    will-change: opacity; }
    .loading.unobtrusive.hidden {
      display: block !important;
      opacity: 0; }
