﻿:root {
    --mhr-blue: #0094D4;
    --mhr-gray: #72665B;
    --mhr-green: #bed747;
    --mhr-dark-gray: #534C46
}
.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.step-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--mhr-gray);
    transition: .4s;
    
    color:white;
}

    .step-button[aria-expanded="true"] {
        width: 60px;
        height: 60px;
        background-color: var(--mhr-green);
        color: #fff;
        margin-top: -5px;
    }
.step-label {
    cursor: unset !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--mhr-gray);
    transition: .4s;
    color: white;
}
.step-label[aria-expanded="true"] {
    width: 60px;
    height: 60px;
    background-color: var(--mhr-green);
    color: #fff;
    margin-top: -5px;
}
.done {
    background-color: var(--mhr-blue);
    color: #fff;
}

.step-item {
    z-index: 10;
    max-width: 60px;
    word-wrap: normal;
}

#progress {
    -webkit-appearance: none;
    position: absolute;
    width: 95%;
    z-index: 5;
    height: 10px;
    margin-left: 18px;
    margin-bottom: 18px;
    margin-top: 20px;
}
    /* to customize progress bar */
    #progress::-webkit-progress-value {
        background-color: var(--mhr-blue);
        transition: .5s ease;
    }

    #progress::-webkit-progress-bar {
        background-color: var(--mhr-dark-gray);
    }
@media (max-width: 994px) {
    .steps {
        display: none;
    }
}