﻿:root {
  --primary: #502572;
  --secondary: #31D3AE;
  --tertiary: #ffffff;
  --greenbg: #02a499;
  --greentext: #02a499;
  --lightblue: #38a4f8;
  --grey-color: #4a5055;
  --light-grey-color: #76797a;
  --highlight-light: #ebf6ff;
  --text-color: #000000;
  --cool-grey: #9ca8b3;
  --font1: "Plus Jakarta Sans";
  --topNavBackground: #502572;
  --topNavColor: #fff;
  --sideNavBackground: #fff;
  --sideNavColor: #5B5B5B;
  --sideNavHoverColor: #ffffff;
  --sideNavhoverbg: #31D3AE;
  --sideNavColor: #5B5B5B;
}

/* ggfgfgh */

::-webkit-scrollbar {
  width: 6px;
  /* for vertical scrollbars */
  height: 10px;
  /* for horizontal scrollbars */
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #bbb;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

body {
  font-size: 13px;
}

a {
  color: var(--primary);
}

a,
a:hover {
  text-decoration: none;
}

.page-container {
  height: calc(100vh - 49px);
  margin-top: 49px;
  display: flex;
  align-items: stretch;
}

.content-flex {
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.content-area {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.footer-bar {
  background-color: #ffffff;
  color: var(--text-color);
  font-size: 10px;
  line-height: 16px;
  vertical-align: middle;
  padding-left: 10px;
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  bottom: 2px;
  padding: 1px 15px;
  z-index: 10;
}

.footer-bar a {
  color: var(--primary);
}

.dark {
  background-color: var(--primary);
  color: #ffffff;
}

.light {
  background-color: var(--topNavBackground);
  color: var(--topNavColor);
}

nav {
  display: flex;
  align-items: stretch;
  height: auto;
  padding: 10px 0;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

nav .nav-block.brand {
  padding-left: 10px;
  padding-right: 20px;
}

nav .nav-block.brand a {
  height: 100%;
  display: flex;
  align-items: center;
}

nav .nav-block.menu {
  flex-grow: 6;
}

nav .nav-block.right-block {
  flex-grow: 2;
}

ul.horizontal-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

ul.horizontal-menu li.menu-item {
  height: 100%;
  max-width: 50%;
  padding-left: 14px;
  padding-right: 14px;
}

ul.horizontal-menu li.menu-item:hover {
  background-color: var(--highlight-light);
}

ul.horizontal-menu li.menu-item a {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

ul.horizontal-menu li.menu-item a,
ul.horizontal-menu li.menu-item a:hover {
  color: var(--primary);
}

ul.horizontal-menu li.menu-item a i {
  margin-right: 4px;
}

.side-nav {
  background-color: var(--sideNavBackground);
  color: white;
  width: 270px;
  transition: 0.3s;
  position: relative;
  padding-top: 10px;
  height: calc(100vh - 50px);
}

.color-red {
  color: red !important;
}

.color-black {
  color: #000 !important;
}

.side-nav>ul.vertical-menu {
  height: 100%;
  overflow: auto;
}

ul.vertical-menu,
ul.vertical-menu .sub-menu {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

ul.vertical-menu li.menu-item {
  cursor: pointer;
  position: relative;
  padding: 0;
  padding-right: 10px;
}

ul.vertical-menu li.menu-item .sub-menu {
  /* transition: all 1s ease-out; */
  display: none;
}

ul.vertical-menu li.menu-item.has-sub:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 16px;
  top: 16px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  color: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
}

ul.vertical-menu li.menu-item.has-sub.menu-sub-open:after {
  transform: rotate(223deg);
  top: 19px;
}

ul.vertical-menu li.menu-item a:hover {
  background-color: var(--sideNavhoverbg);
}

ul.vertical-menu li.menu-item a {
  padding: 0px 3px;
  height: auto;
  width: 100%;
  display: block;
}

ul.vertical-menu li.menu-item a {
  color: var(--sideNavColor);
  text-decoration: none;
}

ul.vertical-menu li.menu-item a:hover {
  color: var(--sideNavHoverColor);
  text-decoration: none;
}

ul.vertical-menu li.menu-item a:hover .menu-icon {
  color: var(--sideNavHoverColor);
}

ul.vertical-menu li.menu-item a i {
  margin-right: 4px;
}

ul.vertical-menu li.menu-item .sub-menu li a {
  padding-left: 45px;
}

table {
  font-size: 0.9em;
}

table thead tr {
  font-weight: 300;
}

table thead tr th {
  padding: 10px;
  text-transform: capitalize;
  position: relative;
  outline: none;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font1);
  line-height: 16px;
  color: #292D32;
  border-right: 1px solid #DCDCDC;
  letter-spacing: 0.02em;
  z-index:1;
}

table:not(.no_whitespace) thead tr th {
  white-space: nowrap;
}

table thead tr th::after {
  position: absolute;
  right: 4px;
}

table tbody tr {
  border-bottom: 1px solid #e7e7e7;
}

.border-bot {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 20px;
}

/* table tbody tr:last-child {
  border-bottom: none;
} */

table tbody tr td,
table tfoot tr td {
    padding: 6px 15px;
    font-weight: 500;
    font-size: 12px;
    font-family: var(--font1);
    line-height: 15px;
    color: #040404;
    border: none;
    border: 1px solid #e6e6e6;
}

table tbody tr td {
  background: rgba(0, 0, 0, 0.02);
}

table tbody tr:nth-child(2n) td {
  background: #fff;
}

.panel {
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 3px;
}

.panel .panel-title {
  font-weight: bold;
  font-size: 14px;
  color: #000000;
}

.dataTables_wrapper .datatable-header,
.dataTables_wrapper .datatable-footer {
  display: flex;
  align-items: center;
}

.dataTables_wrapper .datatable-header .left-part,
.dataTables_wrapper .datatable-header .right-part,
.dataTables_wrapper .datatable-footer .left-part,
.dataTables_wrapper .datatable-footer .right-part {
  flex-grow: 6;
}

.dataTables_wrapper .datatable-header .left-part,
.dataTables_wrapper .datatable-footer .left-part {
  text-align: left;
}

.dataTables_wrapper .datatable-header .right-part,
.dataTables_wrapper .datatable-footer .right-part {
  text-align: right;
}

/* .dataTables_wrapper table,
.dataTables_wrapper table .odd,
.dataTables_wrapper table .even, */
.dataTables_wrapper .datatable-footer {
  background-color: #ffffff;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 5px;
  border-top: 1px solid #eaebef;
  padding-bottom: 0;
}

.dataTables_wrapper .datatable-content {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  background-color: #ffffff;
  /* padding: 10px 15px; */
  overflow: auto;
  height: calc(100vh - 253px);
  /* max-height: calc(100vh - 274px); */
  /* min-height: 170px; */
}

.dataTables_wrapper .datatable-content table.dataTable thead {
  position: relative;
}

.dataTables_wrapper .datatable-content table.dataTable thead th {
  position: sticky;
  top: -1px;
  z-index: 1;
}

.page-header {
  background-color: #f8f8fb;
  display: table;
  height: auto;
  position: -webkit-sticky;
  position: sticky;
  width: calc(100% - 265px);
  border-bottom: 1px solid #e3e3e3;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 9;
  display: flex;
  top: 0;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  padding: 11px 15px;
  background: #fff;
  border: none;
}

.page-body {
  padding: 0 5px;
  padding-top: 14px;
  position: relative;
}

.page-header .page-title {
  flex-grow: 6;
  font-size: 20px;
  color: #0E153A;
  line-height: 35px;
  min-height: 39px;
  width: 126px;
  height: 31px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.page-title .page-tools {
  flex-grow: 6;
}

.toolbar {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: right;
}

.btn {
  font-size: 14px;
  line-height: 16px;
  background-color: var(--primary);
  padding: 6px 11px;
  margin: 2px 4px;
  color: #ffffff;
  border-radius: 3px;
  font-weight: 400;
  min-width: 63px;
  border-color: var(--primary);
}

a.btn,
a.btn:hover {
  color: #ffffff;
  text-decoration: none;
}

.btn-primary.disabled, .btn-primary:disabled, .btn-primary:hover {
  background-color: var(--primary);
}

.btn.secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn.tertiary {
  background-color: var(--tertiary);
  color: var(--grey-color);
  border: 1px solid #aeb8c1;
}

.btn.tertiary:hover {
  color: var(--grey-color);
  opacity: 0.92;
}

.btn.greenbg {
    background-color: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.btn.lbluebg {
  background-color: var(--lightblue);
  color: #fff;
}

.greentext {
  color: var(--greentext) !important;
}

.lightblue {
  color: var(--lightblue) !important;
}

.dangertext {
  color: var(--danger);
}

.warningtext {
  color: var(--warning);
}

.remove {
  width: 0;
}

.page-content {
  transition: all 0.5s ease-in-out;
}

.dataTables_filter label {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.dataTables_filter label input[type="search"] {
  height: auto;
  border: solid 1px #dcdce6;
  max-width: 180px;
  padding: 6px 6px;
  border-radius: 4px;
  margin-left: 7px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 3px 0 rgba(236, 236, 241, 0.45);
  padding-left: 30px;
}

.dataTables_filter label input[type="search"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.1rem rgba(113, 106, 202, 0.25);
}

.datatable-header {
  margin-bottom: 10px;
}

.dataTables_length label {
  color: #000000;
  font-weight: 500;
  font-size: 13px;
  line-height: 33px;
}

.dataTables_length label select {
  float: right;
  margin-top: 3px;
  box-shadow: 0 2px 3px 0 rgba(236, 236, 241, 0.4);
}

.dataTables_paginate .page-link {
  border: none;
  color: #000000;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 5px 9px;
  background: transparent;
  box-shadow: none;
}

.dataTables_paginate .page-link:hover {
  color: var(--primary);
}

.dataTables_paginate .paginate_button.active {
  border-color: var(--primary);
}

.dataTables_paginate .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  /* border-radius: 5px; */
  color: #fff;
}

.dataTables_paginate .pagination {
  margin-bottom: 0;
  float: right;
}

.dataTables_paginate .paginate_button.previous .page-link,
.dataTables_paginate .paginate_button.next .page-link {
  font-size: 0;
}

.dataTables_paginate .paginate_button.previous .page-link::after {
  content: "";
  border: solid #292D32;
  border-width: 0px 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.dataTables_paginate .paginate_button {
  display: flex;
  align-items: center;
  border: 1px solid #E8E8E8;
}

.dataTables_paginate .paginate_button.next .page-link::after {
  content: "";
  border: solid #292D32;
  border-width: 0px 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.dataTables_paginate .paginate_button.next .page-link:hover::after,
.dataTables_paginate .paginate_button.previous .page-link:hover::after {
  border: solid var(--primary);
  border-width: 0px 2px 2px 0;
}

.btn:hover {
  color: #fff;
  opacity: 0.85;
}

.form-control {
  color: #0F0F0F;
  font-weight: 500;
  border: 1px solid #DCDCDC;
  height: auto;
  padding: 6px 9px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 16px;
}

.form-control::-webkit-input-placeholder {
  /* Edge */
  color: #a2adb8;
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a2adb8;
}

.form-control::placeholder {
  color: #a2adb8;
}

label {
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 16px;
  font-size: 13px;
  color: #000000;
}

.panel-box-title {
  margin-top: 6px;
  margin-bottom: 15px;
  color: #231f20;
  font-size: 16px;
  line-height: 1.56;
  font-weight: bold;
}

.panel-box {
  background-color: #ffffff;
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 12px;
}

table tbody tr td .btn {
  min-width: inherit;
  padding: 5px 10px;
  margin: 0;
  font-size: 14px;
}

.hide_column {
  display: none !important;
}

.right-btn {
  float: right;
  margin-bottom: 20px;
}

.center-btn {
  margin: 0 auto;
  display: table;
}

.a-center {
  align-items: center;
}

.center-btn {
  margin: 0 auto;
  display: table;
}

.close-icon {
  color: #ee647c;
  border: 1px solid #ee647c;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.close2-icon {
  color: #ee647c;
  /* border: 1px solid #ee647c; */
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 50px; */
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
}

td .edit-icon {
  color: #f8b425;
}

td .tick-icon {
  color: var(--greenbg);
  font-size: 16px;
  cursor: pointer;
}

.close-icon:hover {
  color: #fff;
  background-color: #ee647c;
}

/* .datepicker.form-control {
  padding: 10px 10px;
} */

.btn i,
button i {
  margin-right: 5px;
}

.checbox-cs {
  position: relative;
  padding-left: 26px;
  margin-top: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checbox-cs input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checbox-cs .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
}

.checbox-cs.top-10 .checkmark {
  top: -11px;
}

.checbox-cs input[type="radio"]+.checkmark,
.checbox-cs input[type="radio"]+.checkmark:after {
  border-radius: 50px;
}

.checbox-cs:hover input~.checkmark {
  background-color: transparent;
}

.checbox-cs input:checked~.checkmark {
  background-color: transparent;
}

.checbox-cs .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checbox-cs input:checked~.checkmark:after {
  display: block;
}

.menu-icon {
  width: 32px;
  height: 22px;
  color: var(--sideNavColor);
  padding-left: 2px;
  padding-top: 2px;
  margin-left: 8px;
  margin-right: 8px;
  float: left;
}

ul.profile-options {
  margin: 0px;
  padding: 0px;
  list-style: none;
  padding-right: 25px;
}

ul.profile-options:after {
  content: "";
  clear: both;
}

ul.profile-options li {
  float: right;
  min-width: 42px;
  padding-left: 12px;
}

ul.profile-options li a,
ul.profile-options li a:hover {
  font-weight: 700;
  color: #454243;
}

.profile-options {
  height: 100%;
}

.profile-options svg {
  width: 24px;
  height: 24px;
}

.checbox-cs .checkmark:after {
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 3px;
}

.row-clickable tr:hover td {
  background-color: rgb(221 221 221 / 40%);
}

.row-clickable tr td {
  cursor: pointer;
}

.user-name {
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: #4f4f4f;
  padding: 0;
}

div.fade-out {
  opacity: 0 !important;
}

div[page-state] {
  transition: all 0.5s ease-in-out;
  opacity: 1;
}
.modal-box .panel-box-title {
  font-size: 16px;
  line-height: 22px;
  margin-top: 6px;
  margin-bottom: 0;
  /* border-bottom: 2px solid #E8E8E8; */
  padding-bottom: 19px;
  color: #0E153A;
  font-weight: 600;
  margin-top: 0;
}

.modal-box .modal-head .panel-box-title {
    font-size: 20px;
    line-height: 25px;
    margin-top:6px;
}

.modal-box .page-foot {
  width: 100%;
  left: 0;
  padding: 0 10px;
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: #fff;
  border-top: 1px solid #e7e7e7;
}

.modal-box .page-foot.justify-end {
  justify-content: flex-end;
}

.modal-box .page-foot .modal-box-controls {
  padding-top: 15px;
  padding-bottom: 15px;
  border: none;
}

.modal-box .page-foot .modal-box-controls .btn,
.modal-box .page-foot .modal-box-controls button {
  float: right;
  margin: 0 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 13px;
  line-height: 28px;
  padding: 0 9px;
  color: #0F0F0F;
  font-weight: 500;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown,
.select2-container--default .select2-selection--single {
  border: 1px solid #e0e4ea;
}

/* .panel-box {
  overflow: auto;
} */

/* .panel-box:only-child {
  min-height: calc(100vh - 175px);
} */

#toggle-sidenav {
  position: absolute;
  top: 7px;
  right: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 105;
  cursor: pointer;
  border-radius: 0;
  background: #D9D9D9;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

#toggle-sidenav::after {
  content: "";
  border: solid #888888;
  border-width: 0px 1px 1px 0;
  display: inline-block;
  transform: rotate(134deg);
  -webkit-transform: rotate(134deg);
  position: relative;
  left: 1px;
  width: 6px;
  height: 6px;
}

.sidenav .menu-item .menu-text {
  height: 0;
  width: 0;
  overflow: hidden;
  display: inline-block;
}

.sidenav span.menu-text {
  width: calc(100% - 40px);
  float: left;
  white-space: nowrap;
  overflow: hidden;
}

.sidenav #toggle-sidenav::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: -1px;
}

.orders-main-home .box-ordho .title {
  font-size: 20px;
  font-weight: 400;
  color: #a6b0ba;
  font-weight: 600;
  text-transform: uppercase;
}

.orders-main-home .box-ordho .count {
  font-size: 41px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.orders-main-home .box-ordho .panel-box {
  padding: 25px 20px;
  margin-bottom: 0;
  min-height: 100%;
  box-shadow: 0px 0px 20px rgba(92, 111, 139, 0.12);
  border-radius: 9px;
}

.orders-main-home .box-ordho {
  margin-bottom: 30px;
}

/*.orders-main-home .box-ordho:nth-child(2n) .count {
  color: #f8b425;
}

.orders-main-home .box-ordho:nth-child(3n) .count {
  color: #02a499;
}

.orders-main-home .box-ordho:nth-child(4n) .count {
  color: #716aca;
}

.orders-main-home .box-ordho:nth-child(5n) .count {
  color: #f48c9e;
}*/

#signOut {
  position: relative;
  top: 3px;
  cursor: pointer;
}

.login-form #btnSignin {
    padding: 12px 0;
    margin: 0;
}

#sidenav .menu-item>a.active {
  background: var(--sideNavhoverbg);
}

#sidenav .menu-item>a.active .menu-icon {
    color: var(--sideNavHoverColor);
}

#sidenav .menu-item>a.active .menu-text {
  color: var(--sideNavHoverColor);
}

div#sidenav .menu-item.has-sub>a.active:after {
  border-color: var(--sideNavHoverColor);
}

#sidenav .menu-item>a.active .menu-icon {
  color: var(--sideNavHoverColor);
}

table tr td input {
  padding: 10px 10px;
}

.dataTables_wrapper table thead th.sorting_asc:after {
  content: "\2191";
  float: right;
}

.dataTables_wrapper table thead th.sorting_desc:after {
  content: "\2193";
  float: right;
}

.dataTables_wrapper .sorting,
.dataTables_wrapper .sorting_desc,
.dataTables_wrapper .sorting_asc {
  cursor: pointer;
}

.btn[disabled] {
  cursor: no-drop;
  opacity: 0.7;
}

.auto-complete-dropdown .productSearchTitle {
  color: #000;
  font-weight: 700;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auto-complete-dropdown .productSearchSKU {
  color: var(--grey-color);
  font-weight: 700;
  font-size: 12px;
}

.auto-complete-dropdown ul li {
  padding: 3px 8px;
  border: #eee;
  border-bottom: 1px solid #eaebef;
  /* padding-right: 70px; */
}

/* .matech-autocomplete-wrapper .circular circle {
  stroke: var(--primary);
} */

.matech-autocomplete-wrapper .loader {
  display: none;
  margin: 0;
  width: 24px;
  height: 24px;
  top: 7px;
  transform: unset;
  right: 8px;
  margin-top: 0;
  z-index: 99999;
}

.matech-autocomplete-wrapper .circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

svg {
  background-color: transparent;
  fill: currentColor;
  width: 24px;
  height: 24px;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite,
    color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@-webkit-keyframes color {

  100%,
  0% {
    stroke: #d62d20;
  }

  40% {
    stroke: #0057e7;
  }

  66% {
    stroke: #008744;
  }

  80%,
  90% {
    stroke: #ffa700;
  }
}

@keyframes color {

  100%,
  0% {
    stroke: #d62d20;
  }

  40% {
    stroke: #0057e7;
  }

  66% {
    stroke: #008744;
  }

  80%,
  90% {
    stroke: #ffa700;
  }
}

.po-filter-table+.filters-table {
  top: 58px;
}

.filters-table {
  position: absolute;
  right: 15px;
  top: 0;
  display: flex;
  align-items: center;
}

.filters-table label {
  width: auto;
  font-size: 13px;
  min-width: 50px;
}

/* .filters-table .form-control {
  margin-left: 8px;
} */

tr.table-tr {
  background: #f9fafc;
}

tr.table-tr table thead th {
  color: #707f8c;
}

table tbody tr.tr.table-tr td,
table tfoot tr.tr.table-tr td {
  padding: 5px 10px 8px;
}

span.Out {
  color: #ed516b;
}

span.In {
  color: #02a499;
}

span.form-control {
  min-height: 38px;
}

.step-pg {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.step-pg span.step-no {
  border: 2px solid #909090;
  color: #909090;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 600;
  margin: 0 30px;
  position: relative;
  line-height: 0;
}

.step-pg span.step-no::before {
  display: block;
  content: "";
  width: 60px;
  height: 2px;
  background: #a8b2bc;
  position: absolute;
  right: -62px;
}

.step-pg span.step-no:last-child::before {
  display: none;
}

.step-pg span.step-no.active {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
}

.field-box {
  width: 400px;
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 40px;
}

.step-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: #000000;
  font-weight: normal;
}

.info-cs {
  background: #66d666;
  color: #fff;
  text-align: center;
  padding: 7px 10px;
  border-radius: 50px;
  line-height: 1;
  margin-bottom: 10px;
}

.warning {
  background: #f8b425e0;
}

.detail-box .form-group label {
  text-transform: uppercase;
  margin-bottom: 3px;
  display: block;
  color: #6f767e;
  line-height: 1.67;
  font-weight: bold;
  font-size: 13px;
}

.detail-box .form-group span.form-control {
  padding: 0;
  border: none;
  min-width: auto;
  min-height: inherit;
  word-break: break-word;
  transition: 0.3s;
  color: #000000;
  line-height: 1.25;
  font-weight: 500;
  font-size: 15px;
}

.detail-box .form-group a.form-control {
  padding: 0;
  border: none;
  min-width: auto;
  color: #000000;
  min-height: inherit;
  word-break: break-word;
  transition: 0.3s;
  line-height: 1.25;
  font-weight: 500;
  font-size: 15px;
}

.detail-box .form-group a:link.form-control {
  color: var(--primary);
}

.detail-box .form-group a:link.form-control:hover {
  /* color: var(--primary); */
  opacity: 0.8;
}

.detail-box .form-group a.form-control:focus {
  border: none;
  box-shadow: none;
}

.detail-box .form-group {
  margin-bottom: 15px;
}

.step-bx .btn {
  margin: 0 auto;
  display: table;
}

.info-step-boxs {
  box-shadow: 0px 0px 9px 0px #dbe0e6;
  margin-bottom: 30px;
}

.info-step-boxs .info-step-box {
  border: 1px solid #dbe0e6;
  padding-top: 15px;
  padding-bottom: 15px;
}

.info-step-boxs .info-step-box label {
  display: block;
  margin-bottom: 0;
  color: #7c838a;
  font-weight: 700;
  font-size: 14px;
}

.info-step-boxs .info-step-box span {
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
}

.inner-table thead {
  border-top: 3px solid #9ca8b3;
  border-bottom: 3px solid #9ca8b3;
}

.inner-table thead th {
  color: #8d9399;
  padding: 5px 10px;
}

table.inner-table tbody tr {
  border-bottom: 1px solid #e2e5e8;
}

table.inner-table tbody tr td {
  color: #3a3a3a;
  font-weight: 700;
}

.inner-table {
  margin-bottom: 30px;
}

.step-pg span.step-no.tick {
  font-size: 0;
  background: #02a499;
  border-color: #02a499;
  cursor: pointer;
}

.step-pg span.step-no.tick {
  font-size: 0;
}

.step-pg span.step-no.tick::after {
  width: 8px;
  height: 16px;
  top: -1px;
}

.btn.arrow-btn::after {
  content: "";
  border: solid #fff;
  border-width: 0px 2px 2px 0;
  display: inline-block;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: relative;
  left: 1px;
  width: 10px;
  height: 10px;
  left: 5px;
}

.product-image {
  height: 500px;
}

#wh-order-main {
  margin-top: 45px;
}

.progress {
  height: 10px;
  border-radius: 20px;
  margin-right: 7px;
  width: 140px;
  max-width: 100%;
  float: left;
  top: 4px;
  position: relative;
}

.progress-bar {
  background-color: var(--primary);
}

.progress+.progess_percent {
  font-weight: normal;
  font-size: 12px;
  line-height: 1.67;
  color: #5b626b;
}

.progress+.progess_percent:after {
  display: inline-block;
  content: "%";
}

.panel-header {
  margin-left: -15px;
  margin-right: -15px;
  padding: 0 15px;
  border-bottom: 1px solid #e9eaee;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

#_modal_block_ui>div.modal-box.ovefloe_modal {
  overflow: auto;
}

#_modal_block_ui>div.modal-box.modal-large {
  width: 1000px;
  height: auto;
  max-height: 80%;
  overflow: auto;
}

#_modal_block_ui>div.modal-box.modal-small {
  width: 387px;
  min-width: inherit;
}

