/* Layout 1 */

.isures-order--wrap {
    background-color: #f8f8f8;
    color: var(--pos-font-color);
    overflow: hidden;
}


/* Navigation Categories */

ul.isures-order--cat_item {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    z-index: 9;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    height: 50px;
    padding: 0;
    margin: 0;
    background: #fff;
    -webkit-box-shadow: 3px 3px 20px 0 rgb(0 0 0 / 15%);
    box-shadow: 3px 3px 20px 0 rgb(0 0 0 / 15%);
}

ul.isures-order--cat_item li {
    list-style: none;
    display: inline-block;
    margin: 0;
    z-index: 2;
}

ul.isures-order--cat_item li,
ul.isures-order--cat_item li a {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

ul.isures-order--cat_item li.active {
    background: var(--isures-menuorder-primary);
}

ul.isures-order--cat_item li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 5px;
    transition: all 200ms ease-in-out;
}

ul.isures-order--cat_item li a img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 8px;
}

ul.isures-order--cat_item li.active a span {
    color: #fff;
}

ul.isures-order--cat_item li a span {
    display: block;
    color: #222;
    font-size: 14px;
}

.isures-order--cat_item .isures-count--item_cate {
    margin-left: 5px;
    display: inline-block;
}

#list-prod-wrap,
div#list-prod-wrap::-webkit-scrollbar-thumb,
.isures-imfo--mini_cart::-webkit-scrollbar-thumb {
    background-clip: content-box;
    background-color: #babac0;
    border: 4px solid transparent;
    border-radius: 8px;
    height: 56px;
}

div#list-prod-wrap::-webkit-scrollbar,
.isures-imfo--mini_cart::-webkit-scrollbar {
    width: 16px;
    background: 0px 0px;
}


/* cart */

.isures-flx--col {
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    -webkit-box-shadow: 3px 3px 6px 0 #e5e5e5;
    box-shadow: 3px 3px 6px 0 #e5e5e5;
    border-left: 1px solid #ccc;
}

.isures-mobile--details_cart {
    height: calc(100vh - 100px);
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    -webkit-box-shadow: 3px 3px 6px 0 #e5e5e5;
    box-shadow: 3px 3px 6px 0 #e5e5e5;
}

ul.isures-imfo--mini_cart {
    margin: 0;
    overflow-y: auto;
    height: calc(100% - 155px);
}


/* product wrap */

#list-prod-wrap {
    position: relative;
    height: calc(100vh - 108px);
    overflow: auto;
    padding: 10px 0;
    width: 100%;
    will-change: auto;
    background: #e5e4e6;
}


/* mobile. */

@media screen and (max-width: 767px) {
    .isures-mobile--details_cart {
        height: auto!important;
    }
    #list-prod-wrap {
        height: calc(100vh - 58px);
        padding-bottom: 50px;
        border-radius: 0;
    }
    .isures-order--wrap ul.isures-order--cat_item li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 15px;
        border-top: 1px solid #f1f1f1;
    }
    ul.isures-order--cat_item li.active {
        background: transparent;
    }
    ul.isures-order--cat_item li.active a span {
        color: #111;
        font-weight: bold;
    }
    .isures-mode--list .isures-wrap--items_prod .isures-elem--prod_item {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}


/* tablet */

@media screen and (min-width: 550px) {
    .isures-clear--empty_cart {
        float: right;
        padding: 15px 10px 15px 45px;
    }
}

@media screen and (min-width: 850px) {
    #list-prod-wrap {
        height: calc(100vh - 168px);
    }
}


/* style on PC */

@media screen and (min-width: 1024px) {
    #list-prod-wrap {
        height: calc(100vh - 108px);
    }
    .isures-mode--list .isures-wrap--items_prod .isures-elem--prod_item {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}