/* SPINNER */
.hygglig-block-ui img {
  height: 4em;
  width: 4em;
  opacity:.7;
  position: absolute;
  top: calc(50% - 2em);
  left: calc(50% - 2em);
  -webkit-animation:spin 1s linear infinite;
  -moz-animation:spin 1s linear infinite;
  animation:spin 1s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }