.container {
    /* position: sticky; */
    top: 0;
    padding: 100px 0 0 25px;
}

.progress_body {
    border-left: 1px solid #fff;
    height: 60vh;
}

.item {
    position: relative;
    padding-left: 25px;
    height: 25%;
}

.test_name {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.total_questions {
    margin-top: 10px;
    font-size: 12px;
}

.circle {
    position: absolute;
    z-index: 10;
    top: -9px;
    left: -9px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: #000;
}

.circle.active {
    background: #fff;
}
.circle.active_finished {
    background: rgb(155, 95, 240);
}

.progress_main {
    position: absolute;
    top: 0;
    left: -1px;
    height: 100%;
    width: 2px;
    background: var(--celebrityschool-purple);
    z-index: 5;
    transform: scaleY(0);
    transform-origin: top;
}

.progress_body_mobile {
    display: none;
}

@media screen and (max-width: 750px) {
    .container {
        padding: 0;
        bottom: 0;
    }
    .progress_body {
        display: none;
    }
    .progress_body_mobile {
        display: block;
        position: fixed;
        bottom: 0;
        /* padding: 10px 20px; */
        background: #000;
        width: 100%;
    }
    .progress_mobile {
        position: relative;
        width: 100%;
        height: 5px;
        background: #888;
        margin-top: 10px;
        display: flex;
    }
    .progress_mobile_after {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: var(--celebrityschool-purple);
        transform: scaleX(0);
        transform-origin: left;
    }
    .progress_mobile_current {
        margin: 15px 10px;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 14px;
        font-weight: 500;
    }
    .progress_item_mobile {
        position: relative;
        width: 25%;
        height: 100%;
    }
    .progress_item_mobile::after {
        position: absolute;
        content: "";
        right: 0;
        width: 10px;
        height: 100%;
        background: #fff;
        z-index: 10;
    }
    .progress_main_mobile {
        position: absolute;
        z-index: 5;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--celebrityschool-purple);
        transform: scaleX(0);
        transform-origin: left;
    }
}
