

html, body {
	font-family: "Poppins", Sans-serif
}

/* lower the max container-sm width */
@media (min-width: 1200px) {
	.container-sm {
		max-width: 960px;
	}
}

h1 {
	font-size: 25px;
	font-weight: bold;
}

p {
	font-size: 18px;
	line-height: 32px;
}

.disclaimer {
	color: #808080;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
}

a {
	text-decoration:none !important;
}

.question {
    text-align: center;
}
  .hidden {
      display: none;
  }
  .inlineBlock {
      display: inline-block;
  }
  .cta_btn {
      text-align: center;
      background-color: #e9a800;
      border-radius: 3px;
      padding: 15px 0px;
      margin: 10px auto 0 auto;
      color: white;
      font-weight: bold;
      font-size: 1.5rem;
      text-decoration: none !important;
      display: block;
			max-width: 90%;
  }
  .cta_btn:hover {
      color: white;
      box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.22), 0 233px 233px 0 rgba(255, 255, 255, 0.12) inset;
      cursor: pointer;
  }
  .boxme {
      text-align: center;
      padding: 40px 34px;
      background-color: #fff;
      border-top: 5px solid #00007c;
      font-size: 14px;
      line-height: 1.75;
      font-weight: 400;
      box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
      transition: all .2s ease;
  }
  .survey {
      text-align: center;
  }
  .loading {
      font-size: 24px;
      font-weight: bold;
  }
  .qualifyHeadline {
      font-size: 26px;
      font-weight: bold;
      color: #2fbdaa;
      margin-bottom: 20px;
			line-height: 1.1;
  }
  .loadingCopy {
      font-size: 18px;
		margin-bottom:25px;
  }

	.cta_btn2 {
    text-align: center;
    background-color: #254065;
    border-radius: 20px;
    padding: 15px 0px;
    margin: 10px auto 0 auto;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none !important;
    display: block;
    box-shadow: 0 1px 3px rgb(1 1 1 / 50%)!important;
}

.animate-throb {
    -webkit-animation: throb 1s ease-in-out infinite alternate;
    animation: throb 1s ease-in-out infinite alternate;
}

@-webkit-keyframes throb{
    0%{
        transform:scale(1)
        }
    to{
        transform:scale(1.05)
        }
  }
  @keyframes throb
  {
      0%{
          transform:scale(1)
          }
          to
          {transform:scale(1.05)}
  }

  #q2,
  #loading1,
  #loading2,
  #loading3,
  #qualify,
	#dontqualify {
      display: none;
  }
  @keyframes fade-in {
      0% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
  }
  @keyframes fade-out {
      0% {
          opacity: 1;
      }
      100% {
          opacity: 0;
      }
  }
  .fade-in {
      animation: fade-in;
      animation-duration: .5s;
  }
  .fade-out {
      animation: fade-out;
      animation-duration: .5s;
  }