#_modal_block_ui>div.modal-box.modal-small.overflow_modal {
  overflow: auto;
}

#_modal_block_ui>div.modal-box.modal-small.modal-med {
  width: 650px;
  min-width: inherit;
  overflow: auto;
}

#_modal_block_ui>div.modal-box.modal-small.modal-med .panel-box-title,
#_modal_block_ui>div.modal-box.modal-small.overflow_modal .panel-box-title {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  margin-top: 10px;
  padding-top: 15px;
  margin-bottom: 0;
  padding-bottom: 12px;
}

#_modal_block_ui>div.modal-box.modal-small .panel-box-title {
    border: none;
    font-size: 22px;
    margin-top: 10px;
    line-height: 29px;
    padding: 0 15px;
    font-weight: 500;
    padding-bottom: 10px;
}

#_modal_block_ui>div.modal-box.modal-small:not(.modal-med) .form-control {
  margin-bottom: 20px;
  padding: 8px 20px;
  font-size: 14px;
  color: #343a40;
  font-weight: 500;
}

#_modal_block_ui>div.modal-box.modal-small:not(.modal-med) .form-control option {
  font-size: 12px;
}

.modal-box .detail-box {
  border-bottom: 1px solid #e9eaee;
  margin-bottom: 20px;
}

.modal-box .inner-label {
  font-size: 20px;
  color: #343a40;
  margin-bottom: 15px;
  text-align: left;
}

.modal-box table tbody tr:last-child {
  border-bottom: 1px solid #e7e7e7;
}

button.btn.modal-box-button.close-icon-btn {
  min-width: auto;
  padding: 0;
  display: inline-block;
  width: auto;
  position: absolute;
  top: 12px;
  background: transparent;
  color: #2D264B;
  font-size: 18px;
  right: 15px;
  line-height: 1;
  border: none;
  font-weight: 500;
}

.modal-box .table-wrapper {
  /* max-height: calc(100vh - 675px); */
  overflow: auto;
  margin-bottom: 20px;
}

.h5,
h5 {
  font-size: 1rem;
}

.add-item-form .btn {
  margin-bottom: 0;
  min-width: 65px;
  padding: 5px 5px;
}

.progress-bar[style="width: 100%;"] {
  background: #02a499;
}

.modal-box .modal-head {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  padding: 0 20px;
  padding-top: 5px;
  border-bottom: 2px solid #E8E8E8;
  margin-bottom: 20px;
}

.modal-box .page-body {
  padding: 0 20px;
}

.modal-box.modal-large .page-body {
  padding: 10px 40px;
}

.corousel-control-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.corousel-control-wrapper .carousel-control-next,
.corousel-control-wrapper .carousel-control-prev {
  position: inherit;
  display: inline-block;
  background: transparent;
  border: 2px solid #9f9f9f;
  width: 35px;
  height: 35px;
  border-radius: 30px;
  margin: 0 6px;
  opacity: 1;
}

.corousel-control-wrapper .carousel-control-prev::after {
  display: block;
  content: "";
  border: solid #777777;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: relative;
  top: 6px;
  left: 3px;
}

.corousel-control-wrapper .carousel-control-next::after {
  display: block;
  content: "";
  border: solid #777777;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  padding: 5px;
  position: relative;
  top: 6px;
  left: -2px;
}

.detail-box .product-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 5px;
}

.carousel .carousel-item img {
  margin: 0 auto;
  display: table;
}

.detail-box .detail-wrp .order-no {
  color: #798087;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
}

.detail-box .detail-wrp .name-cs {
  font-weight: 700;
  margin-bottom: 5px;
}

.detail-box .detail-wrp .name-cs a {
  color: var(--primary);
}

.detail-box .detail-wrp .name-cs a:hover {
  opacity: 0.8;
}

.detail-box .detail-wrp p {
  color: #343a40;
  font-weight: 600;
  margin-bottom: 3px;
  max-width: 300px;
  word-break: break-all;
}

.detail-box .detail-wrp {
  padding-top: 10px;
}

.detail-box .detail-wrp>div[class*="col-"] {
  border-bottom: 1px solid #e9eaee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.detail-box .detail-wrp .select-wrapper select {
  min-width: 150px;
  max-width: 100%;
  width: auto;
}

.detail-box .detail-wrp .select-wrapper {
  /* display: inline-block; */
  float: right;
}

.detail-box .detail-wrp .select-wrapper label {
  display: block;
  color: #231f20;
  line-height: 1.54;
  font-weight: 500;
  font-size: 13px;
}

.detail-box .detail-wrp .title-cs {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.detail-box .detail-wrp>.col-sm-4 input.form-control {
  margin-bottom: 15px;
}

/*.detail-box .detail-wrp .wrp-cus-inp , .detail-box .detail-wrp .form-group {position: relative;}
.detail-box .detail-wrp .tf-validate-error-message{
  position: absolute;
  bottom: 0;
  left: 0;
}
.detail-box .detail-wrp .form-group .tf-validate-error-message{left: 15px;} */

.login-logo {
  max-width: 200px;
}

.side-nav .sub-menu {
  /* display: block;
  position: fixed;
  z-index: 999;
  width: 200px;
  background-color: var(--sideNavBackground);
  color: #ffffff;
  left: 78px;
  height: calc(100% - 49px);
  top: 50px !important;
  bottom: inherit !important;
  padding-top: 10px;
  overflow: auto;
  left: 190px;
  box-shadow: 3px 7px 13px 0px #eee; */
}

.side-nav .sub-menu .menu-item a {
  padding: 8px 0;
  padding-left: 15px;
}

.side-nav .vertical-menu li.menu-item.has-sub:after {
  display: none;
}

.side-nav #toggle-sidenav:after {
  transform: rotate(136deg);
  margin-left: 0;
  transition: 0.2s;
}

.side-nav .menu-icon {
  margin: 0;
  padding-left: 0;
  height: 18px;
  width: 18px;
  padding: 0;
}

.btn.back-btn:hover {
  background: #a0acb6;
  color: #fff;
}

#add_cus {
  padding: 3px 8px;
  display: inline-block;
  min-width: inherit;
  text-align: center;
  cursor: pointer;
}

#add_cus i {
  margin-right: 0;
}

#customer-detail .matech-autocomplete-wrapper {
  width: calc(100% - 56px);
  float: left;
  margin-right: 15px;
}

