body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 600px;
  max-width: 90%;
  margin: 0 auto;
  padding-top: 20vh;
  padding-bottom: 20vh;
}

@media (max-width: 499px) {
  .container {
    padding-top: 5vh;
  }
}

h1 {
  font-family: 'Inconsolata', 'Courier New', Courier, monospace;
  font-size: 2.4em;
  padding: 0;
  margin: 0;
}

h2 {
  margin: 35px 0;
}

h2.cta {
  font-weight: 400;
  font-size: 2.2em;
  font-family: 'Inconsolata', 'Courier New', Courier, monospace;
}

#number {
  font-family: 'Inconsolata', 'Courier New', Courier, monospace;
  font-size: 2em;
  font-weight: 400;
  white-space: pre;
}

.typed-cursor {
  font-size: 2em;
  color: red;
  opacity: 1;
  -webkit-animation: blink 0.9s infinite;
  -moz-animation: blink 0.9s infinite;
  animation: blink 0.9s infinite;
}
@keyframes blink {
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes blink {
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes blink {
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
p, li {
  font-size: 1.2em;
  line-height: 1.5em;
}

li {
  margin: 5px 0;
}

footer {
  font-size: .8em;
  padding-top: 50px;
}

a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms ease-out, border 200ms ease-out;
  border-bottom: 1px dotted red;
}
a:hover {
  color: red;
  border-bottom: none;
}

#cta {
  margin: 60px 0;
}

/* Leadbox */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

@-webkit-keyframes fadeOut { from { opacity:1; } to { opacity:0; } }
@-moz-keyframes fadeOut { from { opacity:1; } to { opacity:0; } }
@keyframes fadeOut { from { opacity:1; } to { opacity:0; } }
.fade-out {
  opacity:1;  /* make things invisible upon start */
  -webkit-animation:fadeOut ease-in 1;  /* call our keyframe named fadeOut, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeOut ease-in 1;
  animation:fadeOut ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:0.5s;
  -moz-animation-duration:0.5s;
  animation-duration:0.5s;
}

*:focus {
  outline: none;
}
input[type='text'], input[type='email'] {
  font-size: 14px !important;
  margin: 0 !important;
  padding: 6px !important;
  height: auto !important;
  width: 100% !important;
  /* font-size: 14px !important; */
  color: #333 !important;
  background-color: #fff !important;
  border: 1px solid #c4c4c4 !important;
  -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.18) !important;
  -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.18) !important;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.18) !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  -ms-box-sizing: border-box !important;
  box-sizing: border-box !important;
  background-image: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
}
#lead-magnet-box {
  /* Invisible by default */
  opacity:0;

  position: fixed;
  right: 25px;
  bottom: 25px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  width: 260px;
  box-shadow: 0 2px 0 1px rgba(0,0,0,0.08);
}
#lead-magnet-box h4 {
  font-size: 0.9em;
  font-weight: 600;
  margin: 10px 12px 3px;
  color: #555;
  line-height: 1.25;
}

#lead-magnet-box p {
  padding: 4px 12px 0;
  margin-bottom: 12px;
  font-size: 13px !important;
  line-height: 1.4;
}

#lead-magnet-box footer {
  border-top: 1px solid #ddd;
  padding: 12px 12px 10px;
  height: 35px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #f5f5f5;
}

#lead-magnet-box footer button {
  border: none;
  background: #3f99dd;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  padding: 8px;
  color: #fff;
  border-bottom: none;
  font-size: 1.1em;
  cursor: pointer;
}

#leadMagnetMessage {
  display: none;
}

#lead-magnet-box .error {
  color: #ff0000;
}

.closeButton {
  float:right;
  font-size: 25px;
  line-height: 20px;
  margin: 7px 13px 0 0;
  cursor: pointer;
}

.closeButton a {
  border: none;
}
