﻿#ProgressBarContainer a {
    font-size: 12px !important;
    line-height: 12px !important;
    text-decoration: none !important;
}
#ProgressBarContainer a:hover {
    color: unset;
}

.ProgressBarOuterContainer {
    height: 50px;
    margin-bottom: 5px;
}

.progressBar {
    min-width: inherit !important;
    max-width: inherit !important;
}

.progressBarInnerContainer {
    gap: 3px;
    margin-right: 0px;
    margin-left: 0px;
    min-width: 1410px;
    max-width: 1410px;
}


@media only screen and (max-width: 1600px) {

    .ProgressBarOuterContainer {
        height: 50px;
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 5px;
    }

    .progressBarInnerContainer {
        min-width: 1210px;
        max-width: 1210px;
    }
}

@media only screen and (max-width: 1400px) {

    .ProgressBarOuterContainer {
        overflow-x: scroll;
        overflow-y: hidden;
        margin-right: 95px;
        margin-left: 95px;
    }
}

@media only screen and (max-width: 1200px) {

    .ProgressBarOuterContainer {
        margin-right: 80px;
        margin-left: 80px;
    }
}

@media only screen and (max-width: 992px) {

    .ProgressBarOuterContainer {
        margin-right: 0px;
        margin-left: 0px;
    }
}

.progressBarPage {
    height: 30px;
    border: none;
    border-radius: 15px;
    text-align: center;
    min-width: 115px !important;
    white-space: nowrap !important;
}

.progressBarPageActive {
    height: 30px;
    border: 2px solid #333333;
    border-radius: 15px;
    text-align: center;
    min-width: 115px !important;
    white-space: nowrap !important;
}

.ProgressBarLabel {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
    align-self: center;
    cursor: default;
}

.progressBarButton {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: unset;
    
}

.progressBarButtonDiv {
    text-align: center;
    min-width: 100%;
    min-height: 100%;
    display: flex;
}

.progressBarButton-text {
    align-self: center;
    min-width: 100%;
    min-height: 100%;
    padding: 0px 5px 0px 5px;
}

.status-NOTSTARTED {
    background-color: #D9D9D9;
}
    .status-NOTSTARTED:hover {
        background-color: #cccccc;
    }

.status-INCOMPLETE {
    background-color: #FFCBCB;
}
    .status-INCOMPLETE:hover {
        background-color: #ffb3b3;
    }

.status-COMPLETE {
    background-color: #CEE9CF;
}
    .status-COMPLETE:hover {
        background-color: #b9dfba;
    }

.pb-color-alert {
    color: #A44343;
}

.pb-color-success {
    color: #026F06;
}