.wrp-cus-inp {
  display: inline-block;
  width: 100%;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.login-form {
  background-color: white;
  margin: 0 auto;
  min-width: 25%;
  padding: 0;
  border-radius: 3px;
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 5px rgb(199 199 199 / 50%);
}

.barchart__bar {
  background: var(--primary);
}

h3 {
  text-align: center;
}

ul.vertical-menu li.menu-item.menu-sub-open {
  background: #1c63ce;
}

.form-group .form-control.error {
  border: 1px solid red;
}

.form-group label.error {
  color: red;
  font-size: 11px;
  padding-top: 5px;
  /* text-transform: capitalize; */
  font-weight: 500;
}

#card-info .row {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 10px;
}

.prd-image-wraper {
  display: inline-block;
  margin-right: 15px;
}

.ShipmentDate-wrapper {
  display: inline-block;
  position: relative;
}

label.ShipmentDate {
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  padding: 5px 25px;
  border-radius: 5px;
}

#imgFile {
  opacity: 0;
  position: absolute;
  left: 0;
}

div .comboTreeDropDownContainer ul {
  max-height: initial;
}

div .comboTreeDropDownContainer>ul {
  max-height: 250px;
  overflow: auto;
}

div .comboTreeDropDownContainer li:hover {
  background: #f0f6ff;
}

.mt-24 {
  margin-top: 24px;
}

.alignright {
  text-align: right;
}

.filters-table.po-filter-table {
  width: calc(100% - 30px);
}

.po-filter-table {
  margin-bottom: 10px;
}

.po-filter-table label {
  float: left;
  margin: 0;
  margin-right: 13px;
  min-width: 66px;
}

.po-filter-table select {
  width: 200px;
  margin: 0;
  box-shadow: 0 2px 3px 0 rgba(236, 236, 241, 0.45);
}

#porders-table_filter label input {
  position: relative;
  z-index: 1;
}

#order-items-detail2 .checbox-cs .checkmark,
.checkmark_table .checbox-cs .checkmark {
  top: -11px;
}

.aligncenter {
  text-align: center;
}

.ShipmentDate-wrapper {
  background: #fafafa;
  border: 4px solid #f1f1f1;
  height: 100%;
  width: 100%;
  border-radius: 0;
  color: #acacac;
  font-size: 49px;
  line-height: inherit;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 160px;
  height: 160px;
}

#imgFileedit,
.imgUploadInput {
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  position: absolute;
  left: 0;
}

label.ShipmentDate {
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  background: transparent;
  color: #acacac;
  padding: 0;
  margin: 0;
  font-size: 24px;
}

/* .page-custom-table {
  margin-top: 50px;
} */

.status-pill span {
  color: #80b742;
  font-weight: bold;
  font-size: 12px;
  padding: 0;
  /* 3px 14px */
  border-radius: 50px;
  text-transform: uppercase;
  line-height: 0px;
  vertical-align: middle;
}

.status-pillPending,
.status-pillProcessing,
.status-pillPartially,
.status-pillShipped,
.status-pillOn,
.status-pillCanceled {
  text-transform: uppercase;
  color: #34bfa3c4;
  font-size: 13px;
  padding: 0;
  border-radius: 50px;
  line-height: 2;
}

.sucess_color {
  color: #34bfa3c4;
}

.primary_color {
  color: var(--primary);
}

.status-pill.Canceled-status span,
.status-pillCanceled {
  color: #db2032;
}

.status-pill.Processing-status span,
.status-pillProcessing {
  color: #38a4f8;
}

.status-pill.Pending-status span,
.status-pillPending,
.yellow_color {
  color: #fd9e3f;
}

.status-pill.Hold-status span,
.status-pillOn {
  color: #343a40;
}

.status-pill.Partially.Shipped-status span,
.status-pillPartially {
  color: #16d0e8;
}

.bold {
  font-weight: bold;
}

#_modal_block_ui>div.modal-box {
  width: 600px;
  height: 330px;
  max-width: calc(100% - 30px);
  max-height: 88%;
  margin-bottom: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  padding-bottom: 0;
  min-height: inherit;
  height: auto;
  margin: 0 auto;
  overflow:auto;
}

.modal-box .m-portlet.m-portlet--full-height .m-portlet__body {
  height: auto;
}

button {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 6px 15px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
  transition: all 0.15s ease-in-out;
  min-width: 85px;
  text-transform: capitalize;
  margin: 2px 4px;
}

.full-width {
  width: 100%;
}

#userName .user-names {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  position: relative;
  top: 4px;
  text-align: right;
}

#userName .dropdown-menu {
  min-width: 150px;
  right: -45px;
  left: inherit !important;
  padding: 0;
  margin-top: 10px;
}

#userName .dropdown-menu li {
  display: block;
  width: 100%;
  padding: 0;
}

#userName .dropdown-menu li a {
  display: flex;
  padding: 7px 10px;
  transition: 0.3s;
  font-size: 11px;
  cursor: pointer;
  text-transform: capitalize;
}

#userName .dropdown-menu li a:hover {
  background: rgb(221 221 221 / 40%);
}

#userName .dropdown-menu li i {
  color: var(--primary);
  margin-right: 4px;
  font-size: 16px;
  min-width: 20px;
}

#userName .dropdown-menu li svg {
  color: var(--primary);
  margin-right: 4px;
  font-size: 16px;
  min-width: 20px;
}

#userName .dropdown-toggle::after {
  border-color: var(--topNavColor);
}

.dropdown-toggle::after {
  border: solid var(--secondary);
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-left: 8px;
}

.btn-white.dropdown-toggle::after {
  border-color: #5B5B5B;
}

#prd-img .col-lg-2 {
  margin-bottom: 20px;
}

button.img-del {
  position: absolute;
  background: #ff0000bf;
  padding: 0;
  width: 25px;
  min-width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 7px;
  top: -8px;
  line-height: inherit;
  margin: 0;
  border: 0;
  z-index: 1;
}

button.img-del i {
  margin: 0;
}

.upload-file>form {
  position: relative;
}

.forprint {
  display: none;
}

.forscreen {
  display: block;
}

#podraft {
  font-weight: bold;
  color: grey;
}

.prd-img-wrapper {
  width: 160px;
  height: 160px;
  display: table;
  margin: 0 auto;
  border: solid 1px #9ca8b3;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.prd-img-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

.prd-img-wrapper .img_background {
  background-size: contain;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

table td .img-wrapper {
  width: 35px;
  height: 35px;
  margin: 0 auto;
  border: 2px solid #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

table td .img-wrapper img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

table td .img-wrapper .img_background {
  background-size: contain;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .prd-img-wrapper {
    width: 118px;
    height: 118px;
  }

  .ShipmentDate-wrapper {
    width: 118px;
    height: 118px;
  }
}

.hideprint {
  display: table-cell !important;
}

.showprint {
  display: none !important;
}

.auto-complete-dropdown .productSearchTitle span {
  vertical-align: top;
}

/* .form-group label + .checbox-cs{display: block;} */

.dropdown-menu.cs-drop .dropdown-item {
  display: inline-block;
  padding: 6px 13px;
  line-height: 1;
  border-bottom: 1px solid #f5f0f0;
}

.dropdown-menu.cs-drop .dropdown-item.reset-btn {
  background: #f0f0f0;
}

.dropdown-menu .dropdown-item.reset-btn .checbox-cs {
  padding-left: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.dropdown-menu .dropdown-item.reset-btn .checbox-cs .checkmark {
  display: none;
}

ul.dropdown-menu {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 5px 10px;
  color: #5B5B5B;
  font-size: 13px;
  font-weight: 400;
}

.dropdown-menu li a:hover {
  background: rgb(221 221 221 / 40%);
}

.dropdown-menu.dropdown-menu-cs {
  border-radius: 5px;
  border: none;
  box-shadow: 0px 0px 5px 5px #eee;
  padding: 5px;
}

.dropdown-menu.dropdown-menu-cs li a {
  border-radius: 50px;
}

td.new_tab i {
  font-size: 16px;
  color: var(--primary);
}

table tfoot.border-line tr {
  border-top: 1px solid #858585;
}

table tfoot.border-line tr td {
  font-weight: bold !important;
  color: #000000 !important;
  text-transform: uppercase;
}

.cs-drop label {
  margin: 0;
  font-size: 12px;
}

.icon-abs i.fa {
  color: var(--primary);
}

.icon-abs button.btn-ico-abs {
  z-index: 1;
  position: absolute;
  top: 10px;
  right: 6px;
  cursor: pointer;
  background: transparent;
  padding: 0;
  min-width: inherit;
  margin: 0;
  line-height: 1;
}

.icon-abs input {
  padding-right: 20px;
}

.productSearchThumb {
  width: 55px;
  display: inline-block;
  padding-right: 10px;
  vertical-align: top;
}

.productSearchItem {}

.productSearchThumb+.productSearchInfo {
  width: calc(100% - 55px);
}

.productSearchInfo {
  display: inline-block;
}

.productSearchLine {}

.productSearchLine .label {
  color: var(--light-grey-color);
  font-size: 12px;
  padding-right: 6px;
}

.productSearchLine .value {
  color: var(--grey-color);
  font-weight: 700;
  font-size: 12px;
  padding-right: 6px;
}

/* table tbody tr.costchange{background: #ebf6ff;} */

/* css category */

.category_pro_main {
  display: flex;
  padding: 0;
}

.category_pro_main .category-tree-cs {
  min-width: 300px;
  background: #fff;
  height: calc(100vh - 220px);
  overflow: auto;
  position: sticky;
  top: 66px;
  background-color: #f7f7f7;
  max-height: 664px;
}

.category_pro_main .category-info {
  width: 100%;
  margin-left: 15px;
}

.category-tree-cs ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.category-tree-cs>ul>.menu-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
  position: relative;
}

.category-tree-cs .menu-item .menu-text {
  cursor: pointer;
  display: block;
  padding: 7px 15px;
  font-size: 12px;
  color: #343a40;
  font-weight: 500;
  line-height: 20px;
}

.category-tree-cs .sub-menu {
  display: none;
}

.category-tree-cs .menu-text.active+.sub-menu {
  display: block;
}

.category-tree-cs .menu-text:after {
  content: "";
  width: 9px;
  height: 9px;
  position: relative;
  display: inline-block;
  float: left;
  top: 5px;
  margin-right: 5px;
  min-width: 16px;
}

.category-tree-cs li.menu-item.has-sub>.menu-text:after {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
  color: #71767e;
  position: relative;
  display: inline-block;
  float: left;
  top: 6px;
  margin-right: 7px;
}

.category-tree-cs li.menu-item.menu-sub-open {
  background: transparent;
}

.category-tree-cs li.menu-item.active>.menu-text {
  background: #f0f6ff;
}

.category-tree-cs .menu-item {
  position: relative;
}

.category-tree-cs .sub-menu .menu-item .menu-text {
  padding-left: 48px;
}

.category-tree-cs .sub-menu .sub-menu .menu-item .menu-text {
  padding-left: 80px;
}

.category-tree-cs .sub-menu .sub-menu .sub-menu .menu-item .menu-text {
  padding-left: 112px;
}

.category-tree-cs .sub-menu .sub-menu .sub-menu .sub-menu .menu-item .menu-text {
  padding-left: 108px;
}

.category-tree-cs .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item .menu-text {
  padding-left: 128px;
}

.category-tree-cs .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item .menu-text {
  padding-left: 148px;
}

.category-tree-cs .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item .menu-text {
  padding-left: 168px;
}

.category-tree-cs .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item .menu-text {
  padding-left: 188px;
}

.category-tree-cs .sub-menu .menu-item .menu-text:before {
  display: block;
  content: "";
  background: #b9b9b9;
  height: 2px;
  width: 20px;
  position: absolute;
  left: 41px;
  top: 16px;
}

.category-tree-cs li.menu-item.has-sub::before {
  display: block;
  content: "";
  width: 1px;
  background: #b9b9b9;
  position: absolute;
  height: calc(100% - 45px);
  left: 40px;
  top: 28px;
  z-index: 1;
}

.category-tree-cs li.menu-item.has-sub li.menu-item.has-sub::before {
  left: 73px;
}

.category-tree-cs li.menu-item.has-sub li.menu-item.has-sub li.menu-item.has-sub::before {
  left: 106px;
}

.category-tree-cs .sub-menu .sub-menu .menu-item .menu-text:before {
  left: 73px;
}

.category-tree-cs .sub-menu .sub-menu .sub-menu .menu-item .menu-text:before {
  left: 106px;
}

.category-tree-cs .sub-menu .sub-menu .sub-menu .sub-menu .menu-item .menu-text:before {
  left: 126px;
}

.category-tree-cs .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu .menu-item .menu-text:before {
  left: 146px;
}

.skycat_tale_main {
  width: 100%;
  padding-right: 15px;
}

.skycat_tale_main table {
  width: 100%;
  margin-left: 15px;
}

.skycat_tale_main table tbody tr {
  cursor: pointer;
}

.skycat_tale_main table tbody tr:hover {
  background-color: #ebf6ff;
}

.btn-ico-abs[disabled] {
  cursor: no-drop !important;
}

.dropdown-menu.cs-drop {
  width: auto;
  max-width: 200px;
  max-height: 257px;
  overflow: auto;
  padding: 0;
  padding-top: 5px;
}

.btn.btn_tbcl.dropdown-toggle {
  float: right;
  margin-bottom: 5px;
  padding: 7px 7px;
  line-height: 1;
  min-width: auto;
  border-radius: 5px;
  box-shadow: 0 2px 3px 0 rgb(236 236 241 / 40%);
  border: solid 1px #ebebeb;
  background-color: #ffffff;
}

/* .btn.btn_tbcl.dropdown-toggle::before {
  display: inline-block;
  content: "Display";
} */

.btn.btn_tbcl.dropdown-toggle::before {
  display: inline-block;
  content: "\f085";
  font: normal normal normal 14px/1 FontAwesome;
  /* background-image: url(../assets/images/ic_display.svg); */
  width: 20px;
  height: 20px;
  /* background-repeat: no-repeat;
  background-size: auto;
  background-position: center; */
  color: var(--primary);
  font-size: 19px;
}

.btn.btn_tbcl.dropdown-toggle::after {
  display: none;
}

.btn.btn_tbcl.dropdown-toggle .fa {
  display: none;
}

.stck_unsh {
  position: absolute;
  right: -6px;
  top: 33px;
  font-size: 10px;
  font-weight: 500;
  text-transform: capitalize;
}

select#filter_catpromod {
  display: inline-block;
  width: auto;
  float: right;
  background-color: #fafafa;
  border: solid 1px #617793;
  border-radius: 5px;
  padding: 3px 8px;
  color: #231f20;
  font-size: 14px;
  margin-top: 10px;
}

select#filter_catpromod option {
  font-size: 12px;
}

.datatable-header .coloumn_filter .dt-button-collection .dropdown-menu {
  display: block;
  margin-top: 6px;
  max-height: 257px;
  overflow: auto;
  padding: 0;
  padding-top: 5px;
  width: 210px;
  left: inherit;
  right: 0;
  width: auto;
  min-width: 120px;
}

.datatable-header .coloumn_filter .dropdown-toggle+div+.dt-button-collection .dropdown-menu {
  width: auto;
  min-width: 120px;
}

.datatable-header .coloumn_filter .dropdown-menu .dt-button::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  float: left;
  background-color: #fff;
  border: 1px solid #cac8c8;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  top: 2px;
  min-width: 15px;
  min-height: 15px;
}

.datatable-header .coloumn_filter .dropdown-menu .dt-button.active::before {
  background: var(--secondary);
}

