/* Loader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.loader {
	position: fixed;
  left: 45%;
  top: 48%;
	width: 100%;
  color: red;
	height: 100%;
	z-index: 9999;
}

.loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
  }
  .loader div p{
    font-size: 25px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    width: 30em;
    animation-delay: -0.45s;
    animation: type 4s steps(40, end);
    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
  }
  @keyframes type {
    from {
      width: 0;
    }
  }

/* Footer */
footer{
    display: none;
}

form{
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

h3{
  margin-top: 10px;
  text-align: center;
  color: #3cb0fd;
}