.progress-nav,
.progress-tracker {
    align-items: center;
    display: flex;
    flex: 1 1 100%;
    justify-content: center;
}

.progress-nav {
    justify-content: space-between;
}

.progress-nav>.arrow {
    min-width: 24px;
    padding: 0 4px;
    width: 31px;
}

.progress-nav>.arrow>svg {
    width: 100%;
}

.progress-tracker {
    background: #FFFFFF;
    box-shadow: 0 3px 10px #0000000F;
    height: 60px;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 960px) {
    .progress-tracker {
        height: 154px;
    }
}

.progress-tracker>.list {
    align-items: center;
    display: flex;
    flex: 1 1 100%;
    justify-content: center;
    max-width: 720px;
    position: relative;
}

@media screen and (min-width: 960px) {
    .progress-tracker>.list {
        align-items: flex-start;
        margin-top: -40px;
        max-width: 1188px;
        padding: 0;
    }
}

.progress-tracker>.list>.item {
    align-items: center;
    display: flex;
    flex: 0 1 20%;
    flex-direction: column;
    position: relative;
}

@media screen and (min-width: 960px) {
    .progress-tracker>.list>.item {
        flex: 0 1 12.5%;
    }
}

.progress-tracker>.list>.item::before {
    background: #CBCED2;
    content: "";
    height: 1px;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.progress-tracker>.list>.item:first-child::before {
    display: none;
}

.progress-tracker.-primary>.list>.item.-check::before,
.progress-tracker.-primary>.list>.item.-current::before {
    background: #E01D2C;
}

.progress-tracker.-primary>.list>.item.-check>.circle,
.progress-tracker.-primary>.list>.item.-current>.circle {
    background: #E01D2C;
    border: 1px solid #E01D2C;
    color: #FFFFFF;
}

.progress-tracker.-primary>.list>.item.-check>.text {
    color: #CBCED2;
}

.progress-tracker.-primary>.list>.item.-current>.text {
    color: #E01D2C;
}

.progress-tracker.-secondary>.list>.item.-check::before,
.progress-tracker.-secondary>.list>.item.-current::before {
    background: #62B203;
}

.progress-tracker.-secondary>.list>.item.-check>.circle,
.progress-tracker.-secondary>.list>.item.-current>.circle {
    background: #62B203;
    border: 1px solid #62B203;
    color: #FFFFFF;
}

.progress-tracker.-secondary>.list>.item.-check>.text {
    color: #CBCED2;
}

.progress-tracker.-secondary>.list>.item.-current>.text {
    color: #62B203;
}

.progress-tracker>.list>.item.-cart::before {
    display: none;
}

@media screen and (max-width: 959px) {
    .progress-tracker>.list>.item.-cart {
        min-width: 120px;
        padding: 0 10px 0 5%;
        width: 120px;
    }
}

.progress-tracker>.list>.item.-check::after {
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}

.progress-tracker>.list>.item>.arrow {
    left: -10%;
    position: absolute;
    top: 70%;
}

@media screen and (max-width: 959px) {
    .progress-tracker>.list>.item>.arrow {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

.progress-tracker>.list>.item>.circle {
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #7C848D;
    border-radius: 50%;
    color: #7C848D;
    display: flex;
    font-size: 1.2rem;
    font-weight: 700;
    height: 24px;
    justify-content: center;
    position: relative;
    width: 24px;
    z-index: 2;
}

@media screen and (min-width: 960px) {
    .progress-tracker>.list>.item>.circle {
        font-size: 1.8rem;
        height: 40px;
        width: 40px;
    }
}

.progress-tracker>.list>.item>.text {
    color: #05010A;
    font-size: 1.4rem;
    left: 50%;
    line-height: 1.25;
    position: absolute;
    text-align: center;
    top: calc(100% + 1.1em);
    transform: translateX(-50%);
    width: 100%;
}

@media screen and (max-width: 959px) {
    .progress-tracker>.list>.item>.text {
        font-size: 1.2rem;
    }
}

.progress-tracker>.list>.item.-check>.text,
.progress-tracker>.list>.item.-current>.text {
    font-weight: 700;
}

.progress-tracker>.list>.item>.text.-cart {
    color: #E01D2C;
}

@media screen and (max-width: 959px) {
    .progress-tracker>.list>.item>.text.-cart {
        border: 1px solid #CBCED2;
        border-radius: 4px;
        padding: 0.5em;
        position: static;
        transform: translateX(0);
    }
}