.stepper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 15px 0;
}

.stepper {
    list-style-type: none;
    display: flex;
    margin: 0;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    position: relative;
    font-family: "Lato", sans-serif;
}

.step {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.step-label {
    font-size: 12px;
    margin: 0.5em 0;
    line-height: 1.5em;
}

.step-active p {
    font-weight: bold;
}

.step-active .step-icon {
    background-color: rgb(84,84,84);
}

.step-icon {
    position: relative;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    border-radius: 50%;
    z-index: 1;
    background-color: rgb(168,168,168);
    border:2px solid white;
}

.step-complete .step-icon {
    background-color: rgb(33,152,112);
}

.step-connector {
    position: absolute;
    width: 70%;
    left: 15%;
    top: 18%;
    border-bottom: 1px solid rgb(168,168,168);
}

.step-number {
    color: #fff;
    text-shadow: none;
    font-weight: bold;
}

.fa-check {
    color: #fff;
    text-shadow: none;
}

@media (min-width: 350px) and (max-width: 479px) {
    .callout {
        margin: 0 0 2em -1em;
    }
}

@media (max-width: 350px) {
    .callout {
        margin: 0 0 2em -4em;
    }
}