﻿@charset "utf-8";
/* CSS Document */

body {
    font-family: 'Roboto', sans-serif;
    color: #434343;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.5;
}

ul {
    padding: 0;
    margin: 0;
}
ul, ol {
    list-style: none;
}
a{
  color: #434343;
}
a:hover , a:focus , a:active{
  color: #434343;
  text-decoration:none ;
  outline: none;
}
input:focus , textarea:focus , button:focus{
  outline: none;
}

section{
  position: relative;
}


/*header*/
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
    min-height: 60px;
    background: #263c97;
    border-bottom: 6px solid rgba(255, 255, 255, 0.15);
    padding: 5px 30px;
}
header .logo{
  float: left;
}
header nav{
  float: right;
}
header .nav-1{
  float: right;
  padding: 12px 0;
}
header .nav-1 > li{
  display: inline-block;
  position: relative;
}
header .nav-1 > li > a{
  padding: 0 12px;
  margin: 0 4px;
  color: #FFFFFF;
  letter-spacing: 1px;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s all;
  -webkit-transition: 0.1s all;
  -moz-transition: 0.1s all;
  -ms-transition: 0.1s all;
  -o-transition: 0.1s all;
}

.nav-top .navbar-nav {
  flex-direction: row;
}
.nav-top{
  color: #FFFFFF;
  letter-spacing: 1px;
  font-size: 16px;
}
.nav-top .nav-item > a{
  padding: 15px 15px;
  border-radius: 6px;
  min-height: 60px;
  float: left;
}
.nav-top .nav-item > a:hover, .nav-top .nav-item > a:active{
  background: rgba(0,0,0,0.1);
}
.nav-top .dropdown-toggle{
  color: #FFFFFF;
  line-height: 30px;
}
.nav-top .dropdown-toggle::after{
  display: none;
}
.nav-top .dropdown-toggle.arrow-down::after{
  display: inline-block;
  border: none;
  width: 10px;
  height: 6px;
  position: relative;
  top: 2px;
  background: url(../../img/down-arrow.svg) no-repeat center;
}
.nav-top .dropdown-toggle .count {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  right: 10px;
  text-align: center;
  font-size: 8px;
  line-height: 14px;
  letter-spacing: 0px;
  background: #F94213;
  color: #FFFFFF;
}
.nav-top .dropdown-toggle span{
  float: left;
}
    .nav-top .dropdown-toggle .user-image {
        width: 30px;
        height: 30px;
        overflow: hidden;
        float: left;
        margin-right: 12px;
        background: #5d659b url(../../img/user.svg) no-repeat center;
        border-radius: 30px;
    }
