﻿    .row

{
    margin: 0;
    padding: 0;
}

.Order-details {
    font-size: 14px;
    font-weight: 500;
}

/*ol.progtrckr {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    ol.progtrckr li {
        display: inline-block;
        text-align: center;
        line-height: 3.5em;
    }

    ol.progtrckr[data-progtrckr-steps="2"] li {
        width: 49%;
    }

    ol.progtrckr[data-progtrckr-steps="3"] li {
        width: 33%;
    }

    ol.progtrckr[data-progtrckr-steps="4"] li {
        width: 24%;
    }

    ol.progtrckr[data-progtrckr-steps="5"] li {
        width: 19%;
    }

    ol.progtrckr[data-progtrckr-steps="6"] li {
        width: 16%;
    }

    ol.progtrckr[data-progtrckr-steps="7"] li {
        width: 14%;
    }

    ol.progtrckr[data-progtrckr-steps="8"] li {
        width: 12%;
    }

    ol.progtrckr[data-progtrckr-steps="9"] li {
        width: 11%;
    }

    ol.progtrckr li.progtrckr-done {
        color: black;
        border-top: 4px solid #038ed6;
    }

    ol.progtrckr li.progtrckr-todo {
        color: silver;
        border-top: 4px solid silver;
    }

    ol.progtrckr li:after {
        content: "\00a0\00a0";
    }

    ol.progtrckr li:before {
        position: relative;
        top: -1.5em;
        float: left;
        left: 50%;
        line-height: 1em;
    }

    ol.progtrckr li.progtrckr-done:before {
        content: "\2713";
        color: white;
        background-color: #038ed6;
        height: 2.2em;
        width: 2.2em;
        line-height: 2.2em;
        border: none;
        border-radius: 2.2em;
    }

    ol.progtrckr li.progtrckr-todo:before {
        content: "\039F";
        color: silver;
        background-color: white;
        font-size: 2.2em;
        top: -0.6em;
    }*/


.root {
    padding: 3rem 1.5rem;
    border-radius: 5px;
    /* box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3); */
    width: 100%;
    height: auto;
}

figure {
    display: flex;
}

    figure img {
        width: 8rem;
        height: 8rem;
        border-radius: 50%;
        border: 1px solid #f05a00;
        margin-right: 1.5rem;
    }

    figure figcaption {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

        figure figcaption h4 {
            font-size: 1.4rem;
            font-weight: 500;
        }

        figure figcaption h6 {
            font-size: 1rem;
            font-weight: 300;
        }

        figure figcaption h2 {
            font-size: 1.6rem;
            font-weight: 500;
        }

/* .order-track {
    margin-top: 2rem;
    padding: 0 1rem;
    border-top: 1px dashed #2c3e50;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
} */

.order-track-step {
    display: flex;
    height: 7rem;
}

    .order-track-step:last-child {
        overflow: hidden;
        height: 8rem;
    }

        .order-track-step:last-child .order-track-status span:last-of-type {
            display: none;
        }

.order-track-status {
    margin-right: 1.5rem;
    position: relative;
}

.order-track-status-dot {
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #7366ff;
}

.order-track-status-dot-2 {
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #e6e6e6;
}

.order-track-status-line {
    display: block;
    margin: 0 auto;
    width: 2px;
    height: 7rem;
    background: #7366ff;
}

.order-track-status-line-2 {
    display: block;
    margin: 0 auto;
    width: 2px;
    height: 7rem;
    background: #e6e6e6;
}

.order-track-text-stat {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 3px;
}

.order-track-text-sub {
    font-size: 14px;
    font-weight: 300;
}

.order-track {
    transition: all 0.3s height 0.3s;
    transform-origin: top center;
}

