/* progress bar*/
.progress{
    height: .5em;
}
/* ariane */
.ariane-step {
    display: none;
    font-size: 1.5em;
    color: #039be5;
}
.ariane-step:hover {
    transition-duration: 0.2s;
    color: #17aff8;
}
@media only screen and (min-width: 993px) {
    .ariane-step {
        display: inline-flex;
    }
}
@media only screen and (min-width: 1200px) {
    .ariane-step {
        font-size: 1.8em;
    }
}

.ariane-item{
    color: #0a0a0a;
    cursor: default;
}
.ariane-item.disabled, .ariane-item:disabled {
    color: #aaa;
}
.ariane-item.active, .ariane-item:active {
    color: #0a92d4;
}
.ariane-item:hover:not(.disabled){
    cursor: pointer;
    color: #0b93d5;
}