.nav-top .dropdown-menu{
  overflow: hidden;
  padding: 0;
  letter-spacing: 0;
  font-size: 14px;
}
.nav-top .dropdown-menu .dropdown-item{
  padding: 10px;
  border-bottom: 1px solid #e9ecef;
}
.nav-top .dropdown-item.active,.nav-top .dropdown-item:active {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.notification-menu
{
  width: 280px;
}
.notification-menu .notification-items{
  max-height: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: hidden;
}
.notification-menu .notification-header {
  border-bottom: 1px solid #e9ecef;
  padding: 10px;
}
.notification-menu .notification-footer {
  text-align: center;
}
.notification-menu .notification-footer a{
  padding: 10px;
  display: block;
}
.notification-menu .notification-footer a:hover, .notification-footer a:active{
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.notification-menu .notification-items li a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    border-bottom: 1px solid #e9ecef;
    padding: 10px;
}
.notification-menu .notification-items li a:hover,.notification-menu .notification-items li a:active{
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

/*side nav*/
.side-nav{ 
  height:82vh;
  left: 0;
  top: 86px;
  bottom: 48px;
  z-index: 9;
  background: #EEEEEE;
  overflow-y: hidden; 
  -webkit-transition: -webkit-transform .3s ease-in-out,left .3s ease-in-out;
  -moz-transition: -moz-transform .3s ease-in-out,left .3s ease-in-out;
  -o-transition: -o-transform .3s ease-in-out,left .3s ease-in-out;
  transition: transform .3s ease-in-out,left .3s ease-in-out;
}

.side-nav .side-nav-menu li{
  width: 100%;
}
.side-nav .side-nav-menu li a{
  padding: 10px 20px;
  display: block;
  transition: 0.1s all;
}
    .side-nav .side-nav-menu li.active a {
        color: #263c97;
    }
.side-nav .side-nav-menu li a:hover, .side-nav .side-nav-menu li a:active {
    background: #e4e4e4;
    color: #263c97;
}
.side-nav .side-nav-menu li a .material-icons{
  position: relative;
  top: 5px;
  font-size: 22px;
  /*margin-right: 10px;*/
}

.content-wrapper{
  padding: 0px 0 0px 0;
  min-height: calc(100vh - 132px);
/*  margin-left: 250px;*/
  -webkit-transition: -webkit-transform .3s ease-in-out,margin .3s ease-in-out;
  -moz-transition: -moz-transform .3s ease-in-out,margin .3s ease-in-out;
  -o-transition: -o-transform .3s ease-in-out,margin .3s ease-in-out;
  transition: transform .3s ease-in-out,margin .3s ease-in-out;
}
.side-nav-hidden .side-nav{
    left: -250px;
}
.side-nav-hidden .content-wrapper{
    margin-left: 0;
}
.content {
    padding: 0px 15PX 15PX 15PX;
    /*min-height: 100vh;*/
}
.page-head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0 10px 0;   
    border-bottom: solid 2px #d4d0d0;
}
.page-head .l-sec{
  display: flex;
}
.page-head h1{
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
  margin-right: 0px;
  margin-bottom: 0;
}
.pull-right{
  float: right;
}

/*form controlls*/
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow:none;
}
.btn-primary .material-icons{
  font-size: 20px;
  position: relative;
  vertical-align:middle;
}
.btn-primary {
    color: #fff;
    background-color: #263c97;
    border-color: #2014d9;
    font-size: 14px;
}

    .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
        color: #fff;
        background-color: #11236e;
        border-color: #1531a4;
    }
    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #11236e;
        border-color: #1531a4;
    }
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow:none;
}
.form-control{
  font-size: .75rem;
  color: #717171;  
  border: 1px solid #CFCFCF;
  border-radius: 4px;
}
.form-control:focus {
   /* padding: 2px 25px 2px 5px;*/
    margin: 0px;
    outline: none;
    border-color: #9ecaed;
    box-shadow: 0 0 2px #9ecaed;
}
.search-box{
  width: 250px;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
}
.search-box .form-control{
  border: none;
}
.search-box .btn{
  height: 40px;
  line-height: 40px;
  color: #717171;
}
.search-box .btn:hover ,.search-box .btn:active{
  color: #F94213;
}
.search-box .btn .material-icons{
  
}
/*footer*/
footer {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    min-height: 25px;
    color: #0b0b0b;
    line-height: 10px;
    background: #ececec;
    border-top: 6px solid rgba(255, 255, 255, 0.15);
    padding: 5px 30px;
    z-index: 99999;
}
footer .copyright{
  float: left;
}
    footer .f-link {
        color: #0b0b0b;
        float: right;
    }


.login{
  min-height: 100vh;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: flex-end;
  padding-top: 86px;
  padding-bottom: 48px;
}