.datatable-header .coloumn_filter .dropdown-menu .dt-button {
  padding: 5px 10px;
  display: flex;
  background: transparent;
  color: #2a2627;
  font-weight: 600;
  font-size: 12px;
  border-bottom: 1px solid #f5f0f0;
  outline: none;
}

.datatable-header .coloumn_filter .dropdown-menu .dt-button.buttons-colvisRestore {
  background: #f0f0f0;
}

.datatable-header .coloumn_filter .dropdown-menu .dt-button.buttons-colvisRestore::before {
  display: none;
}

.datatable-header .coloumn_filter .dropdown-menu .dt-button.buttons-colvisRestore span {
  padding-left: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  display: block;
  width: 100%;
}

.popup_filter {
  position: fixed;
  top: 47px;
  right: 0;
  width: 300px;
  height: calc(100vh - 47px);
  background: #e7e8ea;
  z-index: 9999;
  max-width: 100%;
  padding: 20px 15px;
}

.popup_filter .modal_heading {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.datatable-header .coloumn_filter .buttons-collection {
  /* margin: 0;
  padding: 0px 7px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 2px 3px 0 rgb(236 236 241 / 40%);
  border: solid 1px #ebebeb;
  background-color: #ffffff; */
  min-width: inherit;
}

.datatable-header .coloumn_filter .buttons-collection.buttons-colvis {
  width: 30px;
  height: 30px;
  padding: 0 4px;
  border: 1px solid #DCDCDC;
  border-radius: 3px;
}

.datatable-header .coloumn_filter .buttons-collection.buttons-colvis svg {
  margin-right: 0;
}

.datatable-header .coloumn_filter .dt-button-collection {
  z-index: 2;
}

.datatable-header .coloumn_filter .buttons-collection svg {
  /* width: 18px;
  height: 18px; */
}

.datatable-header .coloumn_filter .buttons-collection.buttons-colvis svg {
  width: 13px;
  height: 13px;
}

.datatable-header .coloumn_filter .buttons-collection.buttons-colvis i {
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
  position: relative;
  top: 1px;
  left: 0px;
}

.datatable-header .coloumn_filter .buttons-collection i {
  font-size: 15px;
  color: #607793;
}

.datatable-header .coloumn_filter .buttons-collection.dropdown-toggle span {
  /* color: #607793;
  font-size: 13px; */
}

.datatable-header .coloumn_filter .buttons-collection::after {
  display: none;
}

/* .datatable-header .coloumn_filter{display: none;} */

.page-body.ovauto {
  overflow: auto;
  margin-bottom: 23px;
}

/* width */
.dataTables_wrapper .datatable-content::-webkit-scrollbar,
.table_innwrp::-webkit-scrollbar,
.page-body.ovauto::-webkit-scrollbar {
  height: 10px;
}

/* Track */
.dataTables_wrapper .datatable-content::-webkit-scrollbar-track,
.table_innwrp::-webkit-scrollbar-track,
.page-body.ovauto::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.dataTables_wrapper .datatable-content::-webkit-scrollbar-thumb,
.table_innwrp::-webkit-scrollbar-thumb,
.page-body.ovauto::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  cursor: pointer;
}

/* Handle on hover */
.dataTables_wrapper .datatable-content::-webkit-scrollbar-thumb:hover,
.table_innwrp::-webkit-scrollbar-thumb:hover,
.page-body.ovauto::-webkit-scrollbar-thumb:hover {
  background: #999999;
}

.inpic_wrp {
  position: relative;
}

nav .profile-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.chart-main .chart-box .chart-head {
  padding: 15px 15px;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  align-items: center;
}

.chart-main .chart-box .chart-head i {
  font-size: 22px;
  color: #57657a;
}

.chart-main .chart-box .inner-wrapper {
  padding: 15px;
}

.chart-main .chart-box {
  margin-bottom: 30px;
  box-shadow: 0px 0px 20px rgba(92, 111, 139, 0.12);
  border-radius: 9px;
  height: 100%;
}

.chart-main .chart-box .chart-head svg.menu-icon {
  width: 36px;
  height: 29px;
  margin: 0;
}

.chart-main .chart-box .chart-head span {
  color: #57657a;
  font-size: 17px;
  font-weight: 600;
  padding-left: 10px;
}

.chart-main .chart-canvas .inner-wrp {
  max-width: 300px;
  margin: 0 auto;
  display: table;
  width: 100%;
  padding-right: 20px;
}

.chart-main .info-chart table {
  width: 100%;
}

.chart-main .info-chart table tr td:first-child {
  padding: 0;
}

.chart-main .info-chart table tr td .color-cir {
  width: 10px;
  height: 10px;
  background: transparent;
  display: block;
  border-radius: 20px;
  float: right;
}

.chart-main .info-chart table tr td.title {
  font-size: 14px;
  color: #585c5f;
  font-weight: 600;
}

.chart-main .info-chart table tr td.number {
  text-align: right;
  font-size: 14px;
  color: #45494a;
  font-weight: 700;
}

/* css datable coloumn reorder */

table.DTCR_clonedTable.dataTable {
  position: absolute !important;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 202;
}

div.DTCR_pointer {
  width: 1px;
  background-color: #0259c4;
  z-index: 201;
}

.chart-canvas .middle-text {
  text-align: center;
  display: block;
  position: absolute;
  top: 42%;
  width: 100%;
  left: 0;
  z-index: -1;
}

.chart-canvas .middle-text .ord_no {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #00acff;
  line-height: 1;
  padding-bottom: 2px;
}

.chart-canvas .middle-text .order_name {
  display: block;
  font-size: 16px;
  color: #a6b0ba;
  font-weight: 600;
}

.info_bwrp {
  display: inline-block;
  position: relative;
  margin-left: 5px;
}

.info_bwrp>i {
  color: var(--primary);
  font-size: 16px;
}

.info_bwrp .tooltip_cs {
  position: absolute;
  left: -42px;
  width: 100px;
  background: #fff;
  color: #000;
  z-index: 10;
  padding: 10px;
  box-shadow: 0 0 3px 4px #eee;
  top: -45px;
}

.chart-main .info-chart table tbody tr:nth-child(1) .color-cir {
  background-color: #00acff;
}

.chart-main .info-chart table tbody tr:nth-child(2) .color-cir {
  background-color: #5096ff;
}

.chart-main .info-chart table tbody tr:nth-child(3) .color-cir {
  background-color: #76ddfb;
}

.chart-main .info-chart table tbody tr:nth-child(4) .color-cir {
  background-color: #7b828a;
}

.tooltip_cs .tooltiptext {
  visibility: hidden;
  width: 160px;
  box-shadow: 0px 0px 20px rgba(92, 111, 139, 0.12);
  border-radius: 9px;
  background-color: #fff;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  top: -85px;
  left: -73px;
  min-height: 70px;
}

table tbody tr:first-child td .tooltip_cs .tooltiptext {
  top: inherit;
  bottom: -85px;
}

table tbody tr:first-child td .tooltip_cs .tooltiptext::after {
  top: -13px;
  transform: rotate(180deg);
}

.tooltip_loader .loader {
  position: relative;
  top: 20px;
}

.tooltip_cs {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.tooltip_cs>i.fa {
  color: var(--primary);
  font-size: 12px;
  padding-left: 3px;
}

.tooltip_cs .tooltiptext .tooltip_bx {
  display: inline-block;
  width: 100%;
}

.tooltip_cs:hover .tooltiptext {
  visibility: visible;
  cursor: text;
}

.tooltip_cs .tooltiptext .name {
  color: #000;
  float: left;
  font-size: 11px;
  font-weight: 400;
}

.tooltip_cs .tooltiptext .data-name {
  color: var(--primary);
  float: right;
  font-size: 11px;
  font-weight: 400;
}

.tooltip_cs .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #71767e transparent transparent transparent;
}

.btn.btn-white {
  background: #fff;
  color: #5B5B5B;
  border: 1px solid #DCDCDC;
}
.btn.btn-white:hover {
    color: #5B5B5B;
}

.btn.btn-secondary, .btn-secondary:not(:disabled):not(.disabled):active {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  box-shadow: none;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.show>.btn-secondary.dropdown-toggle {
  background: var(--secondary);
  color: #fff;
  box-shadow: none;
  border-color: var(--secondary);
}

.show>.btn-secondary.dropdown-toggle:after {
  border-color: #fff;
}

.btn.btn-secondary svg {
  width: 16px;
  height: 16px;
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.btn.grey-brd {
  background: #fff;
  color: #9ca8b3;
  border: 1px solid #9ca8b3;
}

.btn.btn-grey {
  background: #f0f0f0;
  color: #212529;
  border: 1px solid #eaeaec;
}

.btn.btn-grey:hover {
  color: #212529;
}

.dataTables_wrapper table thead th.no-sort:after {
  display: none !important;
}

.page-header .tab-header {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  top: 10px;
  margin-left: -15px;
}

.page-header .tab-header ul.tab_list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.page-header .tab-header ul.tab_list li {
  display: inline-block;
  padding: 7px 15px;
  min-width: 90px;
  text-align: center;
  float: left;
  border-left: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 17px;
  color: #5B5B5B;
  font-weight: 500;
}

.page-header .tab-header ul.tab_list li.active {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
}

.datatable-header .search_datacs {
  display: inline-block;
  min-width: 316px;
}

#sidenav .menu-item.has-sub {}

#sidenav .menu-item.has-sub ul svg {
  display: none;
}

#sidenav .menu-item.has-sub ul .menu-text {
  font-size: 12px;
}

#sidenav .menu-item.has-sub ul .menu-text::before {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  background: #78aef7;
  position: relative;
  top: 8px;
  margin-right: 10px;
}

#sidenav .menu-item.has-sub ul .menu-text::before {
  display: none;
}

div#sidenav {
  width: 190px;
  min-width: 190px;
  padding: 30px 0 5px 10px;
}

#sidenav .menu-item.has-sub .sub-menu.hide {
  display: none;
}

div#sidenav .menu-item.has-sub .sub-menu.show {
  display: block;
}

div#sidenav .menu-item.has-sub>a:after {
  display: block;
  content: "";
  border: solid var(--sideNavColor);
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 0.15rem;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  right: 12px;
  top: 12px;
}

div#sidenav .menu-item.has-sub.hovered>a:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

div#sidenav .menu-item.has-sub:hover>a:hover:after {
  border-color: var(--sideNavHoverColor);
}

.side-nav>ul.vertical-menu::-webkit-scrollbar {
  width: 3px;
  /* for vertical scrollbars */
}

.side-nav .main-menu>li.menu-item:nth-child(1)>a::before {
  display: none;
}

.dropdown-menu .dropdown-item .checbox-cs .checkmark {
  height: 16px;
  width: 16px;
  top: 1px;
}

.dropdown-menu .dropdown-item .checbox-cs .checkmark:after {
  left: 1px;
  top: 1px;
  width: 12px;
  height: 12px;
}

.dropdown-menu .dropdown-item .checbox-cs {
  padding-left: 24px;
  width: 100%;
}

/* .btn.btn_tbcl.dropdown-toggle::after {
  border-top: 5px solid #949090;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: relative;
  top: 2px;
  left: 4px;
} */

body {
  font-family: var(--font1);
}

.checbox-cs input:disabled+.checkmark {
  cursor: no-drop;
  background: #e4e4e4;
}

.right_panel_header {
  /* display: flex; */
  margin-bottom: 0;
  align-items: center;
  list-style: none;
  padding-left: 50px;
  justify-content: space-between;
}

.right_panel_header #Warehouse {
  min-width: 113px;
  border: solid 1px #bbbcbe;
  background-color: #fafafa;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 13px;
  color: #231f20;
  line-height: 1.5;
  width: auto;
  max-width: 200px;
}

.right_panel_header #Warehouse option {
  font-size: 12px;
}

.right_panel_header .profile-options {
  width: 100%;
}

#_modal_block_ui>div.modal-box.modal-large#skubycat_modal {
  padding: 0;
}

#skubycat_modal.modal-box .panel-box-title {
  font-size: 22px;
  padding: 0 15px;
  line-height: 0.91;
  color: #343a40;
  font-weight: 500;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 0;
}

.category_pro_main .category-tree-cs li.menu-item.has-sub>.menu-text:after {
  border: 0;
  content: "+";
  transform: inherit;
  top: 1px;
  background-color: var(--primary);
  width: 16px;
  height: 16px;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  line-height: 16px;
}

.category_pro_main .category-tree-cs li.menu-item.has-sub.menu-sub-open>.menu-text:after {
  content: "-";
  padding-left: 2px;
}

.table_innwrp {
  overflow: auto;
  display: inline-block;
  width: 100%;
}

/* .tooltip_cutoff,
.datatabletooltip_cutoff .datatable-content {
  padding-top: 4rem;
  margin-top: -4rem;
} */
.po-filter-table.po-flter-hidden+.po-filter-table {
  top: 12px;
}

#skubycat_modal.modal-box button.btn.modal-box-button.close-icon-btn {
  right: 13px;
  top: 21px;
}

.dasboard-title {
  font-size: 25px;
  margin-bottom: 15px;
}

.orders-main-home .box-ordho .Pending+.count,
.orders-main-home .box-ordho .Draft+.count,
.orders-main-home .box-ordho .Low.Stock+.count {
  color: #f8b425;
}

/* .orders-main-home .box-ordho .Approved + .count{color: #ff820e;} */
.orders-main-home .box-ordho .Approved+.count {
  color: #716aca;
}

.orders-main-home .box-ordho .Processing+.count,
.orders-main-home .box-ordho .Reached+.count {
  color: #38a4f8;
}

.orders-main-home .box-ordho .Shipped+.count,
.orders-main-home .box-ordho .Sent+.count,
.orders-main-home .box-ordho .In.Stock+.count {
  color: #02a499;
}

.orders-main-home .box-ordho .Canceled+.count,
.orders-main-home .box-ordho .Out.of.Stock+.count {
  color: #ec4561;
}

.orders-main-home .box-ordho .Partially.Shipped+.count,
.orders-main-home .box-ordho .Partially.Sent+.count {
  color: #16d0e8;
}

.orders-main-home .box-ordho .On.Hold+.count,
.orders-main-home .box-ordho .Closed+.count {
  color: #ff820e;
}

select.grey-select {
  min-width: 113px;
  border: solid 1px #bbbcbe;
  background-color: #fafafa;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 13px;
  color: #231f20;
  line-height: 1.5;
  width: auto;
  max-width: 200px;
}

select.grey-select option {
  font-size: 12px;
}

