/* Eros Mobile Page Loader Overlay */
#eros-page-loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

#eros-page-loader.is-active {
  display: flex;
}

/* Red spinning circle - brand color rgb(208, 50, 33) */
#eros-page-loader__spinner {
  width: 52px;
  height: 52px;
  border: 5px solid rgba(208, 50, 33, 0.22);
  border-top-color: rgb(208, 50, 33);
  border-radius: 50%;
  animation: eros-spin 0.75s linear infinite;
}

@keyframes eros-spin {
  to {
    transform: rotate(360deg);
  }
}
