#tab-header-text {
  font-size: 18px;
  color: #002347;
}
.wizard > .steps .current-info,
.wizard > .steps .number {
  display: none !important;
}
#wizard {
  /* background: #fff; */
}
.steps {
  margin-bottom: 30px;
}
.steps ul {
  display: flex;
  position: relative;
}
.steps ul li {
  width: 20.16%;
  margin-right: 10px;
}
.steps ul li a {
  display: inline-block;
  width: 100%;
  height: 7px;
  background: #e6e6e6;
  border-radius: 3.5px;
}
.steps ul li.first a, .steps ul li.checked a {
  background: #6ba8dd;
  transition: all 0.5s ease;
}
/*.steps ul li.done a {
  background: #002347;
  transition: all 0.5s ease;
}*/

.actions ul {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
}
.actions ul.step-last {
  justify-content: flex-end;
}
.actions ul.step-last li:first-child {
  display: none;
}
.actions li a {
  padding: .5rem 2rem .5rem 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  background: #5cb85c;
  cursor: pointer;
  position: relative;
  color: #fff;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-weight: 400;
}
.actions li a:before {
  content: '\f061';
  position: absolute;
  top: 8px;
  right: 10px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.actions li a:hover {
  text-decoration: none;
}
.actions li a:hover:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.actions li[aria-disabled="true"] a {
  display: none;
}
.actions li:first-child a {
  background: #e6e6e6;
  padding-left: 2rem;
  padding-right: 1rem;
  color: #000;
}
.actions li:first-child a:before {
  left: 10px;
  content: '\f060';
}
.actions li:first-child a:hover {
  background: #ccc;
}
.actions li:last-child a {
}
.actions li:last-child a:before {

}

@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px); }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px); }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px); }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px); }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
}
@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px); }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px); }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px); }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px); }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
}
