﻿/*Step Bar styling*/

.stepSelected {
    background-color: #022c68;
}

.stepPending {
    background-color: #6e7f9b;
}

.stepCircleSelected {
    background-color: #022c68;
}

.stepCirclePending {
    background-color: #9da0af;
}

.stepCircleCompleted {
    background-color: #10ae3c;
}

.stepCircle {
    height: 30px;
    width: 30px;
    border-radius: 15px;
    border: solid 2px #ffffff;
    padding: 2px;
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 10pt;
    color: #ffffff;
    font-weight: normal;
    position: relative;
    left: -20px;
    flex: 0 1 30px;
}

.stepBarText {
    font-family: arial;
    font-size: 12px;
    color: #ffffff;
}

.stepBarNumber {
    font-family: arial;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}

.stepBarItem {
    display: flex;
    align-items: center;
    align-content: start;
    flex-direction: row;
    justify-content: flex-start;
    height: 30px;
    width: 150px;
    border-radius: 10px;
    border: solid 2px #ffffff;
    padding: 4px;
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 10pt;
    color: #ffffff;
    font-weight: normal;
}

.stepBar {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
}

.header-title {
    color: #036694;
    font-size: 30px;
}

.header-brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-divider {
    border: 1px solid #909090;
}

.bar {
    display: block;
    width: 29px;
    height: 5px;
    background-color: #cccccc;
    border-radius: 1px;
    margin-top: .3em;
}

@media(min-width: 768px) {
    .mobile-btn {
        display: none;
    }
}

@media(max-width: 768px) {
    .stepBar {
        flex-direction: column;
        overflow-y: hidden;
        height: 0px;
    }

    .header-divider {
        display: none;
    }

    .header-brand {
        justify-content: space-between;
    }
}

@media(max-width: 991px) {
    .stepBarText {
        font-family: arial;
        font-size: 12px;
        color: #ffffff;
        margin-left: -15px;
    }
}
