.main-header{
  background: var(--theme-color);
  align-items: center;
  border-bottom: 1px solid #061d51;
}
.main-header .form-group{
  margin-bottom: 0;
}
.sidebar-btn{
  font-size: 24px;
  color: #525f7f;
  margin-left: 20px;
}
.sidebar-btn:hover{
  color: #525f7f;
}
.cover-img{
  width: 100%;
  height: 250px;
}
.w-100{
  width: 100%;
}
.navbar-brand.menu{
  height: auto;
}
.cat-list-div{
  position: sticky;
  top: 85px;
}
.category-list{
  list-style: none;
  padding: 0;
  margin: 0;
  height: 80vh;
  overflow: auto;
}
.category-list li a{
  padding: 0.8rem 0;
  display: block;
  border-bottom: 1px solid #e7e7e7;
  color: #555;
}
.product-row{
  display: flex;
  flex-wrap: wrap;
}
.cart-icon{
  color: #32325d;
}
.cart-sidebar{
  box-shadow: 4px 0px 10px 5px #bdc2ce;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: #fff;
  width: 400px;
  right: -400px;
  transition: 0.2s ease;
}
.cart-sidebar.active{
  right: 0;
}
.side-cart-header{
  border-bottom: 1px solid #e7e7e7;
}
.side-cart-items{
  max-height: 75vh;
  overflow: auto;
}
.main-cart-title{
  padding: 15px 0;
  font-size: 18px;
  color: #000;
}
.side-cart-header .bs-canvas-close {
  position: absolute;
  right: 15px;
  top: 15px;
  opacity: 1;
  font-size: 26px;
}
.side-cart-items .cart-text h4{
  margin: 0;
}
.side-cart-items .cart-item {
  border-bottom: 1px solid #e7e7e7;
  padding: 10px 15px;
}
.side-cart-items .cart-product-img img{
  width: 100%;
  height: 60px;
  object-fit: contain;
}
.main-total-cart{
  display: flex;
  justify-content: space-between;
}
.checkout-cart .cart-checkout-btn{
  padding: 10px;
  text-decoration: none;
  font-size: 20px;
  color: #061d51;
  display: block;
  transition: 0.3s;
  background: var(--theme-color);
  text-align: center;
  border-radius: 5px;
  margin-top: 15px;
  border : 1px solid;
}
.checkout-cart .cart-checkout-btn:hover{
  background: #333;
  color: #fff;
}
.mobile-cat-btn{
  display: none;
}
.mobile-cat-btn a{
  color: #32325d;
  font-size: 16px;
}
.close-cat-list{
  display: none;
  position: absolute;
  right: 15px;
  top: 5px;
  background: #333;
  border: none;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  height: 30px;
  border-radius: 50%;
  width: 30px;
  line-height: 30px;
}
.option-margin{
  margin-right: 10px;
  display: inline-block;
}
.border1{
  border: 1px solid #e7e7e7;
}
.checkout-pay-box{
  border: 1px solid #e7e7e7;
  margin-top: 15px;
  margin-bottom: 15px;
}
.marginTop{
  margin-top: 15px;
}
.ml-auto{
  margin-left: auto;
}
.brand__logo{
  height:60px;
  padding:10px!important;
  margin-left:20px
}
.d-flex{
  display: flex;
  align-items: center;
}
.justify-center{
  justify-content: center;
}
.flex-justify{
 justify-content: space-between;
 align-items: stretch;
}
.select2-container {
  width: 100% !important;
}
.wizard>.content {
  margin: 0;
  padding: 0;
}
.wizard>.content>.body {
  width: 100%;
  padding: 0;
}
.cart-item-div{
  background:var(--theme-color);
  padding: 4px 0;
  color:black; 
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
} 
.cart-item-div:hover{
  background:white;
  color:#061d51; 
  box-shadow: 2px 2px 6px -3px;
}
.cart-item-qty{
  background:white;
  height:40px;
  padding-top:10px;
  color:#061d51; 
  border-width: 1px;
  border-style: solid;
  padding-left:40px; 
  padding-right:40px
}
.sidenav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120vh;
  z-index: 9990;
  display: block;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(34,41,47,.7);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.sidenav-overlay.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.left-sidebar{
  position: fixed;
  left: -290px;
  top: 0;
  padding-top: 15px;
  width: 290px;
  height: 100vh;
  overflow: auto;
  background: #fff;
  z-index: 9999;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #061d51;
}
.left-sidebar.visible{
  left: 0;
}
.left-sidebar a.mob-nav-link, .left-sidebar button{
  max-width: 100%;
  width: 85%;
  margin-top: 20px;
  margin-left: 20px;
  padding: 10px 10px;
  border: none;
  border-bottom: 0px solid #061d51;
  font-size: 14px;
  text-align: center;
  background: #fff;
  color: #061d51;
  transition: 0.2s ease;
  box-shadow: 4px 4px 12px 1px #b0afaf;
}
.left-sidebar a:hover, .left-sidebar button:hover{
  background: var(--theme-color);
}