.page-header .header_state {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.checbox-cs.radio input:checked~.checkmark,
.checbox-cs.radio .checkmark,
.checbox-cs.radio .checkmark:after {
  border-radius: 50%;
}

.customer_link {
  position: relative;
  top: 1px;
  font-size: 14px;
  padding-left: 3px;
}

.detail-box .form-group a[href].form-control, .order-no>a {
  color: var(--primary);
}

.detail-box .bold-text .form-group span.form-control {
  font-weight: 700;
  font-size: 17px;
}

.detail-box .bold-text .form-group label {
  font-weight: 700;
  font-size: 18px;
}

th.customer_width {
  min-width: 150px;
}

span.order_note {
  white-space: pre-wrap;
}

.detail-box .form-group span.form-control.order_note {
  font-size: 16px;
  font-weight: 700;
}

nav .nav-block.brand img.extra_image {
  display: none;
}

/* .currencySign::before{
  display: inline-block;
  content: "$";
} */

td.currencySign {
  white-space: nowrap;
}

td.currencySign.nocurrencysign::before {
  display: none;
}

.addrow_control .close-icon {
  float: left;
  position: relative;
  top: 2px;
}

.addrow_control {
  min-width: 65px;
}

.edit-icon {
  color: #f8b425;
  font-size: 17px;
  float: left;
  margin-right: 8px;
  cursor: pointer;
}

.page-header .breakcrumb {
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  color: var(--primary);
  margin-bottom: 0;
}

.page-header .breakcrumb a {
  padding-right: 15px;
}

.page-header .breakcrumb a.current {
  color: #9ca8b3;
}

.page-header .breakcrumb a:last-child::after {
  display: none;
}

.page-header .breakcrumb a::after {
  display: inline-block;
  content: "/";
  position: relative;
  right: -9px;
}

.disp_inh {
  display: inherit;
}

.dataTables_wrapper th .checkmark,
.dataTables_wrapper td .checkmark {
  top: -11px;
}

.btn-icon {
  width: 13px;
  height: 13px;
  margin-right: 5px;
  position: relative;
  top: -1px;
}

.page-header .page-title select.form-control {
  display: inline-block;
  width: 210px;
  max-width: 100%;
  font-size: 14px;
  color: #1d1e21;
  font-weight: normal;
  margin-left: 15px;
  /* box-shadow: none;
  outline: none; */
}

.page-header .page-title select.form-control option {
  font-size: 12px;
}

.dataTables_filter .search_icon {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 14px;
  top: 10px;
  z-index: 2;
}

.dataTables_filter .search_icon use {
  fill: #333547;
}

.dataTables_filter>label {
  position: relative;
}

.filter_dropdown {
  position: absolute;
  right: 3px;
  top: 11px;
  z-index: 2;
}

.btn.cool-grey {
  background: #9ca8b3;
}

.filter_dropdown .dropdown-toggle::after {
  display: none;
}

.filter_dropdown .dropdown_toggle_cs svg {
  margin-right: 10px;
}

.filter_dropdown .btn.dropdown_toggle_cs {
  padding: 4px 11px;
}

.dropdown-menu.dropdown_cs {
  left: inherit;
  right: 0;
  padding: 20px;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.13);
  background-color: #ffffff;
  width: 267px;
  max-height: calc(100vh - 199px);
  overflow: auto;
}

.dropdown-menu.dropdown_cs .close {
  outline: none;
  min-width: auto;
  position: absolute;
  right: 10px;
  top: 5px;
}

.dropdown-menu.dropdown_cs .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}

.dropdown-menu.dropdown_cs li label {
  font-size: 14px;
  line-height: 1.43;
  color: #1d1e21;
  font-weight: normal;
}

.dropdown-menu.dropdown_cs li {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}

.dropdown-menu.dropdown_cs li:last-child {
  margin-bottom: 0;
}

.filter_dropdown+div .datatable-header .coloumn_filter .buttons-collection.buttons-colvis {
  margin-right: 106px;
  margin-left: 15px;
}

.filter_dropdown+table .datatable-header .coloumn_filter .buttons-collection {
  margin-right: 106px;
}

select#allcustomer {
  min-width: 250px;
}

.select2-search__field:focus {
  outline: none;
  box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25);
  border-color: #80bdff;
}

.select2-results__option {
  font-size: 12px;
  padding: 4px 6px;
}

span#cart-num,
#notify-num {
  border: solid 1px #ffffff;
  background-color: #f26664;
  font-size: 11px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: #ffffff;
  width: 19px;
  height: 19px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: -2px;
  font-size: 8px;
  font-weight: 600;
  line-height: 18px;
  padding-left: 2px;
}

li#cart_li {
  position: relative;
}

.select2-container .select2-selection--single {
  height: 27px;
}

/* table coloumn classes */

th.title_width {
  min-width: 230px;
}

th.sku_width {
  min-width: 120px;
}

th.upc_width {
  min-width: 120px;
}

th.numberid_width {
  min-width: 110px;
}

th.OrdRefrence_width {
  min-width: 130px;
}

th.date_width {
  min-width: 120px;
}

th.vendor_width {
  min-width: 170px;
}

th.createdat_width {
  min-width: 150px;
}

th.createdby_width {
  min-width: 140px;
}

th.seller_width {
  min-width: 180px;
}

th.sellerrep_width {
  min-width: 130px;
}

th.status_width {
  min-width: 135px;
}

th.tracking_width {
  min-width: 130px;
}

th.name_width {
  min-width: 130px;
}

th.email_width {
  min-width: 130px;
}

th.role_width {
  min-width: 150px;
}

th.yesno_width {
  min-width: 120px;
}

th.city_width {
  min-width: 130px;
}

th.state_width {
  min-width: 130px;
}

th.country_width {
  min-width: 130px;
}

th.type_width {
  min-width: 120px;
}

th.contact_width {
  min-width: 130px;
}

th.qty_width {
  min-width: 100px;
}

th.batchcode_width {
  min-width: 190px;
}

th.shelf_width {
  min-width: 140px;
}

th.price_width {
  min-width: 120px;
}

th.warehouse_width {
  min-width: 130px;
}

th.address_width {
  min-width: 200px;
}

th.category_width {
  min-width: 170px;
}

th.designation_width {
  min-width: 140px;
}

.bg-grey,
.panel-box.bg-grey {
  background-color: #f8f8fb;
}

/* css picker tracking page mm */

.picker_track_tile .inner_wrap {
  height: 100%;
  border-radius: 5px;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  box-shadow: 0 2px 3px 0 rgba(236, 236, 241, 0.4);
  background-color: #ffffff;
  padding: 10px 14px;
}

.picker_track_tile .tile_head {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

.picker_track_tile .picker_name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: normal;
  text-align: left;
  color: var(--text-color);
  margin: 0;
  display: inline-block;
  width: calc(100% - 90px);
  padding-right: 5px;
}

.picker_track_tile .picker_time {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.44;
  color: var(--cool-grey);
  margin: 0;
  display: inline-block;
  float: right;
}

.picker_track_tile .title_count {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.44;
  margin-bottom: 7px;
}

.picker_track_tile .num_count {
  font-size: 20px;
  font-weight: 500;
  line-height: 0.83;
  text-align: left;
  color: var(--text-color);
  margin-bottom: 0;
}

.picker_track_tile .count_cs>div[class*="col-"]:first-child {
  padding-left: 15px;
}

.picker_track_tile .count_cs>div[class*="col-"] {
  padding-right: 5px;
  padding-left: 8px;
}

.picker_track_tile {
  padding-left: 0;
  padding-right: 15px;
  margin-bottom: 15px;
}

.picker_track_tile .count_cs {
  margin-bottom: 15px;
}

.picker_track_tile .status_picking {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.44;
  text-align: left;
  color: #38a4f8;
  text-transform: uppercase;
  margin-bottom: 0;
}

.picker_track_tile .number_picking {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.21;
  text-align: left;
  color: var(--text-color);
  margin-bottom: 0;
}

.picker_track_tile .out_ofde {
  font-size: 18px;
  font-weight: 600;
  line-height: 0.85;
  text-align: left;
  color: var(--text-color);
}

.picker_track_tile .bottom_picker_tile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* end css picker tracking page mm   */
#notifyList {
  /* top: 20px !important;
  left: -20px !important;
  background: #f8f8fb; */
  top: -16px !important;
  left: inherit !important;
  height: 100vh;
  overflow: auto;
  width: 330px;
  transform: inherit !important;
  max-width: 100vw;
  display: block;
  right: -500px;
  visibility: hidden;
  transition: 0.3s;
  ;
}

#notifyList::-webkit-scrollbar-track {
  background: #fff;
}


#notifyList.show {
  right: -52px;
  visibility: visible;
}

#notifyList .notify-header {
  background: #31a5f7;
  padding: 10px 12px;
  color: #fff;
  font-size: 15px;
  position: sticky;
  top: 0;
}

#notifyList .notify-header .close {
  color: #fff;
  text-shadow: none;
  opacity: 1;
  font-size: 16px;
  position: relative;
  top: 3px;
  cursor: pointer;
}

#notifyList li {
  width: 100%;
  font-size: 12px;
  padding: 5px 15px;
}

#notifyList li {
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

#notifyList li a.alredyRead {
  background: #fff;
}

#notifyList li:nth-child(1) {
  border: 0;
}

ul.profile-options li a,
ul.profile-options li a:hover {
  font-weight: 600;
  font-size: 13px;
  padding: 0;
}

#notifyList li a {
  background: #fdfdfd;
  padding: 7px 12px;
}

#notifyList li a span.notifyTitle {
  display: block;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.67;
  color: #231f20;
}

#notifyList li a span.abc {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.67;
  text-align: left;
  color: #5b626b;
}

#notifyList li a span.timestamp {
  color: #000;
  text-align: right;
  font-size: 10px;
  display: block;
}

#notifyList li a:hover {
  background: rgb(241, 241, 241);
  color: #fff;
}

.label_smtxt .form-group label {
  font-size: 12px;
}

.filter_cirlcle_cs {
  position: absolute;
  left: 213px;
  top: 12px;
}

.filter_cirlcle_cs .inner_circle {
  background: #df340e;
  color: #fff;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  font-size: 11px;
  cursor: pointer;
  float: left;
  font-weight: 600;
}

.filter_cirlcle_cs .inner_circle.Pending {
  background: #ff9a1f;
  color: #172a51;
}

.filter_cirlcle_cs .inner_circle.All {
  background: #5244ab;
}

.filter_cirlcle_cs .circle_cs {
  display: inline-block;
  float: left;
  border: 1px solid transparent;
  border-radius: 100%;
  padding: 2px;
  margin-left: -1px;
}

.filter_cirlcle_cs .circle_cs.active {
  border: 1px solid #125ecf;
}

.tooltip {
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  border-radius: 10px;
}

.panel-box.detail-box.sticky_detbox {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: sticky;
  top: 95px;
  z-index: 1;
}

.elipsis_text:not(:empty) {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.elipsis_text1 {
  -webkit-line-clamp: 1;
}

.arrow_sm {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 3px;
  right: 0;
}

/* file uploader css 9-17-2020 */

.order-file-upload .file-field {
  position: relative;
}

.order-file-upload .file-field .btn {
  float: left;
}

.order-file-upload .btn {
  margin: 0.375rem;
  color: inherit;
  text-transform: uppercase;
  word-wrap: break-word;
  white-space: normal;
  cursor: pointer;
  border: 0;
  border-radius: 0.125rem;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
    0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  padding: 0.84rem 2.14rem;
  font-size: 0.81rem;
}

.order-file-upload .btn.btn-sm {
  padding: 0.5rem 1.6rem;
  font-size: 0.64rem;
}

.order-file-upload .btn-primary {
  color: #fff;
  background-color: var(--primary);
}

.order-file-upload .btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.order-file-upload .file-field span {
  cursor: pointer;
}

.order-file-upload .file-field input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  filter: alpha(opacity=0);
  opacity: 0;
}

.order-file-upload .file-field .file-path-wrapper {
  height: 2.5rem;
  padding-left: 10px;
  overflow: hidden;
}

.order-file-upload.md-form .validate {
  margin-bottom: 2.5rem;
}

.order-file-upload .file-field input.file-path {
  width: 100%;
  height: 36px;
}

.order-file-upload.md-form input:not([type]),
.md-form input[type="text"]:not(.browser-default),
.md-form input[type="password"]:not(.browser-default),
.md-form input[type="email"]:not(.browser-default),
.md-form input[type="url"]:not(.browser-default),
.md-form input[type="time"]:not(.browser-default),
.md-form input[type="date"]:not(.browser-default),
.md-form input[type="datetime"]:not(.browser-default),
.md-form input[type="datetime-local"]:not(.browser-default),
.md-form input[type="tel"]:not(.browser-default),
.md-form input[type="number"]:not(.browser-default),
.md-form input[type="search"]:not(.browser-default),
.md-form input[type="phone"]:not(.browser-default),
.md-form input[type="search-md"],
.md-form textarea.md-textarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

.liststyle {
  padding-left: 0;
  list-style: none;
}

.liststyle li {
  margin-bottom: 10px;
}

.liststyle li i {
  font-size: 20px;
  color: #00ad55;
  margin-right: 8px;
  position: relative;
  top: 1px;
  min-width: 22px;
}

.liststyle li a {
  color: #000;
  font-weight: 500;
}

.liststyle li.png i::before,
.liststyle li.jpg i::before,
.liststyle li.jpeg i::before {
  content: "\f1c5";
}

.liststyle li.doc i::before,
.liststyle li.docx i::before {
  content: "\f1c2";
}

.entries_showing .dataTables_info {
  font-size: 13px;
  font-weight: 500;
  color: #000000;
}

.c-pointer {
  cursor: pointer;
}

.custompicklist_table.picklist-order-table .order-info {
  width: calc(100% - 50px);
  display: inline-block;
}

.custompicklist_table.picklist-order-table .order-item-info {
  width: 100%;
}

.custompicklist_table.picklist-order-table .order-item {
  display: inline-block;
  width: 100%;
}

.custompicklist_table.picklist-order-table .order-info-check {
  width: 30px;
  float: left;
}

.plfooter {
  text-transform: uppercase;
  font-weight: 900;
}

.plfooter .blue {
  color: #016aa8;
}

.plfooter .orange {
  color: #f4912c;
}

.ctrl_qty {
  touch-action: manipulation;
}

.comment_btn {
  width: 55px;
  height: 55px;
  display: inline-block;
  min-width: inherit;
  border-radius: 100px;
  font-size: 29px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 100;
  text-align: center;
  padding: 0 6px 0 10px;
  outline: none;
  border: none;
}

.comment_btn:focus {
  outline: none;
}

#_modal_block_ui>div.modal-box.sidemodal {
  float: right;
  justify-items: right;
  justify-content: flex-end;
  margin: inherit;
  margin-left: auto;
  height: calc(100vh - 24px);
  max-height: inherit;
  position: relative;
  width: 400px;
  min-width: inherit;
}

.modal-box.sidemodal .modal-head {
  padding-top: 0;
}

.modal-box.sidemodal .modal-head .panel-box-title {
  padding: 10px 15px;
  margin: 0 -15px;
}

.modal-box.sidemodal .page-foot {
  padding: 0;
}

.comment_main .page-foot {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 15px;
}

.modal-box.sidemodal .page-body {
  padding: 15px 0px;
  height: calc(100% - 135px);
  overflow: auto;
  padding-bottom: 0;
  margin-bottom: 15px;
}

.comment_main .page-foot .entercomment {
  height: 60px;
  min-height: 60px;
  max-height: 60px;
  width: 100%;
  min-width: 100%;
  padding-left: 38px;
  max-width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-right: 40px;
}

.comment_main .page-foot .chk-wrp {
  display: none;
}

.so-comments .comment_main .page-foot .chk-wrp {
  display: block;
}

.comment_main .page-foot .comment_file_Text {
  position: absolute;
  left: 5px;
  top: -20px;
  font-size: 12px;
  color: #565555;
  margin-bottom: 0;
}

.comment_main .page-foot .sendmsg {
  position: absolute;
  right: 1px;
  top: 13px;
  font-size: 13px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background: transparent;
  color: #332f2f;
  cursor: pointer;
  border-radius: 4px;
  min-width: inherit;
  padding: 0;
  padding-left: 4px;
  font-size: 18px;
  outline: none;
}

.comment_wrp {
  border: 1px solid #d6d4d4;
  border-radius: 5px;
  padding: 10px;
  background: #f9f9f9;
  line-height: 1;
  margin-bottom: 15px;
  width: 70%;
  float: left;
}

.comment_wrp.ThisUsercomment {
  float: right;
  background: #d9ebf93b;
}

.comment_wrp .user_name {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 600;
}

