/*Animate cogs*/
#cog1,
#cog2,
#cog3 {
  -webkit-animation: spin 4s linear infinite;
          animation: spin 4s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#cog1 {
  fill: #7b8e98;
}

#cog2 {
  -webkit-animation: spinback 4s linear infinite;
          animation: spinback 4s linear infinite;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  fill: #eeeeee;
}

#cog3 {
  fill: #d3dde2;
}

@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  90% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes spinback {
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
.error-container {
  text-align: center;
}

.animate-404 {
  margin: 80px auto 0;
  border-radius: 50%;
  overflow: hidden;
  width: 170px;
  height: 170px;
  position: relative;
  background-color: #f9f9f9;
  box-shadow: inset 0px 0px 5px 0px rgba(50, 50, 50, 0.1);
}
.animate-404 > svg {
  -webkit-animation: pop 0.4s ease-in;
          animation: pop 0.4s ease-in;
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-47%, -50%);
          transform: translate(-47%, -50%);
}

.error-code {
  font-size: 100px;
  color: #7b8e98;
  line-height: 1em;
}

.error-desc {
  color: #7b8e98;
}
