﻿.progress-bar-container {
    position: relative;
}

    .progress-bar-container::before {
        content: "";
        position: absolute;
        background-color: #e8e8e8;
        height: 2px;
        width: 99%;
        top: 50%;
        left: 2px;
        transform: translateY(-50%);
    }

#progress-bar {
    position: absolute;
    background-color: var(--primary-colour);
    height: 10px;
    width: 0%;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.circles-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    background-color: #e8e8e8;
    transition: 0.4s ease;
}

    .circle h3 {
        text-align:center;
        margin-top:10px!important;
        font-size: 20px;
        color: var(--primary-text-colour);
    }

    .circle-active {
        background-color: var(--secondary-colour)!important;
    }

        .circle-active h3 {
            color: var(--primary-text-colour)!important;
        }

.circle-complete {
    background-color: var(--primary-colour)!important;
}

    .circle-complete h3 {
        color: var(--primary-text-colour)!important;
    }


@media screen and (max-width: 768px) {

    .circle {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        background-color: #e8e8e8;
        transition: 0.4s ease;
    }

        .circle h3 {
            text-align: center;
            margin-top: 3px !important;
            font-size: 14px;
            color: var(--primary-text-colour);
        }

}