.comment_wrp .comment_user {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 15px;
}

.comment_wrp .conrtrol_comment {
  display: inline-block;
  width: 100%;
}

.comment_wrp .conrtrol_comment .action_comment {
  color: var(--primary);
  float: right;
  display: inline-block;
  margin-left: 10px;
  cursor: pointer;
}

.comment_wrp .comment_head {
  width: 100%;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment_wrp .time_cooment {
  margin-bottom: 0;
  font-size: 11px;
  color: #314056;
}

/* .comment_wrp.ThisUsercomment .user_name{order: 2;}

.comment_wrp.ThisUsercomment .time_cooment{order: 1;} */

.comment_main .page-foot .sendmsg.fileUploadspan {
  left: 4px;
  padding-left: 0;
  top: 17px;
}

.fileUploadspan .label {
  color: #332f2f;
  margin-bottom: 0;
  cursor: pointer;
  width: 30px;
  text-align: center;
  height: 25px;
  line-height: 26px;
  font-size: 18px;
}

.conrtrol_comment .filecomment {
  font-size: 16px;
  display: inline-block;
}

.conrtrol_comment .filecomment i {
  float: left;
}

.conrtrol_comment .filecomment span {
  margin-top: 3px;
  font-size: 11px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 142px;
  float: left;
  margin-left: 6px;
}

.comment_wrp .textarea_edit_comment {
  margin-bottom: 8px;
  width: 100%;
  margin-top: 0px;
  max-height: 50px;
  height: 50px;
  min-height: 50px;
  font-size: 11px;
}

.fileuploadedit label {
  background: #007bff;
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  cursor: pointer;
}

body i[data-id="xlsx"]::before {
  content: "\f1c3";
  color: green;
}

body i[data-id="xlsx"]+span {
  color: green;
}

body i[data-id="png"]::before,
body i[data-id="jpg"]::before,
body i[data-id="jpeg"]::before {
  content: "\f1c5";
  color: #565656;
}

body i[data-id="png"]+span,
body i[data-id="jpg"]+span,
body i[data-id="jpeg"]+span {
  color: #565656;
}

body i[data-id="docx"]::before {
  content: "\f1c2";
  color: #565656;
}

body .filecomment i[data-id="docx"]+span {
  color: #565656;
}

body i[data-id="pdf"]::before {
  content: "\f1c1";
  color: red;
}

.conrtrol_comment .filecommentx i[data-id="pdf"]+span {
  color: red;
}

.conrtrol_comment .filecomment i[data-id="txt"]::before {
  content: "\f0f6";
  color: #5f45af;
}

.conrtrol_comment .filecomment i[data-id="txt"]+span {
  color: #5f45af;
}

.conrtrol_comment .filecomment i[data-id="zip"]::before {
  content: "\f15b";
  color: blue;
}

.conrtrol_comment .filecomment i[data-id="zip"]+span {
  color: blue;
}

tr.selected {
  background-color: rgb(0, 82, 204, 0.1);
}

.Novalue:empty:after {
  display: block;
  content: "N/A";
}

.btn-danger {
  font-size: 14px;
  padding: 6px 11px;
  margin: 2px 4px;
  border-radius: 3px;
  border-radius: 5px;
  background-color: #c82333;
  border-color: #bd2130;
}

.margin-bot0 {
  margin-bottom: 0 !important;
}

.custom_datefilter .inputWrp {
  width: 88px;
  margin-right: 7px;
  float: left;
}

.custom_datefilter .inputWrp.widthfull {
  width: 183px;
}

/* .custom_datefilter .inputWrp.widthfull + button {
  top: 28px;
} */

.dropdown-menu.dropdown_cs .custom_datefilter .inputWrp label {
  font-size: 12px;
}

.custom_datefilter button {
  min-width: inherit;
  padding: 5px 3px 5px 8px;
  position: relative;
  top: 25px;
  margin: 0;
}

.checbox-cs.form-control {
  border: none;
  display: inline-block;
  margin: 0;
}

button.edit-icon {
  padding: 0;
  min-width: inherit;
  background: transparent;
  outline: none;
}

button.add-icon {
  padding: 0;
  min-width: inherit;
  background: transparent;
  color: var(--primary);
  font-size: 17px;
  position: relative;
  top: 1px;
  outline: none;
}

button.bin-icon {
  background: transparent;
  color: red;
  padding: 0;
  min-width: inherit;
  font-size: 17px;
  outline: none;
}

.vertical_top_tbody {
  vertical-align: text-top;
}

table tbody tr.highlighterror,
table.row-clickable tbody tr.highlighterror:hover td {
  background-color: #ff000021;
}

body span.comboTreeItemTitle {
  font-size: 12px;
}

body .comboTreeWrapper .multiplesFilter {
    font-size: 13px;
    outline: none;
    padding: 5px;
}

.dropdown-menu.dropdown_cs .comboTreeWrapper li {
  margin-bottom: 0;
  padding: 0 10px;
  display: block;
}

div .dropdown_cs .comboTreeDropDownContainer>ul {
  max-height: 165px;
}

.datatable-header .coloumn_filter .dropdown-menu .dt-button.buttons-html5::before {
  display: block;
  border: none;
  width: auto;
  height: auto;
  content: "\f1c1";
  font: normal normal normal 14px/1 FontAwesome;
  color: #6ac16a;
}

.datatable-header .coloumn_filter .dropdown-menu .dt-button.buttons-html5.buttons-pdf::before {
  content: "\f1c1";
  color: #de150a;
}

.coloumn_filter button.buttons-html5 i {
  padding: 9px 10px 10px 9px;
  margin-right: 0;
}

/* .coloumn_filter button.buttons-html5.buttons-excel {
  color: #6ac16a;
} */

body .datatable-header .coloumn_filter {
  position: relative;
  /* top: -5px; */
  display: inline-block;
}

/* custom tooptip */
.tooltip-cs {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip-cs .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip-cs:hover .tooltiptext {
  visibility: visible;
}

.search_input_cs {
  width: 200px;
  margin-bottom: 14px;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f4f4f7;
}

.dataTables_wrapper .datatable-footer .left-part {
  display: flex;
  align-items: center;
}

.dataTables_wrapper .datatable-footer .left-part .entries_showing {
  padding-left: 10px;
  position: relative;
  top: -2px;
}

.dataTables_wrapper table tbody td.break-word {
  word-break: break-all;
}

/* switch css */

.switch-chkcs {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 37px;
}

.switch-chkcs input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-chkcs .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-chkcs .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 2px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch-chkcs input:checked+.slider {
  background-color: #02a499;
}

.switch-chkcs input:focus+.slider {
  box-shadow: 0 0 1px #02a499;
}

.switch-chkcs input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(18px);
}

/* Rounded sliders */
.switch-chkcs .slider.round {
  border-radius: 34px;
}

.switch-chkcs .slider.round:before {
  border-radius: 50%;
}

.from-group-type2 .form-group {
  align-items: center;
  margin-bottom: 10px;
  padding-right: 17%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.from-group-type2 .form-group label {
  margin-bottom: 0;
  -ms-flex: 0 0 42%;
  flex: 0 0 42%;
  max-width: 42%;
  padding-right: 10%;
}

.from-group-type2 .form-group .tf-validate-error-message {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 42%;
  margin-top: 5px;
}

.from-group-type2 .form-group .form-control {
  -ms-flex: 0 0 58%;
  flex: 0 0 58%;
  max-width: 58%;
}

.from-group-type2 .form-group .matech-autocomplete-wrapper .form-control {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.from-group-type2 .form-group .datepicker-input-wrp {
  -ms-flex: 0 0 58%;
  flex: 0 0 58%;
  max-width: 58%;
}

.from-group-type2 .form-group .datepicker-input-wrp .form-control {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.from-group-type2 .form-group .datepicker-input-wrp .tf-validate-error-message {
    padding-left: 0;
}

.from-group-type2 .form-group label.checbox-cs {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-top: 0;
}

.from-group-type2 .form-group .select2-container {
  width: 58% !important;
}

.from-group-type2 .form-group .combotree-input {
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
}
.from-group-type2 .form-group .combotree-input .form-control {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.from-group-type2 .form-group .combotree-input .tf-validate-error-message {
    padding-left:0;
}
.form-text {
    margin:0;
}
.comboTreeArrowBtn {
    background: #baaac8;
    color: #fff !important;
    height: 30px;
    display: flex;
    align-items: center;
}
.comboTreeDropDownContainer li {
    padding: 0;
}
@media only screen and (max-width: 1200px) {
    .chart-canvas .middle-text {
    top: 39%;
  }

  .chart-canvas .middle-text .ord_no {
    padding-bottom: 0;
    font-size: 19px;
  }

  .chart-canvas .middle-text .order_name {
    font-size: 14px;
  }
}

.header-cus-inp {
  width: 200px;
}

.custom-50 input {
  width: calc(50% - 8px);
  float: left;
  margin-right: 8px;
}

.breakcrumb ul {
  list-style: none;
  padding-left: 10px;
}

.breakcrumb ul li {
  display: inline-block;
  padding-right: 20px;
}

.breakcrumb ul li::after {
  content: "";
  border: solid #607793;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 0.15rem;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: relative;
  right: -9px;
  top: -1px;
}

.breakcrumb ul li:last-child::after {
  display: none;
}

.breakcrumb ul li a {
  color: #333547;
}

.breakcrumb ul li:last-child a {
  font-weight: 600;
}

.plus-icon-btn {
  font-size: 20px;
  color: green;
  padding: 0;
  width: inherit;
  background: transparent;
  border: 0;
  min-width: 40px;
  width: 40px;
  outline: none;
  outline: none;
}

.plus-icon-btn:focus {
  outline: none;
}

.plus-icon-btn[disabled] {
  color: grey;
  cursor: no-drop;
}

.loader-anim {
  border-top: 8px solid var(--primary);
}

.btn-group>.btn-group:not(:last-child)>.btn {
  border-radius: 5px;
}

.custom-actions-datatable {
  position: absolute;
  left: 0;
  display: inline-block;
  width: calc(100% - 631px);
  padding-right: 5px;
}
.advanced-filters {
  position: absolute;
  right: 0;
  display: inline-block;
  width: auto;
  padding-right: 5px;
}
.custom-actions-datatable .dropdown {
  display: inline-block;
}
.advanced-filters + .dataTables_wrapper .datatable-header .right-part{
  padding-right: 155px;
}
.advanced-filters .dropdown-toggle::after {
  display:none;
}
.select2-container .select2-selection {
  height: 30px;
}

.select2-container--default .select2-selection .select2-selection__arrow b,
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: solid #888888;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 11px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgb(221 221 221 / 40%);
  color: #5B5B5B;
}

select.tf-validate-error+.select2-container .select2-selection {
  border: 1px solid red !important;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
    background-color: var(--secondary);
    background-image: -webkit-linear-gradient(top, var(--secondary), var(--secondary));
    border-radius: 50px;
    display: block;
    width: 27px;
    height: 27px;
    margin: 0 auto;
}
.datepicker table tbody tr td {
    background: transparent;
}
.datepicker table tbody tr , .datepicker table tbody td:last-of-type {
    border:none;
}

.btn.text-btn {
  background: transparent;
  border: none;
  color: #5B5B5B;
  text-align: center;
  padding: 0;
  width: 100%;
  outline: none;
  box-shadow: none;
}
.advanced-filters .dropdown-menu {
    max-height: calc(100vh - 250px);
    overflow-x: auto;
    width: 250px;
    padding: 0 10px 10px;
}
.advanced-filters .dropdown-menu ul{
  list-style: none;
  padding: 0;
}
.advanced-filters .dropdown-menu .btn.text-btn{
  margin: 0;
}

.advanced-filters .dropdown-menu .fields-filters ul .form-control{
  margin-bottom: 5px;
}
.form-control:focus {
  box-shadow: none;
}
.advanced-filters .dropdown-menu .fields-filters ul li {
  display: inline-block;
  width: 100%;
}
.advanced-filters .dropdown-menu .fields-filters ul .form-group {
  width: calc(100% - 14px);
  float: left;
  padding-right: 5px;
}
.advanced-filters .dropdown-menu .selected-filters,
.advanced-filters .dropdown-menu .fields-filters{
  border-bottom: none;
  margin-top: 10px;
  margin-bottom: 0;
}
.advanced-filters .dropdown-menu .fields-filters ul li:last-child .form-group {
  margin-bottom: 0;
}
.advanced-filters .dropdown-menu .fields-filters{
  border-bottom: 1px solid #DCDCDC;
  margin-top: 10px;
}
.advanced-filters .fields-filters li.hide-remove-row .remove-filter-row{
  display: none;
}
.advanced-filters .dropdown-menu ul .checbox-cs{
  padding-left: 20px;
  font-size: 12px;
  width: 100%;
  margin:0;
}
.advanced-filters .dropdown-menu ul .checbox-cs .checkmark{
  height: 16px;
  width: 16px;
}
.advanced-filters .dropdown-menu ul .checbox-cs .checkmark:after{
  left: 1px;
  top: 1px;
}
.advanced-filters .dropdown-menu .selected-filters li {
  position: relative;
  padding-right: 15px;
}
.advanced-filters .dropdown-menu .selected-filters li .remove-selected-filter{
  float: right;
  position: absolute;
  top: 9px;
  cursor: pointer;
  right: 2px;
  color: red;
  box-shadow: none;
}
.advanced-filters .dropdown-menu .btn-wrp{
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding-top: 5px;
  border-top: 1px solid #eee;
}
a.export-link {
  display: block;
  margin-top: 9px;
  margin-bottom: 15px;
  color: var(--secondary);
  cursor: pointer;
}
a.export-link span {
  padding-left: 5px;
}
button.btn.icon-btn , a.btn.icon-btn{
  background: transparent;
  color: var(--primary);
  border: none;
  padding: 0;
  min-width: inherit;
  display: inline-block;
  margin: 0;
  box-shadow: none;
}
button.btn.icon-btn i , a.btn.icon-btn i {
  margin: 0;
}
.icon-form-group .icon-btn{
  position: absolute;
  right: 14%;
}
.small-form-input .select2-container .select2-selection {
  height: 24px;
}
.small-form-input .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 11px;
  line-height: 21px;
}
.small-form-input .custom-file-label {
  font-size: 11px;
  padding: 3px 10px;
  height: 24px;
  margin-bottom: 0;
  top: 3px;
}
.small-form-input .custom-file-label::after {
  line-height: 21px;
  padding: 0 5px;
  height: 24px;
}
.small-form-input .form-control {
  padding: 4px 9px;
  font-size: 11px;
  line-height: 14px;
}
.small-form-input .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 24px;
}
.small-form-input .select2-container--default .select2-selection .select2-selection__arrow b {
  top: 8px;
}
.small-form-input .tf-validate-error-message {
  font-size: 10px;
}
.checkbox-panel .checkbox-panel-content {
    padding-top: 20px;
    padding-left: 30px;
}
.small-form-input .select2-container {
    width: 100% !important
}
a.form-text, a.form-text:not([href]):not([tabindex]) {
    color: var(--primary);
    font-weight: 600;
}
.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover.disabled, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active.disabled:hover[disabled], .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover.disabled, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active:hover[disabled], .datepicker table tr td span.active[disabled] {
    background-color: var(--primary);
    background-image: -webkit-linear-gradient(top,var(--primary),var(--primary));
}
@media print {
    * {
    -webkit-print-color-adjust: exact;
  }

  .hideprinttd {
    display: none;
  }

  .hideprint {
    display: none !important;
  }

  .showprint {
    display: table-cell !important;
  }

  .panel-box.detail-box.sticky_detbox {
    top: 0;
  }

  @page {
    size: A3;
    /* DIN A4 standard, Europe */
    margin: 0;
  }

  table:not(.no_whitespace) thead tr th {
    white-space: break-spaces;
  }

  .page-container {
    height: auto;
    margin-top: 0px;
  }

  .forscreenpr {
    display: none;
  }

  .profile-options,
  #sidenav,
  .page-header .page-tools,
  .tab-header,
  #cscntrl,
  i.clientProductIdWarning,
  i.AddNewProduct,
  #dropdownMenuButton,
  nav .right_panel_header,
  .page-header .toolbar,
  .customer_link,
  .snackbar,
  .btn_tbcl,
  .page-header .page-title select.form-control {
    display: none;
  }

  .table-cs tbody tr td.barcode-font {
    font-size: 55px;
  }

  .content-flex {
    height: auto;
  }

  .footer-bar {
    display: none;
  }

  .forprint {
    display: block;
  }

  .forscreen {
    display: none;
  }

  #podraft {
    color: grey;
  }

  table tbody tr {
    border-bottom: 1px solid #e7e7e7;
  }

  .batchinfo_hover {
    display: none !important;
  }

  table.black_item tbody tr td,
  table.black_item tfoot tr td {
    color: #000;
  }

  body .table_innwrp {
    display: inherit;
  }

  body table thead {
    display: table-header-group;
  }

  body nav {
    position: inherit;
  }

  /* body{margin-top:60px;padding-top: 60px;} */
  body .panel-box {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
  }

  body table thead th {
    padding-top: 30px;
  }

  /* table print coloumn classes */

  th.title_width {
    min-width: auto;
  }

  th.sku_width {
    min-width: auto;
  }

  th.upc_width {
    min-width: auto;
  }

  th.numberid_width {
    min-width: auto;
  }

  th.OrdRefrence_width {
    min-width: auto;
  }

  th.date_width {
    min-width: auto;
  }

  th.vendor_width {
    min-width: auto;
  }

  th.createdat_width {
    min-width: auto;
  }

  th.createdby_width {
    min-width: auto;
  }

  th.seller_width {
    min-width: auto;
  }

  th.status_width {
    min-width: auto;
  }

  th.tracking_width {
    min-width: auto;
  }

  th.name_width {
    min-width: auto;
  }

  th.email_width {
    min-width: auto;
  }

  th.role_width {
    min-width: auto;
  }

  th.yesno_width {
    min-width: auto;
  }

  th.city_width {
    min-width: auto;
  }

  th.state_width {
    min-width: auto;
  }

  th.country_width {
    min-width: auto;
  }

  th.type_width {
    min-width: auto;
  }

  th.contact_width {
    min-width: auto;
  }

  th.qty_width {
    min-width: auto;
  }

  th.batchcode_width {
    min-width: auto;
  }

  th.shelf_width {
    min-width: auto;
  }

  th.price_width {
    min-width: auto;
  }

  th.warehouse_width {
    min-width: auto;
  }

  th.address_width {
    min-width: auto;
  }

  th.category_width {
    min-width: auto;
  }

  th.designation_width {
    min-width: auto;
  }

  .title_printhide {
    display: none;
  }

  .tab_list {
    display: none;
  }

  nav .nav-block.brand {
    width: 100%;
  }

  nav .nav-block.brand a {
    justify-content: space-between;
    text-decoration: none;
  }

  nav .nav-block.brand img {
    float: right;
  }

  nav .nav-block.brand img.extra_image {
    display: block;
    float: left;
  }

  nav .nav-block.brand img.logo_headercs {
    max-height: 22px !important;
  }

  nav .nav-block.brand .logo_rhewrp.hide_imgprint {
    display: none;
  }

  nav .nav-block.brand .logo_rhewrp {
    display: flex;
    align-items: center;
  }

  nav .nav-block.brand span.logo_rhewrp::before {
    display: block;
    content: "Powered By";
    margin-right: 5px;
    color: #000;
    text-decoration: none;
  }

  nav .nav-block.brand img.extra_image[src="assets/images/3pl.png"] {
    visibility: hidden;
  }

  nav {
    padding: 15px 0;
  }

  body .page-header {
    padding: 5px 15px;
    background: #fff;
  }
}

#SalesInvoiceTable tfoot {
  display: table-row-group;
}