.login-bg{
  background: url(../img/login-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.form-login {
    width: 100%;
    max-width: 330px;
    padding:30px 15px;
    background:#FFFFFF;
    margin: 30px;
    border-radius: 6px;
}
.form-login .alert{
  margin-top: 15px;
}
.form-login .title{
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.form-login .form-control{
  padding-right: 40px;
  margin-bottom: 15px;
  position: relative;
}
.login-btn{
  position: relative;
  font-size: 16px;
  padding:8px 10px;
}
.login-btn .material-icons{
  float: right;
}
.login-btn::after{
  content: "";
  width: 20px;
  height: 14px;
  background: url(../img/arrow.svg) no-repeat center;
  position: absolute;
  right: 20px;
  top: 14px;
}

.email-input::after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/login-user.svg) no-repeat center;
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 9;
}
.password-input::after {
    content: "";
    width: 15px;
    height: 19px;
    background: url(../img/lock.svg) no-repeat center;
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 9;
}
.forgot-link{
  float: right;
  text-decoration: underline;
  color: #717171;
  font-size: 16px;
  margin-bottom: 15px;
  transition: 0.2s all;
}
.forgot-link:hover, .forgot-link:focus, .forgot-link:active{
  color: #F94213;
  text-decoration: underline;
}
/*table*/
.table-custom{
  background: #F0F0F0;
  border-radius: 6px;
}
.table-custom .action-btn{
  padding: 3px 3px;
  line-height: 12px;
  border-radius: 4px;
}
.table-custom .action-btn:hover, .table-custom .action-btn:active {
    color: #F94213;
    background: rgba(0,0,0,0.1);
}
.table-custom .material-icons{
  font-size: 20px;
  line-height: 18px;
}
.table-custom thead tr th{
  font-weight: 400 ;
  color: #434343;
  border-bottom: 1px solid #DBD7D7;
}
.table-custom tbody tr{
  color: #707070;
}
.table-custom .table td,.table-custom .table th{
  padding:0.60rem 0.50rem;
}
.text-green{
  color: #28A745;
}
.text-red{
  color: #DC3545;
}

.pagination-wrap{
  padding: 10px 0;
  display: flex;
  justify-content: flex-end;
}
.page-item.active .page-link {
  background-color: #f94213;
  border-color: #f94213;
}
.page-link {
  line-height: 1.25;
  color: #CFCFCF;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
    color: #f94213;
}
.page-link:focus {
    box-shadow: none;
}
@media (max-width: 767px){
  .hidden-xs {
    display: none;
  }
}
.fooer-font{
    font-size:12px;
}

.tbl-selectable {
    /*color: #007bff !important;
    text-decoration: underline !important;
    background-color: transparent !important;*/
}

.btn-defaul-style {
    margin: 9px !important;
    width: 90px !important;
    height: 40px !important;
    line-height:0.8px;
}

.loading-cover {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    /*filter: alpha(Opacity=80);*/
    opacity: 0.8;
    z-index: 1000;
    background: linear-gradient( rgba(255, 255, 255, 0.5), rgba(255, 255, 255, .5) ), url(../img/Loading.gif) center no-repeat;
}

.loading-text {
    font-size: 24px;
    position: fixed;
    width: 20%; /* Set your desired with */
    top: 73%;
    left: 50%;
    margin-top: -10%; /* Changes with height. */
    margin-left: -10%; /* Your width divided by 2. */
    text-align: center;
    z-index: 1001;
}
.grid-action-vlg {
    width: 50px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    display: block;
}
.grid-action-display-vlg {
    display: block;   
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}
    .grid-action-display-vlg:hover {
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.13)
    }
    .grid-action-display-vlg a {
       text-decoration:none !important;
    }