.left-sidebar .logo-left img{
  height: 40px;
  margin: auto;
}

.left-sidebar .sidebar-footer{
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  width: 100%;
}
.left-sidebar .sidebar-footer p a, .left-sidebar .sidebar-footer p a:hover{
  color: #525f7f;
  background: transparent;
}


#online_indicator {
  font-size: 8px;
  vertical-align: middle;
}

.pt-0 {
  padding-top: 0px;
}
.f-right {
  float: right;
}
.mb-10 {
  margin-bottom: 10px;
}
.discount-badge {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 18px;
  padding: 7px;
}

.discount-badge-small {
  position: absolute;
  top: -2px;
  left: 10px;
  font-size: 12px;
  padding: 6px;
}
.product-info-table td, .product-info-table th {
  font-size: 12px;
}
.catalogue {
  max-height: 127px;
  margin: auto;
  margin-bottom: 18px;
}
.catalogue-title {
  display: flex;
  justify-content: center;
  font-size: 18px;
  margin: 0;
  line-height: 1;
  margin-bottom: 10px;
  text-align: center;
}
.bg-light-gray {
  background-color: #f8f8f8 !important;
}
.p-5-5 {
  padding: 5px 5px !important;
}
.m-4 {
  margin: 4px;
}
.skin-black .main-header, .skin-black-light .main-header {
  color: #525f7f !important;
}
.skin-black .main-header .navbar .nav .open>a {
  color: #999 !important;
}
.skin-black .main-header .navbar .nav>li>a:hover{
  color: #999 !important;
}
.skin-black .main-header .navbar > .sidebar-toggle:hover {
  color: #999 !important;
}
.mt-0{
  margin-top: 0 !important;
}
.table-pdf thead tr{
  background-color: #357ca5 !important;
  color: #fff;
}
.table-pdf thead tr th {
  color: #fff !important;
}
.blue-heading {
  background-color: #357ca5;
  color: #fff;
}

.table-pdf .odd {
    background-color: #DCE6F1;
}
.p-4{
  padding: 4px;
}
.p-10{
  padding: 10px !important;
}
.jquery-top-scrollbar{
    height: 6px !important;
}
.jquery-top-scrollbar div {
    height: 6px !important;
}
.scroll-top-bottom {
  width: 100%; 
  overflow: scroll;
}
.scroll-top-bottom::-webkit-scrollbar {
    height: 6px;
}

.scrolltop {
  display:none;
  width:100%;
  margin:0 auto;
  position:fixed;
  bottom:20px;
  right:10px; 
}
.scroll {
  position:absolute;
  right:20px;
  bottom:20px;
  background:#b2b2b2;
  background:rgba(178,178,178,0.7);
  padding:7px;
  text-align: center;
  margin: 0 0 0 0;
  cursor:pointer;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s; 
  border-radius: 6px;   
}
.scroll:hover {
  background:rgba(178,178,178,1.0);
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;    
}
.scroll:hover .fas {
  padding-top:-10px;
}
.scroll .fas {
  font-size:25px;
  margin-top:-5px;
  margin-left:1px;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;  
}

.f-left {
  float: left;
}
.align-left {
 text-align: left;
}
.align-right {
 text-align: right;
}

.table-pdf {
  border-collapse: collapse;
  width: 100%;
  border-spacing: 8px 10px;
}
.td-border td, .td-border th{
  border-bottom: 1px solid lightgrey;
  padding: 8px 5px;
}

.ws-nowrap {
  white-space:nowrap;
}

