/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/




.horizontal.timeline {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    &:before

{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: .2em;
    background-color: lighten(#000, 95%);
}

.line {
    display: block;
    position: absolute;
    width: 50%;
    height: .2em;
    background-color: #8897ec;
}

.steps {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    .step

{
    display: block;
    position: relative;
    bottom: calc(100% + 1em);
    padding: .33em;
    margin: 0 2em;
    box-sizing: content-box;
    color: #8897ec;
    background-color: currentColor;
    border: .25em solid white;
    border-radius: 50%;
    z-index: 500;
    &:first-child

{
    margin-left: 0;
}

&:last-child {
    margin-right: 0;
    color: #71CB35;
}

span {
    position: absolute;
    top: calc(100% + 1em);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: #000;
    opacity: .4;
}

&.current {
    &:before

{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    animation-name: animation-timeline-current;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

span {
    opacity: .8;
}

}
}
}
}

@keyframes animation-timeline-current {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}