.align-right {
    text-align: right !important;
}
.grid-textbox {
    padding: 0px;
    padding-right: 5px;
    padding-left: 5px;
    height: 30px;
    display: block;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-password {
    width: 100%;
    max-width: 330px;
    padding: 30px 15px;
    background: #FFFFFF;
    margin: 30px;
    border-radius: 6px;
    margin-right: 120px;
}
.span-tilte{
    width:450px;
}
.button-default-style {
    margin-right: 10px;
    width: 100PX;
    height: 33px;
    padding: 0px;
}
.span-tilte {
    font-size: 20px;
    font-weight: 400;
    font-style: initial;
    font-weight: 500;
}
.dataTables_wrapper {
    border-bottom: solid 1px #d5d0d0;
    padding-bottom: 10px;
}
.trn-grid {
   

}
    .trn-grid td {        
        border: 1px solid #c7b9b9 !important;
        padding: 0px;
    }
    .trn-grid tr {       
        padding: 0px;
    }

.grid-form-control {
    font-size: .75rem;
    color: #717171;
    border: none;   
    display: block;
    width: 100%;
    padding: 3px;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;     
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.label-form-control {
    font-size: .75rem;
    color: #717171;
    border: none !important;
    display: block;
    width: 100%;
    padding: 3px;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;  
}
.text-aligh-right {
    text-align: right!important;
}

.btn-success .material-icons {
    font-size: 15px;
    position: relative;
    vertical-align: middle;
}
.font12 {
    font-size: 12px!important;
}
.btn-selected {
    color: #fff !important;
    background-color: #263c97 !important;
    border-color: #2014d9 !important;
    font-size: 14px !important;
}
.tblHref {
    height: 100%;
    width: 100%;
    display: block;
    padding: 3px 10px;
    border-bottom: solid 1px #d7cbcb;
}
.tblDelHref {
    height: 100%;
    width: 100%;
    display: block;
    padding: 3px 10px;
  
}
.btn-defaul-style {
    width: 100px;
}
.side-nav-menu li a
{
    text-decoration:none;
}
#divAdd {
    height: calc(100vh - 160px);
    overflow-y: auto;
    overflow-x: hidden;
}
.grid-number {
    height: 32px !important;
    text-align: right !important;
    padding-right: 10px !important;
}

.grid-text {
    height: 32px !important;
    text-align: left !important;
    padding-left: 10px !important;
}

.grid-wrapper {
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .grid-wrapper .product-item {
        margin-bottom: 10px;
    }

    .grid-wrapper .grid-section-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .grid-wrapper .grid-section-title h2 {
            font-weight: 400;
            font-size: 20px;
            position: relative;
        }

    .grid-wrapper .grid-section-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding-bottom: 10px;
    }

.section-title {
    border-bottom: 1px solid #ebebeb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .section-title h2 {
        font-weight: 400;
        font-size: 22px;
        position: relative;
        color: #212529;
    }

        .section-title h2::before {
            width: 100%;
            height: 2px;
            content: '';
            background: #fcbe00;
            position: absolute;
            bottom: -8px;
            left: 0;
        }

    .section-title .see-all .bi {
        margin-left: 4px;
    }

    .section-title .tab-nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .section-title .tab-nav ul li {
            margin: 10px;
            position: relative;
        }

            .section-title .tab-nav ul li.active a {
                color: #fcbe00;
            }

            .section-title .tab-nav ul li.active:before {
                width: 40px;
                height: 2px;
                content: '';
                background: #fcbe00;
                position: absolute;
                left: 50%;
                margin-left: -20px;
                bottom: -10px;
            }

.cart-page {
    padding-bottom: 60px;
}

    .cart-page .cart-product-wrapper .cart-product-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #ebebeb;
        border-left: 1px solid #ebebeb;
        border-right: 1px solid #ebebeb;
    }

        .cart-page .cart-product-wrapper .cart-product-item:nth-child(1) {
            border-top: 1px solid #ebebeb;
        }

        .cart-page .cart-product-wrapper .cart-product-item .product-image {
            width: 140px;
            padding: 15px;
            margin-bottom: 0;
            margin-right: 10px;
        }

            .cart-page .cart-product-wrapper .cart-product-item .product-image img {
                width: 100%;
            }

        .cart-page .cart-product-wrapper .cart-product-item .product-detail {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            padding: 20px 0;
        }




