body {
  font-family: 'Montserrat', sans-serif;
}

footer {
  background-color: #efefef;
}

.btn-primary {
  background-color: #E44725;
  border-color: #E44725;
}

#emailHelp {
  position: relative;
  z-index: 100;
}

#spinner {
  z-index: 1;
  transform: rotate(40deg);
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
  background-color: rgb(74, 74, 79);
  border-color: rgb(74, 74, 79);
}

.steps {
  padding-left: 0;
  list-style: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1;
  margin: 30px auto;
  border-radius: 3px;
}

.steps strong {
  font-size: 16px;
  display: block;
  line-height: 1.4;
}

.steps>li {
  position: relative;
  display: block;
  /* border: 1px solid #ddd; */
  padding: 4px 40px 8px 50px;
  width: 200px;
  height: 60px;
  margin-bottom: 25px;
}

.steps .past {
  color: #666;
  background: #ececec;
}

.steps .present {
  color: #fff;
  background: #E44725;
}

.steps .future {
  color: #777;
  background: #efefef;
}

@media (min-width: 768px) {
  .steps>li {
    float: left;
  }

  .steps li>span:after,
  .steps li>span:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    position: absolute;
    top: 0;
    left: 0;
    border: solid transparent;
    border-left-color: #f0f0f0;
    border-width: 30px;
  }

  .steps li>span:after {
    top: -5px;
    z-index: 1;
    border-left-color: white;
    border-width: 34px;
  }

  .steps li>span:before {
    z-index: 2;
  }

  .steps li.past+li>span:before {
    border-left-color: #ececec;
  }

  .steps li.present+li>span:before {
    border-left-color: #E44725;
  }

  .steps li.future+li>span:before {
    border-left-color: #efefef;
  }

  .steps li:first-child>span:after,
  .steps li:first-child>span:before {
    display: none;
  }

  /* Arrows at start and end */
  .steps li:first-child i,
  .steps li:last-child i {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: solid transparent;
    border-left-color: white;
    border-width: 30px;
  }

  .steps li:last-child i {
    left: auto;
    right: -30px;
    border-left-color: transparent;
    border-top-color: white;
    border-bottom-color: white;
  }
}