﻿/* wizard progress bar */
.progress {
    height: 10px;
    overflow: visible;
    background-color: var(--v-grey-lighter);
    margin-bottom: 2.5rem;
    border-radius: 15px;
}

.progress .progress-marker {
    position:relative;
}

.progress .progress-bar {
    position: relative;
    background: var(--v-primary-gradient);
    border-radius: 15px;
    width: 1px;
}

.progress .progress-white {
    width: 16px;
    height: 16px;
    line-height: 25px;
    border-radius: 50%;
    font-size: 13px;
    position: absolute;
    top: -4px;
    right: -2px;
    background: #fff;
}

.progress .progress-orange {
    width: 24px;
    height: 24px;
    line-height: 25px;
    border-radius: 50%;
    font-size: 13px;
    position: absolute;
    top: -8px;
    right: -6px;
    background: var(--v-primary-gradient);
}

.progress-value {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 25px;
    right: -36px;
    border-radius: 20px;
    background: var(--v-primary);
    padding: 5px 15px;
    width: 80px;
    text-align: center;
}

.progress-value:after {
    content: '';
    position: absolute;
    top: 13px;
    left: 66%;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-bottom-color: var(--v-primary);
    border-top: 0;
    margin-left: -20px;
    margin-top: -20px;
}

.progress.active .progress-bar {
    -webkit-transition: none !important;
    transition: none !important;
}

/* value: complete */
.progress-completed::-webkit-progress-value {
    background-color: var(--v-success) !important;
}

.progress-completed::-moz-progress-bar {
    background-color: var(--v-success) !important;
}

.progress-completed {
    color: var(--v-success);
}

/* review table progress bar */
progress {
    background-color: var(--v-grey-lighter);
    color: var(--v-primary);
    width: 100%;
    height: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

progress::-webkit-progress-bar {
    background-color: var(--v-grey-lighter);
    width: 100%;
    height: 12px;
}

progress::-webkit-progress-value {
    background-color: var(--v-primary) !important;
}

progress::-moz-progress-bar {
    background-color: var(--v-primary) !important;
}