.btn-app>.fas, .btn-app>.fab{
    font-size: 20px;
    display: block;
}
.dropdown-menu>li>a>.fas{
    margin-right: 6px;
}
.mt-5 {
  margin-top: 5px !important;
}
.pos-form-actions{
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  bottom: 0px;
  background-color: #D1D5DC;
  width: 100%;
  z-index: 1000;
}
.mb-12 {
  margin-bottom: 12px !important;
}
.pb-0{
  padding-bottom: 0px !important;
}
.pr-12{
  padding-right: 12px !important;
}
.main-header .sidebar-toggle:before {
    content: "" !important;
}
.ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
} 
.margin-bottom-20 {
  margin-bottom: 20px !important;
}
.text-white {
  color: #fff;
}
.wizard > .steps > ul > li {
  width: 33.33% !important;
}
.wizard > .content {
  background: transparent !important;
}
legend {
  color: #fff;
  margin-bottom: 6px;
  border-bottom: none;
}
.left-col {
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.76),rgba(51, 51, 51, 0.32)),url(../img/back3.png); 
  text-align: center;
  background-size: cover;
  background-position: center;
}
.left-col-content {
  color: #1A7BF900;
  width: 100%;
}
.login-header {
  font-size: 27px;
  font-weight: 600;
}
.login-header a {
  color: #ffffff00;
}
.form-header {
  font-size: 18px;
  margin: 16px 0;
}
.btn-login {
  padding: 6px 52px !important;
}
.right-col {
  background-color: #243949;
  height: 100%;
  min-height: 100vh;
}

.right-col label {
  color: #061d51;
}

