ol.onboarding {
    counter-reset: my-awesome-counter;
    list-style: none;
}

ol.onboarding > li {
    display: block;
    margin: 8px;
    padding-bottom: 10px;
    font-size: 1.1em;
    color: #222;
}

ol.onboarding > li > ul {
    padding-left: 10px;
}

ol.onboarding > li.complete {
    padding-bottom: 0;
    position: relative;
    color: #777777;
}

ol.onboarding > li.complete::after {
    content: ''; /* check mark */
    width: 15px;
    height: 15px;
    margin-right: 5px;
    right: 0;
    color: green;
    position: relative;
    font: bolder 20px 'Roboto', sans-serif;
}

ol.onboarding > li.complete::after {
    content: '\2714  Complete';
    position: relative;
    right: -5px;

    height: 100%;
    font-style: italic;
    font-size: 1em;
    color: green;
}

/* status decoration for sub items*/
ol.onboarding > li > ul > li::before {
    line-height: 12px;
    border-radius: 3px;
    border: 1px solid gray;
    background-color: #dedede;
    padding: 3px;
    top: -1px;
    left: -10px;
    position: relative;
    display: inline-block;
    box-sizing: unset;
    vertical-align: middle;
}


ol.onboarding > li > ul > li.complete::before {
    content: '\2714'; /* check mark */
    background-color: #0AAB2E;
    color: white;
    border-radius: 3px;
    padding: 3px;
}

/*ol.onboarding li.not-started::before {*/
/*    background-color: #dedede;*/
/*    border: 1px solid grey;*/
/*}*/


ol.onboarding > li > ul > li::before {
    content: '';
    height: 12px;
    width: 12px;
}

ol.onboarding > li > ul > li.undetermined::before {
    border: 1px solid gray;
    background-color: #8ecc8e;
}


ol.onboarding > li > ul > li.started::before {
    border: 1px solid gray;
}


ol.onboarding li.processing::before,
ol.onboarding > li > ul > li.processing::before {
    content: '\23F1 ';
    background: none;
    border: none;
    animation: blinker 1s infinite;
    color: green;
    left: -11px;
}

@keyframes blinker {
    50% {
        opacity: 0.5;
    }
}

/** hide sub steps **/
ol.onboarding > li > ul > li {
    display: none;
    list-style: none;
}

/* show sub tasks once major task has started */
ol.onboarding > li.started > ul > li {
    display: list-item;
}

/* if it's specifically hidden, make sure it is*/
ol.onboarding > li > ul > li.hidden {
    display: none;
}

ol.onboarding > li.complete > * { /** if top level is complete, hide everything underneath **/
    display: none;
}


ol.onboarding > .hidden {
    display: none !important;
}

li span.details {
    font-size: 0.95em;
    display: block;
    color: darkgrey;
    font-style: italic;
    line-height: 1.5;
    padding-top: 5px
}

ul.nav.nav-tabs {
    border-bottom: 1px solid #272e5e;
}

.nav-tabs a.nav-link.active {
    font-weight: bold;
    color: #272e5e;
}

.nav-tabs a.nav-link {
    color: white;
}

.nav-tabs a.nav-link:hover {
    color: white; /* an override */
}

.nav-tabs a.nav-link.active:hover {
    color: #272e5e;
}

.nav-item {
    display: block;
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    height: 42px; /* hacks */
}

@media (max-width: 480px) {
    .nav-item {
        width: 100%;
        border-bottom: 1px solid white;
    }

    .nav-item.active {
        text-align: center;
        margin: 0 auto;
        order: 1;
        font-size: 1.3em;
    }

    ul.nav.nav-tabs {
        margin: 0;
        padding: 0;
    }
}

.dash-container {
    display: flex;
    flex-wrap: wrap;
}

#selectedBusiness {
    margin: 0;
    font-weight: bold;
    font-size: 20px;

    height: auto;
    width: unset;
    max-width: 380px;

    background-color: white;
    border: 1px solid #979797;
    box-shadow: none;
}

.dash-card {
    margin: 10px;
    padding: 10px 20px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
    background-color: #fff;
    flex-grow: 1;
}

#orders {
    width: 100%;
}

summary {
    cursor: pointer;
    list-style-image: none;
    border-bottom: 1px solid #979797;
    font-size: 1.25rem;
    padding: 10px 0;
    display: unset;
    width: 100%;
}

summary::marker,
summary::-webkit-details-marker {
    display: none;
}

div.dash-card summary h3 {
    margin-bottom: 0;
}


div.dash-card summary {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
}

div.dash-card details > h4 {
    padding-top: 30px;
    text-align: center;
}

/* Datatables Tweaks */
/*    Reduce top search box separation */
.dataTables_wrapper > .row:first-child {
    height: 40px;
}

/** Click to Copy **/
*.clippable-active {
    border: 1px dashed blue;
}

/**.clippable:after {*/
/*    content: '✂️';*/
/*    cursor: pointer;*/
/*    color: blue;*/
/*    vertical-align: sub;*/
/*    font-size: .7em;*/
/*    position: absolute;*/
/*    display: inline;*/
/*}*/