/*-*/
/*  level bar
/*-*/
/*.table-header {
    position: sticky;
    top: 75px;
}*/
.level-bar-parent {
    min-height: 50px;
}
.level-bar {
    display: flex;
    flex-wrap: nowrap;
/*    background: #fff;*/
    width: 100%;
    z-index: 12;
    overflow: auto;
}
.level-bar.fixed{
    position: fixed;
    top:0;
    left:0;
    right:0;
    padding:0 10px;
    box-shadow:0 0 5px rgba(0,0,0,.1)
}
.level-bar .item{
    display: flex;
    flex: 0 0 auto;
    width: auto;
    align-items:center;
    font-size:.9em;
    font-weight:500;
    color:var(--gtextcolor);
}
.level-bar .item:after{
    width:6px;
}
.level-bar .item.active .body,.level-bar .item.active:after{
    background:#DC5328;
    color:#fff;
}
.level-bar .item .body{
    display: flex;
    flex: 0 0 auto;
    width: auto;
    background:#D0D1D7;
    border-radius:40px;
    box-shadow:0 0 3px rgba(0,0,0,.2);
}
.level-bar .item:after{
    z-index:1;
    content:" ";
    width:20px;
    height:10px;
    background:#D0D1D7;
}
.level-bar .item:last-child:after{
   display:none;
}
.level-bar .item .title{
   padding:5px 16px 5px 8px;
   display:flex;
   align-items:center;
   /*max-width:90px;*/
}
.level-bar .item .lbl {
   display: flex;
   align-items: center;
   background:#fff;
   padding:8px;
   border-radius:40px;
   color:var(--gtextcolor);
   font-weight:600;
   font-size:1.2em;
}
.level-bar .item .lbl span{
   font-size:.8em;
   font-weight:400;
}

/*-*/
/* order elements
/*-*/


.checkout-items-list > .item {
    padding: .5rem 0;
    border-top: solid 1px #ddd;
}

.checkout-items-list .img-parent {
    justify-content: start;
    max-height:90px!important;
    max-width:120px!important;
}

.checkout-items-list .img-parent img{
    padding: 0!important;
}
/*-*/
/* order elements
/*-*/

.productListCustom {
    position: absolute;
    background-color: var(--bgcolor);
    z-index: 10000;
    border: 1px solid #aaa;
    padding: 10px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 1px 4px rgba(0,0,0,.2)
}

/*-*/
/* order page table
/*-*/

@media (max-width: 767px) {
    .table-header {
        position: sticky;
        top:62px;
        z-index:1000;
    }
    .level-bar .item .title {
        max-width:90px;
    }
}
@media (max-width: 480px) {

    .level-bar{
        padding-bottom:10px;
        overflow-x:scroll;
        overflow-y:auto;
    }
    ::-webkit-scrollbar {
      height: 8px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #555;
    }
}