/*STEPPER*/
.ev-stepper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: default; /*No clicking supported right now*/
  padding: 2.5em;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 3px 1px -1px rgba(0, 0, 0, 0.1); /* 0 5px 3px -2px rgba(0, 0, 0, 0.2) inset; */
  /*box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);*/ /*Material design*/
}
.active .step-label {
  font-weight: bold;
}
.step.inactive,
.step-icon-completed,
.step-icon-awaiting {
  display: none;
}
.step.inactive.completed .step-label:hover,
.step.inactive.completed .step-label:hover .step-title,
.step.inactive.completed .step-label:hover .step-icon-completed i,
.step.inactive.awaiting .step-label:hover,
.step.inactive.awaiting .step-label:hover .step-title,
.step.inactive.awaiting .step-label:hover .step-icon-awaiting i,
.step.not-started.next-step .step-label:hover,
.step.not-started.next-step .step-label:hover .step-title,
.step.not-started.next-step .step-label:hover .step-icon-completed i {
  cursor: pointer; /*link to page is active when completed, but step in not activated*/
  color: #00063c;
}

.step-icon-index,
.step-title,
.step-icon {
  display: inline-block;
}

.ev-stepper-background-line {
  display: none;
  background-color: #dbdbdb;
  outline: 1px solid #dbdbdb;
  position: absolute;
  top: 50%;
  left: 2.5rem;
  right: 2.5rem;
  padding-left: inherit;
  padding-right: inherit;
  box-sizing: border-box;
}

@media screen and (min-width: 35.5em) {
}
@media screen and (min-width: 80em) {
  /*STEPPER*/
  .ev-stepper-background-line {
    display: block;
  }

  .ev-stepper-sm {
    display: none;
  }
  .step.inactive,
  .step.completed {
    display: inline-block; /*Because was hidden in small*/
  }
  .step.completed .step-icon-index,
  .step.awaiting .step-icon-index,
  .step.completed .step-icon-awaiting,
  .step.not-started .step-icon-awaiting,
  .step.not-started .step-icon-completed {
    display: none;
  }

  .step.inactive.not-started .step-icon-index,
  .step.active.not-started .step-icon-index,
  .step.completed .step-icon-completed,
  .step.awaiting .step-icon-awaiting {
    display: inline-block;
  }
  .active .step-label {
    font-weight: normal;
  }
  .active .step-title {
    font-weight: bold;
  }
  .step.active .step-icon-index {
    background-color: #61ff8c;
    border: 2px solid #00063c;
    box-shadow: -2px 2px #00063c;
  }
  .step.completed .step-icon-index {
    background-color: #61ff8c;
    border: 2px solid #00063c;
    box-shadow: -2px 2px #00063c;
    /*Need to come after the previous selector...*/
  }
  .step.active .step-title,
  .step.completed .step-title,
  .step.awaiting .step-title {
    color: #00063c;
  }
  .step-line {
    width: 100%;
    background: #dbdbdb;
    height: 1px;
    position: relative;
    top: 12px;
  }
  .step-label {
    position: relative;
    white-space: nowrap;
    /*overflow:hidden;*/
    text-overflow: ellipsis;
    text-align: center;
  }
  .step-label.first {
    text-align: left;
  }
  .step-label.last {
    text-align: right;
  }
  .step-icon {
    position: relative;
    display: inline;
    background-color: white;
    padding-left: 7px;
  }
  .step-icon-index {
    position: relative;
    transform: translate(1px, -1px);
    background-color: #f6fafc;
    display: inline-block;
    width: 26px;
    height: 26px;
    color: #00063c;
    font-size: 100%;
    line-height: 13px;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    padding-top: 0.3em;
    border: 2px solid #00063c;
    box-shadow: -2px 2px #00063c;
    font-weight: bolder;
  }
  .step-icon-completed,
  .step-icon-awaiting {
    /* color: #61ff8c; */
    position: relative;
    transform: translate(1px, -1px);
    background-color: #f6fafc;
    display: none;
    width: 26px;
    height: 26px;
    color: #00063c;
    font-size: 100%;
    line-height: 13px;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    padding-top: 0.3em;
    border: 2px solid #00063c;
    box-shadow: -2px 2px #00063c;
    font-weight: bolder;
  }

 .completed .step-icon-completed,
 .awaiting .step-icon-awaiting {
  display: inline-block;
 }

  .step-title {
    display: inline;
    padding-right: 7px;
    padding-left: 7px;
    color: #a6adba;
    background-color: white;
  }
}

@media screen and (min-width: 64em) {
}
@media screen and (min-width: 90em) {
  /*1440px*/
}
/*IE hacks*/
/*IE10 and up*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
}