.right-col a, .text-white a {
  color: #061d51!important;
  font-weight: 600;
  font-size: 15px
}
.right-col a:hover, .text-white a:hover {
  color: #ccc;
}
.right-col-content {
  padding: 8%;
  background: linear-gradient(45deg, #337ab754, #337ab7a6) !important;
  box-shadow: 5px 5px 9px 4px #d8d8d8;
  margin-top: 0px;
  border-radius: 20px;
  max-width: 90%;
}
.right-col-content-register {
  padding: 3%;
  background: linear-gradient(45deg, #337ab754, #337ab7a6) !important;
  box-shadow: 5px 5px 9px 4px #d8d8d8;
  margin-top: 0px;
  border-radius: 20px;
  max-width: 90%;
  margin-bottom: 200px;
}
.form-control-feedback {
  top: 2px;
  right: 2px;
}

/* General Styling */
.login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.login-container {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
}

.register-container {
    background: #fff;
    padding: 50px;
    margin-bottom: 100px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
}

/* Left Section */
.login-left {
    background: #61a7fa;
    color: #042141;
    padding: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-left img {
    max-width: 150px;
    margin-bottom: 20px;
}

.login-left h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.login-left p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5;
}

.login-left .copyright {
    font-size: 14px;
    margin-top: 50px;
    opacity: 0.8;
}

/* Right Section */
.login-right {
    padding: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.login-right .form-control {
    border-radius: 5px;
    height: 45px;
    margin-bottom: 20px;
    margin-right: -25px;
}

.login-right .form-check-label {
    font-size: 14px;
}

.login-right .btn-primary {
    background-color: #61a7fa;
    border-color: #61a7fa;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    border-radius: 5px;
}

.login-right .btn-primary:hover {
    background-color: #61a7fa;
    border-color: #61a7fa;
}

.login-right a {
    color: #61a7fa;
    text-decoration: none;
}

.login-right a:hover {
    text-decoration: underline;
}

.login-logo {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        display: none;
    }

    .login-right {
        padding: 30px;
    }

    .register-container {
    background: #fff;
    padding: 10px;
    margin-bottom: 100px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    }
}

.login-screen {
  background:url(https://cdn.seropos.app/landing/images/login.jpg);
}

.login-screen .btn.btn-primary{
  background: #ffffff;
  border-color: #1b2c60;
  color: #061d51;
  font-size: 17px;
  border-radius: 50px;
}
.input_inline {
  width: 100%;
  display: inline-flex;
}
.input_inline input, .input_inline span {
  width: 50%;
}
.bg-manufacturing {
  background-color: #ff851b;
}
.img-thumbnail {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  transition: border .2s ease-in-out;
  padding: 4px;
  margin: 3px;
  text-align: center;
}
.img-thumbnail>.badge{
  position: absolute;
  top: -5px;
  right: -7px;
  font-size: 9px;
  font-weight: 400;
  cursor: pointer;
}
.navbar-nav>.notifications-menu>.dropdown-menu>li .menu {
  max-height: 350px;
}
.bg-aqua-lite {
  background-color: #7FFFD4;
}
.navbar-nav>.notifications-menu>.dropdown-menu>li .menu>li>a {
  white-space: normal;
}
.spacer {
  margin-top: 20px;
}
.eq-height-row {
    max-height: calc(100vh - 335px);
    overflow-y: scroll;
    overflow-x: hidden;
}
.div-overlay {
    cursor: not-allowed;
    background: #e9e9e9; 
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
}

.d-inline-table {
  display: inline-table;
}

.label-round{
  font-size: 8px;
  border-radius: 44%;
}
.table>tbody+tbody{
  border-top: 0;
}
.table-pl-12 td, .table-pl-12 th{
  padding-left: 12px !important;
}
table tbody td.pl-20-td{
  padding-left: 20px !important;
}
table.table-border-center > tbody > tr > td:first-child, 
table.table-border-center > thead > tr > th:first-child,
table.table-border-center > tfoot > tr > td:first-child
{
  border-right: 1px solid darkgray;
}
table.table-border-center-col > tbody > tr > td:nth-child(2), 
table.table-border-center-col > thead > tr > th:nth-child(2),
table.table-border-center-col > tfoot > tr > td:nth-child(2)
{
  border-right: 1px solid darkgray;
  border-left: 1px solid darkgray;
}
.bg-transparent{
  background-color: transparent !important;
}
.mb-0{
  margin-bottom: 0;
}

.nav-tabs>li>a{
  font-size: 18px;
  font-weight: 600;
}
.table-transparent, .table-transparent th {
    background-color: transparent !important;
    color: #000 !important;
}
.td-full-width {
  white-space:nowrap;
}
.font-17{
    font-size: 17px !important;
}
table.dataTable tbody>tr.selected{
    background-color: #B0BED9;
}
tr.footer-total > td {
    vertical-align: middle !important;
}
.error{
	color: red !important;
}
/*  pos tab */
div.pos-tab-container{
  z-index: 10;
  background-color: #ffffff;
  padding: 0 !important;
  border-radius: 4px;
  -moz-border-radius: 4px;
  border:1px solid #ddd;
    margin-bottom: 28px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  -moz-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  background-clip: padding-box;
}
div.pos-tab-menu{
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
div.pos-tab-menu div.list-group{
  margin-bottom: 0;
  margin-top: 50px;
}
div.pos-tab-menu div.list-group>a{
  margin-bottom: 0;
}
div.pos-tab-menu div.list-group>a .glyphicon,
div.pos-tab-menu div.list-group>a .fa {
  color: #5A55A3;
}
div.pos-tab-menu div.list-group>a:first-child{
  border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
}
div.pos-tab-menu div.list-group>a:last-child{
  border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
}
div.pos-tab-menu div.list-group>a.active,
div.pos-tab-menu div.list-group>a.active .glyphicon,
div.pos-tab-menu div.list-group>a.active .fa{
  background-color: #3c8dbc;
  color: #ffffff;
    border-color: #3c8dbc;
}
div.pos-tab-menu div.list-group>a.active:after{
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -13px;
  border-left: 0;
  border-bottom: 13px solid transparent;
  border-top: 13px solid transparent;
  border-left: 10px solid #3c8dbc;
}

div.pos-tab-content{
  background-color: #ffffff;
  /* border: 1px solid #eeeeee; */
  padding-left: 20px;
  padding-top: 20px;
}

div.pos-tab div.pos-tab-content:not(.active){
  display: none;
}

.add-product-price-table th{
	background-color: #5cb85c;
    color: white;
}
.blue-header th {
	background-color: #3c8dbc;
    color: white;
}
.table-th-green th{
	background-color: #5cb85c;
    color: white;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.active-cell {
    border: 2px dotted #3c8dbc !important;
}
.cursor-pointer{
    cursor: pointer !important;
}
.pos_product_div{
    max-height: calc(100vh - 390px);
    min-height: calc(100vh - 390px);
    overflow-y: auto;
    margin-bottom: 20px;
}
.bg-lightgray{
    background-color: #F0EDED !important;
}
.balance_due_box >li{
    padding: 11px 5px 0px 5px;
}
.option-div {
    padding: 15px;
    background-color: #d2d6de;
    color: #333;
    border:1px solid #d2d6de;
    cursor: pointer;
}
.option-div input[type="radio"]{
    display: none;
}
.option-div-group .icon {
    color: #d33724;
    display: none;
}
.option-div-group .option-div:hover{
    border:1px solid gray;
}
.option-div-group .active .icon{
    display: block;
}
.margin-left-10 {
    margin-left: 10px;
}
.margin-bottom-12{
    margin-bottom: 12px;
}
.bg-info{
    background-color: #00c0ef !important;
}
.bg-info > a{
    color: #FFFFFF !important;
}
.bg-info>a:hover{
    background-color: #337ab7 !important;
}
ul.dt-button-collection{
    background-color: #00c0ef;
}
td.details-control {
    background: url('/img/details_open.png') no-repeat center center;
    cursor: pointer;
}
tr.details td.details-control {
    background: url('/img/details_close.png') no-repeat center center;
}
.icheckbox_square-blue, .iradio_square-blue{
    margin-right: 10px;
    margin-left: 5px;
    border-style: solid;
    border: 1px;
}
.header-right-div{
    right: 10px;
    float: right;
    position: absolute;
    top: 15px;
}
.header-left-div{
    margin-top: 15px;
    display: inline-flex;
}
.m-8 {
    margin: 8px;
}
.mt-10{
    margin-top: 10px;
}
.mt-15{
    margin-top: 15px;
}
.m-5 {
    margin: 5px;
}
.icon-link{
  text-align:center;
  display:block;
  margin-bottom: 18px;
}
.icon-link > a {
    display:grid;
}
.icon-link > .badge{
    position: absolute;
    top: 20px;
    right: 67px;
}
.link-des {
    display: inline-block;
    text-align: left;
}

.navbar-nav>.user-menu>.dropdown-menu>li.user-header>img {
    border: none;
    height: auto;
    width: 100%;
    max-height: 120px;
}
.bg-light-green{
    background-color: #98D973 !important;
    color: #fff !important
}
.hover-q {
    font-size: 16px;
    margin-left: 3px;
    cursor: help;
}
.input-group-addon .hover-q{
    margin-left: 0px;
}
.text-bold{
    font-weight: bold;
}
.tour .popover-content{
    padding: 18px 14px;
}
.table-slim>tbody>tr>td, .table-slim>tbody>tr>th, .table-slim>tfoot>tr>td, .table-slim>tfoot>tr>th, .table-slim>thead>tr>td, .table-slim>thead>tr>th{
    padding: 1px;
}

.order-notification{
  vertical-align: middle;
  float: right; 
  margin-right: 25px; 
  padding-left: 20px; 
  padding-top: 17px
}

.order-notification-cat{
  vertical-align: middle;
  float: right; 
  padding-top: 17px
}

/* Custom scroll bar start*/

/* width */
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

/* Custom scroll bar end*/

.product_cell{
    height: 100px;
    padding: 1%;
}
.product_cell_div{
    height: 100% !important;
    width: 100% !important;
    text-align: center;
    vertical-align: middle;
    padding-top: 5px;
    cursor: pointer;
    overflow: hidden;
}

/*CSS to print receipts*/
.print_section{
    display: none;
}
@media print{
    .print_section{
        display: inline !important;
    }
    .modal-xl{
        width: 100% !important;
    }
    ::-webkit-scrollbar{
        display: none !important;
    }
    #toast-container {
      display: none;
    }
}

.input-number .btn-default{
    background-color: white;
    padding: 6px 9px;
}

.width-50{
    width: 50% !important;
}
.width-40{
    width: 40% !important;
}
.width-60{
    width: 60% !important;
}
.width-100{
    width: 100% !important;
}

.font-30{
    font-size: 30px !important;
}

.font-23{
    font-size: 23px !important;
}
.padding-5{
    padding: 5px !important;
}
.padding-10{
    padding: 10px !important;
}
.padding-side-15{
    /*padding-left: 15px !important;
    padding-right: 15px !important;*/
}
.text-muted-imp{
    color: #A3A3A3 !important;
}

.table-no-top-cell-border td{
    border-top: 0px !important;
    border-bottom: 0px !important;
}
.table-no-top-cell-border th{
    border-top: 0px !important;
    border-bottom: 0px !important;
}

.table-no-side-cell-border td{
    border-left: 0px !important;
    border-right: 0px !important;
}
.table-no-side-cell-border th{
    border-left: 0px !important;
    border-right: 0px !important;
}

.color-555 {
    color: #555555 !important;
}
.color-555 *{
    color: #555555 !important;
}
.color-white {
    color: white !important;
}
.col-no-padding{
    padding-left: 0px;
    padding-right: 0px;
}
.col-2px-padding{
    padding: 2px;
}

.pos-express-btn{
    font-size: 23px !important;
    overflow: hidden !important;
    height: 73px !important;
    white-space: normal;
}
.word-wrap{
    word-wrap: break-word !important;
}

.modal-xl{
    width: 90%; /* respsonsive width */
    margin-left: auto !important;
    margin-right: auto !important;
}
table.ajax_view tbody tr{
    cursor: pointer;
}
.bg-white{
    background-color: #fff;
}

.product-thumbnail-small{
    height: 50px;
    width: 50px;
}

table.table-text-center td, table.table-text-center th{
    vertical-align: middle !important;
}
.product_list{
    padding-left: 8px;
    padding-right: 8px;
}
.product_list.col-lg-3{
  width: 25%;
}
.pos_product_name {
  font-size: 19px;
  font-weight:500;
}
.product_box{
  width: 100%;
  /*padding-top: 5px;
  padding-bottom: 2px;*/
  margin-bottom: 10px;
  text-align: center;
  cursor: pointer;
  /*border: 1px solid darkgray;*/
  font-weight: 600;
  background-color: #fff;
  border-radius: 5px;
  padding-top: 7px;
  box-shadow: 4px 4px 8px -3px;
}
.product_box .image-container{
  /*width: 95%;*/
  height: 55px;
  margin: auto;
  /*padding-top: 5px;*/
  
}
.product_box .image-container img{
    height: 45px;
    /*width: 45px*/
}
.eq-height-row{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:flex;
    flex-wrap: wrap;
}
.eq-height-col{
    display: flex;
}

.product_box .text_div{
    margin-top: 3px;
}
.product_box .text{
    width: 100%;
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1; /* number of lines to show */
   line-height: 14px;        /* fallback */
   max-height: 14px;       /* fallback */
}
.small-box.bg-gray:hover{
    color: #000;
    text-decoration: none;
}

#calendar table tbody td {
    cursor: pointer;
}

.min-height-90hv{
    min-height: 90vh !important;
}

/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.text-link{
    cursor: pointer;
}

.text-link:hover{
    text-decoration: underline;
}

.v-center{
    vertical-align: middle !important;
}
.product_row td.v-center{
  vertical-align: initial !important;
  padding-top: 12px;
}

.bg-woocommerce{
  background-color: #9E458B !important;
}

/*.box, .info-box, .nav-tabs-custom, .external-event{
  box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2) !important;
}*/

.user_avatar {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin: 1px;
}

.fs-10 {
  font-size: 10px;
}

.timeline-lode-more-btn {
  margin-left: 50px;
  margin-top: 25px;
  padding-right: 12px;
  padding-left: 12px;
}

.pa-0 {
  padding: 0px !important;
}

.mt-56{
  margin-top: 56px !important;
}

.m-2{
  margin: 2px !important;
}

.treeview-menu i{
  display: none !important;
}
.treeview-menu a{
  padding-left: 25px !important;
  font-size: 95% !important;
}
.treeview-menu a::before{
  content: "\2192 ";
}
.marginL35{
  margin-left: -35px;
}
.scroll-height{
  height:calc(100vh - 200px); 
}
.total-row{
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  margin: 0;
  padding: 0 10px;
  background: #fff;
  z-index: 2; 
}
.total-row table{
  margin: 0;
}

.footer-btn.desk-hide{
  display: none;
}

.desktop-actions{
  display: none;
}
.mobile-fixed-menu-btn .total_quantity {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: red;
  color: #fff;
  border-radius: 50%;
  line-height: 18px;
  position: relative;
  top: -9px;
  right: 7px;
}
.print-btns {
  display: flex;
}
.print-btns li{
  display: flex;
  flex-direction: column;
  text-align: center;
}
.tab-lands{
  padding-top: 12px;
}
.input-group-btn .btn.btn-default{
  height: 34px;
}
.login-footer{
  margin-top: 25px;
}
.login-footer p a{
  color: #525f7f;
}
.social-icons {
  text-align: center;
  margin-top: 10px;
}
.social-icons li a {
  color: #002072;
}

@media only screen and (max-width: 600px) {
  .pos-form-actions{
    position: fixed;
  }
	.pos_product_div{
    min-height: 0vh!important;
    max-height: 48vh;
    overflow-y: auto;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 8px;
  }
	.table {
    margin-bottom: 130px!important;
  }
  .mr-8 {
    margin-right: 8px !important;
  }
}

@media (max-width: 767px) {
  .sidebar-btn {
    margin-top: 54px;
    margin-left: 35px;
  }
  .right-col-content {
    padding: 10% 40px;
    background: #fdfdfd;
    margin-top: 0px;
  }
  .brand__logo {
    width: 67px !important;
    height: auto;
    padding-left: 0px !important;
    /* margin: 10px; */
    margin-left: -45px !important;
    margin-top: -22px !important;
}
  .form-control-feedback {
    top: 2px;
    right: 5px;
  }
  .main-header .navbar-custom-menu {
      float: none !important;
      display: block !important;
  }
  .input-group, .form-control-table {
    margin-bottom: 3px;
  }
  .main-header .navbar-custom-menu .dropdown-menu {
      left: auto !important;
  }
  .skin-blue-light .main-header .navbar .dropdown-menu li a {
      color: #777;
  }
  .main-header {
    padding-bottom: 10px;
  }
  .main-header .navbar {
    height: auto; 
  }
  .box .box-body, .box .box-footer, .box .box-header {
    padding: 20px 15px;
  }
  #restaurant_module_span .col-sm-4 {
    width: 100%;
  }
  .res-menu-tab{
    display: none;
  }
  .res-menu-tab.active{
    display: block;
  }
  .cover-img{
    width: 100%;
    height: 100px;
  }
  .product_list.col-lg-3 {
    width: 33%;
  }
  .scroll-height {
    height: 70vh;
  }
  .edit-page .scroll-height {
    height: 75vh;
  }
  .pay-more-div{
    display: none;
  }
  .pay-more-div.active{
    display: block;
  }
  .eq-height-row {
    max-height: 42vh;
    min-height: 45vh;
  }
  .category-sidebar .custom-category {
    max-width: 100%;
    border-radius: 35px;
    box-shadow: 4px 4px 10px -3px;
    margin: 4px 2px 10px;
    border: none!important;
    border-width: 0!important;
  }
  .cart-item-qty {
    padding-left: 10px;
    padding-right: 10px;
    min-width: 40%;
    text-align: center;
  }
  .desktop-actions{
    display: flex;
  }
  .desktop-actions .btn.btn-flat{
    min-width: auto;
    font-size: 13px;
    height: auto;
  }
  .marginL35{
    margin-left: 0;
  }
  .mar-zero{
    margin: 0;
  }
  .mob-flex-justify{
    display: flex;
    justify-content: space-between;
  }
  .pos-form-actions .btn.btn-flat{
    display: none;
  }
  .pos-form-actions .mobile-visible.btn.btn-flat {
    display: block;
    min-width: auto;
  }

  .pr-12.no-padding{
    padding: 0 15px !important;
  }
  .mob-cart-value{
    flex-wrap: wrap;
  }
  .no-padding.cart-width{
    margin-bottom: 60px;
  }
  .mob-cart-value .cart-item-div {
    width: 32%;
    padding: 5px 0;
    height: auto;
    font-size: 12px;
  }
  .cat-list-div {
    position: fixed;
    top: 0;
    z-index: 9999;
    background: #fff;
    height: 100vh;
    width: 250px;
    left: -250px;
    transition: 0.2s ease all;
  }
  .cat-list-div.active{
    left: 0;
  }
  .close-cat-list{
    display: block;
  }
  .navbar-header.mobile-row-zero{
    margin: 0;
  }
  .eq-height-col {
    padding: 0 7px;
  }
  .catalogue-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .catalogue {
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
  }
  .eq-height-col .product-box .table{
    margin-bottom: 0 !important;
  }
  .box.product-box .box-body {
    padding: 7px;
  }
  .box.product-box .box-body .form-control {
    height: 30px;
    padding: 4px 12px;
  }
  .box.product-box{
    margin-bottom: 15px;
  }
  .eq-height-col .product-box .table tr th{
    padding-left: 0;
  }
  .cart-sidebar {
    width: 100%;
  }
  .side-cart-items {
    max-height: 65vh;
  }
  .mobile-cat-btn{
    display: block;
  }
  .padzx{
    padding: 0;
  }
  .mobile-row-zero span h3{
    font-size: 18px;
  }
  .checkout-pay-box {
    border: 0;
    padding: 0;
  }
  .pos_product_div .select-modifiers-btn, .pos_product_div .modifier_modal{
    display: none !important;
  }
  .panel-body .btn-group{
    margin-bottom: 10px;
  }
  .left-sidebar .sidebar-footer {
    position: relative;
    bottom: -15px;
  }
  .order-notification{
    float: left;
    padding-left: 48px;
    margin-top: -52px;
  }
  
}

@media only screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  .left-sidebar .sidebar-footer {
    position: relative;
    bottom: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .cat-list-div {
    position: fixed;
    top: 0;
    z-index: 9999;
    background: #fff;
    height: 100vh;
    width: 250px;
    left: -250px;
    transition: 0.2s ease all;
  }
  .cat-list-div.active{
    left: 0;
  }
  .close-cat-list{
    display: block;
  }
  .mobile-cat-btn{
    display: block;
  }
  .main-header .logo {
    height: 50px;
    line-height: 1;
  }
  .scroll-height {
    height: calc(100vh - 150px);
  }
  .eq-height-row {
    max-height: 70vh;
  }
  .category-sidebar .custom-category {
    max-width: 47%;
    border-radius: 35px;
    box-shadow: 2px 2px 5px 0px #555;
    margin: 4px 1% 10px;
  } 
  .pos-form-actions .btn.btn-flat {
    display: none;
  }
  .pos-form-actions .mobile-visible.btn.btn-flat {
    display: block;
    min-width: auto;
  }
  .res-menu-tab, .res-menu-tab.padZ{
    display: none;
    padding: 0 15px;
  }
  .res-menu-tab.active{
    display: block;
  }
  .mob-flex-justify {
    display: flex;
    justify-content: center;
  }
  .pay-more-div{
    display: none;
  }
  .pay-more-div.active{
    display: block;
  }
  .desktop-actions {
    display: flex;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1440px) {
   .brand__logo{
      height: 35px;
      padding: 10px !important;
   }
   .m-5 {
      margin: 3px;
  }
  .padd5{
    padding: 0 5px;
  }
  #restaurant_module_span .col-sm-4{
    padding: 0 5px;
  }
  .box .box-body, .box .box-footer, .box .box-header {
    padding: 15px 10px;
  }
  #product_brand_div{
    display: none;
  }
  .product_list.col-md-3 {
    width: 25%;
  }
  .marginL35 {
    margin-left: 0;
  }
  .no-padding {
    padding: 0 !important;
  }
  .scroll-height {
    min-height: 600px;
    max-height: calc(100vh - 150px);
  }
  .eq-height-row {
    max-height: calc(100vh - 290px);
  }
  .pos_product_div {
    min-height: 50vh!important;
    max-height: 50vh;
  }
  .input-number .btn-default {
    padding: 6px 5px;
  }
  .input-group-addon, .input-group-btn .btn {
    padding: 6px 6px;
  }
  .cart-padding{
    padding: 0 15px!important;
  }
  .padZ{
    padding: 0;
  }
  .padL{
    padding-left: 0;
  }
  .padR{
    padding-right: 0;
  }
  li.custom-category{
    font-size: 12px;
  }
}


@media only screen and (max-width: 1024px) {
   .pos_form_totals{
        margin-bottom: 40px;
    }
    .tab-lands{
      padding-top: 10px;
    }
}