.dayDdWrapper {
  display: none;
}

.monthlyPickerWrapper {
  display: none;
}

.startRowsWrapper>input,
.endRowsWrapper>input {
  width: 48%;
  float: left;
}

.startRowsWrapper,
.endRowsWrapper {
  display: inline-block;
  width: 100%;
}

.startRowsWrapper>input.right,
.endRowsWrapper>input.right,
.f-right {
  float: right;
}

td.shelfRange {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 72px;
}

.saleinvocefooter-last {
  width: 100px;
}

.search_custom_datatable {
  position: relative;
  margin-right: 5px;
}

.search_custom_datatable .search_icon {
  width: 16px;
  height: 16px;
  /* position: absolute;
  left: 14px;
  top: 10px;
  z-index: 2; */
}

.search_custom_datatable input[type="search"] {
  height: auto;
  border: 1px solid #E8E8E8;
  padding: 4px 6px;
  /* border-radius: 4px; */
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 3px 0 rgb(236 236 241 / 45%);
  padding-left: 10px;
  padding-right: 35px;
  width: 100%;
  line-height: 20px;
  font-weight: 400;
}

.search_datacs input[type="search"]::-webkit-input-placeholder {
  /* Edge */
  color: #888888;
}

.search_datacs input[type="search"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #888888;
}

.search_datacs input[type="search"]::placeholder {
  color: #888888;
}

table tbody tr td.sm-bold {
  font-weight: 500;
}

.datatable-footer .dataTables_length select {
  width: 60px;
  margin-left: 8px;
  padding: 4px 8px;
}

/* .datatable-header .search_datacs .dataTables_filter{display: none;} */
.header-dropdown-label {
  font-size: 8px;
}

.side-nav .main-menu>.menu-item>a .menu-text {
  font-size: 12px;
  display: block;
  line-height: 15px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  text-align: left;
  font-weight: 500;
  margin-left: 10px;
  display: inline-block;
}

.side-nav .main-menu>li.menu-item>a {
  padding: 7px 10px;
  position: relative;
  border-radius: 50px;
  margin-bottom: 7px;
}

.color-yellow {
  color: #f8b425 !important;
}

.color-green {
  color: #02a499 !important;
}

.color-purple {
  color: #716aca !important;
}

.color-pink {
  color: #f48c9e !important;
}

.position-relative {
  position: relative;
}

table tfoot.tfoot-detail tr td {
  font-size: 12px;
  padding: 3px 10px;
  font-weight: 600 !important;
}

table tfoot.tfoot-detail tr td {
  font-size: 12px;
  padding: 3px 10px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  white-space: nowrap;
  border-top: 1px solid #858585;
}

/* table tfoot.tfoot-detail tr td{border-top: 1px solid #858585;} */

table tfoot.tfoot-detail tr:first-child td {
  border-top: 0;
}

.tfoot-last {
  width: 100px;
}

/* datatable fixed column css */

/* .dataTables_scrollBody {
  height: calc(100vh - 244px);
} */

table tfoot.tfoot-detail tr td:first-child:empty {
  width: 100%;
  border-top: 0;
}

.btn.btn-dangercs {
  background: #bd2130;
  border-color: #bd2130;
}

.search_custom_datatable .search-datatable-btn {
    min-width: inherit;
    position: absolute;
    z-index: 2;
    margin: 0;
    padding: 5px 6px;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: transparent;
    border: none;
    height: 30px;
    padding-top: 7px;
}

.datatable-header .search_datacs .dataTables_filter {
  visibility: hidden;
}

#skubycat_modal .loader_block_ui {
  width: calc(100% - 300px);
  right: 0;
  left: inherit;
}

#skubycat_modal #filter_catpromod {
  margin-bottom: 10px;
}

.parent-table>tbody>tr {
  border: none
}

.parent-table>tbody>tr>td {
  padding: 0;
  border: none;
}

#_modal_block_ui .modal-box.overflow-auto {
  overflow: auto;
}

.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
  cursor: no-drop;
}

.datepicker.dropdown-menu tfoot tr .clear {
  display: table-cell !important;
  padding: 2px 10px;
  color: #000;
}

a:not([href]):not([tabindex]).blue-text, .blue-text {
  font-size: 12px;
  color: var(--primary);
  cursor: pointer;
  text-align: center;
  display: block;
  width: max-content;
}

.wrp-ven-inp .supplier-search {
  width: calc(100% - 40px);
  float: left;
  margin-right: 10px;
}

.wrp-ven-inp .btn {
  padding: 5px 4px 5px 8px;
  display: inline-block;
  min-width: inherit;
  text-align: center;
  cursor: pointer;
  margin: 0;
}

div#sidenav.close-nav {
  max-width: 60px;
  overflow: hidden;
  min-width: inherit;
}

.side-nav.close-nav .main-menu>.menu-item>a .menu-text,
div#sidenav.close-nav .menu-item.has-sub>a:after {
  display: none;
}

.side-nav.close-nav .main-menu>li.menu-item>a {
  display: inline-block;
  padding: 5px;
}

.side-nav.close-nav .sub-menu {
  position: fixed;
  z-index: 999;
  width: 200px;
  background-color: var(--sideNavBackground);
  color: #ffffff;
  left: 78px;
  height: calc(100% - 49px);
  top: 50px !important;
  bottom: inherit !important;
  padding-top: 10px;
  overflow: auto;
  left: 60px;
  box-shadow: 3px 7px 13px 0px #eee;
}

.side-nav.close-nav #toggle-sidenav:after {
  transform: rotate(-45deg);
  margin-left: -2px;
}

.side-nav.close-nav ul.vertical-menu li.menu-item .sub-menu li a {
  padding-left: 20px;
}

.side-nav.close-nav .menu-icon {
  margin: 0 auto;
  display: table;
  float: inherit;
}

ul.vertical-menu li.menu-item .sub-menu li a:hover {
  background: transparent;
  color: var(--sideNavhoverbg);
}

.barchart__ball {
  background: var(--secondary);
}

.datatable-header .coloumn_filter .buttons-collection {
  margin-left: 5px;
}

.search_custom_datatable::after {
  display: inline-block;
  content: url(../assets/images/icons/Search.svg);
  position: absolute;
  right: 10px;
  top: 7px;
  z-index: 1;
  height: 15px;
  width: 15px;
  text-align: center;
  display:none;
}

.modal-box .panel-box-title.sm-title {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  font-weight: 600;
  margin-top: 25px;
}

a.link-cs, a.link-cs:not([href]):not([tabindex]) {
  cursor: pointer;
  color: var(--primary);
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
}

.select2-container {
    /*width: 100% !important;*/
}

.btn.btn-secondary.sm-action {
  padding: 2px 3px;
  min-width: inherit;
  text-align: center;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  line-height: 1;
  margin: 0;
}

.btn.btn-secondary.sm-action svg {
  margin: 0;
  width: 12px;
  height: 12px;
}

.form-control.custom-file-input.tf-validate-error+.custom-file-label {
  border: 1px solid red !important;
}

.custom-file-label {
  white-space: nowrap;
  overflow: hidden;
}

.btn.btn-bin-icon {
  background: transparent;
  color: #000000;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  min-width: inherit;
}

