/* Mixins */
/* Color Variables */
/* Theme Variables */
/* Animations */
@keyframes bounce {
  0% {
    transform: scale(1); }
  33% {
    transform: scale(0.9); }
  66% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

/* Base Styles */
/* Component Styles - Steps */
.steps {
  display: flex;
  width: 134%;
  margin: 0 -17%;
  padding: 2rem 0 6rem 0;
  list-style: none;
  float: left; }

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  position: relative;
  pointer-events: none; }
  .step--active, .step--complete {
    pointer-events: all; }
  .step:not(:last-child):before, .step:not(:last-child):after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    content: '';
    transform: translateY(-50%);
    will-change: width; }
  .step:before {
    width: 100%;
    background-color: rgba(230, 231, 232, 0.25); }
  .step:after {
    width: 0;
    background-color: #1B62B4; }
  .step--complete:after {
    width: 100% !important;
    opacity: 1;
    transition: width 1s ease-in-out, opacity 1s ease-in-out; }

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 5rem;
  height: 5rem;
  background-color: #1E1E1E;
  border: 2px solid rgba(230, 231, 232, 0.25);
  border-radius: 50%;
  color: transparent;
  font-size: 2rem;
  z-index: 1; }
  .step__icon b {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: ' ';
    left: 0;
    top: 0;
    color: #fff;
    text-align: center;
    line-height: 4.8rem;
    font-size: 1.5em;
    font-weight: 700; }
  .step__icon:before {
    display: block;
    content: '\2713';
    font-size: 1.8em; }
  .step--incomplete.step--active .step__icon b {
    display: block; }
  .step--complete.step--active .step__icon b {
    display: none; }
  .step--complete.step--active .step__icon {
    color: #fff;
    transition: background-color 0.5s ease-in-out, border-color 0.5s ease-in-out, color 0.5s ease-in-out; }
  .step--incomplete.step--active .step__icon {
    border-color: #1B62B4;
    background-color: #1B62B4;
    transition-delay: 0.5s; }
  .step--complete .step__icon {
    animation: bounce 0.5s ease-in-out;
    background-color: #1B62B4;
    border-color: #1B62B4;
    color: #fff; }

.step__label {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  margin-top: 1rem;
  font-size: 1em;
  text-transform: uppercase;
  transform: translateX(-50%); }
  @media (max-width: 767px) {
    .step__label {
      font-size: 0.85em; } }
  .step--incomplete.step--inactive .step__label {
    color: #B9B9B9; }
  .step--incomplete.step--active .step__label {
    color: #fff; }
  .step--active .step__label {
    transition: color 0.3s ease-in-out;
    transition-delay: 0.5s; }
