body {
  position: relative;
  font-family: "source-sans-pro",sans-serif;
}

body p {
  font-family: "source-sans-pro",sans-serif;
}

body .inner {
  display: none;
}

body.pg-loaded .inner {
  display: block;
}

body.pg-loaded {
  opacity: 1;
  -webkit-animation: pgAnimLoading 0.3s cubic-bezier(0.7, 0, 0.3, 1) both;
  -moz-animation: pgAnimLoading 0.3s cubic-bezier(0.7, 0, 0.3, 1) both;
  -ms-animation: pgAnimLoading 0.3s cubic-bezier(0.7, 0, 0.3, 1) both;
  -o-animation: pgAnimLoading 0.3s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: pgAnimLoading 0.3s cubic-bezier(0.7, 0, 0.3, 1) both;
}

.pg-loading-screen .pg-loading-html {
  margin-top: 0;
  color: #FFF;
  font-weight: 300;
}

.pg-loading-screen .pg-loading-html form {
  max-width: 400px;
  margin: 0 auto;
}

.pg-loading-screen .pg-loading-html .loading-message {
  font-size: 24px;
  margin: 2em auto;
}

.pg-loading-screen .pg-loading-html .loading-message * {
  font-size: 16px;
  margin-top: 1em;
}

.pg-loading-screen .pg-loading-html aside {
  font-size: 18px;
  font-weight: 100;
  color: rgba(255,255,255, .5);
}

#custom-domain-back {
  cursor: pointer;
  font-size: .8rem;
}

#custom-domain-input {
  display: none;
}

.server-response-error {
  display: none;
  background: #f8dcd9;
  width: 20rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.3rem;
}

.server-response-error p {
  color: #852d24;
}

.hide-unless-custom-domain {
  display: none;
}

/***************************************
Spinners
****************************************/
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-wave">
 *      <div class="sk-rect1"></div>
 *      <div class="sk-rect2"></div>
 *      <div class="sk-rect3"></div>
 *      <div class="sk-rect4"></div>
 *      <div class="sk-rect5"></div>
 *    </div>
 *
 */
.sk-spinner-wave.sk-spinner {
  margin: 0 auto;
  width: 50px;
  height: 60px;
  text-align: center;
  font-size: 10px; }
.sk-spinner-wave div {
  background-color: #FFF;
  height: 100%;
  width: 6px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
          animation: sk-waveStretchDelay 1.2s infinite ease-in-out; }
.sk-spinner-wave .sk-rect2 {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.sk-spinner-wave .sk-rect3 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.sk-spinner-wave .sk-rect4 {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.sk-spinner-wave .sk-rect5 {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }

@-webkit-keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4); }

  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }

@keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
            transform: scaleY(0.4); }

  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }



@-webkit-keyframes pgAnimLoading {
  from {
    opacity: 0;
  }
}
@-moz-keyframes pgAnimLoading {
  from {
    opacity: 0;
  }
}
@-o-keyframes pgAnimLoading {
  from {
    opacity: 0;
  }
}
@-ms-keyframes pgAnimLoading {
  from {
    opacity: 0;
  }
}
@keyframes pgAnimLoading {
  from {
    opacity: 0;
  }
}