:root {
    --primaryColor: #1a4181 !important;
}

.step-buttons {
    display: flex;
    justify-content: end;
}

#container {
    max-width: 820px;  
}

.step-container {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
}

.step-circle {
    width: 55px;
    height: 35px;
    border-radius: 3px;
    background-color: #fff;
    border: 2px solid var(--primaryColor);
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    /* cursor: pointer; */
}

.step-circle.active {
    color: #fff !important;
    background-color: var(--primaryColor) !important;
}

.step-line {
    position: absolute;
    top: 16px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: var(--primaryColor);
    z-index: -1;
}

#multi-step-form{
    overflow-x: hidden;
}