@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:100,300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Indie+Flower');
body {
  /*box-shadow: 0 0 10rem 0 #000 inset;*/
}
html, body {
  width: 100%;
  height: 100%;
}
.splash-loader {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ddd;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 100;
  /*box-shadow: 0 0 10rem 0 #666 inset;*/
  width: 100%;
  height: 100%;
}

.splash-loader a {
  text-decoration: none;
  color: #ffa500;
}
.splash-loader a:hover {
  text-decoration: underline;
}
.splash-loader .svg-calLoader {
  width: 230px;
  height: 230px;
  transform-origin: 115px 115px;
  animation: 1.4s linear infinite loader-spin;
}
.splash-loader .cal-loader__plane {
  fill: #0088ff;
}
.splash-loader .cal-loader__path {
  stroke: #aaa;
  animation: 1.4s ease-in-out infinite loader-path;
}
@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loader-path {
  0% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
  50% {
    stroke-dasharray: 0, 450, 10, 30, 10, 30, 10, 30, 10;
  }
  100% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
}