@media screen and (max-width: 991.98px) {
    .cart-page .cart-product-wrapper .cart-product-item .product-detail {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.cart-page .cart-product-wrapper .cart-product-item .product-detail .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .cart-page .cart-product-wrapper .cart-product-item .product-detail .title h4 {
        font-size: 18px;
        font-weight: 500;
        color: #0068c9;
    }

.cart-page .cart-product-wrapper .cart-product-item .product-detail .btn-wrapper {
    padding: 0 15px;
}

@media screen and (max-width: 991.98px) {
    .cart-page .cart-product-wrapper .cart-product-item .product-detail .btn-wrapper {
        padding: 10px 0;
    }
}

.cart-page .cart-product-wrapper .cart-product-item .product-detail .btn-wrapper .btn {
    ;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 30px;
}

    .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .price {
        font-size: 18px;
        font-weight: 500;
    }

        .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .price span {
            font-weight: 400;
            margin-left: 10px;
        }

        .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .price.has-discount {
            color: #cc1414;
        }

            .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .price.has-discount span {
                color: #666;
            }

    .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty .bi {
            margin: 0 5px;
        }

        .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty .counter {
            margin-right: 15px;
        }

            .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty .counter .input-group .btn {
                width: 30px;
                height: 30px;
                padding: 0;
                border-color: #ced4da;
            }

                .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty .counter .input-group .btn:hover, .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty .counter .input-group .btn:focus, .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty .counter .input-group .btn:active {
                    color: #6c757d;
                    background-color: #fff;
                }

            .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty .counter .input-group .form-control {
                border-color: #ced4da;
                background: #fff;
                padding: 0;
                text-align: center;
                width: 30px;
                height: 30px;
            }

.cart-page .bottom-btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
}

    .cart-page .bottom-btn-wrapper .btn {
        ;
        font-weight: 500;
    }

        .cart-page .bottom-btn-wrapper .btn.btn-light {
            border: 1px solid #ebebeb;
        }

.cart-page .cart-summary {
    padding: 10px;
    border: 1px solid #ebebeb;
    margin-bottom: 10px;
    background: #f4f4f4;
    margin-bottom: 30px;
}

    .cart-page .cart-summary .title {
        border-bottom: 1px solid #ebebeb;
        margin-bottom: 0;
        padding: 10px 0;
        color: #212529;
    }

    .cart-page .cart-summary .totals {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 8px 0;
        font-size: 16px;
    }

    .cart-page .cart-summary .order-total {
        font-size: 20px;
        color: #212529;
        border-top: 1px solid #ebebeb;
        margin-bottom: 10px;
    }

    .cart-page .cart-summary .btn {
        font-weight: 500;
    }

@media screen and (max-width: 575.98px) {
    .cart-page .cart-product-wrapper .cart-product-item .product-image {
        width: 100px;
        padding: 5px;
    }

    .cart-page .cart-product-wrapper .cart-product-item .product-detail .title h4 {
        font-size: 16px;
    }

    .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .price {
        font-size: 16px;
    }
}

@media screen and (max-width: 360px) {
    .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty {
            margin-top: 6px;
        }

            .cart-page .cart-product-wrapper .cart-product-item .product-detail .price-qty .qty .bi-x {
                display: none;
            }
}
.oderhistory-header {
    padding: 10px;
    color: #fff;
    background: #263c97;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.align-center {
    vertical-align: middle;
    margin: auto;
    font-weight: 400;
    font-size: 22px;
}

.address-selected {
    background-color: #263c97;
    color: #fff;
}

.btn-defaul-style {
    width: 100px;
}

.btn-secondary {
    background-color: #fcbe00;
    border-color: #fcbe00;
}

    .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
        background-color: #fcb200;
        border-color: #fcb200;
    }

#tblItem thead th {
    border: solid 1px #fff;
    padding: 5px;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}
.sys-span {
    padding: 10px;
    margin-right: 20px;
    width: 100px px;
}