#loader {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  background: rgba(0,0,0,0.2);
  z-index: 10000; /* over everything of $z-indexes in variables.scss */
}
#loader i {
  font-size: 50px;
  color: rgba(255,255,255,0.7);
}
#loader.transparent {
  opacity: 0;
}
.rotate {
  animation: rotate-anim 1s linear infinite;
}
@keyframes rotate-anim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#loader #javascript-disabled {
  margin: 0 20px 250px 20px;
  background: none;
}
