html {
  height: 100%;
}

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

body>app>.spinner-container,
body>app-root>.spinner-container {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* The idea of the pre-loader is to have something like on Linked-in: a static image and a css animation below */
/* A possibility is to keep only the image and replace it with the same animation (Gif, SVG, or CSS) as for the gifSpinner component  */
body app-root .spinner-container .spinner-logo,
body app .spinner-container .spinner-logo,
body app .gif-spinner .loading img,
body app-root .loading img,
body app refx-gif-spinner .loading img {
  width: 200px;
  height: 200px;
@media (min-width: 600px) {
  width: 300px;
  height: 300px;
  }
}

/* Force ssci/servicing spinner-logo to avoid doing bespoke only for that */
body app .spinner-container .spinner-logo {
  content: url('/__interactive/origin/4effe20d1d17199c/assets/img/animation/animation-loader.gif');
}

body>app-root>.spinner-container>.spinner,
body>app>.spinner-container>.spinner,
body>app>.gif-spinner>.loading>.spinner
body app refx-gif-spinner .loading .spinner {
  display: none;
}

body {
  min-height: 100%;
  margin: 0;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none;
    -webkit-animation: none;
  }
}