.btn.btn-bin-icon svg {
  margin: 0;
}
.datepicker-input-wrp{
  position: relative;
  background: #fff;
}
.datepicker-input-wrp .form-control {
  padding-right: 30px;
  background: transparent;
  position: relative;
  z-index: 1;
}
.datepicker-input-wrp::after {
  display: inline-block;
  content: url(../assets/images/icons/schedule.svg);
  width: 20px;
  height: 20px;
  position: absolute;
  right: 5px;
  top: 6px;
  cursor: pointer;
}
#_loader_block_ui.loader_block_ui {
    z-index: 1000;
}
.pb-0{
    padding-bottom:0 !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.fc-timeline-body .fc-h-event .fc-event-main {
    color: #0E153A;
}
.search-icon-wrp {
    position: relative;
}
.search-icon-wrp .form-control {
    padding-left: 30px;
}
.search-icon-wrp::after {
    display: inline-block;
    content: url(../assets/images/icons/Search.svg);
    position: absolute;
    right: 10px;
    top: 7px;
    z-index: 1;
    height: 15px;
    width: 15px;
    text-align: center;
    left: 10px;
}
.btn.border-primary-btn {
    color: var(--primary);
    background: transparent;
}
table td .checbox-cs .checkmark,
table th .checbox-cs .checkmark {
    top: -8px;
}
@media only screen and (max-width: 767px) {
    .dataTables_wrapper .datatable-content {
    padding: 5px 5px;
    height: auto;
    margin-bottom: 5px;
  }

  .page-header .page-title {
    font-size: 14px;
    margin-top: 4px;
    display: inline-block;
    width: auto;
    line-height: initial;
    height: auto;
    display: flex;
    align-items: center;
  }

  /* .page-header {
    display: inline-block;
  } */
  .btn {
    font-size: 12px;
    padding: 3px 5px;
    margin: 0;
    min-width: inherit;
  }

  .page-header .toolbar-item:last-child .btn {
    margin-right: 0;
  }

  table thead tr th {
    padding: 5px;
    font-size: 12px;
  }

  table tbody tr td,
  table tfoot tr td {
    padding: 5px 5px;
    font-size: 10px;
  }

  .dataTables_wrapper .datatable-footer {
    display: inline-block;
    width: 100%;
  }

  .dataTables_length label {
    display: flex;
    align-items: center;
  }

  .dataTables_length label select {
    margin: 0 6px;
    max-width: 110px;
  }

  .dataTables_paginate .pagination {
    margin-top: 10px;
  }

  .right_panel_header #Warehouse {
    display: none;
  }

  ul.right_panel_header {
    padding-left: 0;
  }

  .sidenav .menu-item .menu-text {
    width: calc(100% - 40px);
    width: auto;
    height: auto;
  }

  .upload-file .btn {
    float: right;
    margin-top: 10px;
  }

  .info-upload h5 {
    font-size: 14px;
  }

  /* .panel-box{padding: 5px;} */
  .info-upload p {
    margin-bottom: 3px;
    font-size: 12px;
  }

  label {
    font-size: 13px;
  }

  .form-control {
    padding: 4px 7px;
    font-size: 14px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  input.datepicker {
    width: 100%;
  }

  .user-name {
    font-size: 12px;
  }

  ul.profile-options li {
    padding-left: 5px;
    min-width: 35px;
  }

  nav .nav-block img {
    max-width: 100px;
    position: relative;
    top: 1px;
  }

  #signOut {
    top: 4px;
  }

  .detail-box .form-group label,
  .info-step-boxs .info-step-box label {
    font-size: 12px;
  }

  .detail-box .form-group .form-control,
  .info-step-boxs .info-step-box span {
    font-size: 13px;
  }

  .detail-box .form-group {
    margin-bottom: 10px;
  }

  .step-pg {
    padding: 15px 0;
  }

  .step-title {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .info-step-boxs {
    max-width: calc(100% - 30px);
    margin: 0 auto;
    margin-bottom: 23px;
    margin-top: 10px;
  }

  .info-step-boxs .info-step-box {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .inner-table {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  /* ul.vertical-menu li.menu-item .sub-menu {
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 5px;
    padding-left: 15px;
  } */
  .detail-box .detail-wrp>div[class*="col-"] {
    margin-bottom: 0;
  }

  .detail-box .detail-wrp>div[class*="col-"]:last-child:empty {
    border-bottom: none;
  }

  .detail-box .detail-wrp>div[class*="col-"]:last-child:not(:empty) {
    margin-bottom: 15px;
  }

  table.dataTable thead th.skipth {
    min-width: inherit;
  }

  .filters-table .form-control {
    margin-left: 5px;
    padding: 2px 5px;
    font-size: 12px;
  }

  .dataTables_filter label,
  .filters-table label {
    font-size: 12px;
  }

  .dataTables_filter label input[type="search"] {
    max-width: 120px;
    padding: 2px 5px;
    padding-left: 26px;
    font-size: 12px;
  }

  .filters-table {
    top: 16px;
  }

  .filters-table label {
    width: auto;
    font-size: 12px;
    min-width: 50px;
    margin-bottom: 3px;
  }

  /* .btn i {
    display: none;
  } */
  .btn.back-btn {
    margin-left: 3px;
  }

  .detail-box .detail-wrp .select-wrapper {
    float: left;
    padding-top: 10px;
  }

  .panel-box {
    overflow: auto;
  }

  .add-item-form .btn {
    width: 100%;
  }

  .snackbar {
    top: 45px;
  }

  .right_panel_header #Warehouse {
    display: inline-block;
    width: 100px;
    padding: 2px 5px;
  }

  nav .nav-block img {
    max-width: 75px;
  }

  nav .nav-block.brand {
    padding-right: 10px;
  }

  #userName .user-names {
    font-size: 11px;
  }

  .right_panel_header #Warehouse {
    padding: 2px 5px;
    width: 100px;
    min-width: inherit;
  }

  .page-header {
    display: inline-block;
    width: 100%;
  }

  .page-header .page-title select.form-control {
    width: 178px;
    margin-left: 5px;
  }

  .page-header .page-tools {
    width: 100%;
  }

  .toolbar {
    display: block;
  }

  .toolbar>li {
    display: inline-block;
    width: auto;
    margin-right: 5px;
    float: left;
    margin-bottom: 3px;
    display: contents;
  }

  .toolbar>li:first-child {
    margin-right: 0;
  }

  .dataTables_filter .search_icon {
    width: 14px;
    height: 14px;
    top: 6px;
  }

  .coloumn_filter button.buttons-html5 {
    display: none;
  }

  .filter_dropdown+div .datatable-header .coloumn_filter .buttons-collection.buttons-colvis {
    margin-right: 97px;
  }

  .datatable-header {
    margin-bottom: 4px;
  }

  .dataTables_wrapper .datatable-footer .left-part {
    display: inline-block;
    width: 100%;
  }

  .dataTables_wrapper .datatable-footer .left-part .entries_showing {
    padding-left: 0;
  }

  .content-flex {
    height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .side-nav .sub-menu {
    left: 72px !important;
  }

  .page-header .header_state {
    display: inline-block;
    width: 100%;
  }

  .filter_dropdown .btn.dropdown_toggle_cs {
    padding: 2px 5px;
    margin-left: 7px;
    font-size: 10px;
  }

  .btn-icon {
    width: 11px;
    height: 11px;
    margin-right: 2px;
  }

  .filter_dropdown .dropdown_toggle_cs svg {
    margin-right: 2px;
  }

  .search_custom_datatable input[type="search"] {
    font-size: 11px;
    width: 130px;
    padding: 3px 5px;
  }

  .dropdown-menu.dropdown_cs .title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .dropdown-menu.dropdown_cs li label {
    font-size: 12px;
    display: block;
  }

  .page-header .page-title .dropdown_cs select.form-control {
    font-size: 11px;
    padding: 3px 5px;
  }

  .custom_datefilter button {
    padding: 3px 2px 3px 7px;
  }

  .custom_datefilter .inputWrp {
    width: 68px;
  }

  table thead tr th {
    font-size: 10px;
  }

  .checbox-cs .checkmark {
    height: 15px;
    width: 15px;
  }

  .checbox-cs .checkmark:after {
    width: 9px;
    height: 9px;
  }

  .page-header {
    position: initial;
  }

  .search_custom_datatable .search-datatable-btn {
    padding: 3px 6px;
  }

  .search_custom_datatable .search_icon {
    width: 12px;
    height: 12px;
  }

  .datatable-header .coloumn_filter .buttons-collection i {
    font-size: 11px;
  }

  .datatable-header .coloumn_filter .buttons-collection.dropdown-toggle span {
    font-size: 11px;
  }

  .datatable-header .coloumn_filter .buttons-collection.buttons-colvis i {
    font-size: 12px;
    margin: 0;
  }

  .datatable-header .coloumn_filter .buttons-collection.buttons-colvis {
    width: 23px;
    height: 23px;
  }

  .page-header .tab-header ul.tab_list {
    display: flex;
    overflow: auto;
  }

  .page-header .tab-header ul.tab_list li {
    white-space: nowrap;
    display: inline-table;
  }

  .panel-box.detail-box.sticky_detbox {
    position: inherit;
  }

  .detail-box .detail-wrp .order-no, .detail-box .detail-wrp .name-cs,
  .detail-box .form-group span.form-control.order_note, .detail-box .detail-wrp .select-wrapper label,
  .detail-box .detail-wrp p, .detail-box .form-group span.form-control {
    font-size: 12px;
  }

  .detail-box .form-group label, .info-step-boxs .info-step-box label {
    font-size: 11px;
  }

  nav .right_panel_header .breakcrumb {
    display: none;
  }

}
.pill-cs {
    display: inline-block;
    font-size: 12px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 2px 7px;
    color: #502572;
    margin-right: 5px;
    margin-bottom:5px;
}
.dashboard-reload-wrp {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #3D5AF1;
    display:inline-block;
    margin-left:20px;
}
.dashboard-reload-wrp .reload-btn {
    margin: 0;
    margin-left: 8px;
    min-width: inherit;
    padding: 0;
    background: transparent;
    height: auto;
    line-height: 1;
    border: none;
    box-shadow: none;
    outline: none;
}

.dashboard-wrp .txtDisplay {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 15px;
}
.dashboard-wrp .box-ordho .count {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #0E153A;
    margin:0;
}
.dashboard-wrp .double-count .count {
    display:inline-block;
}
.dashboard-wrp .double-count .top-text {
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    color: #000000;
    position: relative;
    top: -6px;
    margin-right: 5px;
}
.dashboard-wrp .double-count .bottom-text {
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    color: #000000;
    position: relative;
    margin-left: 5px;
}
.dashboard-wrp .box-ordho .panel-box {
    padding: 15px;
    position: relative;
}
.dashboard-wrp .box-ordho .panel-box.bg-green {
    background: #D6FEF5;
}
.dashboard-wrp .box-ordho .panel-box.grey {
    background: #F5F5F5;
}
.dashboard-wrp .box-ordho .link {
    color: #888888;
    position: absolute;
    right: 10px;
    top: 10px;
}
.dashboard-wrp .error-box .txtDisplay svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-right: 10px;
    position: relative;
    top: -1px;
}
.dashboard-wrp .error-box .error-list {
    padding-left: 33px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #433637;
    margin-bottom: 0;
}
.dashboard-wrp .error-box .error-list li {
    margin-bottom:9px;
}
.dashboard-wrp .error-box .error-list li:last-child{
    margin-bottom:0;
}
.dashboard-wrp .box-ordho .panel-box.error-box {
    background: #FFEDF0;
}
.page-header .tab-header ul.tab_list li .tab-icon {
    color: #5B5B5B;
}
.page-header .tab-header ul.tab_list li.active .tab-icon {
    color: var(--primary);
}
.checkbox-field-wrp {
    display: flex;
    align-items: center;
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
}
    .checkbox-field-wrp .field-wrp, .from-group-type2 .form-group .checkbox-field-wrp .combotree-input.field-wrp, .from-group-type2 .form-group .checkbox-field-wrp .combotree-input.field-wrp .comboTreeWrapper {
        flex: 100%;
        max-width: 100%;
    }
.from-group-type2 .form-group > .checkbox-field-wrp {
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
}
.checbox-cs.checkbos-type2 input:checked ~ .checkmark:after {
    content: "✔";
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    width: 18px;
    top: 0;
    left: 0;
}
.login-form .forgot-password {
    margin-bottom: 5px;
    display: block;
    font-size: 11px;
}
.login-form .login-title {
    font-size: 14px;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
}
.login-form button.btn-lg.btn-block {
    padding: 11px 10px;
    margin:0;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: var(--primary);
}
.from-group-type2 .form-group .form-text {
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
    padding-right: 0;
}
.search_custom_datatable input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
.modal-box .modal-extra-actions {
    display: flex;
    align-items: center;
    margin-left: -20px;
    margin-right: -20px;
    padding: 3px 20px;
    border-top: 2px solid #E8E8E8;
}
.modal-box .modal-extra-actions .left-panel {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #000000;
    width: 100%;
}
.modal-box .modal-extra-actions .left-panel .status{
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #FF9F47;
    padding-left: 5px;
}
.modal-box .modal-extra-actions .action-panel {
    display: flex;
    align-items: center;
} 
.modal-box .modal-extra-actions .action-panel .btn:last-child {
    margin-right: 0;
}
.btn.btn-red,
a.btn.btn-red:not([href]):not([tabindex]),
.btn.btn-red:hover{
    border-color: #FA7575;
    color: #FA7575;
    background: transparent;
}
.error-message-cs {
    color: red;
    font-size: 11px;
    display: inline-block;
}
.from-group-type2 .form-group .error-message-cs {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 42%;
    margin-top: 5px;
}
.datatable-modal .modal-head {
    margin-bottom: 10px;
}
.modal-box.datatable-modal .page-body {
    padding: 0 20px;
}
.modal-box.datatable-modal .page-body .datatable-content {
    height: calc(100vh - 360px);
}
.card .card-header {
    padding: 0;
}
.card .card-header a {
    padding: 10px 15px;
    display: block;
    color: #000;
    font-weight: 500;
}

    .card .card-header a .text-btn {
        width: auto;
        float: right;
        font-weight: bold;
        color: #502572;
        font-size: 14px;
    }

.card .card-header a .section-error{
    color: #e83a3a;
    padding-left: 9px;
}
.card .card-body {
    padding: 10px 15px;
}
.checbox-cs.button-checkbox {
    display: inline-block;
    width: auto;
    height: auto;
    padding-left: 0;
    padding-right: 5px;
}
.checbox-cs.button-checkbox .checkmark {
    width: auto;
    height: auto;
    position: inherit;
    padding: 5px 9px;
    border-radius: 50px;
    top: 0;
    font-size: 12px;
    text-align: center;
}
.checbox-cs.button-checkbox input:checked ~ .checkmark:after,
.checbox-cs.icon-checkbox input:checked ~ .checkmark:after{
    display:none;
}
.checbox-cs.button-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
    color:#fff;
}
.checbox-cs.icon-checkbox {
    padding: 0;
    margin: 0;
}
.checbox-cs.icon-checkbox .checkmark {
    top: 0;
    position: inherit;
    border-radius: 50px;
    font-size: 11px;
    width: 22px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checbox-cs.icon-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
    color: #fff;
}
.icon-chk-label {
    font-size: 11px;
    padding-left: 10px;
}
.mr-10 {
   margin-right:10px !important;
}
.ml-10 {
    margin-left: 10px !important;
}
.align-items-together > div {
    display: inline-block;
}
.form-control.field-sm {
    font-size: 12px;
    padding: 4px 7px;
    border-radius: 10px;
    width: auto;
    min-width: 80px
}
.card.transparent-header {
    margin-top:20px;
}
.card.transparent-header .card-header {
    background: transparent;
}

#_modal_block_ui > div.modal-box.modal-small:not(.modal-med) .form-group .form-control {
    margin-bottom:0;
}
.elpisis-line-1 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
}
.elpisis-line-2 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
}
.elpisis-line-3 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
}
.left-aligned-text-modal .modal-box-title h2 {
    text-align: left;
    padding: 0 19px;
}
.template-file-link {
    font-size: 11px;
    display: block;
    text-align: right;
}
.dataTables_wrapper .datatable-content table.dataTable thead th.dtfc-fixed-left {
    z-index: 4;
    background: #f0f1f3;
    left: -1px !important;
}
.dataTables_wrapper .datatable-content table.dataTable tbody td.dtfc-fixed-left {
    z-index: 3;
    background: #fafafa;
    left: -1px !important;
}
.dataTables_wrapper .datatable-content table.dataTable thead th.dtfc-fixed-right {
    z-index: 4;
    background: #f0f1f3;
    right: -1px !important;
}
.dataTables_wrapper .datatable-content table.dataTable tbody td.dtfc-fixed-right {
    z-index: 3;
    background: #fafafa;
    right: -1px !important;
}
.dataTables_wrapper .datatable-content table.dataTable tbody tr:hover td.dtfc-fixed-left,
.dataTables_wrapper .datatable-content table.dataTable tbody tr:hover td.dtfc-fixed-right {
    background-color: #f1f1f1;
}
.dataTables_wrapper table tbody tr.error-tr td,
.dataTables_wrapper .datatable-content table.dataTable tbody tr.error-tr td.dtfc-fixed-left,
.dataTables_wrapper .datatable-content table.dataTable tbody tr.error-tr td.dtfc-fixed-right {
    background: #ffd3d3;
}
.btn.round-icon-btn {
    font-size: 16px;
    min-width: inherit;
    border-radius: 50px;
    font-weight: 600;
    width: 25px;
    height: 25px;
    padding: 0;
    margin-right: 10px;
}
.width-200 {
    width:200px;
}

.tabs_height .dataTables_wrapper .datatable-content {
    height: calc(100vh - 285px);
}
.small-form-input .comboTreeArrowBtn {
    height: 24px;
}
.from-group-type2 .form-group .comboTreeWrapper {
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
}
.from-group-type2 .form-group .comboTreeWrapper .form-control {
    -ms-flex: 0 0 108%;
    flex: 0 0 108%;
    max-width: 108%;
}
.from-group-type2 .form-group .comboTreeWrapper .tf-validate-error-message{
    padding-left:0;
}
.from-group-type2 .form-group .form-control.width-100 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 108%;
}
.from-group-type2 .form-group > div {
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
}
.from-group-type2 .form-group .custom-file-label {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.filters-table + .dataTables_wrapper .datatable-header .right-part {
    padding-right: 80px;
}

.form-table {
    margin-bottom: 10px;
    table-layout: auto;
}

.table-wrapper {
    overflow: auto;
}

.form-table th,
.form-table td {
  font-size: 14px;
  font-weight: 500;
  color: #757575;
  line-height: 30px;
  padding: 10px 8px;
  white-space: nowrap;
  border: 1px solid #e6e6e6;
}

.form-table td {
  color: #000;
}



.form-table {
    margin-bottom: 10px;
}

.form-table th,
.form-table td {
    font-size: 14px;
    font-weight: 500;
    color: #757575;
    line-height: 30px;
    padding: 10px 8px;
    white-space: nowrap;
    border: 1px solid #e6e6e6;
}

.form-table td {
    color: #000;
}

.pills {
  border: 1px solid #DCDCDC;
  display: inline-flex;
  padding: 2px 5px;
  font-size: 10px;
  border-radius: 10px;
  margin-bottom: 2px;
  margin-right: 2px;
  float: left;
}

.pills .close-icon {
  width: 15px;
  height: 15px;
  margin-left: 2px;
  min-width: 15px;
  min-height: 15px;
}


.icon_img {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: center;
}

.icon_img .download_icon {
        width: 30px;
        height: 50px;
        cursor: pointer;
}

#download-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.icon_img a {
    text-align: center;
}

.icon_img .file_name {
    display: block;
}