﻿@media (max-width: 576px) {
    .offcanvas {
        width: 56px;
    }
}

.steps {
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.step-button {
    background-color: #ddd;
    margin-bottom: 10px;
    border-radius: 50%;
    margin-right: auto;
    font-family: Arial;
    margin-left: auto;
    line-height: 31px;
    transition: .4s;
    font-size: 14px;
    height: 30px;
    border: none;
    width: 30px;
}

.step-title {
    height: 40px;
}

.step-done {
    /* background-color: #0381ff; */
    background-color: #9dbb61;
    color: #fff;
}

.step-item {
    text-align: center;
    font-size: 13px;
    z-index: 10;
    width: 115px;
}

.steps.steps3 .step-item {
    width: 145px;
}

#progress {
    -webkit-appearance: none;
    margin-left: 30px;
    position: absolute;
    z-index: 5;
    height: 6px;
    width: calc(100% - 60px);
    top: 12px;
}


.steps3 #progress {
    margin-left: 65px;
    width: calc(100% - 130px);
}

@media (min-width: 768px) {
    #progress {
        margin-left: 55px;
        width: calc(100% - 110px);
    }
}

@media (min-width: 1200px) {
    #progress {
        margin-bottom: 32px;
    }
}

/* to customize progress bar */
#progress::-webkit-progress-value {
    background-color: #9dbb61;
    transition: .5s ease;
}

#progress::-webkit-progress-bar {
    background-color: #ddd;
}
