/*** Included Scss ***/
:root {
  --color-dark: #000;
  --color-light-dark: #999;
  --color-lighter-dark: #707070;
  --color-bg-dark: #2E2D2D;
  --color-white: #fff;
  --color-white-gray: #ddd;
  --color-danger: #dc3545;
  --color-holiday: #FF0000;
  --color-text: #FDFDFD;
  --color-blue: #0353af;
  --color-green: #198754;
  --color-yellow-light: #F4C330;
  --color-orange: #FF8C00;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@font-face {
  font-family: "Helvetica 35 Thin";
  font-style: normal;
  font-weight: normal;
  src: local("../node_modules/fonts/helveticaneue/Helvetica 35 Thin"), url("../node_modules/fonts/helveticaneue/HelveticaNeue-Thin.woff") format("woff");
}
@font-face {
  font-family: "Helvetica 35 Bold";
  font-style: normal;
  font-weight: bold;
  src: local("../node_modules/fonts/helveticaneue/Helvetica 35 Bold"), url("../node_modules/fonts/helveticaneue/HelveticaNeue-Bold.woff") format("woff");
}
@font-face {
  font-family: "Courier Prime Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../node_modules/fonts/currier/CourierPrime-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Courier Prime Bold";
  font-style: normal;
  font-weight: bold;
  src: url("../node_modules/fonts/currier/CourierPrime-Bold.ttf") format("truetype");
}
body {
  font-family: "Helvetica 35 Thin";
  letter-spacing: 0.5px;
  background: #2e2d2d;
  color: var(--color-text);
}

p {
  font-size: 1em;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.875);
}

a {
  color: #00489a;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

button {
  letter-spacing: 0.5px;
}

button.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
}

.h-100 {
  height: 100%;
}

.tdmw-120 {
  width: 120px;
}

.tdmw-150 {
  width: 150px;
}

.pt_3px {
  padding-top: 3px;
}

.word-no-break {
  white-space: nowrap;
}

.wrapper {
  background: #fafafa;
  padding-top: 79px;
  display: flex;
  width: 100%;
  align-items: stretch;
  background: #2e2d2d;
}
@media (max-width: 991.98px) {
  .wrapper.dox-admin {
    padding-top: 48px;
  }
}
@media (max-width: 767.98px) {
  .wrapper.dox-admin {
    padding-top: 48px;
  }
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.text-white-green {
  color: #d1ffdf !important;
}

.text-white-red {
  color: #ffd2d2 !important;
}

.text-white-orange {
  color: #fff0d4 !important;
}

.text-white-blue {
  color: #cfcfff !important;
}

.currier-shipping-type .form-check-input {
  width: 20px;
  height: 20px;
}
.currier-shipping-type .form-check-label {
  margin-top: 2px;
  margin-left: 2px;
}

.form-check-input {
  background-color: #9d9d9d;
}
.form-check-input:checked {
  background-color: #414141;
  border-color: #535353;
}
.form-check-input:focus {
  border-color: #535353;
  box-shadow: 0 0 0 0.25rem rgba(83, 83, 83, 0.23);
}
.form-check-input.w-h-20 {
  width: 20px;
  height: 20px;
}
.form-check-input:disabled {
  background-color: var(--color-lighter-dark) !important;
  pointer-events: initial;
  cursor: not-allowed;
}

.form-select:focus,
.form-control:focus {
  border-color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}

.form-control.placeholder-italic::-moz-placeholder {
  font-style: italic;
}

.form-control.placeholder-italic::placeholder {
  font-style: italic;
}

.max-w-124px {
  max-width: 124px;
  width: 124px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
  width: 100%;
  padding: 0;
  height: calc(100vh - 79px);
  padding-left: 294px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
#content.active {
  transition: all 0.6s;
}
@media (min-width: 992px) {
  #content.active {
    padding-left: 60px;
  }
}
@media (max-width: 991.98px) {
  #content {
    padding-left: 0;
    height: calc(100vh - 48px);
  }
}
@media (max-width: 767.98px) {
  #content {
    height: calc(100vh - 48px);
  }
}
#content .command-wrap {
  height: 100%;
}
#content .command-wrap.add-new-employee .command-output {
  height: calc(100% - 72px);
}
#content .command-wrap .command-output {
  height: calc(100% - 84px);
  overflow: hidden;
  overflow-y: auto;
}
#content .command-wrap .command-output.event-log-wrap {
  height: calc(100% - 105px);
}
@media (max-width: 767.98px) {
  #content .command-wrap .command-output.event-log-wrap {
    height: calc(100% - 99px);
  }
}
#content .command-wrap .command-output .event-log-output {
  padding: 40px;
}
#content .command-wrap .command-output .event-log-output .event-log-text {
  display: flex;
  margin-bottom: 8px;
}
#content .command-wrap .command-output .event-log-output .event-log-text.text-success {
  color: #049f3a !important;
}
#content .command-wrap .command-output .event-log-output .event-log-text .log-text {
  margin-right: 50px;
  min-width: 210px;
}
@media (max-width: 767.98px) {
  #content .command-wrap .command-output {
    height: calc(100% - 64px);
  }
}
@media (max-width: 575.98px) {
  #content .command-wrap .command-output .event-log-output {
    padding: 16px;
  }
  #content .command-wrap .command-output .event-log-output .event-log-text {
    margin-bottom: 6px;
    font-size: 11px;
  }
  #content .command-wrap .command-output .event-log-output .event-log-text .log-text {
    margin-right: 24px;
    min-width: 160px;
  }
}
#content .command-wrap .command-output .command-output-wrap {
  padding: 32px;
}
#content .command-wrap .command-output .command-output-wrap .command-line {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 0;
  padding-left: 8px;
}
#content .command-wrap .command-output .command-output-wrap .command-line span {
  color: #99a9ff;
  text-transform: lowercase;
  font-size: 20px;
}
#content .command-wrap .command-output .command-output-wrap .command-output-table-wrap .table-responsive table {
  width: auto;
  max-width: 100%;
}
#content .command-wrap .command-output .command-output-wrap .command-output-table-wrap .table-responsive table tr th {
  background: transparent;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  color: #47c1c1;
}
#content .command-wrap .command-output .command-output-wrap .command-output-table-wrap .table-responsive table tr td {
  background: transparent;
  color: #049f3a;
  font-size: 18px;
  padding: 2px 8px;
  white-space: nowrap;
}
@media (max-width: 1399.98px) {
  #content .command-wrap .command-output .command-output-wrap .command-line {
    font-size: 16px;
  }
  #content .command-wrap .command-output .command-output-wrap .command-line span {
    font-size: 18px;
  }
  #content .command-wrap .command-output .command-output-wrap .command-output-table-wrap .table-responsive table tr th {
    font-size: 16px;
  }
  #content .command-wrap .command-output .command-output-wrap .command-output-table-wrap .table-responsive table tr td {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  #content .command-wrap .command-output .command-output-wrap {
    padding: 10px;
  }
  #content .command-wrap .command-output .command-output-wrap .command-line {
    font-size: 14px;
  }
  #content .command-wrap .command-output .command-output-wrap .command-line span {
    font-size: 15px;
  }
  #content .command-wrap .command-output .command-output-wrap .command-output-table-wrap .table-responsive table tr th {
    font-size: 14px;
  }
  #content .command-wrap .command-output .command-output-wrap .command-output-table-wrap .table-responsive table tr td {
    font-size: 14px;
  }
}
#content .command-wrap .send-command {
  width: 100%;
  padding: 0 10px 17px 10px;
}
#content .command-wrap .send-command hr {
  border-color: #707070;
  opacity: 1;
  margin-top: 0;
}
#content .command-wrap .send-command .command-form {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 0.375rem;
}
#content .command-wrap .send-command .command-form .form-control {
  border: none;
  border-radius: 8px;
  margin-right: 32px;
  height: 50px;
}
#content .command-wrap .send-command .command-form .form-control:focus {
  box-shadow: none;
  background: #dddddd;
}
#content .command-wrap .send-command .command-form .btn {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 6px 12px;
  border-radius: 12px;
  min-width: 120px;
}
#content .command-wrap .send-command .command-form .btn:focus {
  box-shadow: none;
}
@media (max-width: 767.98px) {
  #content .command-wrap .send-command {
    padding: 0 10px 13px 10px;
  }
  #content .command-wrap .send-command hr {
    margin-bottom: 14px;
  }
  #content .command-wrap .send-command .command-form {
    padding: 0 10px;
  }
  #content .command-wrap .send-command .command-form form .form-control {
    margin-right: 20px;
    height: 35px;
  }
  #content .command-wrap .send-command .command-form form .btn {
    padding: 5px 8px;
    min-width: 100px;
  }
}

.information-alert {
  padding: 0;
  margin: 0;
  font-family: "Exo 2", sans-serif;
}
.information-alert .container-fluid .alert {
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 0;
  color: #00489a;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.information-alert .container-fluid .alert p {
  color: #00489a;
  font-family: "Exo 2", sans-serif;
}
.information-alert .container-fluid .alert ul {
  margin: 0;
  padding: 0 0 0 0.5rem;
  list-style: none;
}
.information-alert .container-fluid .alert ul li i {
  color: rgba(0, 72, 154, 0.75);
  margin-right: 0.375rem;
}

.custom-card {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.custom-card .container-fluid .custom-card-box {
  border: 1px solid #dddddd;
  background: #ffffff;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-header {
  border-bottom: 1px solid #dddddd;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-header .fbh-title {
  border-bottom: 1px solid #dddddd;
  display: flex;
  align-items: center;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-header .fbh-title h2 {
  font-size: 1.25rem;
  margin-bottom: 0;
  border-left: 1px solid #dddddd;
  padding: 0.5rem;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-header .fbh-title i {
  padding: 0 0.675rem;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-header .fbh-info {
  padding: 0.5rem 0.5rem 0.5rem 2.125rem;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-header .fbh-info p {
  margin-bottom: 0;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content {
  padding: 2rem;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group {
  font-family: "Exo 2", sans-serif;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group label {
  font-weight: 600;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group label.custom-file-label {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group label.custom-file-label::after {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group label.custom-file-label.cfl-left-align {
  padding: 0.375rem 0.75rem 0.375rem 5.5rem;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group label.custom-file-label.cfl-left-align::after {
  left: 0;
  right: auto;
  border-left: 0;
  border-right: 1px solid #dddddd;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group .form-control {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group .form-control:focus {
  box-shadow: none;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group .input-group .custom-select {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group .input-group .custom-select:focus {
  box-shadow: none;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group .input-group .input-group-prepend .input-group-text {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group .input-group .input-group-append .input-group-text {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group .input-group.ig-right-align .input-group-prepend .input-group-text {
  border-left: 0;
}
.custom-card .container-fluid .custom-card-box .custom-card-box-content .form-group .custom-file-input {
  cursor: pointer;
}

.calendar-section {
  padding: 10px 24px;
}
.calendar-section .calendar-top-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-white);
  margin-bottom: 12px;
}
.calendar-section .calendar-top-option .btn {
  color: var(--color-light-dark);
  padding: 0;
}
.calendar-section .calendar-top-option .btn span {
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
.calendar-section .calendar-top-option .btn:active {
  border: none;
}
.calendar-section .calendar-top-option .btn:hover {
  color: var(--color-white);
}
.calendar-section .calendar-top-option .btn:hover span {
  opacity: 1;
}
.calendar-section .calendar-top-option .previous-month,
.calendar-section .calendar-top-option .previous-data {
  font-size: 24px;
}
.calendar-section .calendar-top-option .month-name,
.calendar-section .calendar-top-option .year-name {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
}
.calendar-section .calendar-top-option .next-month,
.calendar-section .calendar-top-option .next-data {
  font-size: 24px;
}
.calendar-section .calendar-top-option .order-options-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.calendar-section .calendar-top-option .order-options-menu ul li a {
  color: var(--color-text);
  text-decoration: none;
  padding: 0 9px;
  border-right: 1px solid var(--color-white-gray);
  position: relative;
  transition: all 0.25s ease-in-out;
}
.calendar-section .calendar-top-option .order-options-menu ul li a:last-child {
  border-right: none;
}
.calendar-section .calendar-top-option .order-options-menu ul li a::before {
  content: "";
  height: 1px;
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -3px;
  transition: all 0.25s ease-in-out;
}
.calendar-section .calendar-top-option .order-options-menu ul li a::after {
  content: "";
  width: 2px;
  height: 14px;
  position: absolute;
  top: 3px;
  right: 0;
  transition: all 0.25s ease-in-out;
  background: var(--color-white-gray);
}
.calendar-section .calendar-top-option .order-options-menu ul li a.active::before {
  content: "";
  height: 1px;
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: -3px;
  background-color: var(--color-holiday);
}
.calendar-section .calendar-top-option .order-options-menu ul li a:hover, .calendar-section .calendar-top-option .order-options-menu ul li a:focus {
  color: var(--color-light-dark);
}
.calendar-section .calendar-top-option .order-options-menu ul li a:hover::before, .calendar-section .calendar-top-option .order-options-menu ul li a:focus::before {
  background-color: var(--color-light-dark);
}
.calendar-section .calendar-top-option .order-options-menu ul li:last-child a::after {
  display: none;
}
@media (max-width: 1299.98px) {
  .calendar-section .calendar-top-option .order-options-menu ul li a {
    padding: 0 6px;
  }
}
@media (max-width: 1199.98px) {
  .calendar-section .calendar-top-option .order-options-menu {
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 0;
  }
  .calendar-section .calendar-top-option .order-options-menu ul {
    flex-wrap: inherit;
  }
  .calendar-section .calendar-top-option .order-options-menu ul li a {
    font-size: 14px;
    padding: 0 6px;
  }
  .calendar-section .calendar-top-option .order-options-menu ul li a::before {
    left: 6px;
    right: 6px;
    bottom: -3px;
  }
  .calendar-section .calendar-top-option .order-options-menu ul li a.active::before {
    left: 6px;
    right: 6px;
    bottom: -3px;
  }
}
@media (min-width: 576px) {
  .calendar-section .calendar-top-option .year-name {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .calendar-section .calendar-top-option .btn span {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .calendar-section .calendar-top-option {
    margin-bottom: 6px;
  }
}
.calendar-section .calendar-wrap .table-responsive .table tr {
  border-color: var(--color-light-dark);
}
.calendar-section .calendar-wrap .table-responsive .table tr th,
.calendar-section .calendar-wrap .table-responsive .table tr td {
  background: var(--color-bg-dark);
  border-color: var(--color-light-dark);
  color: var(--color-white);
  padding: 4px 6px;
}
.calendar-section .calendar-wrap .table-responsive .table tr th {
  text-transform: uppercase;
  text-align: center;
}
.calendar-section .calendar-wrap .table-responsive .table tr td {
  font-size: 12.5px;
}
.calendar-section .calendar-wrap .table-responsive .table tr td:hover {
  background: #404040;
}
.calendar-section .calendar-wrap .table-responsive .table tr td.current-date {
  padding: 0;
}
.calendar-section .calendar-wrap .table-responsive .table tr td.current-date .day-wrap {
  padding: 4px;
  border: 3px solid var(--color-light-dark);
  background: #443e3e;
  height: 118px;
}
.calendar-section .calendar-wrap .day-wrap {
  color: var(--color-white-gray);
  height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  white-space: nowrap;
}
.calendar-section .calendar-wrap .day-wrap .daynorder {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  line-height: 1;
}
.calendar-section .calendar-wrap .day-wrap .daynorder .month-date {
  font-size: 15px;
}
.calendar-section .calendar-wrap .day-wrap .daynorder .day-order {
  width: 100%;
  text-align: center;
}
.calendar-section .calendar-wrap .day-wrap .daynorder .day-order .day-view-link {
  color: var(--color-white-gray);
  transition: all 0.25s ease-in-out;
}
.calendar-section .calendar-wrap .day-wrap .daynorder .day-order .day-view-link:hover {
  opacity: 0.7;
}
.calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list {
  display: flex;
  align-items: center;
  width: 100%;
}
.calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list .o-label {
  min-width: 32px;
  margin-right: 4px;
  line-height: 13px;
}
.calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list .progress {
  min-width: 64px;
  width: 100%;
  height: 11px;
  background: #afafaf;
  position: relative;
}
.calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list .progress .progress-bar {
  font-size: 10px;
}
.calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list .progress .progress-percentage {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  font-size: 10px;
  line-height: 11px;
  text-align: center;
  z-index: 1;
  color: var(--color-white);
}
.calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list .status-count {
  margin-left: 4px;
  line-height: 13px;
}
.calendar-section .calendar-wrap .day-wrap .order-total-bydate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  padding-top: 3px;
}
.calendar-section .calendar-wrap .day-wrap .late-order-shipped {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 6px;
  white-space: nowrap;
}
@media (max-width: 1700px) {
  .calendar-section .calendar-wrap .table-responsive .table tr td {
    padding: 5px;
  }
}
@media (max-width: 1500px) {
  .calendar-section .calendar-wrap .table-responsive .table tr td {
    font-size: 13px;
    padding: 6px 5px;
  }
  .calendar-section .calendar-wrap .table-responsive .table tr td.current-date {
    padding: 0;
  }
  .calendar-section .calendar-wrap .table-responsive .table tr td.current-date .day-wrap {
    height: 109px;
  }
  .calendar-section .calendar-wrap .table-responsive .table tr .day-wrap {
    height: 99px;
  }
  .calendar-section .calendar-wrap .day-wrap .daynorder .month-date {
    font-size: 14px;
  }
  .calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list .o-label {
    min-width: 29px;
    margin-right: 3px;
    font-size: 11px;
    line-height: 12px;
  }
  .calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list .progress {
    min-width: 54px;
    height: 8px;
  }
  .calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list .progress .progress-percentage {
    font-size: 9px;
    line-height: 9.5px;
  }
  .calendar-section .calendar-wrap .day-wrap .order-status-bydate .osbd-list .status-count {
    margin-left: 3px;
    font-size: 11px;
    line-height: 12px;
  }
  .calendar-section .calendar-wrap .day-wrap .late-order-shipped {
    font-size: 12px;
    line-height: 14px;
    margin-top: 6px;
  }
}
@media (max-width: 575.98px) {
  .calendar-section {
    padding: 8px 12px;
  }
}

.order-calendar-section {
  padding: 0 24px;
}
.order-calendar-section .order-calendar-data {
  display: flex;
}
.order-calendar-section .order-calendar-data .left-side {
  width: 266px;
  padding-right: 16px;
}
.order-calendar-section .order-calendar-data .left-side .data-title {
  font-size: 98px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.order-calendar-section .order-calendar-data .left-side .data-title span.month {
  font-size: 45px;
  line-height: 1;
  text-transform: uppercase;
}
.order-calendar-section .order-calendar-data .left-side .data-title span.day {
  font-size: 164px;
  color: #726f6f;
  text-shadow: -3px -3px 0 #bfbcbc, 3px -3px 0 #bfbcbc, -3px 3px 0 #bfbcbc, 3px 3px 0 #bfbcbc;
}
.order-calendar-section .order-calendar-data .left-side .data-totol .table tr.data-table-title {
  border-bottom: 1px solid var(--color-lighter-dark);
}
.order-calendar-section .order-calendar-data .left-side .data-totol .table tr.data-table-total {
  border-top: 1px solid var(--color-lighter-dark);
}
.order-calendar-section .order-calendar-data .left-side .data-totol .table tr td {
  background: transparent;
  color: var(--color-white);
  padding: 2px 0;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap {
  background: var(--color-dark);
  padding: 4px;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .month-name {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.weekdays li {
  display: inline-block;
  width: 14.285%;
  color: var(--color-text);
  text-align: center;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.weekdays li.holiday {
  color: var(--color-holiday);
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li {
  list-style-type: none;
  display: inline-block;
  width: 14.285%;
  text-align: center;
  margin-bottom: 5px;
  font-size: 14px;
  transition: all 0.25s ease-in-out;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li a {
  color: var(--color-text);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li a:hover {
  color: var(--color-lighter-dark);
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li.other-month {
  color: var(--color-light-dark);
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li.other-month a {
  color: var(--color-light-dark);
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li.other-month a:hover {
  color: var(--color-lighter-dark);
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li.holiday {
  color: var(--color-holiday);
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li.holiday.currentday {
  color: var(--color-white);
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li.selected {
  background: #0e6377;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li.selected.start-date {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li.selected.end-date {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap ul.days li.currentday span {
  background: var(--color-holiday);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  margin: 0 auto;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link {
  color: var(--color-text);
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link ul li {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link ul li.other-month {
  color: var(--color-light-dark);
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link ul li span {
  z-index: 2;
  position: relative;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link ul li.selected {
  background: #0e6377;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link ul li.selected:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link ul li.selected:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link.selected ul li {
  background: #0e6377;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link.selected ul li:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link.selected ul li:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link:hover ul li {
  background: #535353;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link:hover ul li:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.order-calendar-section .order-calendar-data .left-side .single-month-wrap .week-wrap .week-link:hover ul li:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media (max-width: 1199.98px) {
  .order-calendar-section .order-calendar-data .left-side .data-title {
    font-size: 64px;
    margin-bottom: 10px;
  }
  .order-calendar-section .order-calendar-data .left-side .data-title span.month {
    font-size: 38px;
  }
  .order-calendar-section .order-calendar-data .left-side .data-title span.day {
    font-size: 120px;
  }
  .order-calendar-section .order-calendar-data .left-side .data-totol .table tr td {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .order-calendar-section .order-calendar-data .left-side .data-title span.month {
    font-size: 40px;
  }
  .order-calendar-section .order-calendar-data .left-side .data-title span.day {
    font-size: 100px;
  }
}
.order-calendar-section .order-calendar-data .right-side {
  width: calc(100% - 266px);
}
.order-calendar-section .order-calendar-data .right-side .right-side-content-wrap {
  height: calc(100vh - 212px);
  display: block;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 8px;
}
@media (max-width: 575.98px) {
  .order-calendar-section .order-calendar-data .right-side .right-side-content-wrap {
    padding: 0 2px;
  }
}
.order-calendar-section .order-calendar-data .right-side .months-of-year {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  padding-top: 10px;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 8px;
  margin-bottom: 16px;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box.yearly-calendar-box {
  position: relative;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box.yearly-calendar-box .checkbox-select-month {
  left: 16px;
  top: 8px;
  z-index: 1;
}
@media (max-width: 1600px) {
  .order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media (max-width: 1199.98px) {
  .order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box .has-payroll {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 216px;
  cursor: pointer;
  transform-style: preserve-3d;
  transform-origin: center right;
  transition: transform 1s;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box .has-payroll.is-flipped {
  transform: translateX(-100%) rotateY(-180deg);
  -webkit-transform: translateX(-100%) rotateY(-180deg);
  -moz-transform: translateX(-100%) rotateY(-180deg);
  -ms-transform: translateX(-100%) rotateY(-180deg);
  -o-transform: translateX(-100%) rotateY(-180deg);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box .has-payroll.is-flipped .single-month-wrap {
  display: flex;
  flex-direction: column;
  background: var(--color-dark);
  color: var(--color-white);
  border: 4px solid var(--color-dark);
  padding-top: 4px;
  transition: all 0.25s ease-in-out;
  height: 100%;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box .has-payroll.is-flipped .single-month-wrap.flip-payroll-box {
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box .has-payroll.is-flipped .single-month-wrap.flip-payroll-box.flip-box-back {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  height: 100%;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box .has-payroll.is-flipped .single-month-wrap.flip-payroll-box.flip-box-front {
  height: 0;
}
@media (max-width: 1199.98px) {
  .order-calendar-section .order-calendar-data .right-side .months-of-year .single-calendar-box .has-payroll {
    min-height: 198px;
  }
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap {
  display: flex;
  flex-direction: column;
  background: var(--color-dark);
  color: var(--color-white);
  border: 4px solid var(--color-dark);
  padding-top: 4px;
  transition: all 0.25s ease-in-out;
  height: 100%;
  min-height: 200px;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap.flip-payroll-box {
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap.flip-payroll-box.flip-box-back {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  height: 0;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: all 0.25s ease-in-out;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name .monthly-calendar-link {
  color: var(--color-white);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name .monthly-calendar-link:hover {
  color: var(--color-light-dark);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name .calander-flip-btn {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 0;
  display: flex;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name .check-month-total {
  position: absolute;
  right: -1px;
  top: -1px;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name .check-month-total .form-check-input {
  width: 19px;
  height: 19px;
  background-color: #535353;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name .check-month-total .form-check-input:checked {
  border-color: #535353;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name .check-month-total .form-check-input:focus {
  border-color: #535353;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.14);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.weekdays li {
  display: inline-block;
  width: 14.285%;
  color: var(--color-text);
  text-align: center;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.weekdays li.holiday {
  color: var(--color-holiday);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.days li {
  list-style-type: none;
  display: inline-block;
  width: 14.285%;
  text-align: center;
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--color-text);
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.days li .daily-calendar-link {
  color: var(--color-text);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.days li .daily-calendar-link:hover {
  color: var(--color-light-dark);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.days li:hover {
  color: var(--color-lighter-dark);
  background: #404040;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.days li.holiday {
  color: var(--color-holiday);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.days li.holiday .daily-calendar-link {
  color: var(--color-holiday);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.days li.currentday span {
  background: var(--color-holiday);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  margin: 0 auto;
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap:hover {
  background: #111;
  border-color: #111;
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.2);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap:hover .month-name {
  color: var(--color-light-dark);
}
.order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap.current-month {
  border-color: var(--color-lighter-dark);
}
@media (max-width: 1399.98px) {
  .order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name {
    font-size: 14px;
  }
  .order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap .month-name .fa-repeat {
    left: 2px;
  }
  .order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.weekdays li {
    font-size: 13px;
  }
  .order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.days li {
    font-size: 12px;
  }
  .order-calendar-section .order-calendar-data .right-side .months-of-year .single-month-wrap ul.days li.currentday span {
    width: 20px;
    height: 20px;
    border-radius: 20px;
  }
}
.order-calendar-section .order-calendar-data .right-side .report-box {
  margin-bottom: 16px;
  height: 100px;
  background: #a2a2a2;
}
.order-calendar-section .order-calendar-data .right-side .order-calendar-option {
  padding-top: 16px;
}
.order-calendar-section .order-calendar-data .right-side .order-calendar-option .btn {
  padding: 7px 16px;
  background: #d5d5d5;
  color: var(--color-dark);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-right: 12px;
  transition: all 0.25s ease-in-out;
}
.order-calendar-section .order-calendar-data .right-side .order-calendar-option .btn:hover {
  background: var(--color-lighter-dark);
  color: var(--color-white);
}
@media (max-width: 1399.98px) {
  .order-calendar-section .order-calendar-data .right-side .order-calendar-option .btn {
    padding: 5px 8px;
    font-size: 13px;
    margin-right: 2px;
  }
}
@media (max-width: 575.98px) {
  .order-calendar-section .order-calendar-data .right-side .order-calendar-option {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.order-calendar-section .order-calendar-data .right-side .day-order-list {
  margin-top: 16px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-lighter-dark);
  margin-bottom: 20px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header h3 {
  font-size: 24px;
  margin-bottom: 6px;
  padding-right: 8px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header h3 span {
  padding-top: 1px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header .form-check {
  margin-bottom: 6px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header .form-check .form-check-input[type=checkbox] {
  border-radius: 0;
  width: 17px;
  height: 16px;
  cursor: pointer;
  margin-top: 10px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header .form-check .form-check-input:checked {
  background-color: #3f51b5;
  border-color: #3f51b5;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(63, 81, 181, 0.33);
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header .form-check .form-check-label {
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
  padding-right: 6px;
}
@media (max-width: 1199.98px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header h3 {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header h3 {
    font-size: 18px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header .form-check .form-check-input[type=checkbox] {
    margin-top: 6px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-header .form-check .form-check-label {
    font-size: 18px;
  }
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order {
  flex: 0 0 25%;
  max-width: 25%;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check {
  margin-right: 2px;
  margin-bottom: 0;
  margin-top: 2px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check .form-check-input[type=checkbox] {
  border-radius: 0;
  width: 17px;
  height: 16px;
  cursor: pointer;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check .form-check-input:checked {
  background-color: #3f51b5;
  border-color: #3f51b5;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(63, 81, 181, 0.33);
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check .form-check-label {
  cursor: pointer;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .download-pdf-wrap {
  margin-right: 7px;
  width: 20px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .download-pdf-wrap img {
  width: 100%;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .order-note-link {
  padding-right: 2px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option a.order-id-link {
  color: var(--color-text);
  text-decoration: none;
  margin-right: 6px;
  margin-top: 2px;
  font-weight: 600;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option a.order-id-link:hover {
  color: var(--color-white-gray);
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .order-review {
  color: var(--color-orange);
  font-size: 14px;
  margin-top: 3px;
  letter-spacing: -1px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .order-review .fa-regular.fa-star {
  color: #9d9d9d;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .hub-icon {
  background: #535353;
  width: 26px;
  min-width: 26px;
  height: 26px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  margin-top: 1px;
}
.order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .hub-icon img {
  width: 18px;
  filter: invert(0%) brightness(222%);
}
@media (max-width: 1770px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .download-pdf-wrap {
    margin-right: 5px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .hub-icon {
    margin-right: 4px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option a.order-id-link {
    font-size: 15px;
    margin-right: 4px;
  }
}
@media (max-width: 1600px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .order-review {
    letter-spacing: -1.5px;
    font-size: 12px;
    margin-top: 2px;
  }
}
@media (max-width: 1550px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media (max-width: 1300px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1199.98px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .download-pdf-wrap {
    margin-right: 4px;
    width: 16px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .hub-icon {
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 4px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .hub-icon img {
    width: 13px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option a.order-id-link {
    font-size: 14px;
    margin-right: 5px;
  }
}
@media (max-width: 1060px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option {
    margin-bottom: 6px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check {
    margin-right: 6px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check .form-check-input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check .form-check-label {
    cursor: pointer;
    font-size: 14px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .order-review {
    font-size: 12px;
  }
}
@media (max-width: 690px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check {
    margin-right: 2px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check .form-check-input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .form-check .form-check-label {
    cursor: pointer;
    font-size: 12px;
  }
  .order-calendar-section .order-calendar-data .right-side .day-order-list .dol-body .single-order .order-select-option .order-review {
    font-size: 10px;
  }
}
@media (max-width: 1199.98px) {
  .order-calendar-section .order-calendar-data .left-side {
    width: 216px;
    padding-right: 4px;
  }
  .order-calendar-section .order-calendar-data .right-side {
    width: calc(100% - 216px);
  }
}
@media (max-width: 575.98px) {
  .order-calendar-section .order-calendar-data {
    flex-direction: column;
  }
  .order-calendar-section .order-calendar-data .left-side {
    width: 100%;
    padding-right: 8px;
  }
  .order-calendar-section .order-calendar-data .right-side {
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .order-calendar-section {
    padding: 0 15px;
  }
}
@media (max-width: 575.98px) {
  .order-calendar-section {
    padding: 0 12px;
  }
}

.buy-and-payment-wrap {
  padding: 12px 24px;
}
.buy-and-payment-wrap .main-table .table-responsive .table {
  border-collapse: separate;
  border-spacing: 0 10px;
}
.buy-and-payment-wrap .main-table .table-responsive .table thead tr th {
  background: transparent;
  color: var(--color-text);
  border: none;
  font-size: 16px;
  white-space: nowrap;
  vertical-align: middle;
}
.buy-and-payment-wrap .main-table .table-responsive .table thead tr th .blank {
  width: 29px;
  height: 24px;
  display: inline-block;
  margin-right: 3px;
}
.buy-and-payment-wrap .main-table .table-responsive .table thead tr th .form-check-inline {
  margin-right: 0;
  margin-bottom: 0;
}
.buy-and-payment-wrap .main-table .table-responsive .table thead tr th .form-check-inline .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: #d1c7c7;
  border-color: var(--color-lighter-dark);
}
.buy-and-payment-wrap .main-table .table-responsive .table thead tr th .form-check-inline .form-check-input:checked {
  background-color: #817e7e;
}
.buy-and-payment-wrap .main-table .table-responsive .table thead tr th .form-check-inline .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(65, 65, 65, 0.13);
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr.module_list td img.module-icon {
  width: 25px;
  height: 25px;
  -o-object-fit: fill;
     object-fit: fill;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td {
  padding: 6px;
  background: #a4a5a4;
  color: var(--color-white);
  border: none;
  font-size: 17px;
  line-height: 22px;
  white-space: nowrap;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn {
  color: var(--color-text);
  font-size: 24px;
  line-height: 1;
  margin-right: 8px;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn:hover {
  color: var(--color-white-gray);
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn i {
  transition: all 0.25s ease;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn[aria-expanded=true] i {
  transform: rotatex(180deg);
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .client_ledger_link {
  color: var(--color-white);
  width: 268px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .client_ledger_link:hover {
  color: #ddd;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .sell-invoice-view-link {
  color: var(--color-white);
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .sell-invoice-view-link:hover {
  color: #ddd;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .form-check-inline {
  margin-right: 0;
  margin-bottom: 0;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .form-check-inline .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: #d1c7c7;
  border-color: var(--color-lighter-dark);
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .form-check-inline .form-check-input:checked {
  background-color: #817e7e;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .form-check-inline .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(65, 65, 65, 0.13);
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .flag-status {
  display: inline-flex;
  width: 17px;
  height: 17px;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .flag-status img {
  width: 17px;
  height: 17px;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.edit,
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.delete,
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.view {
  color: var(--color-text);
  font-size: 21px;
  text-decoration: none;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.edit img,
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.delete img,
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.view img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.edit:hover,
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.delete:hover,
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.view:hover {
  opacity: 0.625;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.edit {
  margin-right: 2px;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.view {
  margin-right: 2px;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td.due-amount, .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td.social-amount {
  color: #000aff;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .elployee-thumbs {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 42px;
  background: var(--color-text);
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .ename-english,
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .ename-chinese {
  line-height: 1.15;
  color: var(--color-white);
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr.paid td {
  background: #4D6A3F;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr.partial_paid td {
  background: #c35700;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr.advance_paid td {
  background: #FFC629;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr.hidden {
  display: none;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr.child td {
  background: transparent;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr.child td .table-child {
  padding: 8px;
  margin-bottom: 0;
  border: 1px solid #626262;
  border-radius: 6px;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody tr.child td .table-child td {
  background: #626262;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody.sub-row tr td {
  background: #626262;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody.sub-row tr td:first-child {
  background: transparent;
}
.buy-and-payment-wrap .main-table .table-responsive .table tbody.sub-row tr td:nth-child(2) {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
@media (max-width: 1700px) {
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td {
    font-size: 15px;
    line-height: 22px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td.companey-name {
    width: 350px;
    max-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 1399.98px) {
  .buy-and-payment-wrap .main-table .table-responsive .table thead tr th {
    font-size: 14px;
    padding: 4px 5px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table thead tr th .form-check-inline .form-check-input {
    width: 18px;
    height: 18px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table thead tr th .blank {
    width: 23px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td {
    font-size: 15px;
    line-height: 21px;
    vertical-align: middle;
    padding: 4px 5px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td.companey-name {
    width: 300px;
    max-width: 300px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn {
    font-size: 20px;
    line-height: 1;
    margin-right: 6px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .form-check-inline .form-check-input {
    width: 18px;
    height: 18px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.edit,
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.delete {
    font-size: 18px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.edit img,
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td a.delete img {
    width: 22px;
    height: 22px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td .elployee-thumbs {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 1299.98px) {
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td {
    font-size: 14px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td.companey-name {
    width: 230px;
    max-width: 230px;
  }
}
@media (max-width: 991.98px) {
  .buy-and-payment-wrap .main-table .table-responsive .table thead tr th {
    font-size: 13px;
    padding: 4px 5px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td {
    font-size: 13px;
    line-height: 17px;
  }
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table {
  border-spacing: 0 6px;
  margin-bottom: 6px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table thead tr th {
  padding-top: 1px;
  vertical-align: middle;
  padding-bottom: 2px;
}
@media (max-width: 991.98px) {
  .buy-and-payment-wrap .main-table .table-responsive .table.order_list_table thead tr th {
    font-size: 13px;
  }
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.review_approved td {
  background: #4D6A3F;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.review_approved td:nth-child(1), .buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.review_approved td:nth-child(2) {
  background: #4D6A3F;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.review_approved td .download-pdf-link {
  color: #ff5a5a;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td {
  font-size: 16px;
  line-height: 20px;
  vertical-align: middle;
  padding: 7px 8px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td.order-vendor-name {
  max-width: 95px;
  width: 97px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td:first-child {
  width: 100px;
  max-width: 100px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .order-note-link {
  color: #ffc107;
  font-size: 20px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .order-note-link:hover {
  color: #ff7800;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .order-progress-wrap {
  max-width: 120px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .order-progress-wrap .order-progress {
  background-color: #cfcfcf;
  height: 14px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .order-progress-wrap .order-progress .progress-bar {
  background-color: #049566;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td span.badge.text-bg-warning.text-white {
  margin-right: 4px;
  min-width: 22px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .download-pdf-link {
  color: #a32222;
  padding-left: 2px;
  font-size: 18px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .download-pdf-link img {
  width: 20px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .table-rating i {
  font-size: 18px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .table-rating i.fa-solid {
  color: #e37c00;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .table-rating i.fa-regular {
  color: #dddddd;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1650px) {
  .buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (max-width: 1399.98px) {
  .buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td {
    font-size: 15px;
    line-height: 17px;
    vertical-align: middle;
    padding: 4px 5px;
  }
}
@media (max-width: 991.98px) {
  .buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td {
    font-size: 13px;
    line-height: 15px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td .table-rating img {
    width: 20px;
    height: 22px;
  }
  .buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr td span.badge.text-bg-warning.text-white {
    font-size: 13px !important;
  }
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child {
  border-spacing: 0 0;
  padding: 0;
  padding-left: 64px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child tr td {
  width: inherit;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child tr td:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child tr td:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child tr:first-child td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 0;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child tr:first-child td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 0;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child tr:last-child td:first-child {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 6px !important;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child tr:last-child td:last-child {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 6px !important;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child td {
  background: #a4a5a4;
  vertical-align: middle;
  padding: 5px 8px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child td .upload-artwork-wrap .show-artwork {
  background: transparent;
  width: 30px;
  height: 35px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child td .upload-artwork-wrap .custom-upload-option .upload_btn {
  padding: 0 !important;
  height: 30px;
  font-size: 14px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child td .upload-artwork-wrap .show-artwork .btn-remove {
  top: -5px;
  right: -5px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child td img.file-icon {
  width: 100%;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child td .upload-artwork-wrap .custom-upload-option {
  width: 72px;
  min-width: 72px;
  max-width: 72px;
  margin-right: 2px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child td .progress {
  height: 8px;
}
.buy-and-payment-wrap .main-table .table-responsive .table.order_list_table tbody tr.child td .table-child td a.chat-notification {
  color: #fff;
  font-size: 24px;
}
.buy-and-payment-wrap.order-list-page {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.buy-and-payment-wrap.order-list-page .main-table {
  max-height: calc(100% - 28px);
  overflow: hidden;
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .buy-and-payment-wrap {
    padding: 6px 12px;
  }
}

.employee-gird-view {
  height: 100%;
}
.employee-gird-view .employee-gird-wrap {
  height: calc(100% - 67px);
  padding: 12px 24px;
  overflow: hidden;
  overflow-y: auto;
}
.employee-gird-view .employee-gird-wrap .department-wrap {
  margin-bottom: 20px;
}
.employee-gird-view .employee-gird-wrap .department-wrap .department-title {
  padding-bottom: 4px;
  font-size: 26px;
  font-weight: 400;
  border-bottom: 1px solid var(--color-lighter-dark);
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list {
  display: flex;
  flex-wrap: wrap;
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box {
  flex: 0 0 14.285%;
  max-width: 14.285%;
  padding-left: 8px;
  padding-right: 8px;
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details {
  margin-top: 16px;
  background: #4d4b4b;
  padding: 20px;
  border-radius: 12px;
  position: relative;
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details img {
  width: 100%;
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p {
  color: var(--color-text);
  line-height: 1.2;
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p.employee-name-eng {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 0;
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p.employee-name-chi {
  font-size: 15px;
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p.employee-salary {
  margin-bottom: 0;
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details a.edit-option {
  position: absolute;
  top: 9px;
  right: 10px;
}
.employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details a.edit-option img {
  width: 22px;
}
.employee-gird-view .pagination-wrap {
  margin-top: 16px;
}
@media (max-width: 1599.98px) {
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box {
    padding-left: 6px;
    padding-right: 6px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details {
    padding: 15px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p.employee-name-eng {
    font-size: 16px;
    margin-top: 8px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p.employee-name-chi {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p.employee-salary {
    font-size: 14px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details a.edit-option {
    top: 5px;
    right: 8px;
  }
}
@media (max-width: 1399.98px) {
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box {
    flex: 0 0 16.666%;
    max-width: 16.666%;
    padding-left: 6px;
    padding-right: 6px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details {
    padding: 12px;
  }
}
@media (max-width: 1199.98px) {
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p.employee-name-eng {
    font-size: 14px;
    margin-top: 6px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p.employee-name-chi {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details p.employee-salary {
    font-size: 13px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box .employee-details a.edit-option {
    top: 5px;
    right: 8px;
  }
}
@media (max-width: 1050px) {
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 575.98px) {
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media (max-width: 430px) {
  .employee-gird-view .employee-gird-wrap {
    padding: 12px;
  }
  .employee-gird-view .employee-gird-wrap .department-wrap .employee-list .employee-box {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-wrap .pagination {
  margin-bottom: 0;
}
.pagination-wrap .pagination .page-item .page-link {
  background: transparent;
  color: var(--color-text);
  border: none;
  padding: 3px;
  font-size: 18px;
}
.pagination-wrap .pagination .page-item .page-link:hover {
  color: var(--color-light-dark);
}
.pagination-wrap .pagination .page-item .page-link:focus {
  color: var(--color-light-dark);
  box-shadow: none;
}
.pagination-wrap .pagination .page-item:first-child .page-link {
  padding-right: 8px;
}
.pagination-wrap .pagination .page-item:last-child .page-link {
  padding-left: 8px;
}
.pagination-wrap .show-rows {
  margin-right: 6px;
}
.pagination-wrap .show-rows .show-rows-wrap {
  display: flex;
  align-items: center;
}
.pagination-wrap .show-rows .show-rows-wrap .col-form-label {
  white-space: nowrap;
  padding-right: 8px;
}
.pagination-wrap .show-rows .show-rows-wrap .form-select {
  width: 70px;
  background-color: #2e2d2d;
  color: #fff;
  text-align: center;
  font-size: 16px;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-position: right 6px center;
  padding: 3px 20px 3px 4px;
}
.pagination-wrap .show-rows .show-rows-wrap .form-select:focus {
  box-shadow: none;
}
@media (max-width: 991.98px) {
  .pagination-wrap {
    margin-top: 10px !important;
    height: 35px !important;
  }
  .pagination-wrap .pagination .page-item .page-link {
    font-size: 14px;
  }
  .pagination-wrap .show-rows .show-rows-wrap .col-form-label {
    font-size: 14px;
  }
  .pagination-wrap .show-rows .show-rows-wrap .form-select {
    font-size: 14px;
    width: 55px;
    padding: 3px 16px 3px 4px;
    background-position: right 2px center;
  }
}

.new-employee-form {
  padding: 12px 24px;
}
.new-employee-form .form-title {
  padding-bottom: 4px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 400;
  border-bottom: 1px solid var(--color-lighter-dark);
}
.new-employee-form .col-form-label {
  flex: 0 0 28%;
  max-width: 28%;
  text-align: right;
  line-height: 1.1;
}
.new-employee-form .custom-input-width {
  flex: 0 0 72%;
  max-width: 72%;
}
.new-employee-form .custom-input-width .passsword-container {
  position: relative;
}
.new-employee-form .custom-input-width .passsword-container .toggle-icon {
  position: absolute;
  top: 6px;
  right: 10px;
}
.new-employee-form .custom-input-width .passsword-container .toggle-icon img {
  width: 27px;
}
.new-employee-form .custom-input-width .form-control {
  border-radius: 6px;
  height: 40px;
  border: none;
  color: var(--color-bg-dark);
  font-size: 18px;
  letter-spacing: 0.625px;
}
.new-employee-form .custom-input-width .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.new-employee-form .custom-input-width textarea.form-control {
  border-radius: 8px;
  height: auto;
  border: none;
  color: var(--color-bg-dark);
  font-size: 18px;
  letter-spacing: 0.625px;
}
.new-employee-form .custom-input-width textarea.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.new-employee-form .custom-input-width select {
  border: none;
  height: 40px;
}
.new-employee-form .custom-input-width select:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.new-employee-form .dob-width {
  flex: 0 0 28%;
  max-width: 28%;
  position: relative;
}
.new-employee-form .dob-width .form-control {
  border-radius: 8px;
  height: 40px;
  border: none;
  color: var(--color-bg-dark);
  font-size: 18px;
  letter-spacing: 0.625px;
}
.new-employee-form .dob-width .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.new-employee-form .date_options_wrap {
  flex: 0 0 72%;
  max-width: 72%;
  display: grid;
  -moz-column-gap: 12px;
       column-gap: 12px;
  grid-template-columns: auto auto auto;
}
.new-employee-form .date_options_wrap #id_joining_date_month:focus,
.new-employee-form .date_options_wrap #id_joining_date_day:focus,
.new-employee-form .date_options_wrap #id_joining_date_year:focus {
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.new-employee-form .custom-upload-option {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
.new-employee-form .custom-upload-option .upload_input {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}
.new-employee-form .custom-upload-option .upload_btn {
  border: none;
  border-radius: 8px;
  color: #4a566e;
  background-color: var(--color-white);
  padding: 5px 20px 5px 32px;
  font-size: 20px;
  width: 100%;
  height: 40px;
}
.new-employee-form .custom-uploaded-image-view {
  display: flex;
}
.new-employee-form .custom-uploaded-image-view .img-box {
  padding: 5px;
  border-radius: 8px;
  border: 1px solid var(--color-lighter-dark);
  position: relative;
  margin-right: 6px;
  max-width: 120px;
  min-width: 64px;
  min-height: 64px;
}
.new-employee-form .custom-uploaded-image-view .img-box:last-child {
  margin-right: 0;
}
.new-employee-form .custom-uploaded-image-view .img-box img {
  border-radius: 6px;
  width: 100%;
}
.new-employee-form .custom-uploaded-image-view .img-box .btn-img-delete {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--color-danger);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
  width: 24px;
  height: 24px;
}
.new-employee-form .custom-uploaded-image-view .img-box .btn-img-delete img {
  width: 14px;
  border-radius: 0;
  vertical-align: middle;
}
.new-employee-form .po-attachment-view .custom-uploaded-image-view .img-box {
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white-gray);
}
.new-employee-form .po-attachment-view .custom-uploaded-image-view .img-box i {
  font-size: 24px;
  color: green;
}
.new-employee-form .bg-gradient-top-bottom {
  background-image: linear-gradient(#fff, #999);
}
@media (max-width: 1699.98px) {
  .new-employee-form .col-form-label {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 1499.98px) {
  .new-employee-form .col-form-label {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .new-employee-form .custom-input-width {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .new-employee-form .dob-width {
    flex: 0 0 23.333%;
    max-width: 23.333%;
    position: relative;
  }
  .new-employee-form .date_options_wrap {
    flex: 0 0 70%;
    max-width: 70%;
  }
}
@media (max-width: 1399.98px) {
  .new-employee-form {
    padding: 12px 15px;
  }
}
@media (max-width: 1250px) {
  .new-employee-form .col-form-label {
    font-size: 15px;
  }
}
@media (max-width: 1199.98px) {
  .new-employee-form .form-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .new-employee-form .col-form-label {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    margin-top: 0;
    padding-bottom: 1px;
  }
  .new-employee-form .custom-input-width {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 2px;
  }
  .new-employee-form .custom-input-width .form-control {
    height: 36px;
    font-size: 15px;
  }
  .new-employee-form .custom-input-width select {
    height: 36px;
    font-size: 15px;
  }
  .new-employee-form .custom-input-width textarea.form-control {
    height: 103px;
    font-size: 15px;
  }
  .new-employee-form .dob-width {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    margin-top: 2px;
  }
  .new-employee-form .dob-width .form-control {
    height: 36px;
  }
  .new-employee-form .date_options_wrap {
    flex: 0 0 100%;
    max-width: 100%;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .new-employee-form .custom-upload-option .upload_btn {
    padding: 3px 20px 3px 32px;
    height: 36px;
  }
}
@media (max-width: 575.98px) {
  .new-employee-form .form-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .new-employee-form .custom-input-width .form-control {
    height: 32px;
    font-size: 14px;
  }
  .new-employee-form .custom-input-width select {
    height: 32px;
    font-size: 14px;
  }
  .new-employee-form .custom-input-width textarea.form-control {
    height: 80px;
    font-size: 14px;
  }
  .new-employee-form .col-form-label {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    margin-top: 0;
    padding-bottom: 1px;
  }
}

.custom-upload-option {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
.custom-upload-option .upload_input {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  max-height: 40px;
  opacity: 0;
  cursor: pointer;
}
.custom-upload-option .upload_btn {
  border: none;
  border-radius: 8px;
  color: #4a566e;
  background-color: var(--color-white);
  padding: 5px 20px 5px 32px;
  font-size: 20px;
  width: 100%;
  height: 40px;
}
.custom-upload-option.client-upload-option {
  width: 100px;
}
.custom-upload-option.client-upload-option .upload_input {
  max-height: 36px;
}
.custom-upload-option.client-upload-option .upload_btn {
  padding: 4px 8px 4px 8px;
  font-size: 15px;
  height: 32px;
  width: 100%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.custom-upload-option.client-upload-option:hover .upload_btn {
  background-color: #6c757d;
  color: var(--color-white);
}
@media (max-width: 575.98px) {
  .custom-upload-option .upload_btn {
    height: 36px;
    font-size: 16px;
  }
}

.custom-uploaded-image-view {
  display: flex;
}
.custom-uploaded-image-view .img-box {
  padding: 5px;
  border-radius: 8px;
  border: 1px solid var(--color-lighter-dark);
  position: relative;
  margin-right: 6px;
  max-width: 120px;
}
.custom-uploaded-image-view .img-box.flag-img-box {
  width: 70px;
}
.custom-uploaded-image-view .img-box.flag-img-box .btn-img-delete {
  border: 1px solid rgb(255, 172, 172);
}
.custom-uploaded-image-view .img-box.wh-120 {
  width: 120px;
  height: 120px;
}
.custom-uploaded-image-view .img-box.wh-120 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-uploaded-image-view .img-box:last-child {
  margin-right: 0;
}
.custom-uploaded-image-view .img-box img {
  border-radius: 6px;
  width: 100%;
}
.custom-uploaded-image-view .img-box img.flag-img {
  min-width: 64px;
}
.custom-uploaded-image-view .img-box .btn-img-delete {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--color-danger);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.custom-uploaded-image-view .img-box .btn-img-delete img {
  width: 14px;
  border-radius: 0;
  vertical-align: middle;
}

.bg-gradient-top-bottom {
  background-image: linear-gradient(#fff, #999);
}

.new-designation-form {
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.new-designation-form .left-wrap {
  flex: 0 0 27%;
  max-width: 27%;
  padding: 15px;
}
.new-designation-form .left-wrap form input[type=color] {
  padding: 6px;
  height: 42px;
}
.new-designation-form .right-wrap {
  flex: 0 0 73%;
  max-width: 73%;
  padding: 15px;
  height: 100%;
}
.new-designation-form .right-wrap .comon-table-wrap {
  height: calc(100% - 12px);
}
.new-designation-form .right-wrap .comon-table-wrap .main-table {
  height: calc(100% - 40px);
  overflow: hidden;
  overflow-y: auto;
}
.new-designation-form .right-wrap .comon-table-wrap .main-table .table-responsive .table tbody td {
  line-height: 1.25;
}
.new-designation-form .right-wrap .comon-table-wrap .main-table .table-responsive .table tbody td img.flag-icon {
  width: 22px;
}
.new-designation-form .right-wrap .right-title-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-lighter-dark);
}
.new-designation-form .right-wrap .right-title-wrap .form-title {
  border-bottom: none;
  margin-bottom: 0;
}
.new-designation-form .right-wrap .right-title-wrap .search-form-wrap {
  margin-top: 0;
  margin-bottom: 0;
}
.new-designation-form .right-wrap .right-title-wrap .search-form-wrap .search-box .form-control {
  border: none;
  height: 36px;
}
.new-designation-form .right-wrap .right-title-wrap .search-form-wrap .search-box .form-control:focus {
  box-shadow: none;
}
.new-designation-form .right-wrap .right-title-wrap .search-form-wrap .search-box .form-control:focus::-moz-placeholder {
  color: transparent;
}
.new-designation-form .right-wrap .right-title-wrap .search-form-wrap .search-box .form-control:focus::placeholder {
  color: transparent;
}
.new-designation-form .right-wrap .right-title-wrap .search-form-wrap .search-box i {
  top: 11px;
}
@media (max-width: 1399.98px) {
  .new-designation-form .right-wrap .right-title-wrap .search-form-wrap .search-box .form-control {
    padding: 8px 0 8px 34px;
    height: 32px;
    font-size: 16px;
  }
  .new-designation-form .right-wrap .right-title-wrap .search-form-wrap .search-box .form-control::-moz-placeholder {
    font-size: 15px;
  }
  .new-designation-form .right-wrap .right-title-wrap .search-form-wrap .search-box .form-control::placeholder {
    font-size: 15px;
  }
  .new-designation-form .right-wrap .right-title-wrap .search-form-wrap .search-box i {
    top: 9px;
    left: 6px;
  }
}
.new-designation-form .form-title {
  padding-bottom: 4px;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 400;
  border-bottom: 1px solid var(--color-lighter-dark);
}
.new-designation-form form .col-form-label {
  font-size: 16px;
  padding-bottom: 1px;
}
.new-designation-form form input.form-control {
  border-radius: 6px;
  height: 40px;
  border: none;
  color: var(--color-bg-dark);
  font-size: 18px;
  letter-spacing: 0.625px;
}
.new-designation-form form input.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.new-designation-form form .btn {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 7px 12px;
  border-radius: 6px;
  min-width: 120px;
  transition: all 0.25s ease-in-out;
}
.new-designation-form form .btn:hover {
  background: #c7c7c7;
}
.new-designation-form form .currier-shipping-type input[type=radio] {
  width: 20px;
  height: 20px;
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  margin-top: 2px;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 50%;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.new-designation-form form .currier-shipping-type input[type=radio]:checked {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  background-color: #414141;
  border-color: #535353;
}
@media (max-width: 1399.98px) {
  .new-designation-form {
    padding: 2px 4px;
  }
  .new-designation-form .left-wrap {
    flex: 0 0 35%;
    max-width: 35%;
    padding: 12px;
  }
  .new-designation-form .right-wrap {
    flex: 0 0 65%;
    max-width: 65%;
    padding: 12px;
  }
  .new-designation-form .right-wrap .comon-table-wrap {
    height: calc(100% - 24px);
  }
  .new-designation-form form .col-form-label {
    margin-top: 0px;
  }
  .new-designation-form form input.form-control {
    height: 32px;
  }
  .new-designation-form form .btn {
    padding: 3px 12px;
  }
}
@media (max-width: 1199.98px) {
  .new-designation-form .form-title {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575.98px) {
  .new-designation-form {
    padding: 0;
    height: auto;
  }
  .new-designation-form .left-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 12px;
  }
  .new-designation-form .left-wrap .form-title {
    margin-top: 4px;
    margin-bottom: 8px;
  }
  .new-designation-form .right-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 12px;
  }
  .new-designation-form .right-wrap .comon-table-wrap {
    height: auto;
  }
  .new-designation-form form .col-form-label {
    margin-top: 2px;
    font-size: 14px;
  }
  .new-designation-form form input.form-control {
    height: 32px;
    font-size: 16px;
  }
  .new-designation-form form .btn {
    padding: 3px 12px;
  }
}

.comon-table-wrap {
  padding: 0;
}
.comon-table-wrap .main-table .table-responsive .table {
  border-collapse: separate;
  border-spacing: 0 10px;
}
.comon-table-wrap .main-table .table-responsive .table thead tr th {
  background: transparent;
  color: var(--color-text);
  border: none;
  font-size: 16px;
  white-space: nowrap;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td {
  background: #a4a5a4;
  color: var(--color-white);
  border: none;
  font-size: 18px;
  line-height: 29px;
  white-space: nowrap;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn {
  color: var(--color-text);
  font-size: 24px;
  line-height: 1;
  margin-right: 8px;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn:hover {
  color: var(--color-white-gray);
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn i {
  transition: all 0.25s ease;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn[aria-expanded=true] i {
  transform: rotatex(180deg);
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td .form-check-inline {
  margin-right: 0;
  margin-bottom: 0;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td .form-check-inline .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  --bs-form-check-bg: #d1c7c7;
  border-color: var(--color-lighter-dark);
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td .form-check-inline .form-check-input:checked {
  background-color: #817e7e;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td .form-check-inline .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(65, 65, 65, 0.13);
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td a.edit,
.comon-table-wrap .main-table .table-responsive .table tbody tr td a.delete {
  color: var(--color-text);
  font-size: 21px;
  text-decoration: none;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td a.edit img,
.comon-table-wrap .main-table .table-responsive .table tbody tr td a.delete img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td a.edit {
  margin-right: 4px;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td.due-amount, .comon-table-wrap .main-table .table-responsive .table tbody tr td.social-amount {
  color: #000aff;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td .elployee-thumbs {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr td .ename-english,
.comon-table-wrap .main-table .table-responsive .table tbody tr td .ename-chinese {
  line-height: 1.15;
  color: var(--color-white);
}
.comon-table-wrap .main-table .table-responsive .table tbody tr.paid td {
  background: #0f670f;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr.hidden {
  display: none;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr.child td {
  background: transparent;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr.child td .table-child {
  padding: 8px;
  margin-bottom: 0;
  border: 1px solid #626262;
  border-radius: 6px;
}
.comon-table-wrap .main-table .table-responsive .table tbody tr.child td .table-child td {
  background: #626262;
}
.comon-table-wrap .main-table .table-responsive .table tbody.sub-row tr td {
  background: #626262;
}
.comon-table-wrap .main-table .table-responsive .table tbody.sub-row tr td:first-child {
  background: transparent;
}
.comon-table-wrap .main-table .table-responsive .table tbody.sub-row tr td:nth-child(2) {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
@media (max-width: 1399.98px) {
  .comon-table-wrap .main-table .table-responsive .table thead tr th {
    font-size: 14px;
    padding: 4px 5px;
  }
  .comon-table-wrap .main-table .table-responsive .table tbody tr td {
    font-size: 15px;
    line-height: 21px;
    vertical-align: middle;
    padding: 4px 5px;
  }
  .comon-table-wrap .main-table .table-responsive .table tbody tr td a.collapse-btn {
    font-size: 20px;
    line-height: 1;
    margin-right: 6px;
  }
  .comon-table-wrap .main-table .table-responsive .table tbody tr td .form-check-inline .form-check-input {
    width: 18px;
    height: 18px;
  }
  .comon-table-wrap .main-table .table-responsive .table tbody tr td a.edit,
  .comon-table-wrap .main-table .table-responsive .table tbody tr td a.delete {
    font-size: 18px;
  }
  .comon-table-wrap .main-table .table-responsive .table tbody tr td a.edit img,
  .comon-table-wrap .main-table .table-responsive .table tbody tr td a.delete img {
    width: 22px;
    height: 22px;
  }
  .comon-table-wrap .main-table .table-responsive .table tbody tr td .elployee-thumbs {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 575.98px) {
  .comon-table-wrap {
    padding: 0;
  }
}

.day-select {
  list-style: none;
  background: linear-gradient(rgb(255, 255, 255), rgb(153, 153, 153));
  color: var(--color-dark);
  border-radius: 6px;
  padding: 6px;
  margin: 0;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 52px;
  left: 12px;
  right: 12px;
  z-index: 1;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
  max-height: 202px;
}
.day-select li {
  padding: 4px 6px;
  width: 32px;
  float: left;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.15s ease-in-out;
}
.day-select li:hover {
  background: #9b9b9b;
}

.month-select {
  list-style: none;
  background: linear-gradient(rgb(255, 255, 255), rgb(153, 153, 153));
  color: var(--color-dark);
  border-radius: 6px;
  padding: 6px;
  margin: 0;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 52px;
  left: 12px;
  right: 12px;
  z-index: 1;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.month-select li {
  padding: 4px 6px;
  width: 41px;
  float: left;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.15s ease-in-out;
}
.month-select li:hover {
  background: #9b9b9b;
}

.year-select {
  list-style: none;
  background: linear-gradient(rgb(255, 255, 255), rgb(153, 153, 153));
  color: var(--color-dark);
  border-radius: 6px;
  padding: 6px;
  margin: 0;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 52px;
  left: 12px;
  right: 12px;
  z-index: 1;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
  max-height: 202px;
  overflow-y: auto;
}
.year-select li {
  padding: 4px 6px;
  width: 48px;
  float: left;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.15s ease-in-out;
}
.year-select li:hover {
  background: #9b9b9b;
}

.settings-options-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.settings-options-wrap .settings-option-box {
  flex: 0 0 20%;
  width: 20%;
}

.no-order-found {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 100px;
}
.no-order-found img {
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
}
.no-order-found h5 {
  text-align: center;
  margin-top: 24px;
  font-size: 24px;
  margin-bottom: 0;
}
.no-order-found p {
  text-align: center;
  color: #eee;
  font-size: 18px;
}
.no-order-found p.back-to-dashboard-link a {
  color: var(--color-text);
  font-weight: 600;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}
.no-order-found p.back-to-dashboard-link a:hover {
  color: #999;
  border-color: #999;
}

/* ---------------------------------------------------
    NAVBAR STYLE
----------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  background: #535353;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.navbar.navbar-pos {
  margin-bottom: 0;
}
.navbar.navbar-pos .top-nav-left .back-to-dashboard {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.navbar.navbar-pos .top-nav-left .back-to-dashboard i {
  margin-right: 0.25rem;
}
.navbar .container-fluid {
  width: 100%;
  padding: 0;
}
.navbar .container-fluid .logo-and-menu-ctrl {
  display: flex;
  align-items: center;
  width: 350px;
}
.navbar .container-fluid .logo-and-menu-ctrl a.navbar-brand {
  padding: 0;
}
.navbar .container-fluid .logo-and-menu-ctrl a.navbar-brand img.default-logo {
  display: block;
  width: 294px;
  height: 79px;
}
.navbar .container-fluid .logo-and-menu-ctrl a.navbar-brand img.mobile-logo {
  display: none;
}
.navbar .container-fluid .logo-and-menu-ctrl .navbar-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}
.navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse {
  width: 40px;
  height: 40px;
  background: #535353;
  cursor: pointer;
}
.navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse span {
  width: 75%;
  height: 2px;
  margin: 5px auto;
  display: block;
  background: var(--color-white);
  transition: all 0.8s cubic-bezier(0.81, -0.33, 0.345, 1.375);
  transition-delay: 0.2s;
}
.navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse span:first-of-type {
  transform: rotate(0) translate(0, 0);
}
.navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse span:nth-of-type(2) {
  opacity: 1;
}
.navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse span:last-of-type {
  transform: rotate(0) translate(0, 0);
}
.navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse.active span {
  opacity: 1;
  margin: 0 auto;
}
.navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse.active span:first-of-type {
  transform: rotate(45deg) translate(2px, 2px);
}
.navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse.active span:nth-of-type(2) {
  opacity: 0;
}
.navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse.active span:last-of-type {
  transform: rotate(-45deg) translate(1px, -1px);
}
@media (max-width: 991.98px) {
  .navbar .container-fluid .logo-and-menu-ctrl {
    width: 92px;
  }
  .navbar .container-fluid .logo-and-menu-ctrl a.navbar-brand {
    margin-right: 0.25rem;
  }
  .navbar .container-fluid .logo-and-menu-ctrl a.navbar-brand img.default-logo {
    display: none;
  }
  .navbar .container-fluid .logo-and-menu-ctrl a.navbar-brand img.mobile-logo {
    display: block;
    width: 48px;
  }
}
@media (max-width: 767.98px) {
  .navbar .container-fluid .logo-and-menu-ctrl {
    width: 80px;
  }
  .navbar .container-fluid .logo-and-menu-ctrl a.navbar-brand {
    margin-right: 0;
  }
  .navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse {
    width: 32px;
    height: 32px;
  }
  .navbar .container-fluid .logo-and-menu-ctrl #sidebarCollapse span {
    margin: 2px auto;
  }
  .navbar .container-fluid .logo-and-menu-ctrl .menu-title {
    font-size: 14px;
  }
}
.navbar .container-fluid .top-nav-options {
  width: calc(100% - 350px);
}
@media (max-width: 991.98px) {
  .navbar .container-fluid .top-nav-options {
    width: calc(100% - 92px);
  }
}
@media (max-width: 767.98px) {
  .navbar .container-fluid .top-nav-options {
    width: calc(100% - 80px);
  }
}
.navbar .container-fluid .top-nav-left {
  display: flex;
  align-items: center;
}
.navbar .container-fluid .top-nav-left .menu-title {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: 18px;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap {
  margin-left: 16px;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-toggle {
  color: var(--color-text);
  letter-spacing: 1px;
  transition: all 0.25s ease-in-out;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-toggle::after {
  margin-left: 0;
  vertical-align: 0px;
  border-top: 12px solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-toggle.show {
  border-color: var(--color-light-dark);
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu {
  background: #535353;
  border-color: var(--color-light-dark);
  margin-top: 8px;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li a {
  color: var(--color-white);
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li a:hover, .navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li a:focus {
  background: #333;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li .flag-option-wrap {
  display: flex;
  padding: 5px 16px;
  white-space: nowrap;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li .flag-option-wrap span {
  color: #fff;
  padding-right: 4px;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li .flag-option-wrap a {
  margin-right: 6px;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li .flag-option-wrap a img {
  width: 18px;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li .flag-option-wrap a:last-child {
  margin-right: 0;
}
.navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li .flag-option-wrap a:hover {
  background: transparent;
  opacity: 0.85;
}
.navbar .container-fluid .top-nav-right {
  padding-right: 15px;
  display: flex;
  align-items: center;
}
.navbar .container-fluid .top-nav-right .employee-view {
  margin-right: 12px;
}
.navbar .container-fluid .top-nav-right .employee-view a img {
  width: 28px;
}
.navbar .container-fluid .top-nav-right .employee-view a:first-child {
  padding-right: 4px;
}
.navbar .container-fluid .top-nav-right .btn-add-new {
  color: var(--color-text);
  border: 1px solid transparent;
}
.navbar .container-fluid .top-nav-right .btn-add-new:hover, .navbar .container-fluid .top-nav-right .btn-add-new:focus {
  color: var(--color-white-gray);
  border: 1px solid var(--color-light-dark);
}
.navbar .container-fluid .top-nav-right .btn-group {
  margin-right: 0.375rem;
}
.navbar .container-fluid .top-nav-right .btn-group button.dropdown-toggle {
  position: relative;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}
.navbar .container-fluid .top-nav-right .btn-group button.dropdown-toggle::after {
  content: none;
}
.navbar .container-fluid .top-nav-right .btn-group button.dropdown-toggle span.badge.badge-noti {
  position: absolute;
  background: var(--color-danger);
  color: #ffffff;
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 0.25em 0.375rem;
  top: -11px;
  right: -9px;
  z-index: 100;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.navbar .container-fluid .top-nav-right .btn-group button.dropdown-toggle:focus, .navbar .container-fluid .top-nav-right .btn-group button.dropdown-toggle.show {
  box-shadow: none;
  border: 2px solid var(--color-dark);
  color: var(--color-white);
}
@media (max-width: 991.98px) {
  .navbar .container-fluid .top-nav-right .btn-add-new {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .navbar .container-fluid .top-nav-right .btn-add-new {
    font-size: 14px;
    padding: 6px;
  }
}
@media (max-width: 399.98px) {
  .navbar .container-fluid .top-nav-right .btn-add-new {
    border: 1px solid var(--color-light-dark);
    font-size: 12px;
    padding: 1px 5px;
    border-radius: 4px;
  }
  .navbar .container-fluid .top-nav-right .btn-add-new span {
    display: none;
  }
}
.navbar .container-fluid .top-nav-right-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .container-fluid .top-nav-right-full .btn-group .btn {
  padding: 7px 16px;
  background: #A3A3A3;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}
.navbar .container-fluid .top-nav-right-full .btn-group .btn:hover {
  background: #414242;
}
.navbar .container-fluid .top-nav-right-full .btn-group .btn.active, .navbar .container-fluid .top-nav-right-full .btn-group .btn:focus {
  font-weight: 600;
  border-color: transparent;
  background: var(--color-lighter-dark);
}
@media (min-width: 992px) {
  .navbar .container-fluid .top-nav-right-full .btn-group {
    margin-right: 89px;
  }
}
@media (max-width: 991.98px) {
  .navbar .container-fluid .top-nav-right-full {
    width: initial;
    padding-right: 16px;
  }
}
@media (max-width: 767.98px) {
  .navbar .container-fluid .top-nav-right-full {
    width: initial;
    padding-right: 12px;
  }
  .navbar .container-fluid .top-nav-right-full .btn-group .btn {
    padding: 6px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 575.98px) {
  .navbar .container-fluid .top-nav-right-full .btn-group .btn {
    font-size: 12px;
  }
}
@media (max-width: 1550px) {
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap {
    margin-left: 10px;
  }
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-toggle::after {
    border-top: 9px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
  }
  .navbar .container-fluid .top-nav-right {
    padding-right: 12px;
  }
}
@media (max-width: 1499.98px) {
  .navbar .container-fluid .top-nav-left .menu-title {
    font-size: 16px;
  }
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap {
    margin-left: 8px;
  }
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-toggle {
    font-size: 14px;
    padding: 5px 8px;
  }
  .navbar .container-fluid .top-nav-right {
    padding-right: 10px;
  }
  .navbar .container-fluid .top-nav-right .btn-add-new {
    font-size: 14px;
    padding: 5px 8px;
  }
}
@media (max-width: 1199.98px) {
  .navbar .container-fluid .top-nav-right .btn-group button.dropdown-toggle span.help-text {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap {
    margin-left: 8px;
  }
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-toggle {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 4px;
  }
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-toggle::after {
    border-top: 10px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
  }
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu {
    margin-top: 6px;
  }
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li a {
    font-size: 13px;
    padding: 4px 8px;
  }
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li .flag-option-wrap {
    padding: 5px 8px;
  }
  .navbar .container-fluid .top-nav-left .dropdown-action-wrap .dropdown-menu li .flag-option-wrap a {
    padding: 0;
  }
  .navbar .container-fluid .top-nav-right {
    padding-right: 10px;
  }
  .navbar .container-fluid .top-nav-right .btn-group {
    margin-right: 0.25rem;
  }
  .navbar .container-fluid .top-nav-right .btn-group button.dropdown-toggle {
    padding: 2px 7px;
    font-size: 12px;
  }
  .navbar .container-fluid .top-nav-right .btn-group button.dropdown-toggle span.badge.badge-noti {
    font-weight: 300;
    font-size: 10px;
    padding: 3px 5px;
    top: -10px;
    right: -8px;
  }
  .navbar .container-fluid .top-nav-right .btn-group:last-child {
    margin-right: 0;
  }
  .navbar .container-fluid .top-nav-right .employee-view {
    margin-right: 8px;
    display: flex;
  }
  .navbar .container-fluid .top-nav-right .employee-view a {
    display: inline-flex;
  }
  .navbar .container-fluid .top-nav-right .employee-view a img {
    width: 18px;
  }
  .navbar .container-fluid .top-nav-right .employee-view a:first-child {
    padding-right: 4px;
  }
}
@media (max-width: 575.98px) {
  .navbar .container-fluid .top-nav-left .menu-title {
    font-size: 16px;
  }
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
  min-width: 294px;
  max-width: 294px;
  height: calc(100% - 79px);
  overflow: hidden;
  overflow-y: auto;
  z-index: 1000;
  padding: 0 16px;
  background: #000000;
  color: rgba(0, 0, 0, 0.75);
  transform-origin: bottom left;
  font-weight: 500;
  position: fixed;
  transition: all 0.6s cubic-bezier(0.945, 0.02, 0.27, 0.665);
  -webkit-transition: all 0.6s cubic-bezier(0.945, 0.02, 0.27, 0.665);
  -moz-transition: all 0.6s cubic-bezier(0.945, 0.02, 0.27, 0.665);
  -ms-transition: all 0.6s cubic-bezier(0.945, 0.02, 0.27, 0.665);
  -o-transition: all 0.6s cubic-bezier(0.945, 0.02, 0.27, 0.665);
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media (max-width: 991.98px) {
  #sidebar {
    height: calc(100% - 48px);
  }
}
#sidebar .all-sidebar-menu-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  position: relative;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl {
  position: absolute;
  right: -16.5px;
  top: 40%;
  transform: translateY(-40%);
  padding: 0;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: transparent;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl img {
  height: 34px;
  transition: all 0.25s ease-in-out;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl img.sidebar-angle-left {
  opacity: 0;
  display: none;
  transition: all 0.25s ease-in-out;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl img.sidebar-angle-right {
  opacity: 0;
  display: none;
  transition: all 0.25s ease-in-out;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl:hover img.sidebar-bar {
  display: none;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl:hover img.sidebar-angle-left {
  opacity: 1;
  display: block;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl.active img.sidebar-angle-left {
  opacity: 0;
  display: none;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl.active img.sidebar-angle-right {
  opacity: 1;
  display: none;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl.active img.sidebar-bar {
  display: block;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl.active:hover img.sidebar-bar {
  display: block;
}
#sidebar .all-sidebar-menu-wrap .btn-sidebar-ctrl.active:hover img.sidebar-angle-left {
  opacity: 0;
  display: none;
}
#sidebar .all-sidebar-menu-wrap .sidebar-search-wrap {
  padding-top: 15px;
}
#sidebar .all-sidebar-menu-wrap .sidebar-search-wrap .search-wrap {
  position: relative;
}
#sidebar .all-sidebar-menu-wrap .sidebar-search-wrap .search-wrap input.form-control {
  color: #eee;
  background: #535353;
  border: 1px solid #424343;
  padding: 6px 6px 6px 34px;
  transition: all 0.25s ease-in-out;
}
#sidebar .all-sidebar-menu-wrap .sidebar-search-wrap .search-wrap input.form-control::-moz-placeholder {
  color: #9b9b9b;
  letter-spacing: 0.75px;
}
#sidebar .all-sidebar-menu-wrap .sidebar-search-wrap .search-wrap input.form-control::placeholder {
  color: #9b9b9b;
  letter-spacing: 0.75px;
}
#sidebar .all-sidebar-menu-wrap .sidebar-search-wrap .search-wrap input.form-control:focus::-moz-placeholder {
  color: transparent;
}
#sidebar .all-sidebar-menu-wrap .sidebar-search-wrap .search-wrap input.form-control:focus::placeholder {
  color: transparent;
}
#sidebar .all-sidebar-menu-wrap .sidebar-search-wrap .search-wrap i {
  position: absolute;
  left: 8px;
  top: 10.5px;
  color: #c0c0c0;
  transition: all 0.25s ease-in-out;
}
#sidebar #sidebarMainMenu,
#sidebar #sidebarSettingsMenu {
  position: relative;
  padding: 10px 0;
}
#sidebar #sidebarMainMenu .seperator-wrap,
#sidebar #sidebarSettingsMenu .seperator-wrap {
  position: relative;
}
#sidebar #sidebarMainMenu .seperator-wrap span,
#sidebar #sidebarSettingsMenu .seperator-wrap span {
  color: #fff;
  position: absolute;
  left: 0;
  background: #000000;
  font-size: 9px;
  top: -3.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
  padding-right: 3px;
  transition: all 0.25s ease-in-out;
}
#sidebar #sidebarMainMenu .menu-seperator-hr,
#sidebar #sidebarSettingsMenu .menu-seperator-hr {
  border-color: #707070;
  opacity: 1;
  margin: 11px 0 9px 0;
}
#sidebar #sidebarMainMenu.settings-menu,
#sidebar #sidebarSettingsMenu.settings-menu {
  border-top: 1px solid #ddd;
}
#sidebar #sidebarMainMenu .card,
#sidebar #sidebarSettingsMenu .card {
  border: none;
  border-radius: 0;
  background: transparent;
}
#sidebar #sidebarMainMenu .card .card-header,
#sidebar #sidebarSettingsMenu .card .card-header {
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
#sidebar #sidebarMainMenu .card .card-header h2,
#sidebar #sidebarSettingsMenu .card .card-header h2 {
  font-weight: 400;
}
#sidebar #sidebarMainMenu .card .card-header h2 .nav-link,
#sidebar #sidebarSettingsMenu .card .card-header h2 .nav-link {
  transition: all 0.25s ease-in-out;
}
#sidebar #sidebarMainMenu .card .card-header h2 .nav-link.active,
#sidebar #sidebarSettingsMenu .card .card-header h2 .nav-link.active {
  color: #999;
}
#sidebar #sidebarMainMenu .card .card-header h2 .nav-link::before,
#sidebar #sidebarSettingsMenu .card .card-header h2 .nav-link::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  content: "\f054";
  position: absolute;
  right: 0;
  transform: rotate(0deg);
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  transition: all 0.35s ease-out;
}
#sidebar #sidebarMainMenu .card .card-header h2 .nav-link.has-sub-menu::before,
#sidebar #sidebarSettingsMenu .card .card-header h2 .nav-link.has-sub-menu::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  content: "\f054";
  position: absolute;
  right: 0; /* IE 9 */
  transform: rotate(90deg);
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  transition: all 0.35s ease-out;
}
#sidebar #sidebarMainMenu .card .card-header h2 .nav-link.has-sub-menu.collapsed::before,
#sidebar #sidebarSettingsMenu .card .card-header h2 .nav-link.has-sub-menu.collapsed::before { /* IE 9 */
  transform: rotate(0);
  transition: all 0.35s ease-out;
}
#sidebar #sidebarMainMenu .card .card-body,
#sidebar #sidebarSettingsMenu .card .card-body {
  padding: 0;
  border-radius: 0;
}
#sidebar #sidebarMainMenu .card .card-body ul,
#sidebar #sidebarSettingsMenu .card .card-body ul {
  border-radius: 0;
  margin-left: 1.25rem;
  padding: 0;
  border-left: 1px dashed #000000;
}
#sidebar #sidebarMainMenu .card .card-body ul li,
#sidebar #sidebarSettingsMenu .card .card-body ul li {
  padding: 0;
  border: none;
  background: transparent;
}
#sidebar #sidebarMainMenu .card .card-body ul li a,
#sidebar #sidebarSettingsMenu .card .card-body ul li a {
  padding: 0.25rem 0.75rem;
}
#sidebar #sidebarMainMenu .card .card-body .sl-accordian,
#sidebar #sidebarSettingsMenu .card .card-body .sl-accordian {
  border-left: 1px dashed #000000;
  margin-left: 1.25rem;
}
#sidebar #sidebarMainMenu .card .card-body .sl-accordian ul,
#sidebar #sidebarSettingsMenu .card .card-body .sl-accordian ul {
  margin-left: 0.75rem;
}
#sidebar .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  border: none;
  background: #000000;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: left;
  padding: 4.5px 0;
  white-space: nowrap;
  transition: all 0.25s ease-in-out;
}
#sidebar .nav-link .order-count {
  color: #ff6969;
  font-weight: 600;
}
#sidebar .nav-link .custom-tooltip {
  display: none;
  visibility: hidden;
  --bs-tooltip-bg: yellow;
  --bs-tooltip-color: var(--bs-white);
}
#sidebar .nav-link i {
  color: rgba(0, 0, 0, 0.65);
  margin-right: 0.25rem;
}
#sidebar .nav-link img {
  min-width: 23px;
  width: 23px;
  height: 20px;
  -o-object-fit: fill;
     object-fit: fill;
  margin-right: 10px;
}
#sidebar .nav-link img.login-user {
  height: 23px;
  border-radius: 50%;
}
#sidebar .nav-link .login-user-full-name {
  max-width: 155px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  padding-right: 3px;
}
#sidebar .nav-link .as-role {
  font-size: 14px;
}
#sidebar .nav-link:hover {
  color: #888;
}
#sidebar::-webkit-scrollbar {
  width: 3px;
}
#sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15);
}
#sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}
#sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (min-width: 992px) {
  #sidebar.active {
    min-width: 60px;
    max-width: 60px;
  }
  #sidebar.active .nav-link img {
    margin-right: 0;
  }
  #sidebar.active .nav-link span {
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
  }
  #sidebar.active .nav-link::before {
    visibility: hidden;
  }
  #sidebar.active .all-sidebar-menu-wrap .sidebar-search-wrap .search-wrap input.form-control {
    background: #000000;
    border: 1px solid #000000;
    transition: all 0.25s ease-in-out;
  }
  #sidebar.active .all-sidebar-menu-wrap .sidebar-search-wrap .search-wrap i {
    left: 5px;
    transition: all 0.25s ease-in-out;
  }
  #sidebar.active #sidebarMainMenu .seperator-wrap span {
    visibility: hidden;
    transition: all 0.25s ease-in-out;
  }
}
footer .footer-app-newsletter {
  background: #F4C330;
  padding: 2.5rem 0 3rem 0;
}
footer .footer-app-newsletter h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
footer .footer-app-newsletter .download-app .app-download-btn button {
  border: 1px solid black;
  position: relative;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
}
footer .footer-app-newsletter .download-app .app-download-btn button i {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  font-size: 1.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
footer .footer-app-newsletter .download-app .app-download-btn button span {
  display: block;
  text-align: left;
}
footer .footer-app-newsletter .download-app .app-download-btn button span.get-it-on {
  text-transform: uppercase;
  font-size: 0.675rem;
  font-weight: 600;
  line-height: 0.75rem;
}
footer .footer-app-newsletter .download-app .app-download-btn button span.get-from {
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-weight: 600;
}
footer .footer-app-newsletter .download-app .app-download-btn button:hover {
  color: #ffffff;
  background: #000000;
}
footer .footer-app-newsletter .subscribe-newsletter .subscribe-form {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 0.125rem;
  background: #ffffff;
  border-radius: 0.375rem;
}
footer .footer-app-newsletter .subscribe-newsletter .subscribe-form form .form-control {
  border: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 52px;
}
footer .footer-app-newsletter .subscribe-newsletter .subscribe-form form .form-control:focus {
  box-shadow: none;
  background: #dddddd;
}
footer .footer-app-newsletter .subscribe-newsletter .subscribe-form form .btn {
  background: #F4C330;
  color: #ffffff;
  border-radius: 0.25rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0.375rem 1rem;
}
footer .footer-app-newsletter .subscribe-newsletter .subscribe-form form .btn i {
  font-size: 1.375rem;
}
footer .footer-app-newsletter .subscribe-newsletter .subscribe-form form .btn:focus {
  box-shadow: none;
}
footer .footer-details {
  padding: 1.5rem 0;
}
footer .footer-details .footer-details-wrap .footer-logo a img {
  max-width: 100%;
}
footer .footer-details .footer-details-wrap .footer-help-support .f-hs {
  font-size: 0.875rem;
  max-width: 320px;
}
footer .footer-details .footer-details-wrap .footer-help-support .f-hs a {
  color: rgba(0, 0, 0, 0.85);
  font-family: "Exo 2", sans-serif;
}
footer .footer-details .footer-details-wrap .footer-help-support .f-hs a:hover {
  color: #00489a;
}
footer .footer-details .footer-details-wrap .footer-help-support .f-si a {
  border: 2px solid #F4C330;
  width: 40px;
  height: 40px;
  display: block;
  float: left;
  margin-right: 0.375rem;
  margin-bottom: 0.25rem;
  padding: 0.375rem 0.685rem;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
footer .footer-details .footer-details-wrap .footer-help-support .f-si a:last-of-type {
  margin-right: 0;
}
footer .footer-details .footer-details-wrap .footer-help-support .f-si a i {
  color: #F4C330;
}
footer .footer-details .footer-details-wrap .footer-help-support .f-si a:hover {
  background: #00489a;
}
@media (max-width: 991.98px) {
  footer .footer-details .footer-details-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  footer .footer-details .footer-details-wrap .footer-help-support {
    text-align: center;
  }
  footer .footer-details .footer-details-wrap .footer-help-support .f-si a {
    display: inline-block;
    float: none;
  }
}
footer .footer-product-cat {
  margin-top: 1rem;
  width: 100%;
  display: block;
  overflow: hidden;
}
footer .footer-product-cat h1 {
  font-size: 1.75rem;
  text-align: center;
}
footer .footer-product-cat ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
footer .footer-product-cat ul li {
  margin-right: 0.75rem;
  padding: 0.5rem 0;
}
footer .footer-product-cat ul li a {
  color: rgba(0, 0, 0, 0.75);
  font-family: "Exo 2", sans-serif;
}
footer .footer-product-cat ul li a i {
  color: rgba(0, 0, 0, 0.5);
  margin-right: 0.25rem;
}
footer .footer-product-cat ul li a:hover {
  color: #F4C330;
}
footer .footer-product-cat ul li a:hover i {
  color: rgba(0, 0, 0, 0.75);
}
@media (max-width: 991.98px) {
  footer .footer-product-cat h1 {
    font-size: 1.25rem;
  }
  footer .footer-product-cat ul {
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  footer .footer-product-cat ul li {
    padding: 0.125rem 0;
    margin-right: 0.5rem;
  }
  footer .footer-product-cat ul li a {
    font-size: 0.875rem;
    font-weight: 500;
  }
  footer .footer-product-cat ul li a i {
    margin-right: 0.125rem;
  }
}
footer .footer-contact-details {
  margin-top: 1rem;
  width: 100%;
  display: block;
  overflow: hidden;
}
footer .footer-contact-details h1 {
  font-size: 1.75rem;
  text-align: center;
}
footer .footer-contact-details ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-contact-details ul li a {
  padding: 0;
  display: flex;
  align-items: flex-end;
}
footer .footer-contact-details ul li a img {
  width: 2.25rem;
  margin-right: 0.5rem;
}
footer .footer-contact-details ul li a p {
  font-family: "Exo 2", sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
}
footer .footer-contact-details ul li a p span {
  display: block;
}
@media (max-width: 991.98px) {
  footer .footer-contact-details h1 {
    font-size: 1.25rem;
  }
  footer .footer-contact-details ul {
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
  }
  footer .footer-contact-details ul li a {
    align-items: center;
    flex-direction: column;
  }
  footer .footer-contact-details ul li a img {
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
}
footer .footer-copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}
footer .footer-copyright p {
  margin-bottom: 0;
  font-family: "Exo 2", sans-serif;
}
footer .footer-copyright img.pay-with {
  width: 100%;
}
@media (max-width: 575.98px) {
  footer .footer-copyright p {
    text-align: center;
  }
  footer .footer-copyright p.fcr-text {
    margin-top: 0.75rem;
  }
}

.admin-login-form {
  padding: 0 18px;
  min-height: 100vh;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.admin-login-form .login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 0;
  width: 310px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.admin-login-form .login-logo .login-logo-box {
  width: 100%;
}
.admin-login-form .login-logo a img {
  width: 100%;
}
.admin-login-form .login-form {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 32px 24px;
  background: #4d4b4b;
  align-items: center;
  justify-content: space-around;
  border-radius: 6px;
}
.admin-login-form .login-form form {
  width: 100%;
  max-width: 400px;
  font-weight: 700;
}
.admin-login-form .login-form form .login-text {
  margin-bottom: 16px;
}
.admin-login-form .login-form form .login-text h4 {
  font-size: 22px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 400;
}
.admin-login-form .login-form form .input-group {
  color: var(--color-dark);
}
.admin-login-form .login-form form .input-group .input-group-text {
  width: 50px;
  border: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(#fff, #999);
}
.admin-login-form .login-form form .input-group .form-control {
  background-clip: inherit;
  border: none;
  height: 45px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.admin-login-form .login-form form .input-group .form-control::-moz-placeholder {
  font-weight: 600;
  font-size: 1.125rem;
}
.admin-login-form .login-form form .input-group .form-control::placeholder {
  font-weight: 600;
  font-size: 1.125rem;
}
.admin-login-form .login-form form .input-group .form-control:focus {
  box-shadow: none;
}
.admin-login-form .login-form form .input-group .form-floating .toggle-icon {
  position: absolute;
  top: 14px;
  right: 10px;
}
.admin-login-form .login-form form .input-group .form-floating .toggle-icon img {
  width: 28px;
}
.admin-login-form .login-form form .remember_n_forgot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.admin-login-form .login-form form .remember_n_forgot .form-check {
  font-weight: 400;
}
.admin-login-form .login-form form .forgot-password-text {
  margin-top: 0;
  margin-bottom: 0;
}
.admin-login-form .login-form form .forgot-password-text a {
  color: #64b8fe;
  padding-left: 0.5rem;
}
.admin-login-form .login-form form .forgot-password-text a:hover {
  text-decoration: underline;
}
.admin-login-form .login-form form button.btn {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(#fff, #999);
  color: #333333;
  font-weight: 600;
  font-size: 20px;
  border: none;
  border-radius: 6px;
}
.admin-login-form .login-form form button.btn i {
  margin-left: 0.5rem;
}
.admin-login-form .login-form form button.btn:hover {
  color: var(--color-dark);
  box-shadow: 0 0 4px 4px rgba(255, 255, 255, 0.125);
}
.admin-login-form .powered-by {
  margin-top: 20px;
}
.admin-login-form .powered-by p {
  text-align: center;
}
.admin-login-form .powered-by p a {
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .admin-login-form .login-form form {
    max-width: 100%;
  }
  .admin-login-form .login-form form .form-group .input-group .input-group-prepend {
    display: none;
  }
  .admin-login-form .login-form form .form-group .input-group .form-control::-moz-placeholder {
    text-align: center;
  }
  .admin-login-form .login-form form .form-group .input-group .form-control::placeholder {
    text-align: center;
  }
  .admin-login-form .powered-by {
    margin-top: 20px;
  }
  .admin-login-form .powered-by p {
    text-align: center;
  }
  .admin-login-form .powered-by p a {
    font-weight: 600;
  }
}

#content.content-pos {
  min-height: calc(100vh - 70px);
}
#content .pos-container {
  font-family: "Exo 2", sans-serif;
}
#content .pos-container .pos-content-wrap {
  padding: 1rem 0;
}
#content .pos-container .pos-content-wrap .input-group {
  margin-bottom: 0.625rem;
}
#content .pos-container .pos-content-wrap .input-group .form-control {
  border: 1px solid rgba(0, 72, 154, 0.15);
}
#content .pos-container .pos-content-wrap .input-group .form-control:focus {
  outline: none;
  box-shadow: none;
  background: rgba(0, 72, 154, 0.15);
}
#content .pos-container .pos-content-wrap .input-group .input-group-append .btn.btn-outline-secondary {
  color: rgb(2, 124, 255);
  border-color: rgba(0, 72, 154, 0.15);
}
#content .pos-container .pos-content-wrap .input-group .input-group-append .btn.btn-outline-secondary:hover {
  background: #F4C330;
}
#content .pos-container .pos-content-wrap .input-group .input-group-append .btn.btn-outline-secondary:focus {
  outline: none;
  box-shadow: none;
}
#content .pos-container .pos-content-wrap .input-group .custom-select {
  border: 1px solid rgba(0, 72, 154, 0.15);
}
#content .pos-container .pos-content-wrap .input-group .custom-select:focus {
  outline: none;
  box-shadow: none;
}
#content .pos-container .pos-content-wrap .pos-content-left {
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.375rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .prodict-filter {
  padding-bottom: 0.3125rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 72, 154, 0.1);
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase {
  padding: 0 0.625rem;
  height: 58.5vh;
  overflow: hidden;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase .col-3 {
  padding: 0 0.3125rem;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase .product-card {
  border: 1px solid rgba(0, 72, 154, 0.1);
  cursor: cell;
  margin-bottom: 0.625rem;
  position: relative;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase .product-card img {
  width: 100%;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase .product-card .pc-name {
  padding: 0.375rem 0.375rem 0 0.375rem;
  background: rgba(0, 72, 154, 0.1);
  color: rgba(0, 0, 0, 0.75);
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase .product-card .pc-name h6 {
  overflow: hidden;
  font-size: 0.75rem;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase .product-card .pc-info {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 0;
  bottom: 63px;
  background: #ffffff;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase .product-card .pc-info span {
  background: rgba(0, 72, 154, 0.1);
  color: #00489a;
  padding: 0.125rem 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase .product-card .pc-id-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.375rem 0.375rem 0.375rem;
  background: rgba(0, 72, 154, 0.1);
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.675rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase::-webkit-scrollbar {
  width: 3px;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase::-webkit-scrollbar-track {
  background: rgba(0, 72, 154, 0.1);
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}
#content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.35);
}
@media (max-width: 1199.98px) {
  #content .pos-container .pos-content-wrap .pos-content-left .pos-product-select .product-showcase {
    height: 60vh;
  }
}
#content .pos-container .pos-content-wrap .pos-content-right {
  background: #ffffff;
  padding: 1rem;
  margin-bottom: 62px;
  border-radius: 0.375rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center {
  height: 43.5vh;
  overflow: hidden;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table th, #content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table td {
  vertical-align: middle;
  border-color: rgba(0, 72, 154, 0.1);
  padding: 0.5rem;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table thead.thead-light th {
  background: rgba(0, 72, 154, 0.1);
  border-color: rgba(0, 72, 154, 0.1);
  font-size: 0.875rem;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .cart-product {
  display: flex;
  align-items: center;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .cart-product img {
  width: 50px;
  margin-right: 0.675rem;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .cart-product span {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .cart-count {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  width: 97px;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .cart-count button {
  border: 1px solid rgba(0, 72, 154, 0.1);
  background: rgba(0, 72, 154, 0.125);
  font-size: 0.875rem;
  padding: 0.1875rem 0.375rem;
  color: rgba(0, 72, 154, 0.875);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .cart-count button.decrise {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .cart-count button.incrise {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .cart-count input {
  width: 40px;
  height: 29px;
  background: rgba(0, 72, 154, 0.025);
  border-left: 0;
  border-right: 0;
  text-align: center;
  border: 1px solid rgba(0, 72, 154, 0.1);
  color: rgba(0, 0, 0, 0.8);
  font-weight: 700;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .pos-unit-price {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .pos-subtotal {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .pos-cart-remove {
  text-align: center;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center .table tbody .pos-cart-remove button {
  font-size: 0.75rem;
  line-height: 0.75rem;
  padding: 0.5rem;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center::-webkit-scrollbar {
  width: 3px;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.35);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom {
  padding-top: 1rem;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cart-summary .cs-items {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(0, 72, 154, 0.65);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cart-summary .cs-items-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(0, 72, 154, 0.65);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal {
  font-weight: 700;
  width: 266px;
  padding-right: 1rem;
  margin-left: auto;
  color: rgba(0, 0, 0, 0.65);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-total,
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-discount,
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-coupon,
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-shipping {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-total input,
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-discount input,
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-coupon input,
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-shipping input {
  width: 100px;
  padding: 0.125rem 0.25rem;
  text-align: right;
  border: none;
  background: rgba(0, 0, 0, 0.085);
  font-weight: 700;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-total input:focus,
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-discount input:focus,
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-coupon input:focus,
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-shipping input:focus {
  outline: 0;
  box-shadow: 0;
  background: rgba(0, 0, 0, 0.1);
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal .csac-shipping {
  border-bottom: 0;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .grand-total {
  background: rgba(0, 72, 154, 0.1);
  color: rgba(0, 72, 154, 0.75);
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  display: flex;
  justify-content: flex-end;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
#content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .grand-total .grand-total-wrap {
  font-size: 1.125rem;
  font-weight: 700;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199.98px) {
  #content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-bottom .cs-amaount-cal {
    width: 200px;
    font-size: 0.875rem;
  }
}
@media (max-width: 1500px) {
  #content .pos-container .pos-content-wrap .pos-content-right .pos-sales-form .pos-form-center {
    height: 40vh;
  }
}
#content .cart-action {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content .cart-action button {
  margin-right: 0.5rem;
  border: none;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
}
#content .cart-action button.btn-cancle {
  background: red;
}
#content .cart-action button.btn-draft {
  background: #F4C330;
}
#content .cart-action button.btn-cash-pay {
  background: #00489a;
}
#content .cart-action button:last-child {
  margin-right: 0;
}
#content .cart-action button i {
  margin-right: 0.375rem;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 991.98px) {
  #sidebar {
    margin-left: -250px;
    transform: rotateY(90deg);
  }
  #sidebar.active {
    margin-left: 0;
    transform: none;
  }
  #sidebarCollapse span:first-of-type,
  #sidebarCollapse span:nth-of-type(2),
  #sidebarCollapse span:last-of-type {
    transform: none;
    opacity: 1;
    margin: 5px auto;
  }
  #sidebarCollapse.active span {
    margin: 0 auto;
  }
  #sidebarCollapse.active span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
  }
  #sidebarCollapse.active span:nth-of-type(2) {
    opacity: 0;
  }
  #sidebarCollapse.active span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
  }
}
.width-100px {
  width: 100px;
}

.width-120px {
  width: 120px;
}

.maxwidth-120px {
  max-width: 120px !important;
}

.custom-tooltip {
  --bs-tooltip-bg: var(--color-white);
  --bs-tooltip-color: var(--color-blue);
  --bs-tooltip-opacity: 1;
  --bs-tooltip-padding-x: 15px;
  --bs-tooltip-padding-y: 10px;
  font-weight: 600;
}

.alert-success.alert-dismissible {
  position: fixed;
  right: 14px;
  top: 76px;
  border: 2px solid var(--color-green);
  box-shadow: 0 2px 11px 2px rgba(4, 59, 3, 0.71);
  z-index: 1111;
}
.alert-success.alert-dismissible:focus {
  box-shadow: none;
}

.alert-danger.alert-dismissible {
  position: fixed;
  right: 14px;
  top: 76px;
  border: 2px solid var(--color-danger);
  box-shadow: 0 2px 11px 2px rgba(85, 14, 3, 0.71);
  z-index: 1111;
}
.alert-danger.alert-dismissible:focus {
  box-shadow: none;
}

.dropzone {
  background: var(--color-white);
  border: 1px dashed var(--color-light-dark);
  border-radius: 10px;
  min-height: 146px;
  padding: 0;
}
.dropzone .dz-clickable {
  cursor: pointer;
}
.dropzone .dz-message {
  margin: 0;
  padding: 41px;
}
.dropzone .dz-message p {
  color: var(--color-lighter-dark);
  margin-bottom: 0;
}
.dropzone .dz-preview {
  margin: 12px;
}

.dz-started .dz-message {
  display: none;
}

.client-upload-file-link {
  background: #fbfdff;
  border: 1px solid #ddd;
  display: inline-flex;
  padding: 4px 6px;
  margin: 2px;
  border-radius: 6px;
  float: left;
  align-items: center;
  background: #f0f0f0;
}
.client-upload-file-link:hover {
  background: var(--color-white);
}
.client-upload-file-link a {
  font-size: 14px;
  line-height: 1.2;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-lighter-dark);
}
.client-upload-file-link a img {
  width: 14px;
  margin-right: 2px;
}
.client-upload-file-link .btn-remove {
  padding: 0;
  margin-left: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.client-upload-file-link .btn-remove:hover {
  color: var(--color-danger);
}
.client-upload-file-link .btn-remove:focus, .client-upload-file-link .btn-remove:active {
  border-color: transparent;
}

.settings-options-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 10px;
}
.settings-options-wrap .settings-option-box {
  flex: 0 0 14.285%;
  max-width: 14.285%;
  padding: 10px;
}
.settings-options-wrap .settings-option-box a {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 15px 5px;
  border: 1px solid #535353;
  border-radius: 8px;
}
.settings-options-wrap .settings-option-box a img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}
.settings-options-wrap .settings-option-box a p {
  margin: 0;
  color: var(--color-white);
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1580px) {
  .settings-options-wrap .settings-option-box a p {
    font-size: 15px;
  }
}
@media (max-width: 1399.98px) {
  .settings-options-wrap .settings-option-box {
    flex: 0 0 16.666%;
    max-width: 16.666%;
  }
  .settings-options-wrap .settings-option-box a {
    padding: 15px 5px;
  }
  .settings-options-wrap .settings-option-box a img {
    width: 75px;
    height: 75px;
    margin-bottom: 12px;
  }
  .settings-options-wrap .settings-option-box a p {
    font-size: 15px;
  }
}
@media (max-width: 1199.98px) {
  .settings-options-wrap .settings-option-box {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .settings-options-wrap .settings-option-box a img {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
  .settings-options-wrap .settings-option-box a p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .settings-options-wrap .settings-option-box {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 575.98px) {
  .settings-options-wrap {
    margin-top: 0;
    margin-left: -5px;
    margin-right: -5px;
  }
  .settings-options-wrap .settings-option-box {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 5px;
  }
  .settings-options-wrap .settings-option-box a img {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
  }
  .settings-options-wrap .settings-option-box a p {
    font-size: 12px;
  }
}

.payroll-monthly-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 160px;
  padding-top: 10px;
}
.payroll-monthly-amount .payroll-data-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 150px;
  padding-top: 10px;
  color: var(--color-white);
}
.payroll-monthly-amount .pma-top {
  display: block;
  width: 100%;
  padding: 0 6px;
}
.payroll-monthly-amount .pma-top .pma-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}
.payroll-monthly-amount .pma-top .pma-row .pma-row-left {
  font-size: 15px;
}
.payroll-monthly-amount .pma-top .pma-row .pma-row-right {
  font-size: 15px;
}
.payroll-monthly-amount .pam-bottom {
  font-size: 17px;
  margin-bottom: 8px;
}
@media (max-width: 1700px) {
  .payroll-monthly-amount .pma-top {
    padding: 0 4px;
  }
  .payroll-monthly-amount .pma-top .pma-row .pma-row-left {
    font-size: 14px;
  }
  .payroll-monthly-amount .pma-top .pma-row .pma-row-right {
    font-size: 14px;
  }
  .payroll-monthly-amount .pam-bottom {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
@media (max-width: 1500px) {
  .payroll-monthly-amount .pam-bottom {
    font-size: 14px;
  }
  .payroll-monthly-amount .pma-top {
    padding: 0 5px;
  }
}

.modal-theme-color {
  background: #2e2d2d;
  border-color: #707070;
}
.modal-theme-color .modal-header {
  background: #535353;
  border-color: #707070;
}
.modal-theme-color .modal-header .btn-close {
  background: #d6d6d6 var(--bs-btn-close-bg) center/1em auto no-repeat;
}
.modal-theme-color .modal-header .btn-close:hover, .modal-theme-color .modal-header .btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
.modal-theme-color .modal-footer {
  border-color: #707070;
}
.modal-theme-color .modal-footer .product-sufix input.form-control {
  background: #6c757d;
  color: #fff;
  border-color: #6c757d;
  width: 76px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  padding: 6px 4px;
}
@media (max-width: 575.98px) {
  .modal-theme-color .modal-header .modal-title.fs-5 {
    font-size: 16px !important;
  }
  .modal-theme-color .modal-footer .product-sufix input.form-control {
    width: 67px;
    font-size: 14px;
  }
  .modal-theme-color .modal-footer .btn {
    padding: 6px 8px;
    font-size: 16px;
  }
}

.payroll-option-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  min-width: 100%;
}
.payroll-option-wrap .select-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-dark);
  width: 150px;
  height: 110px;
  padding: 15px 5px;
  margin: 10px;
  border-radius: 12px;
  border: 1px solid #707070;
  color: var(--color-white);
}
.payroll-option-wrap .select-box span {
  font-size: 18px;
}
.payroll-option-wrap .select-box i {
  font-size: 24px;
  margin-bottom: 7px;
}
.payroll-option-wrap .select-box:hover {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

@media (max-width: 991.98px) {
  .salary-sheet-wrap h5 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .modal-price-sheet .modal-header {
    padding: 8px 12px;
  }
  .modal-price-sheet .modal-footer {
    padding: 6px 10px;
  }
}
.salary-field-value {
  width: 110px;
}
.salary-field-value:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}
@media (max-width: 1499.98px) {
  .salary-field-value {
    width: 100px;
    padding: 5px 8px;
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .salary-field-value {
    width: 80px;
    padding: 4px 6px;
    font-size: 13px;
  }
}

@media (max-width: 1499.98px) {
  select.salary-field-value {
    padding: 5px 20px 5px 8px;
    background-position: right 4px center;
  }
}
@media (max-width: 991.98px) {
  select.salary-field-value {
    padding: 4px 18px 4px 6px;
    background-position: right 2px center;
  }
}

.salary-sheet-table {
  border-spacing: 0 10px;
  border-collapse: separate;
}
.salary-sheet-table thead tr th {
  background: transparent;
  color: var(--color-text);
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.25;
  padding: 5px;
}
.salary-sheet-table thead tr th:nth-child(1) {
  position: sticky;
  left: 0;
  width: 50px;
  min-width: 50px;
  background: #2e2d2d;
}
.salary-sheet-table thead tr th:nth-child(2) {
  position: sticky;
  left: 50px;
  width: 58px;
  min-width: 58px;
  background: #2e2d2d;
}
.salary-sheet-table thead tr th:nth-child(3) {
  position: sticky;
  left: 108px;
  width: 120px;
  min-width: 120px;
  background: #2e2d2d;
}
.salary-sheet-table tbody tr td {
  background: #a4a5a4;
  color: var(--color-text);
  vertical-align: middle;
  border: none;
  white-space: nowrap;
  font-size: 15px;
  padding: 5px;
}
.salary-sheet-table tbody tr td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.salary-sheet-table tbody tr td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.salary-sheet-table tbody tr td:nth-child(1) {
  position: sticky;
  left: 0;
  width: 50px;
  min-width: 50px;
}
.salary-sheet-table tbody tr td:nth-child(2) {
  position: sticky;
  left: 50px;
  width: 58px;
  min-width: 58px;
}
.salary-sheet-table tbody tr td:nth-child(3) {
  position: sticky;
  left: 108px;
  width: 120px;
  min-width: 120px;
}
.salary-sheet-table tbody tr td .employee-image {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 42px;
  background: var(--color-text);
}
.salary-sheet-table tbody tr td .ename-english,
.salary-sheet-table tbody tr td .ename-chinese {
  line-height: 1.15;
  color: var(--color-white);
}
@media (max-width: 1499.98px) {
  .salary-sheet-table thead tr th {
    font-size: 14px;
  }
  .salary-sheet-table tbody tr td {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .salary-sheet-table thead tr th {
    font-size: 13px;
    line-height: 1;
    padding-top: 0;
  }
  .salary-sheet-table thead tr th:nth-child(1) {
    width: 40px;
    min-width: 40px;
  }
  .salary-sheet-table thead tr th:nth-child(2) {
    left: 40px;
    width: 42px;
    min-width: 42px;
  }
  .salary-sheet-table thead tr th:nth-child(3) {
    left: 84px;
  }
  .salary-sheet-table tbody tr td {
    font-size: 13px;
  }
  .salary-sheet-table tbody tr td:nth-child(1) {
    width: 40px;
    min-width: 40px;
  }
  .salary-sheet-table tbody tr td:nth-child(2) {
    left: 40px;
    width: 42px;
    min-width: 42px;
  }
  .salary-sheet-table tbody tr td:nth-child(3) {
    left: 84px;
  }
  .salary-sheet-table tbody tr td .employee-image {
    width: 32px;
    height: 32px;
  }
}

.custom-checkbox-inline {
  margin-right: 0;
  margin-bottom: 0;
}
.custom-checkbox-inline .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  --bs-form-check-bg: #d1c7c7;
  border-color: var(--color-lighter-dark);
}
.custom-checkbox-inline .form-check-input:checked {
  background-color: #817e7e;
}
.custom-checkbox-inline .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(65, 65, 65, 0.13);
}
.custom-checkbox-inline .form-check-label {
  margin-top: 2px;
  margin-left: 4px;
}

.salary-sheet-summary-box p {
  color: var(--color-white);
  font-size: 18px;
}
.salary-sheet-summary-box p .summary-title {
  width: 130px;
  text-align: right;
  display: inline-block;
  margin-right: 16px;
}
.salary-sheet-summary-box p .summary-amount {
  text-align: right;
  display: inline-block;
}
.salary-sheet-summary-box hr {
  margin: 5px 0;
}

.modal-add-employee .modal-body {
  padding: 0;
}
.modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table thead tr th:nth-child(1) {
  max-width: 115px;
  width: 115px;
}
@media (max-width: 1399.98px) {
  .modal-add-employee .buy-and-payment-wrap {
    padding: 2px 16px;
  }
  .modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table thead tr th:nth-child(1) {
    max-width: 45px;
    width: 45px;
  }
  .modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table thead tr th .custom-checkbox-inline .form-check-label {
    display: none;
  }
  .modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table thead tr th .form-check-inline .form-check-input {
    margin-top: 6px;
  }
}
@media (max-width: 991.98px) {
  .modal-add-employee .buy-and-payment-wrap {
    padding: 2px 12px;
  }
  .modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table thead tr th {
    font-size: 13px;
  }
  .modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table thead tr th:nth-child(1) {
    max-width: 45px;
    width: 45px;
  }
  .modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table thead tr th .form-check-inline .form-check-input {
    margin-top: 6px;
  }
  .modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td {
    font-size: 13px;
  }
  .modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td p.ename-english {
    font-size: 14px;
  }
  .modal-add-employee .buy-and-payment-wrap .main-table .table-responsive .table tbody tr td p.ename-chinese {
    font-size: 14px;
  }
  .modal-add-employee .modal-header {
    padding: 8px 12px;
  }
  .modal-add-employee .modal-header .modal-title {
    font-size: 17px;
  }
  .modal-add-employee .modal-footer {
    padding: 6px 10px;
  }
}

.nav-link.btn-theme-light {
  color: var(--color-white) !important;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  padding: 7px 13px;
}
.nav-link.btn-theme-light:hover {
  color: var(--color-lighter-dark) !important;
}
.nav-link.btn-theme-light.active {
  background: #535353 !important;
  border-bottom: 3px solid #535353 !important;
  color: var(--color-text) !important;
  font-weight: 600;
  position: relative;
}
.nav-link.btn-theme-light.active::after {
  content: "";
  border: 10px solid transparent;
  border-top-color: #535353;
  border-width: 13px 14px;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.nav-link.btn-theme-light:focus-visible {
  box-shadow: none !important;
}
.nav-link.btn-theme-light .user-count {
  color: var(--color-white-gray);
}
@media (max-width: 1599.98px) {
  .nav-link.btn-theme-light {
    font-size: 15px;
    padding: 7px 11px;
  }
}
@media (max-width: 1499.98px) {
  .nav-link.btn-theme-light {
    font-size: 14px;
    padding: 6px 9px;
  }
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}

.checkbox-wrapper-46 {
  position: absolute;
  right: 6px;
  top: -2px;
}
.checkbox-wrapper-46 input[type=checkbox] {
  display: none;
  visibility: hidden;
}
.checkbox-wrapper-46 .cbx {
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  cursor: pointer;
}
.checkbox-wrapper-46 .cbx span {
  display: block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-46 .cbx span:first-child {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #fff;
  transition: all 0.2s ease;
  background-color: #535353;
}
.checkbox-wrapper-46 .cbx span:first-child svg {
  position: absolute;
  top: 4px;
  left: 3px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-46 .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #8a8a8a;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  left: 0;
}
.checkbox-wrapper-46 .cbx span:last-child {
  padding-left: 8px;
}
.checkbox-wrapper-46 .cbx:hover span:first-child {
  border-color: #535353;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
  background: #535353;
  border-color: #535353;
  animation: wave-46 0.4s ease;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(4);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave-46 {
  80% {
    transform: scale(0.95);
  }
}
.td-width-80px {
  width: 80px;
}

.td-width-60px {
  width: 60px;
}

.td-width-40px {
  width: 40px;
}

.country-thumbs {
  width: 44px;
  height: 28px;
  -o-object-fit: cover;
     object-fit: cover;
}

.table-rating {
  display: flex;
  align-items: center;
}
.table-rating img {
  width: 24px;
  height: 26px;
  margin-top: 2px;
  padding: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.buy-and-payment-wrap .main-table .table-responsive .client_table.table tbody tr.child td .table-child {
  border-spacing: 0 5px;
}

.dox-account-form {
  display: none;
}

.breadcrumb-search-wrap {
  border-bottom: 1px solid #535353;
}

.search-form-wrap {
  margin: 20px 0 10px 0;
}
.search-form-wrap.buy-n-sale {
  margin: 0;
}
.search-form-wrap.buy-n-sale form {
  display: flex;
  justify-content: flex-end;
}
.search-form-wrap.buy-n-sale .search-box {
  max-width: 300px;
}
.search-form-wrap.buy-n-sale .search-box .form-control {
  padding: 5px 37px 5px 10px;
}
.search-form-wrap.buy-n-sale .search-box .form-control::-moz-placeholder {
  font-size: 14px;
}
.search-form-wrap.buy-n-sale .search-box .form-control::placeholder {
  font-size: 14px;
}
.search-form-wrap.buy-n-sale .search-box .btn.search-btn {
  position: absolute;
  padding: 4px 8px;
  top: 0;
  right: 0;
  height: 38px;
  border-left: 1px solid #a4a5a4;
  border-radius: 0;
}
.search-form-wrap.buy-n-sale .search-box .btn.search-btn i {
  position: static;
}
.search-form-wrap.buy-n-sale .select2-container .select2-selection--single {
  height: 34px;
  background-color: transparent !important;
}
.search-form-wrap.buy-n-sale .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 33px;
  color: #c3c3c3;
}
.search-form-wrap.buy-n-sale .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 3px;
}
@media (max-width: 575.98px) {
  .search-form-wrap.buy-n-sale {
    margin-bottom: 8px;
  }
  .search-form-wrap.buy-n-sale .search-box {
    max-width: 100%;
  }
}
.search-form-wrap .search-box {
  position: relative;
}
.search-form-wrap .search-box.maxw-400px {
  width: 100%;
  max-width: 400px;
}
.search-form-wrap .search-box .form-control {
  border: 1px solid #a4a5a4;
  background: transparent;
  padding: 8px 8px 8px 48px;
  color: #c4c4c4;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 17px;
}
.search-form-wrap .search-box .form-control::-moz-placeholder {
  color: #919191;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
}
.search-form-wrap .search-box .form-control::placeholder {
  color: #919191;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
}
.search-form-wrap .search-box .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.search-form-wrap .search-box i {
  position: absolute;
  top: 14px;
  left: 13px;
  color: #c4c4c4;
  font-size: 18px;
}
.search-form-wrap.top-nav-search {
  margin: 0;
  margin-right: 2px;
}
.search-form-wrap.top-nav-search .search-box {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
}
.search-form-wrap.top-nav-search .search-box .form-control {
  padding: 7px 8px 7px 48px;
}
.search-form-wrap.top-nav-search .search-box i {
  top: 12px;
}
.search-form-wrap.top-nav-search .search-box .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #d9d9d9;
  cursor: pointer;
  line-height: 1;
  display: none;
}
.search-form-wrap.top-nav-search .search-box .close-btn:hover {
  color: red;
}
.search-form-wrap.top-nav-search .sm-search-open {
  border: 1px solid #a4a5a4;
  background: transparent;
  padding: 4px 7px;
  color: #c4c4c4;
  font-weight: 600;
  display: none;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .search-form-wrap.top-nav-search .search-box {
    width: 100%;
    max-width: 202px;
    min-width: 202px;
  }
  .search-form-wrap.top-nav-search .search-box .form-control {
    padding: 7px 7px 7px 44px;
    font-size: 15px;
  }
  .search-form-wrap.top-nav-search .search-box i {
    top: 10px;
  }
}
@media (max-width: 575.98px) {
  .search-form-wrap.top-nav-search .search-box {
    display: none;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    left: 0;
    right: 0;
    position: fixed;
    top: 0;
    background: #535353;
    height: 48px;
    padding: 4px 5px;
  }
  .search-form-wrap.top-nav-search .search-box .form-control {
    border: none;
    border-radius: 0;
  }
  .search-form-wrap.top-nav-search .search-box i {
    top: 15px;
  }
  .search-form-wrap.top-nav-search .search-box .close-btn {
    display: block;
  }
  .search-form-wrap.top-nav-search .sm-search-open {
    display: block;
    padding: 1px 5px;
    font-size: 12px;
    border-radius: 4px;
  }
}

.role-name-box {
  margin: 20px 0 10px 0;
}
.role-name-box .form-control {
  border: 1px solid #a4a5a4;
  background: transparent;
  padding: 8px 12px;
  color: #c4c4c4;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 17px;
}
.role-name-box .form-control::-moz-placeholder {
  color: #919191;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
}
.role-name-box .form-control::placeholder {
  color: #919191;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
}
.role-name-box .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
  border-color: transparent;
}

.required_sign {
  color: #ff7474;
}

.form-switch {
  padding-left: 3rem;
}

.form-switch .fcl-space {
  margin-top: 2px;
  margin-left: 10px;
}

.form-switch .form-check-input {
  width: 2.625rem;
  height: 1.25rem;
  margin-left: -3rem;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-input-width .select2-container .select2-selection--single,
.new-designation-form .select2-container .select2-selection--single,
.select2-theme .select2-container .select2-selection--single {
  height: 40px;
  border-radius: 6px;
}

.custom-input-width.is-invalid .select2-container .select2-selection--single {
  border-color: #ff0000;
}

.custom-input-width.is-invalid .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #ff0000 transparent transparent transparent;
}

.custom-input-width .select2-container--default .select2-selection--single .select2-selection__rendered,
.new-designation-form .select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-theme .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 39px;
}

.custom-input-width .select2-container--default .select2-selection--single .select2-selection__arrow,
.new-designation-form .select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-theme .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
}

.select2-results__option--selectable {
  color: var(--color-bg-dark);
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
  outline: none;
  background: #f8f8f8;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #1855b6;
}

.select2-container {
  padding-left: 0;
  padding-right: 0;
}

.new-employee-form .form-control:disabled {
  background-color: #bbbbbb;
  opacity: 1;
  cursor: not-allowed;
}

@media (max-width: 575.98px) {
  .new-designation-form .select2-container .select2-selection--single {
    height: 33px;
  }
  .new-designation-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
    font-size: 14px;
  }
  .new-designation-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 3px;
  }
  .new-designation-form .left-wrap select.form-select {
    height: 33px;
    padding: 4px 24px 4px 12px;
    background-position: right 4px center;
  }
}
.navbar .container-fluid .top-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu .tnsm-mbtn {
  padding: 8px 16px;
  background: #59835c;
  border: none;
  font-size: 16px;
  color: var(--color-white);
  border-radius: 0;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 180px;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu .tnsm-mbtn:active {
  border: none;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul li {
  margin-right: 8px;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul li:last-child {
  margin-right: 0;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a {
  padding: 5px 12px;
  background: #59835c;
  font-size: 15.5px;
  color: var(--color-white);
  border-radius: 6px;
  border: 1px solid #59835c;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a.Deleted {
  background: #852424;
  border: 1px solid #852424;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a.Deleted:hover {
  background: #921a1a;
  border: 1px solid #921a1a;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a.Deleted.active {
  background: #b72020;
  border: 1px solid #fff;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a:hover {
  background: #39793c;
  border: 1px solid #39793c;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a.active {
  background: #688d6b;
  border: 1px solid #fff;
}
.navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a span {
  padding-left: 2px;
}
@media (max-width: 1630px) {
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul li {
    margin-right: 5px;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a {
    padding: 5px 8px;
    font-size: 15px;
  }
}
@media (max-width: 1499.98px) {
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul li {
    margin-right: 5px;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a {
    padding: 4px 6px;
    font-size: 12px;
  }
}
@media (max-width: 1299.98px) {
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul li {
    margin-right: 3px;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a {
    padding: 5px 4px;
    font-size: 11px;
  }
}
@media (max-width: 1199.98px) {
  .navbar .container-fluid .top-nav-center .top-nav-order-menu {
    position: relative;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu .tnsm-mbtn {
    display: flex;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul li {
    margin-right: 0;
    text-align: left;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a {
    padding: 5px 16px;
    font-size: 16px;
    display: block;
    width: 100%;
    border-radius: 0;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu.active ul {
    display: flex;
  }
}
@media (max-width: 575.98px) {
  .navbar .container-fluid .top-nav-center .top-nav-order-menu .tnsm-mbtn {
    padding: 6px 8px;
    font-size: 12px;
    width: 124px;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul {
    top: 35px;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu ul li a {
    padding: 5px 8px;
    font-size: 12px;
    display: block;
    width: 100%;
    border-radius: 0;
  }
  .navbar .container-fluid .top-nav-center .top-nav-order-menu.active ul {
    display: flex;
  }
}
.navbar .container-fluid .top-nav-right .dropdown .btn-add-new.dropdown-toggle::after {
  content: none;
}
.navbar .container-fluid .top-nav-right .dropdown .dropdown-menu {
  background: #a4a5a4;
}
.navbar .container-fluid .top-nav-right .dropdown .dropdown-menu li .dropdown-item {
  color: var(--color-white);
  cursor: pointer;
}
.navbar .container-fluid .top-nav-right .dropdown .dropdown-menu li .dropdown-item:hover {
  background: #8b8b8b;
}
.navbar .container-fluid .top-nav-right .dropdown .dropdown-menu li .dropdown-item:focus {
  background: #8b8b8b;
}
@media (max-width: 991.98px) {
  .navbar .container-fluid .top-nav-right .dropdown .btn-add-new.dropdown-toggle:hover {
    border-color: transparent;
  }
}

.breadcrumb-wrap-default {
  padding-top: 4px;
}
.breadcrumb-wrap-default .breadcrumb .breadcrumb-item {
  font-size: 18px;
}
.breadcrumb-wrap-default .breadcrumb .breadcrumb-item::before {
  color: var(--color-white);
}
.breadcrumb-wrap-default .breadcrumb .breadcrumb-item a {
  color: var(--color-white-gray);
  transition: all 0.2s ease-in-out;
}
.breadcrumb-wrap-default .breadcrumb .breadcrumb-item a:hover {
  opacity: 0.75;
}
.breadcrumb-wrap-default .breadcrumb .breadcrumb-item.active {
  color: #999;
}
@media (max-width: 1399.98px) {
  .breadcrumb-wrap-default .breadcrumb .breadcrumb-item {
    font-size: 16px;
  }
}
@media (max-width: 1199.98px) {
  .breadcrumb-wrap-default .breadcrumb .breadcrumb-item {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .breadcrumb-wrap-default {
    padding-top: 0;
  }
  .breadcrumb-wrap-default .breadcrumb {
    margin-bottom: 10px;
  }
  .breadcrumb-wrap-default .breadcrumb .breadcrumb-item {
    font-size: 13px;
  }
}

#content .command-wrap .command-output.sale-product-output {
  height: calc(100% - 17px);
}

#content .command-wrap .command-output.generated-price-sheet-output {
  height: 100%;
}
#content .command-wrap .command-output.generated-price-sheet-output .new-employee-form {
  height: 100%;
}
#content .command-wrap .command-output.generated-price-sheet-output .generated-price-sheet-wrap {
  height: calc(100% - 50px);
  overflow: hidden;
  overflow-y: auto;
}
#content .command-wrap .command-output.generated-price-sheet-output .pagination-wrap {
  height: 35px;
  margin-top: 15px;
}
#content .command-wrap .command-output.generated-price-sheet-output .pagination-wrap .show-rows .show-rows-wrap .col-form-label {
  flex: inherit;
  max-width: inherit;
}

.sale-product-options {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-left: -12px;
  margin-right: -12px;
}
.sale-product-options .sale-product-option-wrap {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 12px;
  padding-right: 12px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-head {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 12px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-head a {
  color: var(--color-white);
  font-size: 16px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-head a:hover {
  color: #999;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body {
  background: var(--color-white);
  padding: 12px 16px;
  border-radius: 12px;
  height: calc(100vh - 228px);
  overflow: hidden;
  overflow-y: auto;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul {
  list-style: none;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li {
  color: #999;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li::before {
  content: "";
  border: 8px solid transparent;
  border-left-color: #848484;
  border-width: 8px 10px;
  position: absolute;
  top: 4px;
  left: -16px;
  opacity: 0;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li span.group_item, .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li span.product_item, .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li span.product_type_item, .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li span:first-of-type {
  width: 98%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  float: left;
  padding-left: 4px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li img.img-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  float: left;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li .type-img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 2px;
  border-radius: 0;
  border: 1px solid #ddd;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li span.action-wrap {
  font-size: 16px;
  position: absolute;
  right: -10px;
  top: 0;
  display: none;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li span.action-wrap a {
  color: #707070;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li span.action-wrap a.delete {
  margin-left: 3px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li span.action-wrap a :hover {
  color: #aaaaaa;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li:hover {
  color: #666;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li.active {
  font-weight: 600;
  color: #777;
  font-size: 17px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li.active::before {
  opacity: 1;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li.active span.action-wrap {
  display: flex;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body .info-text {
  justify-content: center;
  text-align: center;
  color: #6c757d;
  margin-top: 40px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body .info-text i {
  margin-right: 4px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-head {
  height: 39px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body {
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .btn-create-price-sheet,
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .add-to-cart {
  background: var(--color-white);
  color: var(--color-bg-dark);
  font-size: 20px;
  font-weight: 600;
  display: block;
  padding: 10px;
  text-align: center;
  border-radius: 16px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add {
  margin-top: 50px;
  padding-bottom: 12px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add.cart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add.cart-heading a {
  font-size: 15px;
  color: #ff6969;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add.cart-heading a:hover {
  color: var(--color-danger);
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add span {
  font-size: 18px;
  font-weight: 600;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add a {
  color: var(--color-white);
  font-size: 16px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list {
  background: var(--color-white);
  color: var(--color-text);
  border-radius: 12px;
  padding: 12px;
  height: calc(100% - 139px);
  overflow: hidden;
  overflow-y: auto;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list li {
  padding: 0;
  margin-bottom: 8px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list li:last-child {
  margin-bottom: 0;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-dark);
  background: #e6e6e6;
  padding: 7px 15px;
  border-radius: 12px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list li a span {
  display: flex;
  position: initial;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list li a span:first-child {
  padding-right: 5px;
  padding-left: 0;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list li .zone-edit {
  background: #e6e6e6;
  position: absolute;
  z-index: 1;
  right: -14px;
  top: 3px;
  border-radius: 12px;
  padding-left: 16px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list li .zone-edit a {
  display: inline-flex;
  padding: 1px;
  color: #666;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list li:hover .zone-edit {
  visibility: visible;
  opacity: 1;
  right: 3px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart {
  background: var(--color-white);
  color: var(--color-text);
  border-radius: 12px;
  padding: 2px 4px;
  height: calc(100% - 139px);
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-checkbox {
  width: 28px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .form-check {
  min-height: 16px;
  margin-right: 0;
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 13px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .form-check .form-check-input {
  background-color: #fff;
  border: 1px solid #999;
  margin-left: -15px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .form-check .form-check-input:checked {
  background-color: #414141;
  border-color: #535353;
  box-shadow: none;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .form-check .form-check-input:focus {
  box-shadow: none;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item-img {
  padding: 4px 0;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item-img img {
  width: 36px;
  border: 1px solid #888;
  padding: 3px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item {
  letter-spacing: 0px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-name {
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  max-width: 110px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-type-size {
  font-size: 11px;
  line-height: 11px;
  white-space: nowrap;
  max-width: 110px;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 4px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-unit {
  font-size: 10px;
  line-height: 10px;
  white-space: nowrap;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .item-total {
  font-size: 11px;
  white-space: nowrap;
  letter-spacing: 0px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .remove-cart-item {
  padding: 1px 1px 5px 1px;
  color: var(--color-holiday);
  font-size: 12px;
  line-height: 12px;
  border: none;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .remove-cart-item:hover {
  color: rgb(185, 2, 2);
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .remove-cart-item:focus, .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .remove-cart-item:active, .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .remove-cart-item.active {
  border: none;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table thead tr th {
  padding: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #4A4444;
  padding-bottom: 3px;
  border-bottom: 1px solid #c5c5c5;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table thead tr th:first-child {
  padding-left: 0;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table thead tr th .form-check {
  min-height: 16px;
  font-size: 13px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table tbody tr td {
  padding: 4px;
  color: #4A4444;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table tbody tr td:first-child {
  padding-left: 0;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table tbody tr:first-child td {
  padding-top: 7px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart .cart-total-warp {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart .cart-total-warp .cart-total {
  background: #24BC00;
  color: #fff;
  padding: 6px 45px;
  border-radius: 40px;
  text-align: center;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart .cart-total-warp .cart-total .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 2px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart .cart-total-warp .cart-total .total-amount {
  font-size: 12px;
  line-height: 12px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart .empty-cart {
  margin-top: 16px;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart .empty-cart img {
  width: 100px;
  margin: 0 auto;
  display: block;
}
.sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart .empty-cart p {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 1799.98px) {
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item-img {
    padding: 4px 0;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item-img img {
    width: 26px;
    padding: 2px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-name {
    max-width: 98px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-type-size {
    max-width: 98px;
  }
}
@media (max-width: 1699.98px) {
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item-img img {
    width: 24px;
    padding: 2px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-name {
    max-width: 85px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-type-size {
    max-width: 85px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table thead tr th {
    padding: 2px;
    padding-bottom: 2px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table thead tr th:last-child {
    padding-right: 0;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table tbody tr td {
    padding: 2px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table tbody tr td:last-child {
    padding-right: 0;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table tbody tr:first-child td {
    padding-top: 6px;
  }
}
@media (max-width: 1550px) {
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item-img img {
    width: 20px;
    padding: 1px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-name {
    max-width: 80px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-type-size {
    max-width: 80px;
  }
}
@media (max-width: 1499.98px) {
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item-img img {
    width: 16px;
    padding: 0;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-name {
    max-width: 70px;
    font-size: 11px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-type-size {
    max-width: 70px;
    font-size: 10px;
    margin-bottom: 1px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .cart-item .cart-item-details .cart-item-unit {
    font-size: 9.5px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table .item-total {
    font-size: 10px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table thead tr th {
    padding: 1.5px;
    padding-bottom: 2px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table thead tr th:last-child {
    padding-right: 0;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table tbody tr td {
    padding: 1.5px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table tbody tr td:last-child {
    padding-right: 0;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart table tbody tr:first-child td {
    padding-top: 5px;
  }
}
@media (max-width: 575.98px) {
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart {
    height: auto;
  }
}
@media (max-width: 1800px) {
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li {
    font-size: 15px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li.active {
    font-size: 15.5px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li span {
    font-size: 14px;
  }
}
@media (max-width: 1500px) {
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body .info-text {
    font-size: 14px;
  }
}
@media (max-width: 1399.98px) {
  .sale-product-options {
    margin-left: -8px;
    margin-right: -8px;
  }
  .sale-product-options .sale-product-option-wrap {
    padding-left: 8px;
    padding-right: 8px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-head {
    font-size: 16px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-head a {
    font-size: 14px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li a {
    font-size: 16px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-head {
    height: 36px;
  }
}
@media (max-width: 1299.98px) {
  .sale-product-options.buy-product-options .sale-product-option-wrap {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .sale-product-options.buy-product-options .sale-product-option-wrap:last-child {
    flex: 0 0 33%;
    max-width: 33%;
  }
  .sale-product-options.buy-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add {
    margin-top: 15px;
  }
  .sale-product-options.buy-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .buy-product-cart {
    height: calc(100% - 104px);
  }
}
@media (max-width: 1199.98px) {
  .sale-product-options .sale-product-option-wrap {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 767.98px) {
  .sale-product-options .sale-product-option-wrap {
    flex: 0 0 33%;
    max-width: 33%;
    margin-bottom: 20px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-head {
    font-size: 14px;
    padding-bottom: 6px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-head a {
    font-size: 14px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body {
    height: 300px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li a {
    font-size: 14px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-head {
    height: 27px;
  }
  .sale-product-options.buy-product-options .sale-product-option-wrap {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .sale-product-options.buy-product-options .sale-product-option-wrap:last-child {
    flex: 0 0 250px;
    max-width: 250px;
  }
}
@media (max-width: 575.98px) {
  .sale-product-options .sale-product-option-wrap {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
  .sale-product-options .sale-product-option-wrap:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-head {
    font-size: 13px;
    padding-bottom: 6px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-head a {
    font-size: 13px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body {
    height: 280px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box .spob-body ul li a {
    font-size: 13px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .btn-create-price-sheet {
    font-size: 16px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add {
    margin-top: 16px;
    padding-bottom: 8px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add span {
    font-size: 16px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body .zone-add a {
    font-size: 15px;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list {
    height: auto;
  }
  .sale-product-options .sale-product-option-wrap .sale-product-option-box.price-sheet .spob-body ul.price-zone-list li a span {
    font-size: 15px;
  }
  .sale-product-options.buy-product-options .sale-product-option-wrap {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .sale-product-options.buy-product-options .sale-product-option-wrap:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sale-product-options.buy-product-options .sale-product-option-wrap:last-child .spob-body {
    height: auto;
  }
}

.checkbox-select-month {
  position: absolute;
  top: 0;
  right: 1px;
}
.checkbox-select-month.select-month-yearly {
  top: -1px;
  left: 8px;
  right: inherit;
}
.checkbox-select-month .monthly_salary_select_box.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0;
}
.checkbox-select-month .monthly_salary_select_box.form-check-input:focus {
  box-shadow: none;
  background-color: #9d9d9d;
  border-color: #dee2e6;
}
.checkbox-select-month label {
  display: none;
}

.modal .select2-container {
  width: 100% !important;
}

.modal .select2-container .select2-selection--single {
  height: 38px;
}

.modal .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
}

.modal .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
}

.price-sheet-section .table-responsive .table {
  margin-bottom: 4px;
}
.price-sheet-section .table-responsive .table-price-sheet {
  width: auto;
  max-width: 100%;
  border-bottom: none;
  margin-bottom: 0;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main {
  width: 220px;
  max-width: 220px;
  border-bottom: none;
  background: transparent;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main:first-child {
  padding-left: 0;
  padding-right: 0;
  width: 43px;
  max-width: 43px;
  position: sticky;
  left: 0;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main:nth-child(2) {
  position: sticky;
  left: 43px;
  background: #2e2d2d;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table td, .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table th {
  height: 36px;
  vertical-align: middle;
  padding: 3px 5px;
  font-weight: 600;
  font-size: 18px;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-checkbox {
  width: 40px;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-checkbox td {
  text-align: center;
  height: 37px;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-checkbox td .form-check.form-check-inline {
  margin: 0;
  min-width: 20px;
  min-height: 20px;
  width: 22px;
  height: 22px;
  margin-top: -2px;
  margin-left: 6px;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-checkbox td .form-check.form-check-inline .form-check-input {
  width: 22px;
  height: 22px;
  background-color: var(--color-white);
  border: 1px solid var(--color-lighter-dark);
  border-radius: 0;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-checkbox td .form-check.form-check-inline .form-check-input:checked {
  background-color: var(--color-lighter-dark);
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-checkbox td .form-check.form-check-inline .form-check-input:focus {
  box-shadow: none;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity tr {
  border-color: #a1a1a1;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity tr.deactivate td {
  cursor: not-allowed;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity tr.deactivate td input {
  background: #a9a9a9 !important;
  pointer-events: none;
  cursor: not-allowed;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity td, .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity th {
  width: 100px;
  min-width: 100px;
  border-color: #2e2d2d;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity th {
  text-align: center;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity td {
  text-align: right;
  padding: 0;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity td input {
  width: 100%;
  height: 36px;
  border: none;
  padding: 3px 8px;
  text-align: right;
  font-weight: 600;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity td input:focus {
  box-shadow: none;
  border: none;
  background: #e6e6e6;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity td input:focus-visible {
  box-shadow: none;
  border: none;
  outline: none;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone thead {
  border-color: #a1a1a1;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone thead th {
  font-size: 18px;
  border-color: #a1a1a1;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone thead th .form-check.form-check-inline {
  margin: 0;
  min-width: 20px;
  min-height: 20px;
  width: 20px;
  height: 20px;
  margin-left: 2px;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone thead th .form-check.form-check-inline .form-check-input {
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
  border: 1px solid var(--color-lighter-dark);
  border-radius: 0;
  margin-top: 3px;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone thead th .form-check.form-check-inline .form-check-input:checked {
  background-color: var(--color-lighter-dark);
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone thead th .form-check.form-check-inline .form-check-input:focus {
  box-shadow: none;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone.table-sky-head thead th {
  background: #89edff;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone.table-red-pink-head thead th {
  background: #ff8e8e;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone.table-orange-head thead th {
  background: #ff9300;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone.table-lime-green-head thead th {
  background: #00ff14;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone.table-blue-head thead th {
  background: #038ade;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone.table-ash-head thead th {
  background: #c7c6b6;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone td, .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone th {
  width: 100px;
  min-width: 100px;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone tr.deactivate td {
  cursor: not-allowed;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone tr.deactivate td input {
  background: #a9a9a9 !important;
  pointer-events: none;
  cursor: not-allowed;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone td {
  text-align: right;
  padding: 0;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone td.deactivate {
  cursor: not-allowed;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone td.deactivate input {
  background: #a9a9a9 !important;
  pointer-events: none;
  cursor: not-allowed;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone td input {
  width: 100%;
  height: 36px;
  border: none;
  padding: 3px 8px;
  text-align: right;
  font-weight: 600;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone td input:focus {
  box-shadow: none;
  border: none;
  background: #e6e6e6;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone td input:focus-visible {
  box-shadow: none;
  border: none;
  outline: none;
}
.price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone td input.deactivate {
  background: #a9a9a9 !important;
  pointer-events: none;
  cursor: not-allowed;
}
@media (max-width: 575.98px) {
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main {
    padding: 8px 4px;
  }
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table td,
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table th {
    font-size: 14px;
  }
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone thead th {
    font-size: 14px;
  }
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity td,
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-quantity th {
    width: 70px;
    min-width: 70px;
  }
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone td,
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main .table-ps-zone th {
    font-size: 14px;
    width: 70px;
    min-width: 70px;
  }
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main:first-child {
    width: 40px;
  }
  .price-sheet-section .table-responsive .table-price-sheet td.ps-td-main:nth-child(2) {
    left: 40px;
  }
}

.price-sheet-attribute {
  margin-top: 6px;
}
.price-sheet-attribute .add-attribute {
  margin-bottom: 8px;
}
.price-sheet-attribute .add-attribute span {
  font-size: 18px;
  font-weight: 600;
}
.price-sheet-attribute .add-attribute a {
  color: var(--color-white);
  margin-left: 2px;
}
.price-sheet-attribute .add-attribute a i {
  font-size: 16px;
}
.price-sheet-attribute .attribute-list {
  min-height: 164px;
  max-height: 164px;
  overflow: hidden;
  overflow-y: auto;
  background: var(--color-white);
  padding: 8px 2px;
  border-radius: 16px;
}
.price-sheet-attribute .attribute-list .attribute-box {
  background: #e6e6e6;
  border-radius: 40px;
  padding: 8px 20px;
  color: #000000;
  font-weight: 600;
  border: none;
  font-size: 18px;
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 12px;
  display: inline-flex;
}
.price-sheet-attribute .attribute-list .attribute-box .attribute-name {
  margin-right: 10px;
}
.price-sheet-attribute .attribute-list .attribute-box .attribute-action {
  top: 6px;
  right: 4px;
}
.price-sheet-attribute .attribute-list .attribute-box .attribute-action a {
  color: #707070;
}
.price-sheet-attribute .attribute-list .attribute-box .attribute-action a.edit:hover {
  color: #333333;
}
.price-sheet-attribute .attribute-list .attribute-box .attribute-action a.delete:hover {
  color: #b63f3f;
}
@media (max-width: 1199.98px) {
  .price-sheet-attribute .attribute-list .attribute-box {
    font-size: 16px;
    padding: 8px 15px;
  }
}
@media (max-width: 575.98px) {
  .price-sheet-attribute .attribute-list {
    padding: 5px 2px;
  }
  .price-sheet-attribute .attribute-list .attribute-box {
    font-size: 13px;
    padding: 6px 12px;
    margin-left: 4px;
  }
}

.attribute-price-table h3 {
  font-size: 18px;
}
.attribute-price-table .attribute-price-row-wrap {
  width: calc(100% - 40px);
  align-items: flex-end;
}
.attribute-price-table .attribute-price-row,
.attribute-price-table .attribute-price-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 8px;
}
.attribute-price-table .start-end-qty {
  display: flex;
  width: calc(100% - 45px);
}
.attribute-price-table .start-end-qty .form-label {
  margin-bottom: 3px;
}
.attribute-price-table .start-end-qty .start-qty {
  padding-right: 10px;
  width: 33%;
}
.attribute-price-table .start-end-qty .end-qty {
  padding-right: 10px;
  width: 33%;
}
.attribute-price-table .start-end-qty .attribute-price {
  padding-right: 10px;
  width: 33%;
}
.attribute-price-table .start-end-qty .attribute-price .form-label {
  margin-bottom: 4px;
}
.attribute-price-table .add-more {
  margin-top: 0;
}
.attribute-price-table .add-more .btn {
  padding: 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background: #fff;
  font-size: 20px;
  font-weight: 600;
}
.attribute-price-table .add-more .btn i {
  margin-right: 0;
}
.attribute-price-table .add-more .btn:focus, .attribute-price-table .add-more .btn:focus-visible, .attribute-price-table .add-more .btn:active, .attribute-price-table .add-more .btn.active {
  box-shadow: none;
  border-color: transparent;
}
.attribute-price-table .remove-row {
  width: 40px;
  margin-right: 5px;
}
.attribute-price-table .remove-row .btn {
  width: 40px;
  height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e70101;
  font-size: 20px;
  border: 1px solid transparent;
}
.attribute-price-table .remove-row .btn:hover {
  color: #ff6161;
  border: 1px solid #999;
}
.attribute-price-table .remove-row .btn:focus, .attribute-price-table .remove-row .btn:focus-visible, .attribute-price-table .remove-row .btn:active, .attribute-price-table .remove-row .btn.active {
  box-shadow: none;
  border: none;
  color: #ff6161;
  border: 1px solid transparent;
}

.recently-added-attribute {
  padding-top: 4px;
}
.recently-added-attribute h3 {
  font-size: 18px;
}
.recently-added-attribute .recently-added-list {
  padding: 12px 10px;
  background-color: #535353;
  width: 100%;
  border-radius: 8px;
}
.recently-added-attribute .recently-added-list .recently-added-item {
  background: #eee;
  color: #444;
  padding: 5px 9px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  margin-right: 0;
  margin-bottom: 0;
  white-space: nowrap;
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.recently-added-attribute .recently-added-list .recently-added-item.active {
  background: #333333;
  color: #fff;
}
.recently-added-attribute .recently-added-list .recently-added-item.active:hover {
  background: #444;
  color: #fff;
}
.recently-added-attribute .recently-added-list .recently-added-item:hover {
  background: #cfcfcf;
  color: #111;
}
.recently-added-attribute .recently-added-list .owl-nav {
  color: #000;
  margin-top: 0;
  display: none;
  font-family: "Open Sans", sans-serif;
}
.recently-added-attribute .recently-added-list .owl-nav .owl-prev {
  position: absolute;
  left: -18px;
  top: 12px;
  font-size: 22px;
  line-height: 1;
  background: #ddd;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  font-family: "Open Sans", sans-serif;
  padding-bottom: 7px !important;
}
.recently-added-attribute .recently-added-list .owl-nav .owl-next {
  position: absolute;
  right: -18px;
  top: 12px;
  font-size: 22px;
  line-height: 1;
  background: #ddd;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-family: "Open Sans", sans-serif;
  padding-bottom: 7px !important;
}
.recently-added-attribute .recently-added-list:hover .owl-nav {
  display: block;
}
.recently-added-attribute .recently-added-list-hr {
  padding: 8px 10px;
  background-color: #535353;
  width: 100%;
  border-radius: 8px;
  height: 77px;
  overflow: hidden;
  overflow-y: auto;
}
.recently-added-attribute .recently-added-list-hr .recently-added-item {
  background: #eee;
  color: #444;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  margin-right: 0;
  margin-bottom: 0;
  white-space: nowrap;
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  display: inline-block;
  margin: 4px 0;
}
.recently-added-attribute .recently-added-list-hr .recently-added-item.active {
  background: #333333;
  color: #fff;
}
.recently-added-attribute .recently-added-list-hr .recently-added-item.active:hover {
  background: #444;
  color: #fff;
}
.recently-added-attribute .recently-added-list-hr .recently-added-item:hover {
  background: #cfcfcf;
  color: #111;
}

.generated-price-sheet-wrap {
  margin-top: 0;
}
.generated-price-sheet-wrap .generated-price-sheet-list {
  padding-left: 32px;
}
.generated-price-sheet-wrap .generated-price-sheet-list li {
  padding: 4px 0;
}
.generated-price-sheet-wrap .generated-price-sheet-list li a {
  color: var(--color-text);
  padding: 4px 0;
}
.generated-price-sheet-wrap .generated-price-sheet-list li a:hover {
  color: var(--color-lighter-dark);
}
.generated-price-sheet-wrap .generated-price-sheet-list li a.delete img {
  width: 14px;
  margin-top: -4px;
}
@media (max-width: 1199.98px) {
  .generated-price-sheet-wrap .generated-price-sheet-list {
    font-size: 14px;
  }
  .generated-price-sheet-wrap .generated-price-sheet-list li a {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .generated-price-sheet-wrap .generated-price-sheet-list {
    font-size: 12px;
  }
  .generated-price-sheet-wrap .generated-price-sheet-list li a {
    font-size: 12px;
  }
}

#addZoneModal .form-control-color,
#editZoneModal .form-control-color {
  background-color: #2e2d2d;
  border-color: #939191;
  padding: 5px;
  width: 64px;
  height: 50px;
}

#createSingleOrder {
  color: var(--color-dark);
  transition: all 0.5s ease-in-out;
}
#createSingleOrder .modally-table {
  display: contents;
}
#createSingleOrder .modally-table .modally-cell {
  display: block;
}
#createSingleOrder .modally {
  padding: 0;
  transition: all 0.5s ease-in-out;
}
#createSingleOrder .modally .modally-close-button {
  background: #9f9f9f;
  border: 2px solid #ddd;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  position: absolute;
  top: -16px;
  right: -16px;
  padding-bottom: 4px;
  padding-left: 2px;
}
#createSingleOrder .modally .modally-content {
  height: calc(100vh - 40px);
  border-radius: 10px;
  overflow: hidden;
  overflow-y: auto;
}
#createSingleOrder .modally .modally-content .was-validated .form-control.is-invalid,
#createSingleOrder .modally .modally-content .was-validated .form-control:invalid {
  border-color: var(--bs-form-invalid-border-color) !important;
}
#createSingleOrder .modally .modally-content .was-validated .form-control.is-valid,
#createSingleOrder .modally .modally-content .was-validated .form-control:valid {
  border-color: var(--bs-form-valid-border-color) !important;
}
#createSingleOrder .modally .modally-content .was-validated .order-products .form-control.is-valid,
#createSingleOrder .modally .modally-content .was-validated .order-products .form-control:valid,
#createSingleOrder .modally .modally-content .was-validated .order-products .form-control.is-invalid,
#createSingleOrder .modally .modally-content .was-validated .order-products .form-control:invalid {
  background-image: none;
  border-color: #ddd !important;
}
#createSingleOrder .modally .modally-content .order-info {
  padding: 24px 40px;
  background: #f0f0f0;
  border-radius: 10px 10px 0px 0px;
}
#createSingleOrder .modally .modally-content .order-info .col-form-label {
  color: #888;
  font-size: 16px;
  font-weight: 600;
}
#createSingleOrder .modally .modally-content .order-info .form-select,
#createSingleOrder .modally .modally-content .order-info .form-control {
  color: #888;
}
@media (max-width: 767.98px) {
  #createSingleOrder .modally .modally-content .order-info {
    padding: 16px 20px 8px 20px;
  }
  #createSingleOrder .modally .modally-content .order-info .col-form-label {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 14px;
  }
  #createSingleOrder .modally .modally-content .order-info .form-select,
  #createSingleOrder .modally .modally-content .order-info .form-control {
    font-size: 14px;
    height: 32px;
  }
}
#createSingleOrder .modal-dialog {
  max-width: 1160px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  #createSingleOrder .modal-dialog {
    max-width: 94%;
  }
}
#createSingleOrder .modal-header {
  padding: 0;
  background: transparent;
  border: 0;
}
#createSingleOrder .modal-header .close {
  background: #9f9f9f;
  border: 2px solid #ddd;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  position: absolute;
  top: -16px;
  right: -14px;
  padding-bottom: 4px;
  padding-left: 2px;
  z-index: 2;
}
#createSingleOrder .modal-header .close:hover {
  background: #ffefef;
  color: #d51111;
  border-color: #8a8a8a;
}
#createSingleOrder .modal-body {
  padding: 0;
  height: calc(100vh - 44px);
  border-radius: 6px;
  overflow: hidden;
  overflow-y: auto;
}
#createSingleOrder .modal-body .order-info {
  padding: 24px 24px 24px 20px;
  background: #f0f0f0;
  border-radius: 6px 6px 0px 0px;
  position: relative;
}
#createSingleOrder .modal-body .order-info.review_approved {
  background: #4D6A3F;
}
#createSingleOrder .modal-body .order-info.review_approved .col-form-label {
  color: #ddd;
}
#createSingleOrder .modal-body .order-info .review_approved_wrap {
  position: absolute;
  right: 16px;
  top: 27px;
}
#createSingleOrder .modal-body .order-info .review_approved_wrap .review_approved_check .form-check-input {
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: 2px solid #b5b5b5;
}
#createSingleOrder .modal-body .order-info .review_approved_wrap .review_approved_check .form-check-input:checked {
  background-color: #2e2d2d;
  border: 2px solid #2e2d2d;
}
#createSingleOrder .modal-body .order-info .col-form-label {
  color: #888;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  #createSingleOrder .modal-body .order-info .col-form-label.order-source-label {
    letter-spacing: 0.25px;
  }
}
#createSingleOrder .modal-body .order-info .form-select,
#createSingleOrder .modal-body .order-info .form-control {
  color: #888;
  padding: 5px 8px;
}
#createSingleOrder .modal-body .order-info .form-select#order_number:-moz-read-only, #createSingleOrder .modal-body .order-info .form-select#order_date:-moz-read-only, #createSingleOrder .modal-body .order-info .form-control#order_number:-moz-read-only, #createSingleOrder .modal-body .order-info .form-control#order_date:-moz-read-only {
  background: #eee;
}
#createSingleOrder .modal-body .order-info .form-select#order_number:read-only, #createSingleOrder .modal-body .order-info .form-select#order_date:read-only,
#createSingleOrder .modal-body .order-info .form-control#order_number:read-only,
#createSingleOrder .modal-body .order-info .form-control#order_date:read-only {
  background: #eee;
}
#createSingleOrder .modal-body .order-info .form-select#order_number:-moz-read-only:focus, #createSingleOrder .modal-body .order-info .form-select#order_date:-moz-read-only:focus, #createSingleOrder .modal-body .order-info .form-control#order_number:-moz-read-only:focus, #createSingleOrder .modal-body .order-info .form-control#order_date:-moz-read-only:focus {
  box-shadow: none;
  border: var(--bs-border-width) solid var(--bs-border-color);
}
#createSingleOrder .modal-body .order-info .form-select#order_number:read-only:focus, #createSingleOrder .modal-body .order-info .form-select#order_date:read-only:focus,
#createSingleOrder .modal-body .order-info .form-control#order_number:read-only:focus,
#createSingleOrder .modal-body .order-info .form-control#order_date:read-only:focus {
  box-shadow: none;
  border: var(--bs-border-width) solid var(--bs-border-color);
}
#createSingleOrder .modal-body .order-info .form-select#order_source:disabled,
#createSingleOrder .modal-body .order-info .form-control#order_source:disabled {
  background: #eee;
}
#createSingleOrder .modal-body .order-info .form-select#order_source:disabled:focus,
#createSingleOrder .modal-body .order-info .form-control#order_source:disabled:focus {
  box-shadow: none;
  border: var(--bs-border-width) solid var(--bs-border-color);
}
@media (max-width: 991.98px) {
  #createSingleOrder .modal-body .order-info .review_approved_wrap {
    top: 21px;
  }
}
@media (max-width: 767.98px) {
  #createSingleOrder .modal-body .order-info {
    padding: 12px 12px 12px 12px;
  }
  #createSingleOrder .modal-body .order-info .col-form-label {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 14px;
  }
  #createSingleOrder .modal-body .order-info .review_approved_wrap {
    right: 8px;
    top: inherit;
    bottom: 17px;
  }
  #createSingleOrder .modal-body .order-info .form-select,
  #createSingleOrder .modal-body .order-info .form-control {
    font-size: 14px;
    height: 32px;
  }
}
#createSingleOrder .create-order-wrap {
  padding-bottom: 28px;
}
#createSingleOrder .create-order-wrap .btn-cteate-order {
  padding: 8px 28px;
  background: #429a01;
  color: var(--color-white);
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-radius: 32px;
}
@media (max-width: 767.98px) {
  #createSingleOrder .create-order-wrap .btn-cteate-order {
    font-size: 16px;
  }
}

#editSingleOrder {
  color: var(--color-dark);
  transition: all 0.5s ease-in-out;
}
#editSingleOrder .modally-table {
  display: contents;
}
#editSingleOrder .modally-table .modally-cell {
  display: block;
}
#editSingleOrder .modally {
  padding: 0;
  transition: all 0.5s ease-in-out;
}
#editSingleOrder .modally .modally-close-button {
  background: #9f9f9f;
  border: 2px solid #ddd;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  position: absolute;
  top: -16px;
  right: -16px;
  padding-bottom: 4px;
  padding-left: 2px;
}
#editSingleOrder .modally .modally-content {
  height: calc(100vh - 40px);
  border-radius: 10px;
  overflow: hidden;
  overflow-y: auto;
}
#editSingleOrder .modally .modally-content .was-validated .form-control.is-invalid,
#editSingleOrder .modally .modally-content .was-validated .form-control:invalid {
  border-color: var(--bs-form-invalid-border-color) !important;
}
#editSingleOrder .modally .modally-content .was-validated .form-control.is-valid,
#editSingleOrder .modally .modally-content .was-validated .form-control:valid {
  border-color: var(--bs-form-valid-border-color) !important;
}
#editSingleOrder .modally .modally-content .was-validated .order-products .form-control.is-valid,
#editSingleOrder .modally .modally-content .was-validated .order-products .form-control:valid,
#editSingleOrder .modally .modally-content .was-validated .order-products .form-control.is-invalid,
#editSingleOrder .modally .modally-content .was-validated .order-products .form-control:invalid {
  background-image: none;
  border-color: #ddd !important;
}
#editSingleOrder .modally .modally-content .order-info {
  padding: 24px 40px;
  background: #f0f0f0;
  border-radius: 10px 10px 0px 0px;
}
#editSingleOrder .modally .modally-content .order-info .col-form-label {
  color: #888;
  font-size: 16px;
  font-weight: 600;
}
#editSingleOrder .modally .modally-content .order-info .form-select,
#editSingleOrder .modally .modally-content .order-info .form-control {
  color: #888;
}
@media (max-width: 767.98px) {
  #editSingleOrder .modally .modally-content .order-info {
    padding: 16px 20px 8px 20px;
  }
  #editSingleOrder .modally .modally-content .order-info .col-form-label {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 14px;
  }
  #editSingleOrder .modally .modally-content .order-info .form-select,
  #editSingleOrder .modally .modally-content .order-info .form-control {
    font-size: 14px;
    height: 32px;
  }
}
#editSingleOrder .modal-dialog {
  max-width: 1160px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  #editSingleOrder .modal-dialog {
    max-width: 94%;
  }
}
#editSingleOrder .modal-header {
  padding: 0;
  background: transparent;
  border: 0;
}
#editSingleOrder .modal-header .close {
  background: #9f9f9f;
  border: 2px solid #ddd;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  position: absolute;
  top: -16px;
  right: -14px;
  padding-bottom: 4px;
  padding-left: 2px;
  z-index: 2;
}
#editSingleOrder .modal-header .close:hover {
  background: #ffefef;
  color: #d51111;
  border-color: #8a8a8a;
}
#editSingleOrder .modal-body {
  padding: 0;
  height: calc(100vh - 44px);
  border-radius: 6px;
  overflow: hidden;
  overflow-y: auto;
}
#editSingleOrder .modal-body .order-info {
  padding: 24px 60px 24px 20px;
  background: #f0f0f0;
  border-radius: 6px 6px 0px 0px;
  position: relative;
}
#editSingleOrder .modal-body .order-info.review_approved {
  background: #4D6A3F;
}
#editSingleOrder .modal-body .order-info.review_approved .col-form-label {
  color: #ddd;
}
#editSingleOrder .modal-body .order-info .review_approved_wrap {
  position: absolute;
  right: 16px;
  top: 27px;
}
#editSingleOrder .modal-body .order-info .review_approved_wrap .review_approved_check .form-check-input {
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: 2px solid #b5b5b5;
}
#editSingleOrder .modal-body .order-info .review_approved_wrap .review_approved_check .form-check-input:checked {
  background-color: #2e2d2d;
  border: 2px solid #2e2d2d;
}
#editSingleOrder .modal-body .order-info .col-form-label {
  color: #888;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  #editSingleOrder .modal-body .order-info .col-form-label.order-source-label {
    letter-spacing: 0.25px;
  }
}
#editSingleOrder .modal-body .order-info .form-select,
#editSingleOrder .modal-body .order-info .form-control {
  color: #888;
  font-size: 15px;
  padding: 5px 8px;
  height: 34px;
}
#editSingleOrder .modal-body .order-info .form-select#order_number:-moz-read-only, #editSingleOrder .modal-body .order-info .form-select#order_date:-moz-read-only, #editSingleOrder .modal-body .order-info .form-control#order_number:-moz-read-only, #editSingleOrder .modal-body .order-info .form-control#order_date:-moz-read-only {
  background: #eee;
}
#editSingleOrder .modal-body .order-info .form-select#order_number:read-only, #editSingleOrder .modal-body .order-info .form-select#order_date:read-only,
#editSingleOrder .modal-body .order-info .form-control#order_number:read-only,
#editSingleOrder .modal-body .order-info .form-control#order_date:read-only {
  background: #eee;
}
#editSingleOrder .modal-body .order-info .form-select#order_number:-moz-read-only:focus, #editSingleOrder .modal-body .order-info .form-select#order_date:-moz-read-only:focus, #editSingleOrder .modal-body .order-info .form-control#order_number:-moz-read-only:focus, #editSingleOrder .modal-body .order-info .form-control#order_date:-moz-read-only:focus {
  box-shadow: none;
  border: var(--bs-border-width) solid var(--bs-border-color);
}
#editSingleOrder .modal-body .order-info .form-select#order_number:read-only:focus, #editSingleOrder .modal-body .order-info .form-select#order_date:read-only:focus,
#editSingleOrder .modal-body .order-info .form-control#order_number:read-only:focus,
#editSingleOrder .modal-body .order-info .form-control#order_date:read-only:focus {
  box-shadow: none;
  border: var(--bs-border-width) solid var(--bs-border-color);
}
#editSingleOrder .modal-body .order-info .form-select#order_source:disabled,
#editSingleOrder .modal-body .order-info .form-control#order_source:disabled {
  background: #eee;
}
#editSingleOrder .modal-body .order-info .form-select#order_source:disabled:focus,
#editSingleOrder .modal-body .order-info .form-control#order_source:disabled:focus {
  box-shadow: none;
  border: var(--bs-border-width) solid var(--bs-border-color);
}
@media (max-width: 991.98px) {
  #editSingleOrder .modal-body .order-info .review_approved_wrap {
    top: 21px;
  }
}
@media (max-width: 767.98px) {
  #editSingleOrder .modal-body .order-info {
    padding: 12px 40px 12px 12px;
  }
  #editSingleOrder .modal-body .order-info .col-form-label {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 14px;
  }
  #editSingleOrder .modal-body .order-info .review_approved_wrap {
    right: 8px;
    top: inherit;
    bottom: 17px;
  }
  #editSingleOrder .modal-body .order-info .form-select,
  #editSingleOrder .modal-body .order-info .form-control {
    font-size: 14px;
    height: 32px;
  }
}
#editSingleOrder .create-order-wrap {
  padding-bottom: 28px;
}
#editSingleOrder .create-order-wrap .btn-cteate-order {
  padding: 8px 28px;
  background: #429a01;
  color: var(--color-white);
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-radius: 32px;
}
@media (max-width: 767.98px) {
  #editSingleOrder .create-order-wrap .btn-cteate-order {
    font-size: 16px;
  }
}

.modally-wrap .modally-underlay {
  backdrop-filter: blur(0) !important;
  -webkit-backdrop-filter: blur(0) !important;
  transition: all 0.5s ease-in-out;
}

.order-billing-shipping {
  padding: 24px 40px 14px 40px;
}
.order-billing-shipping .order-billing-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-billing-shipping .order-billing-wrap .billing-to,
.order-billing-shipping .order-billing-wrap .shipping-address {
  flex: 0 0 45%;
  max-width: 45%;
}
.order-billing-shipping .order-billing-wrap h3.title {
  font-size: 18px;
  font-weight: 600;
  color: #888;
}
.order-billing-shipping .order-billing-wrap .billing-title {
  margin-bottom: 8px;
  align-items: center;
}
.order-billing-shipping .order-billing-wrap .billing-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: #888;
  margin-bottom: 0;
}
.order-billing-shipping .order-billing-wrap .billing-title .select2-container {
  width: 300px !important;
}
.order-billing-shipping .order-billing-wrap .billing-title .select2-container--default .select2-selection--single {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  height: 28px;
}
.order-billing-shipping .order-billing-wrap .billing-title .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #777;
  padding-left: 0;
  line-height: 28px;
}
.order-billing-shipping .order-billing-wrap .billing-title .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 1px;
}
.order-billing-shipping .order-billing-wrap .billing-title .select2-dropdown {
  border-color: #ddd;
}
.order-billing-shipping .order-billing-wrap .billing-title .select2-container--default.select2-container--disabled .select2-selection--single {
  border-radius: 6px !important;
  padding-left: 6px;
  border-bottom: 1px solid #eee;
}
.order-billing-shipping .order-billing-wrap .shipping-title {
  margin-bottom: 8px;
  align-items: center;
}
.order-billing-shipping .order-billing-wrap .shipping-title h3 {
  font-size: 18px;
  font-weight: 600;
  color: #888;
  margin-bottom: 0;
}
.order-billing-shipping .order-billing-wrap .shipping-title .form-check .form-check-input {
  background-color: #fff;
}
.order-billing-shipping .order-billing-wrap .shipping-title .form-check .form-check-input:checked {
  background-color: #414141;
  border-color: #535353;
}
.order-billing-shipping .order-billing-wrap .shipping-title .form-check .form-check-label {
  color: #888;
}
.order-billing-shipping .order-billing-wrap .form-box {
  background: #f0f0f0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap.has-textarea {
  align-items: start;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap:last-child {
  margin-bottom: 0;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap.is_first_last_name input.form-control {
  width: calc(50% - 77px);
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap.is_first_last_name input.form-control:-moz-read-only {
  background: #eee;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap.is_first_last_name input.form-control:read-only {
  background: #eee;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap.is_first_last_name input.form-control:-moz-read-only:focus {
  box-shadow: none;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap.is_first_last_name input.form-control:read-only:focus {
  box-shadow: none;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap label.input-label {
  width: 150px;
  color: #888;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  padding-right: 15px;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control,
.order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select {
  padding: 1px 10px;
  width: calc(100% - 150px);
  height: 28px;
  color: #777;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control:focus,
.order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select:focus {
  box-shadow: 0 0px 6px 2px rgba(0, 0, 0, 0.1);
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control::-moz-placeholder, .order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select::-moz-placeholder {
  color: #b3b3b3;
  text-transform: capitalize;
  font-size: 14px;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control::placeholder,
.order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select::placeholder {
  color: #b3b3b3;
  text-transform: capitalize;
  font-size: 14px;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control:-moz-read-only, .order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select:-moz-read-only {
  background: #eee;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control:read-only,
.order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select:read-only {
  background: #eee;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control:-moz-read-only:focus, .order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select:-moz-read-only:focus {
  box-shadow: none;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control:read-only:focus,
.order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select:read-only:focus {
  box-shadow: none;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap textarea.form-control {
  padding: 1px 10px;
  width: calc(100% - 150px);
  color: #777;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap textarea.form-control:focus {
  box-shadow: 0 0px 6px 2px rgba(0, 0, 0, 0.1);
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap textarea.form-control:-moz-read-only {
  background: #eee;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap textarea.form-control:read-only {
  background: #eee;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap textarea.form-control:-moz-read-only:focus {
  box-shadow: none;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap textarea.form-control:read-only:focus {
  box-shadow: none;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap .select2-container {
  width: calc(100% - 150px) !important;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap .select2-container--default .select2-selection--single {
  border: 1px solid #ddd;
  height: 28px;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #777;
  line-height: 28px;
}
.order-billing-shipping .order-billing-wrap .form-box .input-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 1px;
}
@media (max-width: 1199.98px) {
  .order-billing-shipping .order-billing-wrap .billing-to,
  .order-billing-shipping .order-billing-wrap .shipping-address {
    flex: 0 0 49%;
    max-width: 49%;
  }
}
@media (max-width: 1024px) {
  .order-billing-shipping .order-billing-wrap .billing-title .select2-container {
    width: 200px !important;
  }
  .order-billing-shipping .order-billing-wrap .billing-title .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 15px;
  }
}
@media (max-width: 991.98px) {
  .order-billing-shipping {
    padding: 20px 20px 14px 20px;
  }
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select,
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control {
    padding: 1px 6px;
    font-size: 15px;
  }
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap textarea.form-control {
    font-size: 15px;
  }
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap .select2-container {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  .order-billing-shipping {
    padding: 16px 16px;
  }
  .order-billing-shipping .order-billing-wrap {
    flex-direction: column;
  }
  .order-billing-shipping .order-billing-wrap .billing-to,
  .order-billing-shipping .order-billing-wrap .shipping-address {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .order-billing-shipping .order-billing-wrap .billing-to {
    margin-bottom: 16px;
  }
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap.is_first_last_name input.form-control {
    width: calc(50% - 67px);
  }
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap label.input-label {
    width: 130px;
    font-size: 14px;
    padding-right: 12px;
  }
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap input.form-control,
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap select.form-select {
    padding: 1px 8px;
    width: calc(100% - 130px);
    height: 28px;
    font-size: 14px;
  }
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap textarea.form-control {
    padding: 1px 8px;
    width: calc(100% - 130px);
    font-size: 14px;
  }
  .order-billing-shipping .order-billing-wrap .form-box .input-wrap .select2-container {
    width: calc(100% - 130px) !important;
    font-size: 14px;
  }
  .order-billing-shipping .order-billing-wrap .billing-title h3,
  .order-billing-shipping .order-billing-wrap .shipping-title h3 {
    font-size: 15px;
    font-weight: 600;
  }
  .order-billing-shipping .order-billing-wrap .billing-title .select2-container {
    width: 220px !important;
  }
  .order-billing-shipping .order-billing-wrap .billing-title .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
  }
}

.order-products {
  padding: 0 40px;
}
.order-products .table-responsive .table {
  counter-reset: rowNumber;
}
.order-products .table-responsive .table thead {
  border-bottom: 2px dashed #c3c3c3;
}
.order-products .table-responsive .table thead th {
  color: #444;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.order-products .table-responsive .table tbody tr {
  counter-increment: rowNumber;
}
.order-products .table-responsive .table tbody tr:nth-child(1) th, .order-products .table-responsive .table tbody tr:nth-child(1) td {
  padding-top: 12px;
}
.order-products .table-responsive .table tbody td {
  color: #333;
  font-weight: 600;
  font-size: 15px;
}
.order-products .table-responsive .table tbody td.td-remove-product .remove-product {
  color: var(--color-danger);
  padding: 0 2px 4px 2px;
  font-size: 18px;
}
.order-products .table-responsive .table tbody td.td-remove-product .remove-product:hover {
  color: var(--color-holiday);
}
.order-products .table-responsive .table tbody td.td-remove-product .remove-product:active, .order-products .table-responsive .table tbody td.td-remove-product .remove-product:focus-visible, .order-products .table-responsive .table tbody td.td-remove-product .remove-product:focus, .order-products .table-responsive .table tbody td.td-remove-product .remove-product.active {
  border-color: transparent;
}
.order-products .table-responsive .table tbody td.td-remove-product .edit-product,
.order-products .table-responsive .table tbody td.td-remove-product .edit-product-btn {
  color: #777;
  padding: 0 2px 4px 2px;
  font-size: 15px;
}
.order-products .table-responsive .table tbody td.td-remove-product .edit-product:hover,
.order-products .table-responsive .table tbody td.td-remove-product .edit-product-btn:hover {
  color: var(--color-dark);
}
.order-products .table-responsive .table tbody td.td-remove-product .edit-product:active, .order-products .table-responsive .table tbody td.td-remove-product .edit-product:focus-visible, .order-products .table-responsive .table tbody td.td-remove-product .edit-product:focus, .order-products .table-responsive .table tbody td.td-remove-product .edit-product.active,
.order-products .table-responsive .table tbody td.td-remove-product .edit-product-btn:active,
.order-products .table-responsive .table tbody td.td-remove-product .edit-product-btn:focus-visible,
.order-products .table-responsive .table tbody td.td-remove-product .edit-product-btn:focus,
.order-products .table-responsive .table tbody td.td-remove-product .edit-product-btn.active {
  border-color: transparent;
}
.order-products .table-responsive .table tbody td.grand-total {
  font-size: 17px;
  color: #444;
}
.order-products .table-responsive .table tbody td.grand-total input {
  padding: 2px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  height: 22px;
  text-align: right;
  color: #333;
  font-size: 17px;
  font-weight: 600;
}
.order-products .table-responsive .table tbody td.blank-space-border {
  border-top: 2px dashed #c3c3c3;
}
.order-products .table-responsive .table tbody tr.product-row td {
  font-weight: 600;
  color: #444;
}
.order-products .table-responsive .table tbody tr.product-row .description-column .description-column-width {
  font-weight: 600;
  color: #444;
}
.order-products .table-responsive .table tbody tr.attribute-row td {
  font-weight: 400;
  color: #555;
}
.order-products .table-responsive .table tbody tr.attribute-row .description-column .description-column-width {
  font-weight: 400;
  color: #555;
}
.order-products .table-responsive .table tbody tr#append_order_product td {
  border-top: 2px dashed #c3c3c3;
}
.order-products .table-responsive .table tbody th {
  color: #444;
  font-weight: 600;
  font-size: 16px;
}
.order-products .table-responsive .table tbody th:first-child::before {
  content: counter(rowNumber);
  min-width: 1em;
  margin-right: 1px;
}
.order-products .table-responsive .table .total-col {
  max-width: 150px;
  width: 150px;
}
.order-products .table-responsive .table .total-col .shipping-discount {
  padding: 2px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  height: 22px;
  text-align: right;
  color: #888;
  font-weight: 600;
  -moz-appearance: textfield;
}
.order-products .table-responsive .table .total-col .shipping-discount::-webkit-outer-spin-button, .order-products .table-responsive .table .total-col .shipping-discount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.order-products .table-responsive .table .description-column {
  width: 380px;
  min-width: 380px;
}
.order-products .table-responsive .table .description-column .description-column-width.product-name {
  font-weight: 600;
  max-width: 364px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-products .table-responsive .table .product-unit {
  width: 100px;
  min-width: 100px;
}
.order-products .table-responsive .table .product-unit-price {
  width: 120px;
  min-width: 120px;
}
.order-products .table-responsive .table .attribute-title {
  color: #444;
  font-weight: 600;
  font-style: italic;
}
.order-products .table-responsive .table .product-total-amount {
  width: 125px;
  min-width: 125px;
}
.order-products .table-responsive .table .edit-delete,
.order-products .table-responsive .table .td-remove-product {
  text-align: center;
  width: 64px;
  min-width: 64px;
  padding: 8px 4px;
}
.order-products .add-product-wrap {
  margin-bottom: 0;
}
.order-products .add-product-wrap .add-product-btn,
.order-products .add-product-wrap .edit-add-product {
  color: #888;
  margin-left: 0;
  display: inline-block;
  padding-top: 5px;
}
.order-products .add-product-wrap .add-product-btn i,
.order-products .add-product-wrap .edit-add-product i {
  font-size: 48px;
}
@media (max-width: 1299.98px) {
  .order-products .table-responsive .table thead th {
    font-size: 14px;
    padding: 3px 6px;
  }
  .order-products .table-responsive .table tbody td {
    font-size: 14px;
    padding: 3px 6px;
  }
  .order-products .table-responsive .table .description-column {
    width: 300px;
    min-width: 300px;
  }
  .order-products .table-responsive .table .description-column .description-column-width.product-name {
    max-width: 284px;
    font-size: 14px;
  }
  .order-products .table-responsive .table .product-total-amount {
    width: 120px;
    min-width: 120px;
  }
}
@media (max-width: 991.98px) {
  .order-products {
    padding: 0 16px;
  }
  .order-products .table-responsive .table .description-column {
    width: 262px;
    min-width: 262px;
  }
  .order-products .table-responsive .table .description-column .description-column-width.product-name {
    max-width: 250px;
  }
  .order-products .table-responsive .table .product-total-amount {
    width: 110px;
    min-width: 110px;
  }
  .order-products .table-responsive .table .product-unit {
    width: 70px;
    min-width: 70px;
  }
  .order-products .table-responsive .table .product-unit-price {
    width: 90px;
    min-width: 90px;
  }
  .order-products .table-responsive .table tbody td.grand-total {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .order-products {
    padding: 0 16px;
  }
  .order-products .table-responsive .table thead th {
    font-size: 14px;
    padding: 4px;
  }
  .order-products .table-responsive .table tbody td {
    font-size: 13px;
    white-space: nowrap;
    padding: 4px;
  }
  .order-products .table-responsive .table tbody td.product-name {
    min-width: 178px;
    white-space: normal;
  }
  .order-products .table-responsive .table tbody td.grand-total {
    font-size: 15px;
  }
  .order-products .table-responsive .table .total-col .shipping-discount {
    font-size: 14px;
  }
  .order-products .add-product-wrap {
    margin-top: 4px;
    margin-bottom: 20px;
  }
  .order-products .add-product-wrap .add-product-btn,
  .order-products .add-product-wrap .edit-add-product {
    color: #888;
    margin-left: 30px;
  }
  .order-products .add-product-wrap .add-product-btn i,
  .order-products .add-product-wrap .edit-add-product i {
    font-size: 32px;
  }
}
@media (max-width: 575.98px) {
  .order-products .table-responsive .table thead th {
    font-size: 13px;
    padding: 3px 5px;
  }
  .order-products .table-responsive .table tbody td {
    font-size: 13px;
    padding: 3px 5px;
  }
  .order-products .table-responsive .table .description-column {
    width: 162px;
    min-width: 162px;
  }
  .order-products .table-responsive .table .description-column .description-column-width.product-name {
    max-width: 152px;
  }
  .order-products .table-responsive .table .product-total-amount {
    width: 80px;
    min-width: 80px;
  }
  .order-products .table-responsive .table .product-unit {
    width: 55px;
    min-width: 55px;
  }
  .order-products .table-responsive .table .product-unit-price {
    width: 65px;
    min-width: 65px;
  }
  .order-products .table-responsive .table tbody td.grand-total {
    font-size: 15px;
  }
}
.order-products.view-order-product {
  padding: 0;
}
.order-products.view-order-product .table-responsive .table thead th {
  font-size: 15px;
  color: #333;
  font-weight: 600;
}
.order-products.view-order-product .table-responsive .table tbody tr:nth-child(1) th, .order-products.view-order-product .table-responsive .table tbody tr:nth-child(1) td {
  padding-top: 8px;
}
.order-products.view-order-product .table-responsive .table tbody tr.product-row td {
  font-weight: 600;
  color: #333;
}
.order-products.view-order-product .table-responsive .table tbody tr.attribute-row td {
  font-weight: 400;
  color: #444;
}
.order-products.view-order-product .table-responsive .table tbody tr.attribute-row td p {
  color: #444;
}
.order-products.view-order-product .table-responsive .table tbody td {
  color: #333;
  font-size: 15px;
  padding: 4px 8px;
  line-height: 1.35;
}
.order-products.view-order-product .table-responsive .table tbody td.grand-total {
  font-size: 17px;
  color: #333;
}
.order-products.view-order-product .table-responsive .table tbody td.blank-space-border {
  border-top: 2px dashed #c3c3c3;
}
.order-products.view-order-product .table-responsive .table tbody th {
  font-size: 15px;
}
.order-products.view-order-product .table-responsive .table .description-column {
  width: 450px;
  min-width: 450px;
}
.order-products.view-order-product .table-responsive .table .description-column .description-column-width {
  max-width: 434px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-products.view-order-product .table-responsive .table .description-column .description-column-width.product-name {
  font-weight: 600;
  color: #333;
  min-height: 30px;
}
.order-products.view-order-product .table-responsive .table .attribute-title {
  font-weight: 600;
  color: #444;
  font-style: italic;
}
.order-products.view-order-product .table-responsive .table .product-unit {
  width: 100px;
  min-width: 100px;
}
.order-products.view-order-product .table-responsive .table .product-unit-price {
  width: 120px;
  min-width: 120px;
}
.order-products.view-order-product .table-responsive .table .product-total-amount {
  width: 140px;
  min-width: 140px;
}
@media (max-width: 1299.98px) {
  .order-products.view-order-product .table-responsive .table thead th {
    font-size: 14px;
    padding: 3px 6px;
  }
  .order-products.view-order-product .table-responsive .table tbody td {
    font-size: 14px;
    padding: 3px 6px;
  }
  .order-products.view-order-product .table-responsive .table .description-column {
    width: 300px;
    min-width: 300px;
  }
  .order-products.view-order-product .table-responsive .table .description-column .description-column-width.product-name {
    max-width: 284px;
    font-size: 14px;
  }
  .order-products.view-order-product .table-responsive .table .product-total-amount {
    width: 120px;
    min-width: 120px;
  }
}
@media (max-width: 991.98px) {
  .order-products.view-order-product .table-responsive .table .description-column {
    width: 262px;
    min-width: 262px;
  }
  .order-products.view-order-product .table-responsive .table .description-column .description-column-width.product-name {
    max-width: 250px;
  }
  .order-products.view-order-product .table-responsive .table .product-total-amount {
    width: 110px;
    min-width: 110px;
  }
  .order-products.view-order-product .table-responsive .table .product-unit {
    width: 70px;
    min-width: 70px;
  }
  .order-products.view-order-product .table-responsive .table .product-unit-price {
    width: 90px;
    min-width: 90px;
  }
  .order-products.view-order-product .table-responsive .table tbody td.grand-total {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .order-products.view-order-product .table-responsive .table thead th {
    font-size: 13px;
    padding: 3px 5px;
  }
  .order-products.view-order-product .table-responsive .table tbody td {
    font-size: 13px;
    padding: 3px 5px;
  }
  .order-products.view-order-product .table-responsive .table .description-column {
    width: 162px;
    min-width: 162px;
  }
  .order-products.view-order-product .table-responsive .table .description-column .description-column-width.product-name {
    max-width: 152px;
  }
  .order-products.view-order-product .table-responsive .table .product-total-amount {
    width: 80px;
    min-width: 80px;
  }
  .order-products.view-order-product .table-responsive .table .product-unit {
    width: 55px;
    min-width: 55px;
  }
  .order-products.view-order-product .table-responsive .table .product-unit-price {
    width: 65px;
    min-width: 65px;
  }
  .order-products.view-order-product .table-responsive .table tbody td.grand-total {
    font-size: 15px;
  }
}

.order-note {
  padding: 0 24px;
}
.order-note .form-label {
  color: #888;
  font-weight: 600;
  margin-bottom: 4px;
}
.order-note textarea.form-control:focus {
  border-color: #ddd;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.2);
}

.order-production-shipping {
  padding-bottom: 32px;
  margin-top: 4px;
}
.order-production-shipping h4.title {
  font-size: 16px;
  font-weight: 600;
  color: #888;
  padding-left: 24px;
}
.order-production-shipping .order-ps-table-wrap {
  background: #f0f0f0;
  padding: 30px 40px;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}
.order-production-shipping .order-ps-table-wrap .form-label {
  color: #888;
  font-weight: 600;
}
.order-production-shipping .order-ps-table-wrap .form-select {
  color: #888;
}
.order-production-shipping .order-ps-table-wrap .table-responsive .table thead th {
  font-size: 16px;
  font-weight: 600;
  color: #888;
  background: #f0f0f0;
}
.order-production-shipping .order-ps-table-wrap .table-responsive .table tbody td {
  font-size: 16px;
  font-weight: 600;
  color: #888;
  background: #f0f0f0;
}
.order-production-shipping .order-ps-table-wrap .table-responsive .table tbody td .form-control {
  max-width: 138px;
  color: #888;
}
@media (max-width: 767.98px) {
  .order-production-shipping h4.title {
    font-size: 15px;
    padding-left: 20px;
  }
  .order-production-shipping .order-ps-table-wrap {
    padding: 16px;
  }
  .order-production-shipping .order-ps-table-wrap .form-label {
    font-size: 14px;
  }
  .order-production-shipping .order-ps-table-wrap .form-select {
    font-size: 14px;
  }
  .order-production-shipping .order-ps-table-wrap .table-responsive .table thead th {
    font-size: 14px;
    padding: 4px;
  }
  .order-production-shipping .order-ps-table-wrap .table-responsive .table tbody td {
    font-size: 13px;
    padding: 4px;
  }
  .order-production-shipping .order-ps-table-wrap .table-responsive .table tbody td .form-control {
    font-size: 14px;
  }
}

#addProduct,
#addProductEdit {
  color: var(--color-dark);
  transition: all 0.5s ease-in-out;
}
#addProduct .modally,
#addProductEdit .modally {
  padding: 0;
  transition: all 0.5s ease-in-out;
}
#addProduct .modally .modally-close-button,
#addProductEdit .modally .modally-close-button {
  background: #9f9f9f;
  border: 2px solid #ddd;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  position: absolute;
  top: -18px;
  right: -18px;
  padding: 0;
  padding-bottom: 4px;
  padding-left: 2px;
}
#addProduct .modally .modally-content,
#addProductEdit .modally .modally-content {
  background: #f2f2f2;
  border-radius: 10px;
}
#addProduct .modally .modally-content .choose-product,
#addProductEdit .modally .modally-content .choose-product {
  padding: 40px 32px;
}
#addProduct .modally .modally-content .choose-product .form-label,
#addProductEdit .modally .modally-content .choose-product .form-label {
  color: #888;
  font-weight: 600;
  width: 100%;
}
#addProduct .modally .modally-content .choose-product .form-control,
#addProductEdit .modally .modally-content .choose-product .form-control {
  height: 36px;
  padding: 6px 8px;
}
#addProduct .modally .modally-content .choose-product .form-control:focus,
#addProductEdit .modally .modally-content .choose-product .form-control:focus {
  border: 1px solid #999;
}
#addProduct .modally .modally-content .choose-product .select2-container,
#addProductEdit .modally .modally-content .choose-product .select2-container {
  width: 100% !important;
}
#addProduct .modally .modally-content .choose-product .select2-container--default .select2-selection--single,
#addProductEdit .modally .modally-content .choose-product .select2-container--default .select2-selection--single {
  border: 1px solid #ddd;
  height: 36px;
  border-radius: 6px;
}
#addProduct .modally .modally-content .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered,
#addProductEdit .modally .modally-content .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 34px;
  color: #888;
}
#addProduct .modally .modally-content .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow,
#addProductEdit .modally .modally-content .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
}
#addProduct .modally .modally-content .btn-add-attribute,
#addProductEdit .modally .modally-content .btn-add-attribute {
  padding: 8px 28px;
  background: #429a01;
  color: var(--color-white);
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-radius: 32px;
}
#addProduct .modally .modally-content .additional-cost .title,
#addProductEdit .modally .modally-content .additional-cost .title {
  font-size: 18px;
  font-weight: 600;
  color: #888;
}
#addProduct .modally .modally-content .additional-cost .btn-delete-cost,
#addProductEdit .modally .modally-content .additional-cost .btn-delete-cost {
  padding: 0;
  font-size: 24px;
  color: #dc3545;
}
#addProduct .modally .modally-content .additional-cost .btn-delete-cost:hover,
#addProductEdit .modally .modally-content .additional-cost .btn-delete-cost:hover {
  color: #bb2d3b;
}
@media (max-width: 767.98px) {
  #addProduct .modally .modally-content .choose-product,
  #addProductEdit .modally .modally-content .choose-product {
    padding: 16px 20px;
  }
  #addProduct .modally .modally-content .choose-product .form-label,
  #addProductEdit .modally .modally-content .choose-product .form-label {
    margin-bottom: 4px;
    font-size: 14px;
  }
  #addProduct .modally .modally-content .choose-product .form-control,
  #addProductEdit .modally .modally-content .choose-product .form-control {
    height: 32px;
    font-size: 14px;
  }
  #addProduct .modally .modally-content .choose-product .select2-container--default .select2-selection--single,
  #addProductEdit .modally .modally-content .choose-product .select2-container--default .select2-selection--single {
    height: 32px;
  }
  #addProduct .modally .modally-content .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered,
  #addProductEdit .modally .modally-content .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 31px;
  }
  #addProduct .modally .modally-content .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow,
  #addProductEdit .modally .modally-content .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 2px;
  }
  #addProduct .modally .modally-content .choose-product .btn-add-attribute,
  #addProductEdit .modally .modally-content .choose-product .btn-add-attribute {
    font-size: 16px;
  }
}

#addProduct .modal-dialog,
#addProductEdit .modal-dialog,
#editAddProduct .modal-dialog,
#editOrderProduct .modal-dialog {
  max-width: 990px;
}
@media (max-width: 1024px) {
  #addProduct .modal-dialog,
  #addProductEdit .modal-dialog,
  #editAddProduct .modal-dialog,
  #editOrderProduct .modal-dialog {
    max-width: 94%;
  }
}
#addProduct .modal-header,
#addProductEdit .modal-header,
#editAddProduct .modal-header,
#editOrderProduct .modal-header {
  padding: 0;
  background: transparent;
  border: 0;
}
#addProduct .modal-header .close,
#addProductEdit .modal-header .close,
#editAddProduct .modal-header .close,
#editOrderProduct .modal-header .close {
  background: #9f9f9f;
  border: 2px solid #ddd;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  position: absolute;
  top: -16px;
  right: -14px;
  padding-bottom: 4px;
  padding-left: 2px;
  z-index: 2;
}
#addProduct .modal-header .close:hover,
#addProductEdit .modal-header .close:hover,
#editAddProduct .modal-header .close:hover,
#editOrderProduct .modal-header .close:hover {
  background: #ffefef;
  color: #d51111;
  border-color: #8a8a8a;
}
#addProduct .modal-body,
#addProductEdit .modal-body,
#editAddProduct .modal-body,
#editOrderProduct .modal-body {
  padding: 0;
  transition: all 0.5s ease-in-out;
  color: var(--color-dark);
  background: #efefef;
  border-radius: 10px;
  max-height: calc(100vh - 44px);
  overflow: hidden;
  overflow-y: auto;
}
#addProduct .modal-body .choose-product,
#addProductEdit .modal-body .choose-product,
#editAddProduct .modal-body .choose-product,
#editOrderProduct .modal-body .choose-product {
  padding: 40px 32px;
}
#addProduct .modal-body .choose-product .form-label,
#addProductEdit .modal-body .choose-product .form-label,
#editAddProduct .modal-body .choose-product .form-label,
#editOrderProduct .modal-body .choose-product .form-label {
  color: #888;
  font-weight: 600;
}
#addProduct .modal-body .choose-product .form-control,
#addProductEdit .modal-body .choose-product .form-control,
#editAddProduct .modal-body .choose-product .form-control,
#editOrderProduct .modal-body .choose-product .form-control {
  height: 36px;
}
#addProduct .modal-body .choose-product .form-control:focus,
#addProductEdit .modal-body .choose-product .form-control:focus,
#editAddProduct .modal-body .choose-product .form-control:focus,
#editOrderProduct .modal-body .choose-product .form-control:focus {
  border: 1px solid #999;
}
#addProduct .modal-body .choose-product .select2-container,
#addProductEdit .modal-body .choose-product .select2-container,
#editAddProduct .modal-body .choose-product .select2-container,
#editOrderProduct .modal-body .choose-product .select2-container {
  width: 100% !important;
}
#addProduct .modal-body .choose-product .select2-container--default .select2-selection--single,
#addProductEdit .modal-body .choose-product .select2-container--default .select2-selection--single,
#editAddProduct .modal-body .choose-product .select2-container--default .select2-selection--single,
#editOrderProduct .modal-body .choose-product .select2-container--default .select2-selection--single {
  border: 1px solid #ddd;
  height: 36px;
  border-radius: 6px;
}
#addProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered,
#addProductEdit .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered,
#editAddProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered,
#editOrderProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 34px;
  color: #888;
}
#addProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow,
#addProductEdit .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow,
#editAddProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow,
#editOrderProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
}
#addProduct .modal-body .btn-add-attribute,
#addProductEdit .modal-body .btn-add-attribute,
#editAddProduct .modal-body .btn-add-attribute,
#editOrderProduct .modal-body .btn-add-attribute {
  padding: 8px 28px;
  background: #429a01;
  color: var(--color-white);
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-radius: 32px;
  width: 114px;
}
#addProduct .modal-body .btn-reset-product,
#addProductEdit .modal-body .btn-reset-product,
#editAddProduct .modal-body .btn-reset-product,
#editOrderProduct .modal-body .btn-reset-product {
  padding: 8px 28px;
  background: #797878;
  color: var(--color-white);
  font-size: 20px;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-radius: 32px;
}
#addProduct .modal-body .additional-cost .title,
#addProductEdit .modal-body .additional-cost .title,
#editAddProduct .modal-body .additional-cost .title,
#editOrderProduct .modal-body .additional-cost .title {
  font-size: 18px;
  font-weight: 600;
  color: #888;
}
#addProduct .modal-body .additional-cost .btn-delete-cost,
#addProductEdit .modal-body .additional-cost .btn-delete-cost,
#editAddProduct .modal-body .additional-cost .btn-delete-cost,
#editOrderProduct .modal-body .additional-cost .btn-delete-cost {
  padding: 0;
  font-size: 24px;
  color: #dc3545;
}
#addProduct .modal-body .additional-cost .btn-delete-cost:hover,
#addProductEdit .modal-body .additional-cost .btn-delete-cost:hover,
#editAddProduct .modal-body .additional-cost .btn-delete-cost:hover,
#editOrderProduct .modal-body .additional-cost .btn-delete-cost:hover {
  color: #bb2d3b;
}
@media (max-width: 767.98px) {
  #addProduct .modal-body .btn-reset-product,
  #addProductEdit .modal-body .btn-reset-product,
  #editAddProduct .modal-body .btn-reset-product,
  #editOrderProduct .modal-body .btn-reset-product {
    font-size: 16px;
  }
  #addProduct .modal-body .choose-product,
  #addProductEdit .modal-body .choose-product,
  #editAddProduct .modal-body .choose-product,
  #editOrderProduct .modal-body .choose-product {
    padding: 16px 20px;
  }
  #addProduct .modal-body .choose-product .form-label,
  #addProductEdit .modal-body .choose-product .form-label,
  #editAddProduct .modal-body .choose-product .form-label,
  #editOrderProduct .modal-body .choose-product .form-label {
    margin-bottom: 4px;
    font-size: 14px;
  }
  #addProduct .modal-body .choose-product .form-control,
  #addProductEdit .modal-body .choose-product .form-control,
  #editAddProduct .modal-body .choose-product .form-control,
  #editOrderProduct .modal-body .choose-product .form-control {
    height: 32px;
    font-size: 14px;
  }
  #addProduct .modal-body .choose-product .select2-container--default .select2-selection--single,
  #addProductEdit .modal-body .choose-product .select2-container--default .select2-selection--single,
  #editAddProduct .modal-body .choose-product .select2-container--default .select2-selection--single,
  #editOrderProduct .modal-body .choose-product .select2-container--default .select2-selection--single {
    height: 32px;
  }
  #addProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered,
  #addProductEdit .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered,
  #editAddProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered,
  #editOrderProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 31px;
  }
  #addProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow,
  #addProductEdit .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow,
  #editAddProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow,
  #editOrderProduct .modal-body .choose-product .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 2px;
  }
  #addProduct .modal-body .choose-product .btn-add-attribute,
  #addProductEdit .modal-body .choose-product .btn-add-attribute,
  #editAddProduct .modal-body .choose-product .btn-add-attribute,
  #editOrderProduct .modal-body .choose-product .btn-add-attribute {
    font-size: 16px;
  }
}

.upload-artwork-wrap {
  display: flex;
  justify-content: flex-start;
}
.upload-artwork-wrap .custom-upload-option {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  margin-right: 2px;
}
.upload-artwork-wrap .custom-upload-option .upload_btn {
  font-size: 16px;
  color: var(--color-white);
  padding: 0 !important;
  height: 36px;
}
.upload-artwork-wrap .custom-upload-option .upload_btn.bg-gradient-top-bottom {
  background-image: linear-gradient(#c4c2c2, #545454);
}
.upload-artwork-wrap .custom-upload-option .progress,
.upload-artwork-wrap .custom-upload-option .progress-stacked {
  background: transparent;
  height: 12px;
}
.upload-artwork-wrap .custom-upload-option .progress.edit-probress,
.upload-artwork-wrap .custom-upload-option .progress-stacked.edit-probress {
  background: transparent;
  height: 10px;
}
.upload-artwork-wrap .append_uploaded_artwork,
.upload-artwork-wrap .show-artwork-wrap,
.upload-artwork-wrap .append_edit_modal_uploaded_artwork {
  display: flex;
}
.upload-artwork-wrap .uoloaded-artwork {
  display: flex;
  margin-right: 6px;
}
.upload-artwork-wrap .progress-bar {
  font-size: 10px;
}
.upload-artwork-wrap .show-artwork {
  width: 30px;
  height: 36px;
  background: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 5px;
  padding: 3px 0;
  position: relative;
}
.upload-artwork-wrap .show-artwork img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.upload-artwork-wrap .show-artwork .btn-remove {
  border: 1px solid #bdbdbd;
  background: var(--color-white);
  color: var(--color-danger);
  padding: 0;
  padding-left: 1px;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 18px;
  position: absolute;
  top: -7px;
  right: -6px;
}
@media (max-width: 991.98px) {
  .upload-artwork-wrap .custom-upload-option {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
  }
  .upload-artwork-wrap .custom-upload-option .upload_btn {
    font-size: 14px;
    height: 28px;
  }
}

.upload-files-wrap {
  display: flex;
  justify-content: flex-start;
}
.upload-files-wrap .custom-upload-option {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  margin-right: 2px;
}
.upload-files-wrap .custom-upload-option .upload_btn {
  font-size: 16px;
  color: var(--color-white);
  padding: 0 !important;
  height: 36px;
}
.upload-files-wrap .custom-upload-option .upload_btn.bg-gradient-top-bottom {
  background-image: linear-gradient(#c4c2c2, #545454);
}
.upload-files-wrap .custom-upload-option .progress,
.upload-files-wrap .custom-upload-option .progress-stacked {
  background: transparent;
  height: 12px;
}
.upload-files-wrap .custom-upload-option .progress.edit-probress,
.upload-files-wrap .custom-upload-option .progress-stacked.edit-probress {
  background: transparent;
  height: 10px;
}
.upload-files-wrap .append_uploaded_files,
.upload-files-wrap .show-artwork-wrap,
.upload-files-wrap .append_edit_modal_uploaded_artwork {
  display: flex;
}
.upload-files-wrap .uoloaded-artwork {
  display: flex;
  margin-right: 6px;
}
.upload-files-wrap .progress-bar {
  font-size: 10px;
}
.upload-files-wrap .show-files {
  width: 30px;
  height: 36px;
  background: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 8px;
  padding: 3px 0;
  position: relative;
}
.upload-files-wrap .show-files img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.upload-files-wrap .show-files .btn-remove {
  border: 1px solid #bdbdbd;
  background: var(--color-white);
  color: var(--color-danger);
  padding: 0;
  padding-left: 1px;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 18px;
  position: absolute;
  top: -7px;
  right: -6px;
}
@media (max-width: 991.98px) {
  .upload-files-wrap .custom-upload-option {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
  }
  .upload-files-wrap .custom-upload-option .upload_btn {
    font-size: 14px;
    height: 28px;
  }
}

.add-product-attribute {
  margin-top: 28px;
}
.add-product-attribute .add-attribute {
  margin-bottom: 8px;
  color: #888;
}
.add-product-attribute .add-attribute span {
  font-size: 18px;
  font-weight: 600;
}
.add-product-attribute .add-attribute a {
  color: #888;
  margin-left: 2px;
}
.add-product-attribute .add-attribute a i {
  font-size: 16px;
}
.add-product-attribute .attribute-list {
  min-height: 164px;
  max-height: 164px;
  overflow: hidden;
  overflow-y: auto;
  padding: 8px 2px;
  border-radius: 16px;
}
.add-product-attribute .attribute-list .attribute-box {
  background: #e6e6e6;
  border-radius: 40px;
  padding: 8px 20px;
  color: #000000;
  font-weight: 600;
  border: none;
  font-size: 18px;
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 12px;
  display: inline-flex;
}
.add-product-attribute .attribute-list .attribute-box .attribute-name {
  margin-right: 0;
}
.add-product-attribute .attribute-list .attribute-box .attribute-action {
  top: 6px;
  right: 4px;
}
.add-product-attribute .attribute-list .attribute-box .attribute-action a {
  color: #707070;
}
.add-product-attribute .attribute-list .attribute-box .attribute-action a.edit:hover {
  color: #333333;
}
.add-product-attribute .attribute-list .attribute-box .attribute-action a.delete:hover {
  color: #b63f3f;
}
@media (max-width: 1199.98px) {
  .add-product-attribute .attribute-list .attribute-box {
    font-size: 16px;
    padding: 8px 15px;
  }
}
@media (max-width: 575.98px) {
  .add-product-attribute .attribute-list {
    padding: 5px 2px;
  }
  .add-product-attribute .attribute-list .attribute-box {
    font-size: 13px;
    padding: 6px 12px;
    margin-left: 4px;
  }
}

.add-product-attribute .attribute-check-list {
  background: var(--color-white);
  padding: 8px 12px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 28px;
  max-height: 360px;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
}
.add-product-attribute .attribute-check-list .btn-group {
  display: inline-block;
  width: 55%;
  border-right: 1px solid #ddd;
  border-radius: 0;
}
.add-product-attribute .attribute-check-list .btn-group .btn-secondary {
  margin-right: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
  background-color: #eee;
  border-radius: 40px;
  padding: 8px 16px;
  color: #000000;
  font-weight: 600;
  border: none;
  font-size: 14px;
  white-space: nowrap;
}
.add-product-attribute .attribute-check-list .btn-group .btn-check:checked + .btn,
.add-product-attribute .attribute-check-list .btn-group .btn.active,
.add-product-attribute .attribute-check-list .btn-group .btn.show,
.add-product-attribute .attribute-check-list .btn-group .btn:first-child:active,
.add-product-attribute .attribute-check-list .btn-group :not(.btn-check) + .btn:active {
  background-color: #535353;
  color: var(--color-white);
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap {
  width: 45%;
  padding-left: 10px;
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap .selected-attribute-row {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap .selected-attribute-row:last-child {
  margin-bottom: 0;
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap .selected-attribute-row .selected-attribute-box {
  display: flex;
  align-items: center;
  background: #eeeeee;
  color: #000000;
  border-radius: 4px;
  padding: 5px 8px;
  width: calc(100% - 38px);
  justify-content: space-between;
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap .selected-attribute-row .selected-attribute-box .selected-attribute-name {
  padding-right: 8px;
  font-size: 14px;
  font-weight: 600;
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap .selected-attribute-row .selected-attribute-box .selected-attribute-values {
  display: flex;
  align-items: center;
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap .selected-attribute-row .selected-attribute-box .form-control.selected-attribute-quantity {
  width: 64px;
  padding: 4px 5px;
  height: 30px !important;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-right: 2px;
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap .selected-attribute-row .selected-attribute-box .form-control.selected-attribute-price {
  width: 55px;
  padding: 4px 5px;
  height: 30px !important;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap .selected-attribute-row .selected-attribute-remove {
  width: 38px;
}
.add-product-attribute .attribute-check-list .selected-attribute-wrap .selected-attribute-row .selected-attribute-remove .btn-attribute-remove {
  color: var(--color-holiday);
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .add-product-attribute .attribute-check-list {
    max-height: 280px;
    flex-direction: column;
  }
  .add-product-attribute .attribute-check-list .btn-group {
    width: 100%;
    border-right: none;
    border-radius: 0;
    margin-bottom: 14px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
  .add-product-attribute .attribute-check-list .btn-group .btn-secondary {
    margin-right: 8px;
    font-size: 14px;
    padding: 6px 15px;
  }
  .add-product-attribute .attribute-check-list .selected-attribute-wrap {
    width: 100%;
  }
}

.added-product-attribute {
  color: #656565;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  margin-bottom: 4px;
}

.custom-input-width .company-check-list {
  background: var(--color-white);
  padding: 8px 12px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0;
  max-height: 360px;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
}
.custom-input-width .company-check-list .btn-group {
  display: inline-block;
  width: 100%;
  border-radius: 0;
}
.custom-input-width .company-check-list .btn-group .btn-secondary {
  margin-right: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
  background-color: #eee;
  border-radius: 40px;
  padding: 8px 17px;
  color: #000000;
  font-weight: 600;
  border: none;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
}
.custom-input-width .company-check-list .btn-group .btn-secondary::after {
  content: "\f058";
  font-family: FontAwesome;
  font-weight: 900;
  position: absolute;
  top: 1px;
  right: 8px;
  color: var(--color-green);
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.custom-input-width .company-check-list .btn-group .btn-check:checked + .btn,
.custom-input-width .company-check-list .btn-group .btn.active,
.custom-input-width .company-check-list .btn-group .btn.show,
.custom-input-width .company-check-list .btn-group .btn:first-child:active,
.custom-input-width .company-check-list .btn-group :not(.btn-check) + .btn:active {
  background-color: #535353;
  color: var(--color-white);
}
.custom-input-width .company-check-list .btn-group .btn-check:checked + .btn::after,
.custom-input-width .company-check-list .btn-group .btn.active::after,
.custom-input-width .company-check-list .btn-group .btn.show::after,
.custom-input-width .company-check-list .btn-group .btn:first-child:active::after,
.custom-input-width .company-check-list .btn-group :not(.btn-check) + .btn:active::after {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .custom-input-width .company-check-list {
    max-height: 280px;
    flex-direction: column;
  }
  .custom-input-width .company-check-list .btn-group {
    width: 100%;
    border-right: none;
    border-radius: 0;
    margin-bottom: 14px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
  .custom-input-width .company-check-list .btn-group .btn-secondary {
    margin-right: 8px;
    font-size: 14px;
    padding: 6px 15px;
  }
  .custom-input-width .company-check-list .selected-attribute-wrap {
    width: 100%;
  }
}

.new-employee-form.add-new-user .custom-input-width textarea.form-control {
  height: 80px;
}

.download-pdf-wrap {
  width: 21px;
  display: inline-block;
}

.dox-view-link {
  color: var(--color-white);
}
.dox-view-link:hover {
  color: var(--color-white-gray);
  text-decoration: underline;
}
.dox-view-link:focus {
  color: var(--color-white-gray);
  font-weight: 600;
}

.order-view-modal .modal-dialog {
  max-width: 1200px;
}
.order-view-modal .modal-dialog .modal-content {
  color: #888;
}
.order-view-modal .modal-dialog .modal-content .modal-header {
  padding: 20px 32px;
  position: relative;
  background: #f0f0f0;
}
.order-view-modal .modal-dialog .modal-content .modal-header .btn-close {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 32px;
  border: 2px solid #ddd;
  padding: 3px;
  opacity: 1;
  background-color: #999;
  position: absolute;
  top: -7px;
  right: -4px;
}
.order-view-modal .modal-dialog .modal-content .modal-header .order-details-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap {
  font-weight: 600;
  display: flex;
}
.order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap .detail-title {
  color: #777;
}
.order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap .detail-value {
  padding-left: 4px;
}
.order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap .reorder-link {
  background: #797979;
  font-size: 14px;
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
}
.order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap .autosave .form-check-input {
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: 2px solid #b5b5b5;
}
.order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap .autosave .form-check-input:checked {
  background-color: #2e2d2d;
  border: 2px solid #2e2d2d;
}
.order-view-modal .modal-dialog .modal-content .modal-header.review_approved {
  background: #4D6A3F;
}
.order-view-modal .modal-dialog .modal-content .modal-header.review_approved .order-details-top .details-wrap .detail-title {
  color: #fff;
}
.order-view-modal .modal-dialog .modal-content .modal-header.review_approved .order-details-top .details-wrap .detail-value {
  color: #fff;
}
.order-view-modal .modal-dialog .modal-content .modal-header.review_approved .order-details-top .details-wrap .reorder-link {
  background: #39512e;
}
.order-view-modal .modal-dialog .modal-content .modal-header.review_approved .order-details-top .details-wrap .review_approved .form-check-input {
  background-color: #fff;
  border: 2px solid #b5b5b5;
}
.order-view-modal .modal-dialog .modal-content .modal-header.review_approved .order-details-top .details-wrap .review_approved .form-check-input:checked {
  background-color: #273b1e;
  border: 2px solid #27391e;
}
.order-view-modal .modal-dialog .modal-content .modal-body {
  padding: 20px 32px;
  height: calc(100vh - 200px);
  overflow: hidden;
  overflow-y: auto;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .left-side {
  max-width: 264px;
  width: 100%;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .left-side .barcode img {
  width: 100%;
  height: 100px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .left-side .order-no {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  color: #444;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .order-production-type {
  text-align: center;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .order-production-type .production-star {
  font-size: 20px;
  letter-spacing: 0;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .order-production-type .production-star .fa-solid.fa-star {
  color: var(--color-orange);
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .order-production-type .production-type-text {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-bg-dar);
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side {
  max-width: 360px;
  width: 100%;
  text-align: center;
  font-weight: 600;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .shipping-type-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .shipping-type-method .type-leabel {
  width: 49%;
  border: 1px solid #ddd;
  padding: 5px 12px;
  background: #f0f0f0;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .shipping-type-method .method-leabel {
  width: 49%;
  border: 1px solid #ddd;
  padding: 5px 20px;
  background: #f0f0f0;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .order-status {
  border: 1px solid #ddd;
  width: 100%;
  padding: 5px 20px;
  background: #f0f0f0;
}
.order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .tracking-number {
  border: 1px solid #ddd;
  width: 100%;
  padding: 5px 20px;
  background: #f0f0f0;
  margin-top: 8px;
}
@media (max-width: 991.98px) {
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .left-side {
    max-width: 50%;
    width: 50%;
    padding: 0 20px 0 0;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .left-side .barcode {
    text-align: center;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .left-side .barcode img {
    max-width: 240px;
    margin: 0 auto;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .left-side .order-no {
    font-size: 16px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side {
    max-width: 50%;
    width: 50%;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .shipping-type-method .type-leabel {
    font-size: 14px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .shipping-type-method .method-leabel {
    font-size: 14px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .order-status {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .left-side {
    max-width: 40%;
    width: 40%;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side {
    max-width: 60%;
    width: 60%;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .shipping-type-method {
    margin-bottom: 6px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .shipping-type-method .type-leabel {
    padding: 5px 10px;
    width: 49%;
    font-size: 13px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .shipping-type-method .method-leabel {
    padding: 5px 10px;
    width: 49%;
    font-size: 13px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side .order-status {
    padding: 5px 10px;
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info {
    flex-direction: column;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .left-side {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 5px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .order-info .right-side {
    max-width: 100%;
    width: 100%;
  }
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 20px;
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-billing {
  flex: 0 0 45%;
  max-width: 45%;
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-billing .billing-title {
  font-size: 17px;
  font-weight: 600;
  color: #888;
  margin-bottom: 6px;
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-billing .view-billing-wrap {
  background: #f0f0f0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-shipping {
  flex: 0 0 45%;
  max-width: 45%;
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-shipping .shipping-title {
  font-size: 17px;
  font-weight: 600;
  color: #888;
  margin-bottom: 6px;
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-shipping .view-shipping-wrap {
  background: #f0f0f0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .vbs-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4px;
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .vbs-box:last-child {
  margin-bottom: 0;
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .vbs-box .vbs-box-title {
  width: 150px;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  padding-right: 15px;
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .vbs-box .vbs-box-value {
  width: calc(100% - 150px);
  color: #777;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-billing {
    flex: 0 0 49%;
    max-width: 49%;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-shipping {
    flex: 0 0 49%;
    max-width: 49%;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .vbs-box .vbs-box-title {
    width: 140px;
    font-size: 14px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .vbs-box .vbs-box-value {
    width: calc(100% - 140px);
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping {
    margin-top: 15px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-billing {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 8px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-billing .billing-title {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-billing .view-billing-wrap {
    padding: 6px 8px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-shipping {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-shipping .shipping-title {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .view-shipping .view-shipping-wrap {
    padding: 6px 8px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .vbs-box {
    margin-bottom: 2px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .vbs-box .vbs-box-title {
    width: 130px;
    font-size: 13px;
    padding-right: 12px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-body .view-billing-shipping .vbs-box .vbs-box-value {
    width: calc(100% - 130px);
    font-size: 13px;
  }
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-order-note {
  background: #f5e8e8;
  padding: 10px 16px;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid #efd3d3;
}
.order-view-modal .modal-dialog .modal-content .modal-body .view-order-note p {
  margin-bottom: 0;
  color: #8f4e4e;
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .order-view-modal .modal-dialog .modal-content .modal-body {
    padding: 12px 15px;
  }
}
.order-view-modal .modal-dialog .modal-content .send_order_email.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
}
@media (max-width: 1299.98px) {
  .order-view-modal .modal-dialog {
    max-width: 960px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-header .order-details-top {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .order-view-modal .modal-dialog {
    max-width: 850px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-header {
    padding: 12px 16px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap {
    font-size: 14px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap .reorder-link {
    font-size: 12px;
  }
}
@media (max-width: 880px) {
  .order-view-modal .modal-dialog {
    max-width: calc(100% - 24px);
  }
  .order-view-modal .modal-dialog .modal-content .modal-header {
    padding: 10px 8px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-header .order-details-top {
    display: inline-flex;
    flex-wrap: wrap;
  }
  .order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap {
    padding: 1.5px 3px;
    font-size: 13px;
  }
  .order-view-modal .modal-dialog .modal-content .modal-header .order-details-top .details-wrap .reorder-link {
    font-size: 11px;
    font-weight: 500;
  }
}
@media (max-width: 575.98px) {
  .order-view-modal .modal-dialog {
    margin: 16px auto;
  }
  .order-view-modal .modal-dialog .modal-footer {
    padding: 8px 16px;
  }
  .order-view-modal .modal-dialog .modal-footer .btn {
    padding: 5px 10px;
    font-size: 14px;
  }
}
.order-view-modal .view-order-card .table {
  counter-reset: rowNumber;
}
.order-view-modal .view-order-card .table thead th {
  padding: 6px 8px 5px;
  font-size: 14px;
  color: #666;
  font-weight: 600;
  white-space: nowrap;
  background: #f3f3f3;
  vertical-align: middle;
}
.order-view-modal .view-order-card .table tbody th {
  color: #777;
  font-weight: 600;
  font-size: 15px;
  padding: 4px 8px;
  white-space: nowrap;
  vertical-align: middle;
}
.order-view-modal .view-order-card .table tbody td {
  color: #888;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 8px;
  white-space: nowrap;
  vertical-align: middle;
}
.order-view-modal .view-order-card .table tbody td .timeline_date_time {
  line-height: 1.1;
}
.order-view-modal .view-order-card .table tbody td .timeline_date_time .timeline_date {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #777;
}
.order-view-modal .view-order-card .table tbody td .timeline_date_time .timeline_time {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 600;
  color: #999;
}
.order-view-modal .view-order-card .table tbody tr {
  counter-increment: rowNumber;
}
.order-view-modal .view-order-card .table tbody tr th:first-child::before {
  content: counter(rowNumber);
  min-width: 1em;
  margin-right: 1px;
}
.order-view-modal .view-order-card .table tbody tr:first-child th, .order-view-modal .view-order-card .table tbody tr:first-child td {
  padding-top: 8px;
}
.order-view-modal .view-order-card .table tbody tr.pending th,
.order-view-modal .view-order-card .table tbody tr.pending td {
  color: #5565a9;
}
.order-view-modal .view-order-card .table tbody tr.confirmed th,
.order-view-modal .view-order-card .table tbody tr.confirmed td {
  color: #6a9748;
}
.order-view-modal .view-order-card .table tbody tr.deleted th,
.order-view-modal .view-order-card .table tbody tr.deleted td {
  color: #934343;
}
.order-view-modal .view-order-card .table tbody tr.shipped th,
.order-view-modal .view-order-card .table tbody tr.shipped td {
  color: #61af97;
}
@media (max-width: 575.98px) {
  .order-view-modal .view-order-card .table {
    counter-reset: rowNumber;
  }
  .order-view-modal .view-order-card .table thead th {
    font-size: 14px;
  }
  .order-view-modal .view-order-card .table tbody th {
    font-size: 13px;
  }
  .order-view-modal .view-order-card .table tbody td {
    font-size: 13px;
    padding: 3px 6px;
  }
}

.card.view-order-card {
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
}
.card.view-order-card .card-header {
  background: #f0f0f0;
  padding: 10px 18px;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #ddd;
  font-weight: 600;
  color: #666;
}
.card.view-order-card .card-header span {
  color: #39a6b7;
}
.card.view-order-card .card-body {
  padding: 8px 16px;
}
@media (max-width: 767.98px) {
  .card.view-order-card .card-header {
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {
  .card.view-order-card .card-header {
    font-size: 14px;
  }
}

.order-processing-history .file-list-th {
  width: 480px;
}
.order-processing-history .upload-files-list-td {
  width: 480px;
}

.loader_container {
  height: 100%;
}
.loader_container.loader_container_view_order {
  height: calc(100vh - 56px);
  border-radius: 10px;
}
.loader_container.loader_container_view_order .loader {
  background: #222;
}

.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #626262;
  --_m: conic-gradient(#0000 10%,#000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
#content .command-wrap .command-output.scan-hub-page-wrap {
  height: calc(100% - 17px);
  padding: 12px 24px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .section-title {
  font-size: 20px;
  border-bottom: 1px solid #707070;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options {
  display: block;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper {
  display: inline-block;
  width: 160px;
  margin-right: 20px;
  position: relative;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link {
  width: 160px;
  display: block;
  position: relative;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link .option-img {
  width: 100%;
  height: 160px;
  background: #F7F7F7;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 6px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link .option-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link .option-title {
  font-size: 18px;
  text-align: center;
  color: #fff;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link .star-mark {
  position: absolute;
  top: -13px;
  left: -12px;
  display: none;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link .star-mark img {
  width: 26px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link .hub-counter {
  padding: 0 6px 2px 6px;
  min-width: 28px;
  width: auto;
  height: 28px;
  background: red;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  border-radius: 6px;
  top: -11px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link.is-star .star-mark {
  display: block;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper .edit-delete-option {
  position: absolute;
  right: 0;
  top: 118px;
  background: #535353;
  padding: 5px 8px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  transition: all 0.35s ease-in-out;
  opacity: 0;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper .edit-delete-option a {
  display: flex;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper .edit-delete-option a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper:hover .edit-delete-option {
  right: 0;
  opacity: 1;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper.disabled a.option-link {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.55;
}
@media (max-width: 575.98px) {
  #content .command-wrap .command-output.scan-hub-page-wrap {
    padding: 10px 12px;
  }
  #content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper .edit-delete-option {
    opacity: 1;
  }
  #content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link .option-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
@media (max-width: 400px) {
  #content .command-wrap .command-output.scan-hub-page-wrap {
    padding: 12px 12px;
  }
  #content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper {
    margin-right: 12px;
  }
  #content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper {
    width: 154px;
  }
  #content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-section .scan-hub-options .sh-option-wraper a.option-link .option-img {
    width: 154px;
    height: 154px;
  }
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-selection-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-selection-tab ul {
  display: flex;
  margin: 0;
  padding: 0;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-selection-tab ul li {
  list-style: none;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-selection-tab ul li a {
  background: #636363;
  padding: 10px 15px;
  color: #fff;
  border: 1px solid #636363;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-selection-tab ul li a.selected {
  background: #414242;
  border: 1px solid #636363;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-selection-tab ul li a:hover {
  background: #535353;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-selection-tab ul li:first-child a {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-hub-selection-tab ul li:last-child a {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form {
  display: flex;
  justify-content: center;
  margin-top: 140px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form form {
  max-width: 480px;
  width: 100%;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .form-label {
  text-align: left;
  font-size: 17px;
  color: #fff;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  background: #414242;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  margin-top: 16px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-wrap input.form-control {
  width: 100%;
  background: #535353;
  border-color: #535353;
  padding: 8px 48px 8px 12px;
  caret-color: #fff;
  color: #ddd;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-wrap input.form-control::-moz-placeholder {
  color: #adadad;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-wrap input.form-control::placeholder {
  color: #adadad;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-wrap input.form-control:focus {
  box-shadow: none;
  background: #666;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-wrap i {
  position: absolute;
  top: 21px;
  right: 20px;
  font-size: 24px;
  color: #b6b6b6;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-tracking-wrap {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #414242;
  padding: 10px;
  border-radius: 10px;
  position: relative;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-tracking-wrap input.form-control {
  width: 100%;
  background: #535353;
  border-color: #535353;
  padding: 8px 48px 8px 12px;
  caret-color: #fff;
  color: #ddd;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-tracking-wrap input.form-control::-moz-placeholder {
  color: #adadad;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-tracking-wrap input.form-control::placeholder {
  color: #adadad;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-tracking-wrap input.form-control:focus {
  box-shadow: none;
  background: #666;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .scan-input-tracking-wrap i {
  position: absolute;
  top: 21px;
  right: 20px;
  font-size: 24px;
  color: #b6b6b6;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .ship-type-radio {
  margin-bottom: 6px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .ship-type-radio .form-check-input {
  width: 20px;
  height: 20px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .ship-type-radio .form-check-label {
  margin-top: 2px;
  margin-left: 2px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .select-currier select {
  margin-bottom: 0;
  background-color: #535353;
  color: #fff;
  border: none;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .select-currier select:focus {
  box-shadow: none;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .select-vendor-wrap {
  margin-bottom: 20px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .select-vendor-wrap .select-vendor-box {
  max-width: 480px;
  margin: 0 auto;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .select-vendor-wrap .select-vendor-box .select2-container .select2-selection--single {
  height: 40px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .select-vendor-wrap .select-vendor-box .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 39px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form .select-vendor-wrap .select-vendor-box .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
}
@media (max-width: 991.98px) {
  #content .command-wrap .command-output.scan-hub-page-wrap .scan-order-form {
    margin-top: 64px;
  }
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table {
  margin-top: 24px;
  max-width: 480px;
  width: 100%;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table table thead th {
  background: #414242;
  color: #fff;
  padding: 10px 15px;
  white-space: nowrap;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table table thead th:first-child {
  border-top-left-radius: 6px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table table thead th:last-child {
  border-top-right-radius: 6px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table table tbody tr:last-child td {
  border-bottom: none;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 6px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table table tbody td {
  vertical-align: middle;
  background: #535353;
  color: #fff;
  padding: 10px 15px;
  border-bottom: 1px solid #6b6b6b;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table table tbody td.order-part {
  white-space: nowrap;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table table tbody td.remove-order-part-td {
  width: 50px;
  max-width: 50px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table.sent-to-vendor-table {
  max-width: 600px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table.sent-to-vendor-table .form-check-input {
  width: 18px;
  height: 18px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table.sent-to-vendor-table .form-check-input:checked {
  background-color: var(--color-green);
  border-color: var(--color-green);
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table.sent-to-vendor-table table thead th {
  padding: 10px 10px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table.sent-to-vendor-table table tbody td {
  padding: 8px 10px;
}
#content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table.sent-to-vendor-table table tbody td:last-child {
  width: 240px;
}
@media (max-width: 767.98px) {
  #content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table.sent-to-vendor-table table thead th {
    padding: 8px 6px;
    font-size: 13px;
  }
  #content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table.sent-to-vendor-table table tbody td {
    padding: 8px 6px;
    font-size: 13px;
  }
  #content .command-wrap .command-output.scan-hub-page-wrap .scan-status-table.sent-to-vendor-table table tbody td:last-child {
    width: 240px;
  }
}

#content .command-wrap .command-output.report-page {
  padding: 12px 24px;
  height: 100%;
}
@media (max-width: 1199.98px) {
  #content .command-wrap .command-output.report-page {
    padding: 12px;
  }
}
#content .command-wrap .command-output.report-page .report-section .report-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #535353;
  padding-bottom: 12px;
}
#content .command-wrap .command-output.report-page .report-section .report-page-head .section-title {
  font-size: 20px;
  margin-bottom: 0;
}
#content .command-wrap .command-output.report-page .report-section .report-page-head .input-group {
  margin-bottom: 0;
}
#content .command-wrap .command-output.report-page .report-section .report-page-head .report-date-range .input-group-text {
  background: #414242;
  color: #fff;
}
#content .command-wrap .command-output.report-page .report-section .report-page-head .report-date-range input.form-control {
  padding: 5px 8px;
  width: 210px;
  text-align: center;
  background: #535353;
  color: #fff;
}
#content .command-wrap .command-output.report-page .report-section .report-page-head .report-date-range input.form-control:focus {
  box-shadow: none;
  border: 1px solid #dee2e6;
}
@media (max-width: 575.98px) {
  #content .command-wrap .command-output.report-page .report-section .report-page-head .section-title {
    font-size: 15px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-page-head .report-date-range input.form-control {
    padding: 5px 8px;
    width: 175px;
    font-size: 13px;
    line-height: 13px;
  }
}
#content .command-wrap .command-output.report-page .report-section .group-filter {
  margin-top: 8px;
  padding: 8px 2px;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-carousel {
  width: 100%;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-stage {
  transform: translateZ(0);
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item .group-item {
  border-radius: 24px;
  background: #FF8383;
  border: 2px solid #FF8383;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item .group-item a {
  display: inline-block;
  padding: 5px 18px;
  color: var(--color-text);
}
@media (max-width: 991.98px) {
  #content .command-wrap .command-output.report-page .report-section .group-filter .owl-item .group-item a {
    padding: 4px 12px;
    font-size: 14px;
  }
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item .item {
  min-width: 56px;
  box-sizing: border-box;
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    #content .command-wrap .command-output.report-page .report-section .group-filter .owl-item .item {
      min-width: 120px;
    }
  }
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item .item.selected .group-item {
  border-color: #fff !important;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(1) .group-item {
  background: #FF8383;
  border: 2px solid #FF8383;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(2) .group-item {
  background: #83A9FF;
  border: 2px solid #83A9FF;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(3) .group-item {
  background: #FFAE83;
  border: 2px solid #FFAE83;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(4) .group-item {
  background: #1f509a;
  border: 2px solid #1f509a;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(5) .group-item {
  background: #AA5486;
  border: 2px solid #AA5486;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(6) .group-item {
  background: #47663B;
  border: 2px solid #47663B;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(7) .group-item {
  background: #FF8000;
  border: 2px solid #FF8000;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(8) .group-item {
  background: #006A67;
  border: 2px solid #006A67;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(9) .group-item {
  background: #6A1E55;
  border: 2px solid #6A1E55;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(10) .group-item {
  background: #898121;
  border: 2px solid #898121;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(11) .group-item {
  background: #789DBC;
  border: 2px solid #789DBC;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(12) .group-item {
  background: #FF8383;
  border: 2px solid #FF8383;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(13) .group-item {
  background: #83A9FF;
  border: 2px solid #83A9FF;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(14) .group-item {
  background: #FFAE83;
  border: 2px solid #FFAE83;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(15) .group-item {
  background: #1f509a;
  border: 2px solid #1f509a;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(16) .group-item {
  background: #AA5486;
  border: 2px solid #AA5486;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(17) .group-item {
  background: #47663B;
  border: 2px solid #47663B;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(18) .group-item {
  background: #FF8000;
  border: 2px solid #FF8000;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(19) .group-item {
  background: #006A67;
  border: 2px solid #006A67;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(20) .group-item {
  background: #6A1E55;
  border: 2px solid #6A1E55;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(21) .group-item {
  background: #898121;
  border: 2px solid #898121;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(22) .group-item {
  background: #789DBC;
  border: 2px solid #789DBC;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(23) .group-item {
  background: #1f509a;
  border: 2px solid #1f509a;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(24) .group-item {
  background: #AA5486;
  border: 2px solid #AA5486;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(25) .group-item {
  background: #47663B;
  border: 2px solid #47663B;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(26) .group-item {
  background: #FF8000;
  border: 2px solid #FF8000;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(27) .group-item {
  background: #006A67;
  border: 2px solid #006A67;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(28) .group-item {
  background: #6A1E55;
  border: 2px solid #6A1E55;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(29) .group-item {
  background: #898121;
  border: 2px solid #898121;
}
#content .command-wrap .command-output.report-page .report-section .group-filter .owl-item:nth-child(30) .group-item {
  background: #789DBC;
  border: 2px solid #789DBC;
}
#content .command-wrap .command-output.report-page .report-section .report-card-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 8px;
}
#content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}
#content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content {
  background: #525252;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
}
#content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text {
  white-space: nowrap;
}
#content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-title {
  font-size: 24px;
  line-height: 28px;
  color: var(--color-text);
  font-weight: 400;
}
#content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-value {
  font-family: "Helvetica 35 Bold";
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}
#content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.69);
  text-align: right;
}
#content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon img {
  max-width: 100%;
}
@media (max-width: 1599.98px) {
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-title {
    font-size: 20px;
    line-height: 24px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-value {
    font-size: 20px;
    line-height: 24px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon {
    font-size: 40px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon img {
    max-width: 70%;
  }
}
@media (max-width: 1599.98px) {
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-title {
    font-size: 19px;
    line-height: 23px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-value {
    font-size: 19px;
    line-height: 23px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon img {
    max-width: 65%;
  }
}
@media (max-width: 1299.98px) {
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content {
    padding: 15px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-title {
    font-size: 18px;
    line-height: 22px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-value {
    font-size: 18px;
    line-height: 22px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon {
    font-size: 36px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon img {
    max-width: 60%;
  }
}
@media (max-width: 1199.98px) {
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap {
    margin-left: -6px;
    margin-right: -6px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card {
    padding-left: 6px;
    padding-right: 6px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content {
    padding: 12px 10px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-title {
    font-size: 15px;
    line-height: 18px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-value {
    font-size: 15px;
    line-height: 18px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon {
    font-size: 20px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon img {
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap {
    margin-top: 0;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 10px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content {
    padding: 12px 10px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-title {
    font-size: 15px;
    line-height: 18px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-text .report-value {
    font-size: 15px;
    line-height: 18px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon {
    font-size: 20px;
  }
  #content .command-wrap .command-output.report-page .report-section .report-card-wrap .report-card .report-card-content .report-icon img {
    max-width: 40%;
  }
}
#content .command-wrap .command-output.report-page .report-section .salse-report {
  margin-top: 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  min-height: 200px;
  margin-left: -10px;
  margin-right: -10px;
}
#content .command-wrap .command-output.report-page .report-section .salse-report .report-box {
  padding: 0 10px 0 10px;
}
#content .command-wrap .command-output.report-page .report-section .salse-report .report-box .report-details {
  background: #424343;
  border-radius: 12px;
  height: 100%;
}
#content .command-wrap .command-output.report-page .report-section .salse-report .report-box.group-sales {
  flex: 0 0 35%;
  max-width: 35%;
}
#content .command-wrap .command-output.report-page .report-section .salse-report .report-box.product-sales {
  flex: 0 0 65%;
  max-width: 65%;
}
#content .command-wrap .command-output.report-page .report-section .salse-report .report-box.monthly-sales {
  flex: 0 0 100%;
  max-width: 100%;
}
#content .command-wrap .command-output.report-page .report-section .salse-report .report-box.monthly-sales .report-body {
  max-height: 760px;
}
#content .command-wrap .command-output.report-page .report-section .salse-report .report-box .report-header {
  line-height: 1;
  border-bottom: 1px solid #535353;
  padding: 16px 20px;
}
#content .command-wrap .command-output.report-page .report-section .salse-report .report-box .report-body {
  padding: 10px 10px;
}
@media (max-width: 1199.98px) {
  #content .command-wrap .command-output.report-page .report-section .salse-report {
    margin-top: 12px;
    margin-left: -6px;
    margin-right: -6px;
  }
  #content .command-wrap .command-output.report-page .report-section .salse-report .report-box {
    padding: 0 6px 0 6px;
  }
}
@media (max-width: 1199.98px) {
  #content .command-wrap .command-output.report-page .report-section .salse-report .report-box.group-sales {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #content .command-wrap .command-output.report-page .report-section .salse-report .report-box.product-sales {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 12px;
  }
}

.daterangepicker {
  background-color: #535353 !important;
  border-color: #353435 !important;
}

.daterangepicker::before {
  border-bottom: 7px solid #535353 !important;
}

.daterangepicker::after {
  border-bottom: 6px solid #535353 !important;
}

.daterangepicker .calendar-table {
  border: 1px solid #535353 !important;
  background-color: #535353 !important;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #333333 !important;
  color: #fff !important;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: #535353 !important;
  color: #7b7b7b !important;
}

.daterangepicker td.in-range {
  background-color: #414242 !important;
  color: #ffffff !important;
}

.daterangepicker td.active {
  background-color: #006cc9 !important;
}

.daterangepicker .drp-buttons .btn {
  color: #ddd;
}

.daterangepicker .ranges li.active {
  background-color: #006cc9 !important;
}

.daterangepicker .ranges li:hover {
  background-color: #2e2d2d !important;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  border: solid #ffffff !important;
  border-width: 0 2px 2px 0 !important;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #696969 !important;
}

.daterangepicker .drp-buttons {
  border-top: 1px solid #696969 !important;
}

.buy-and-payment-wrap.buy-payment-list-wrap {
  height: 100%;
}
.buy-and-payment-wrap.buy-payment-list-wrap .nav-tabs {
  justify-content: center;
  border-bottom: 1px solid #535353;
}
.buy-and-payment-wrap.buy-payment-list-wrap .nav-tabs .nav-link {
  padding: 6px 32px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .tab-content {
  height: calc(100% - 40px);
}
.buy-and-payment-wrap.buy-payment-list-wrap .tab-content .tab-pane {
  height: 100%;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table {
  height: calc(100% - 40px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-date-td {
  width: 160px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-number-td {
  width: 210px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-supplier-name {
  width: 280px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-amount-td {
  width: 120px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-due-td {
  width: 120px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-action-td {
  width: 92px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table th.po-first-td {
  width: 120px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-reference {
  width: 105px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-note-td {
  white-space: normal !important;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-note-td p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 16px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table {
  border-spacing: 0 1px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td {
  background: #626262;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td.po-date-td {
  width: 370px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td.po-supplier-name {
  width: 280px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td.po-amount-td {
  width: 120px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td.po-due-td {
  width: 120px;
}
.buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td .po-reference {
  width: 105px;
}
@media (max-width: 1750px) {
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table td {
    font-size: 15px !important;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-date-td {
    width: 115px;
    min-width: 115px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-number-td {
    width: 148px;
    min-width: 148px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-supplier-name {
    width: 280px;
    min-width: 280px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-amount-td {
    width: 100px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-due-td {
    width: 100px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table td.po-action-td {
    width: 92px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table th.po-first-td {
    width: 100px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td.po-date-td {
    width: 263px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td.po-supplier-name {
    width: 280px;
    min-width: 280px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td.po-amount-td {
    width: 100px;
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table .sub-row td table tr td.po-due-td {
    width: 100px;
  }
}
@media (max-width: 575.98px) {
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table {
    height: calc(100% - 68px);
  }
}
.buy-and-payment-wrap.buy-payment-list-wrap .pagination-wrap {
  margin-top: 15px;
  height: 35px;
}
@media (max-width: 1199.98px) {
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table {
    height: calc(100% - 56px);
  }
}
@media (max-width: 767.98px) {
  .buy-and-payment-wrap.buy-payment-list-wrap .tab-content {
    height: calc(100% - 87px);
  }
  .buy-and-payment-wrap.buy-payment-list-wrap .nav-tabs .nav-link {
    padding: 6px 28px;
  }
}
@media (max-width: 575.98px) {
  .buy-and-payment-wrap.buy-payment-list-wrap .main-table {
    height: calc(100% - 70px);
  }
}

.buy-and-payment-wrap.bank-list-wrap {
  height: 100%;
}
.buy-and-payment-wrap.bank-list-wrap .main-table {
  height: calc(100% - 50px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-and-payment-wrap.bank-list-wrap .pagination-wrap {
  margin-top: 15px;
  height: 35px;
}

.buy-and-payment-wrap.sales-receive-wrap {
  height: 100%;
}
.buy-and-payment-wrap.sales-receive-wrap .nav-tabs {
  justify-content: center;
  border-bottom: 1px solid #535353;
}
.buy-and-payment-wrap.sales-receive-wrap .nav-tabs .nav-link {
  padding: 6px 32px;
}
.buy-and-payment-wrap.sales-receive-wrap .tab-content {
  height: calc(100% - 40px);
}
.buy-and-payment-wrap.sales-receive-wrap .tab-content .tab-pane {
  height: 100%;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table {
  height: calc(100% - 40px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-date-td {
  width: 160px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-number-td {
  width: 260px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-client-name {
  width: 315px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-amount-td {
  width: 120px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-due-td {
  width: 120px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-action-td {
  width: 92px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table th.invoice-first-td {
  width: 120px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-note-td {
  white-space: normal !important;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-note-td p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 16px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-client-name .client_ledger_link {
  color: var(--color-white);
  width: 303px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table {
  border-spacing: 0 1px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table tr td {
  background: #626262;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table tr td.invoice-date-td {
  width: 420px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table tr td.invoice-client-name {
  width: 315px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table tr td.invoice-amount-td {
  width: 120px;
}
.buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table tr td.invoice-due-td {
  width: 120px;
}
@media (max-width: 1750px) {
  .buy-and-payment-wrap.sales-receive-wrap .main-table td {
    font-size: 15px !important;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-date-td {
    width: 115px;
    min-width: 115px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-number-td {
    width: 188px;
    min-width: 188px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-client-name {
    width: 280px;
    min-width: 280px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-amount-td {
    width: 100px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-due-td {
    width: 100px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table td.invoice-action-td {
    width: 92px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table th.invoice-first-td {
    width: 100px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table tr td.invoice-date-td {
    width: 303px;
    min-width: 303px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table tr td.invoice-client-name {
    width: 280px;
    min-width: 280px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table tr td.invoice-amount-td {
    width: 100px;
  }
  .buy-and-payment-wrap.sales-receive-wrap .main-table .sub-row td table tr td.invoice-due-td {
    width: 100px;
  }
}
@media (max-width: 575.98px) {
  .buy-and-payment-wrap.sales-receive-wrap .main-table {
    height: calc(100% - 68px);
  }
}
.buy-and-payment-wrap.sales-receive-wrap .pagination-wrap {
  margin-top: 15px;
  height: 35px;
}
@media (max-width: 1199.98px) {
  .buy-and-payment-wrap.sales-receive-wrap .main-table {
    height: calc(100% - 56px);
  }
}
@media (max-width: 767.98px) {
  .buy-and-payment-wrap.sales-receive-wrap .tab-content {
    height: calc(100% - 87px);
  }
  .buy-and-payment-wrap.sales-receive-wrap .nav-tabs .nav-link {
    padding: 6px 28px;
  }
}
@media (max-width: 575.98px) {
  .buy-and-payment-wrap.sales-receive-wrap .main-table {
    height: calc(100% - 70px);
  }
}

.buy-and-payment-wrap.client-ledger-wrap {
  height: 100%;
}
.buy-and-payment-wrap.client-ledger-wrap .ledger-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-lighter-dark);
  line-height: 1;
  min-height: 128px;
}
.buy-and-payment-wrap.client-ledger-wrap .ledger-summary .left .client-name {
  font-size: 17px;
  font-weight: 600;
}
.buy-and-payment-wrap.client-ledger-wrap .ledger-summary .left .company-name {
  font-size: 15px;
  margin-bottom: 10px;
}
.buy-and-payment-wrap.client-ledger-wrap .ledger-summary .left .address-line {
  font-size: 14px;
  max-width: 500px;
}
.buy-and-payment-wrap.client-ledger-wrap .ledger-summary .right .summary-amount {
  background: #109d10;
  padding: 12px;
  font-size: 28px;
  font-weight: 600;
  border-radius: 16px;
  min-width: 180px;
  text-align: center;
}
.buy-and-payment-wrap.client-ledger-wrap .ledger-summary .right .summary-amount.has-due {
  background: #ff0000;
}
.buy-and-payment-wrap.client-ledger-wrap .main-table {
  height: calc(100% - 164px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-and-payment-wrap.client-ledger-wrap .main-table th.client-ledger-attachment {
  width: 100px;
}
.buy-and-payment-wrap.client-ledger-wrap .main-table th.client-ledger-note {
  min-width: 120px;
}
.buy-and-payment-wrap.client-ledger-wrap .pagination-wrap {
  margin-top: 15px;
  height: 35px;
}
@media (max-width: 767.98px) {
  .buy-and-payment-wrap.client-ledger-wrap .ledger-summary {
    padding-bottom: 10px;
  }
  .buy-and-payment-wrap.client-ledger-wrap .ledger-summary .left .client-name {
    font-size: 15px;
  }
  .buy-and-payment-wrap.client-ledger-wrap .ledger-summary .left .company-name {
    font-size: 14px;
  }
  .buy-and-payment-wrap.client-ledger-wrap .ledger-summary .left .address-line {
    font-size: 13px;
  }
  .buy-and-payment-wrap.client-ledger-wrap .ledger-summary .right .summary-amount {
    padding: 8px;
    font-size: 18px;
    min-width: 100px;
  }
  .buy-and-payment-wrap.client-ledger-wrap .main-table {
    height: calc(100% - 162px);
  }
}

.buy-and-payment-wrap.client-list-wrap {
  height: 100%;
}
.buy-and-payment-wrap.client-list-wrap .main-table {
  height: calc(100% - 50px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-and-payment-wrap.client-list-wrap .pagination-wrap {
  margin-top: 15px;
  height: 35px;
}

.buy-and-payment-wrap.suplpier-list-wrap {
  height: 100%;
}
.buy-and-payment-wrap.suplpier-list-wrap .main-table {
  height: calc(100% - 50px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-and-payment-wrap.suplpier-list-wrap .pagination-wrap {
  margin-top: 15px;
  height: 35px;
}

.buy-and-payment-wrap.employee-list-wrap {
  height: 100%;
}
.buy-and-payment-wrap.employee-list-wrap .tab-content {
  height: calc(100% - 45px);
}
.buy-and-payment-wrap.employee-list-wrap .tab-content .tab-pane {
  height: 100%;
}
.buy-and-payment-wrap.employee-list-wrap .tab-content .main-table {
  height: calc(100% - 124px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-and-payment-wrap.employee-list-wrap .tab-content .pagination-wrap {
  margin-top: 10px;
  height: 35px;
}

.buy-and-payment-wrap.role-list-wrap {
  height: 100%;
}
.buy-and-payment-wrap.role-list-wrap .main-table {
  height: calc(100% - 50px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-and-payment-wrap.role-list-wrap .pagination-wrap {
  margin-top: 15px;
  height: 35px;
}

.buy-and-payment-wrap.module-list-wrap {
  height: 100%;
}
.buy-and-payment-wrap.module-list-wrap .main-table {
  height: calc(100% - 50px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-and-payment-wrap.module-list-wrap .pagination-wrap {
  margin-top: 15px;
  height: 35px;
}

.view-bank .modal-dialog .modal-content {
  border-color: #696969;
}
.view-bank .modal-dialog .modal-content .modal-header h1.modal-title {
  font-size: 16px;
}
.view-bank .modal-dialog .modal-content .modal-body .view-title {
  margin-bottom: 24px;
}
.view-bank .modal-dialog .modal-content .modal-body .view-title span {
  padding-bottom: 4px;
  border-bottom: 2px solid #ddd;
}
.view-bank .modal-dialog .modal-content .modal-body .info-wrap {
  padding-left: 8px;
  margin-bottom: 8px;
  border-left: 3px solid #434a57;
}
.view-bank .modal-dialog .modal-content .modal-body .info-wrap:last-child {
  margin-bottom: 4px;
}
.view-bank .modal-dialog .modal-content .modal-body .info-wrap .info-title {
  font-size: 15px;
  line-height: 16px;
  color: #92a7b3;
  padding-bottom: 2px;
}
.view-bank .modal-dialog .modal-content .modal-body .info-wrap .info-text {
  font-size: 15px;
  line-height: 18px;
}
@media (max-width: 575.98px) {
  .view-bank .modal-dialog .modal-content .modal-header h1.modal-title {
    font-size: 14px;
  }
  .view-bank .modal-dialog .modal-content .modal-body .view-title {
    font-size: 16px;
  }
  .view-bank .modal-dialog .modal-content .modal-body .info-wrap .info-text {
    font-size: 14px;
  }
}

.client-order-thumbs-wrap {
  display: block;
}
.client-order-thumbs-wrap .client-order-thumbs {
  display: inline-block;
  width: 160px;
  margin-top: 12px;
  margin-right: 20px;
  position: relative;
  border-radius: 6px;
}
.client-order-thumbs-wrap .client-order-thumbs .client-order-thumbs-box {
  width: 160px;
  display: block;
  position: relative;
}
.client-order-thumbs-wrap .client-order-thumbs .client-order-thumbs-box .client-img {
  width: 100%;
  height: 160px;
  background: #F7F7F7;
  padding: 15px;
  margin-bottom: 8px;
  border-radius: 6px;
}
.client-order-thumbs-wrap .client-order-thumbs .client-order-thumbs-box .client-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.client-order-thumbs-wrap .client-order-thumbs .client-order-thumbs-box .mail-title {
  font-size: 16px;
  text-align: center;
  color: #fff;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 1px;
  line-height: 18px;
}
.client-order-thumbs-wrap .client-order-thumbs .client-order-thumbs-box .sub-title {
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
  text-align: center;
  margin-bottom: 0;
  line-height: 16px;
}
.client-order-thumbs-wrap .client-order-thumbs .client-order-thumbs-box .order-number-badge {
  position: absolute;
  top: -10px;
  right: -12px;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: red;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-note-modal .modal-dialog .modal-content .modal-header {
  padding: 12px 16px;
}
.order-note-modal .modal-dialog .modal-content .modal-body p {
  color: #d5d5d5;
  text-align: left;
  white-space: initial;
}
.order-note-modal .modal-dialog .modal-content .modal-body p span {
  color: #fc4b4b;
}
.order-note-modal .modal-dialog .modal-content .modal-body p:last-child {
  margin-bottom: 0;
}

.custom-pagination-wrap {
  background: #676767;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  border: 1px solid #9f9f9f;
  padding: 2px 20px;
  border-radius: 4px;
  font-weight: 600;
}
.custom-pagination-wrap .cpw-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-pagination-wrap .cpw-left .pagination-row-count {
  margin-right: 2px;
  min-width: 180px;
}
.custom-pagination-wrap .cpw-left .pagination-value-count {
  margin-right: 2px;
  min-width: 250px;
}
.custom-pagination-wrap .cpw-left .pagination-selected-row-value {
  color: #26b5f4;
  display: flex;
  justify-content: space-between;
  min-width: 200px;
  padding-left: 8px;
}
.custom-pagination-wrap .cpw-left .pagination-selected-row-value .selected-row {
  margin-right: 25px;
}
.custom-pagination-wrap .cpw-right {
  display: flex;
  align-items: center;
}
.custom-pagination-wrap .cpw-right .pagination-show-rows {
  margin-right: 6px;
}
.custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap {
  display: flex;
  align-items: center;
  min-width: 150px;
}
.custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap .col-form-label {
  white-space: nowrap;
  padding-right: 8px;
  font-size: 14px;
}
.custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap .form-select {
  width: 52px;
  background-color: #bababa;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-position: right 2px center;
  padding: 2px 18px 2px 4px;
}
.custom-pagination-wrap .cpw-right .pagination-row-showing {
  min-width: 220px;
  text-align: center;
  color: #fff;
}
.custom-pagination-wrap .cpw-right .pagination-control-wrap {
  display: flex;
  justify-content: flex-end;
}
.custom-pagination-wrap .cpw-right .pagination-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 120px;
}
.custom-pagination-wrap .cpw-right .pagination-control a img {
  width: auto;
  height: 20px;
}
.custom-pagination-wrap .cpw-right .pagination-control .go-to-start.desiable,
.custom-pagination-wrap .cpw-right .pagination-control .go-to-previous.desiable,
.custom-pagination-wrap .cpw-right .pagination-control .go-to-next.desiable,
.custom-pagination-wrap .cpw-right .pagination-control .go-to-end.desiable {
  cursor: not-allowed;
  opacity: 0.45;
}
@media (max-width: 1599.98px) {
  .custom-pagination-wrap {
    padding: 2px 12px;
    font-size: 14px;
  }
  .custom-pagination-wrap .cpw-left .pagination-row-count {
    min-width: 140px;
  }
  .custom-pagination-wrap .cpw-left .pagination-value-count {
    min-width: 200px;
  }
  .custom-pagination-wrap .cpw-left .pagination-selected-row-value {
    min-width: 150px;
  }
  .custom-pagination-wrap .cpw-left .pagination-selected-row-value .selected-row {
    margin-right: 14px;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows {
    margin-right: 6px;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap {
    min-width: 120px;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap .col-form-label {
    padding-right: 6px;
    font-size: 13px;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap .form-select {
    width: 50px;
    font-size: 13px;
  }
  .custom-pagination-wrap .cpw-right .pagination-row-showing {
    min-width: 185px;
  }
  .custom-pagination-wrap .cpw-right .pagination-control {
    width: 110px;
  }
  .custom-pagination-wrap .cpw-right .pagination-control a img {
    height: 18px;
  }
}
@media (max-width: 1399.98px) {
  .custom-pagination-wrap {
    padding: 2px 10px;
    font-size: 13px;
  }
  .custom-pagination-wrap .cpw-left .pagination-row-count {
    min-width: 110px;
  }
  .custom-pagination-wrap .cpw-left .pagination-value-count {
    min-width: 160px;
  }
  .custom-pagination-wrap .cpw-left .pagination-selected-row-value {
    min-width: 150px;
  }
  .custom-pagination-wrap .cpw-left .pagination-selected-row-value .selected-row {
    margin-right: 14px;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows {
    margin-right: 4px;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap {
    min-width: 120px;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap .col-form-label {
    padding-right: 4px;
    font-size: 12px;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap .form-select {
    width: 44px;
    font-size: 12px;
    background-position: right 1px center;
    padding: 2px 18px 2px 3px;
  }
  .custom-pagination-wrap .cpw-right .pagination-row-showing {
    min-width: 160px;
  }
  .custom-pagination-wrap .cpw-right .pagination-control {
    width: 70px;
  }
  .custom-pagination-wrap .cpw-right .pagination-control a img {
    height: 15px;
  }
}
@media (max-width: 1299.98px) {
  .custom-pagination-wrap {
    padding: 2px 10px;
    font-size: 12px;
  }
}
@media (max-width: 1199.98px) {
  .custom-pagination-wrap {
    height: auto;
    flex-wrap: wrap;
  }
  .custom-pagination-wrap .cpw-left {
    flex: 0 0 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .custom-pagination-wrap .cpw-left .pagination-row-count,
  .custom-pagination-wrap .cpw-left .pagination-value-count,
  .custom-pagination-wrap .cpw-left .pagination-selected-row-value {
    min-width: auto;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-right: 0;
    padding-left: 0;
  }
  .custom-pagination-wrap .cpw-left .pagination-value-count {
    text-align: center;
  }
  .custom-pagination-wrap .cpw-left .pagination-selected-row-value {
    justify-content: flex-end;
  }
  .custom-pagination-wrap .cpw-right {
    flex: 0 0 100%;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows,
  .custom-pagination-wrap .cpw-right .pagination-row-showing,
  .custom-pagination-wrap .cpw-right .pagination-control-wrap {
    min-width: auto;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  .custom-pagination-wrap {
    padding: 4px 10px 2px 10px;
    font-size: 11px;
  }
  .custom-pagination-wrap .cpw-left .pagination-row-count,
  .custom-pagination-wrap .cpw-left .pagination-value-count {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .custom-pagination-wrap .cpw-left .pagination-selected-row-value {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .custom-pagination-wrap .cpw-left .pagination-value-count {
    text-align: right;
  }
  .custom-pagination-wrap .cpw-left .pagination-selected-row-value {
    justify-content: space-between;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap .col-form-label {
    font-size: 10px;
  }
  .custom-pagination-wrap .cpw-right .pagination-show-rows .show-rows-wrap .form-select {
    padding: 1px 18px 1px 3px;
  }
  .custom-pagination-wrap .cpw-right .pagination-control a img {
    height: 12px;
  }
}

.global-search-modal .modal-header .search-result-wrap {
  width: 100%;
  padding-right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.global-search-modal .modal-header .search-result-wrap p.show-result-text {
  margin-bottom: 0;
  color: #e7e7e7;
  font-size: 17px;
  font-weight: 600;
}
.global-search-modal .modal-header .search-result-wrap p.show-result-text span {
  color: #fb9c9c;
}
.global-search-modal .modal-header .search-result-wrap .result-search-for form input.form-control {
  background: #a4a5a4;
  border-color: #b5b5b5;
  color: #fff;
  height: 34px;
  padding: 4px 8px;
  font-weight: 600;
  letter-spacing: 0.75px;
}
.global-search-modal .modal-header .search-result-wrap .result-search-for form input.form-control::-moz-placeholder {
  color: #666;
  font-weight: 600;
}
.global-search-modal .modal-header .search-result-wrap .result-search-for form input.form-control::placeholder {
  color: #666;
  font-weight: 600;
}

.receive-payment-modal .modal-dialog {
  margin-top: 105px;
}
.receive-payment-modal .modal-content.modal-theme-color {
  border-color: #707070;
}
.receive-payment-modal .amount-input-group .input-group-text {
  font-size: 20px;
  font-weight: 600;
  padding: 4px 12px;
  background: #535353;
  color: #ddd;
}
.receive-payment-modal .amount-input-group .form-control {
  font-size: 20px;
  font-weight: 600;
  padding: 4px 12px;
  background: #535353;
  color: #ddd;
}
.receive-payment-modal .custom-uploaded-image-view {
  margin-top: 12px;
}
.receive-payment-modal .custom-uploaded-image-view .img-box {
  width: 80px;
  height: 80px;
}
.receive-payment-modal .custom-uploaded-image-view .img-box img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.po-payment-modal .custom-uploaded-image-view {
  margin-top: 12px;
}
.po-payment-modal .custom-uploaded-image-view .img-box {
  width: 80px;
  height: 80px;
}
.po-payment-modal .custom-uploaded-image-view .img-box img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.search-result-text-box {
  background: #535353;
  padding: 6px 12px;
  margin-bottom: 2px;
  border-radius: 4px;
}

.create-invoice-form .table-row-wrap {
  border-radius: 4px;
  background: #535353;
  padding: 15px 15px 0 15px;
}
.create-invoice-form .table-responsive .table {
  border-collapse: separate;
  border-spacing: 0 1px;
}
.create-invoice-form .table-responsive .table thead tr th {
  background: #444545;
  color: var(--color-text);
  border: none;
  font-size: 16px;
  white-space: nowrap;
}
.create-invoice-form .table-responsive .table thead tr th .blank {
  width: 29px;
  height: 24px;
  display: inline-block;
  margin-right: 3px;
}
.create-invoice-form .table-responsive .table thead tr th .form-check-inline {
  margin-right: 0;
  margin-bottom: 0;
}
.create-invoice-form .table-responsive .table thead tr th .form-check-inline .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: #d1c7c7;
  border-color: var(--color-lighter-dark);
}
.create-invoice-form .table-responsive .table thead tr th .form-check-inline .form-check-input:checked {
  background-color: #817e7e;
}
.create-invoice-form .table-responsive .table thead tr th .form-check-inline .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(65, 65, 65, 0.13);
}
.create-invoice-form .table-responsive .table tbody tr td {
  padding: 6px;
  background: #a4a5a4;
  color: var(--color-white);
  border: none;
  font-size: 16px;
  line-height: 22px;
  white-space: nowrap;
}
.create-invoice-form .table-responsive .table tbody tr td input.form-control {
  height: 32px;
}
.create-invoice-form .table-responsive .table tbody tr td .form-check-inline {
  margin-right: 0;
  margin-bottom: 0;
}
.create-invoice-form .table-responsive .table tbody tr td .form-check-inline .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: #d1c7c7;
  border-color: var(--color-lighter-dark);
}
.create-invoice-form .table-responsive .table tbody tr td .form-check-inline .form-check-input:checked {
  background-color: #817e7e;
}
.create-invoice-form .table-responsive .table tbody tr td .form-check-inline .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(65, 65, 65, 0.13);
}
.create-invoice-form .table-responsive .table tbody tr td a.edit,
.create-invoice-form .table-responsive .table tbody tr td a.delete,
.create-invoice-form .table-responsive .table tbody tr td a.view {
  color: var(--color-text);
  font-size: 21px;
  text-decoration: none;
}
.create-invoice-form .table-responsive .table tbody tr td a.edit img,
.create-invoice-form .table-responsive .table tbody tr td a.delete img,
.create-invoice-form .table-responsive .table tbody tr td a.view img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
.create-invoice-form .table-responsive .table tbody tr td a.edit:hover,
.create-invoice-form .table-responsive .table tbody tr td a.delete:hover,
.create-invoice-form .table-responsive .table tbody tr td a.view:hover {
  opacity: 0.625;
}
.create-invoice-form .table-responsive .table tbody tr.paid td {
  background: #4D6A3F;
}
.create-invoice-form .table-responsive .table tbody tr.hidden {
  display: none;
}
.create-invoice-form .table-responsive .table tbody tr.net-total td {
  background: #444545;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 6px;
}
.create-invoice-form .table-responsive .table tbody tr.discount td {
  background: #535353;
  font-size: 18px;
  font-weight: 600;
}
.create-invoice-form .table-responsive .table tbody tr.discount td input.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #b8b8b8;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding-right: 0;
  letter-spacing: 0.75px;
}
.create-invoice-form .table-responsive .table tbody tr.discount td input.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #fff;
}
.create-invoice-form .table-responsive .table tbody tr.grand-total td {
  background: #535353;
  font-size: 18px;
  font-weight: 600;
}
.create-invoice-form .table-responsive .table tbody tr.grand-total td input.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #b8b8b8;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding-right: 0;
  letter-spacing: 0.75px;
}
.create-invoice-form .table-responsive .table tbody tr.grand-total td input.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #fff;
}
@media (max-width: 1700px) {
  .create-invoice-form .table-responsive .table tbody tr td {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 1399.98px) {
  .create-invoice-form .table-responsive .table thead tr th {
    font-size: 14px;
    padding: 4px 5px;
  }
  .create-invoice-form .table-responsive .table thead tr th .form-check-inline .form-check-input {
    width: 18px;
    height: 18px;
  }
  .create-invoice-form .table-responsive .table thead tr th .blank {
    width: 23px;
  }
  .create-invoice-form .table-responsive .table tbody tr td {
    font-size: 15px;
    line-height: 21px;
    vertical-align: middle;
    padding: 4px 5px;
  }
  .create-invoice-form .table-responsive .table tbody tr td .form-check-inline .form-check-input {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 991.98px) {
  .create-invoice-form .table-responsive .table thead tr th {
    font-size: 13px;
    padding: 4px 5px;
  }
  .create-invoice-form .table-responsive .table tbody tr td {
    font-size: 13px;
    line-height: 17px;
  }
}

.sell-invoice-view .modal-dialog {
  max-width: 1300px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-header {
  padding: 0;
  border: none;
  position: relative;
  background: #f0f0f0;
  color: #888;
}
.sell-invoice-view .modal-dialog .modal-content .modal-header .btn-close {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 32px;
  border: 2px solid #ddd;
  padding: 3px;
  opacity: 1;
  background-color: #999;
  position: absolute;
  top: -7px;
  right: -4px;
  z-index: 2;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body {
  padding: 24px 32px;
  height: calc(100vh - 130px);
  overflow: hidden;
  overflow-y: auto;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px;
  color: #222;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .invoice-details-info {
  font-size: 14px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .left-side {
  max-width: 360px;
  width: 100%;
  text-align: left;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .left-side .invoice-logo {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 2px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .left-side .invoice-address {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .left-side .invoice-to {
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 16px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side {
  max-width: 360px;
  width: 100%;
  color: #222;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-heading {
  text-align: center;
  font-size: 30px;
  margin-bottom: 15px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .barcode {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .barcode img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-no {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.1;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-details-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 22px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-details-row .invoice-details-title {
  width: 150px;
  font-size: 14px;
  text-align: left;
  padding-right: 15px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-details-row .invoice-details-info {
  width: calc(100% - 150px);
  font-size: 14px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap {
  margin-top: 24px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table thead tr th {
  white-space: nowrap;
  font-size: 15px;
  background: #ccc;
  border-bottom: none;
  font-weight: 600;
  color: #000;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table thead tr th.note {
  min-width: 250px;
  width: 320px;
  max-width: 320px;
  text-align: center;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr td {
  font-size: 15px;
  border-top: 1px dashed #c3c3c3;
  font-family: "Courier Prime Regular", Courier, monospace;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr td.note {
  min-width: 250px;
  width: 320px;
  max-width: 320px;
  line-height: 1.1;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr td.note p {
  font-size: 13px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr td.blank-space-border {
  border-top: 2px dashed #c3c3c3;
  padding: 1px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr:nth-last-child(2) td {
  border-top: none;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr:nth-last-child(1) td {
  border-top: none;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr.top-space-tr td {
  border: none;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .grand-total-in-word {
  color: #222;
  font-size: 15px;
  font-weight: 600;
  font-family: "Courier Prime Regular", Courier, monospace;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-note {
  padding: 12px;
  margin-top: 16px;
  background: #f7f7f7;
  border-radius: 8px;
  border: 1px solid #ededed;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .invoice-note p {
  color: #222;
  font-size: 15px;
  font-weight: 600;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap {
  margin-top: 20px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap .title {
  color: #222;
  font-size: 20px;
  margin-bottom: 1px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap .table-responsive .table tr td {
  color: #222;
  font-size: 14px;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap .table-responsive .table tr td:first-child {
  padding-left: 0;
}
.sell-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap .table-responsive .table tr td p {
  margin-bottom: 0;
  max-width: 490px;
}
.cart_quantity_modal .modal-title {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}
.cart_quantity_modal input.form-control {
  font-weight: 600;
}
.cart_quantity_modal input.form-control::-moz-placeholder {
  color: #666;
  font-weight: 600;
}
.cart_quantity_modal input.form-control::placeholder {
  color: #666;
  font-weight: 600;
}

.buy-invoice-view .modal-dialog {
  max-width: 1300px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-header {
  padding: 0;
  border: none;
  position: relative;
  background: #f0f0f0;
  color: #888;
}
.buy-invoice-view .modal-dialog .modal-content .modal-header .btn-close {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 32px;
  border: 2px solid #ddd;
  padding: 3px;
  opacity: 1;
  background-color: #999;
  position: absolute;
  top: -7px;
  right: -4px;
  z-index: 2;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body {
  padding: 24px 32px;
  height: calc(100vh - 130px);
  overflow: hidden;
  overflow-y: auto;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px;
  color: #222;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .invoice-details-info {
  font-size: 14px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .left-side {
  max-width: 360px;
  width: 100%;
  text-align: left;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .left-side .invoice-logo {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 2px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .left-side .invoice-address {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .left-side .invoice-to {
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 16px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side {
  max-width: 360px;
  width: 100%;
  color: #222;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-heading {
  text-align: center;
  font-size: 30px;
  margin-bottom: 15px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .barcode {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .barcode img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-no {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.1;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-details-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 22px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-details-row .invoice-details-title {
  width: 150px;
  font-size: 14px;
  text-align: left;
  padding-right: 15px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-top .right-side .invoice-details-row .invoice-details-info {
  width: calc(100% - 150px);
  font-size: 14px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap {
  margin-top: 24px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table thead tr th {
  white-space: nowrap;
  font-size: 15px;
  background: #ccc;
  border-bottom: none;
  font-weight: 600;
  color: #000;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table thead tr th.note {
  min-width: 250px;
  width: 350px;
  max-width: 350px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr td {
  font-size: 15px;
  border-top: 1px dashed #c3c3c3;
  font-family: "Courier Prime Regular", Courier, monospace;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr td.note {
  min-width: 250px;
  width: 350px;
  max-width: 350px;
  line-height: 1.1;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr td.note p {
  font-size: 13px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr td.blank-space-border {
  border-top: 2px dashed #c3c3c3;
  padding: 1px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-order-list-wrap .table tbody tr.top-space-tr td {
  border: none;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .grand-total-in-word {
  color: #222;
  font-size: 15px;
  font-weight: 600;
  font-family: "Courier Prime Regular", Courier, monospace;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-note {
  padding: 12px;
  margin-top: 16px;
  background: #f7f7f7;
  border-radius: 8px;
  border: 1px solid #ededed;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .invoice-note p {
  color: #222;
  font-size: 15px;
  font-weight: 600;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap {
  margin-top: 20px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap .title {
  color: #222;
  font-size: 20px;
  margin-bottom: 1px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap .table-responsive .table tr td {
  color: #222;
  font-size: 14px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap .table-responsive .table tr td:first-child {
  padding-left: 0;
  max-width: 160px;
  width: 160px;
}
.buy-invoice-view .modal-dialog .modal-content .modal-body .bank-information-wrap .table-responsive .table tr td p {
  margin-bottom: 0;
  max-width: 490px;
  font-weight: 600;
}
.invoice-send-modal .modal-dialog {
  max-width: 1024px;
}
.invoice-send-modal .modal-dialog .modal-content {
  color: var(--color-lighter-dark);
}
.invoice-send-modal .modal-dialog .modal-content .modal-body {
  padding: 16px 20px;
  max-height: calc(100vh - 194px);
  overflow-y: auto;
}
.invoice-send-modal .modal-dialog .modal-content .form-control:focus {
  border-color: #ddd;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
}
.invoice-send-modal .modal-dialog .modal-content .btn-close:focus {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
}
.invoice-send-modal .modal-dialog .modal-content a {
  color: var(--color-bg-dark);
}

.invoice-tab-filter {
  display: flex;
}
.invoice-tab-filter .nav-tabs {
  width: calc(100% - 250px);
}
.invoice-tab-filter .client-invoice-filter {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-bottom: 1px solid #535353;
}
.invoice-tab-filter .client-invoice-filter .form-select {
  background: #535353;
  height: 28px;
  color: #fff;
  font-size: 14px;
}
.invoice-tab-filter .client-invoice-filter .select2-container--default .select2-selection--single {
  background-color: #535353 !important;
}
.invoice-tab-filter .client-invoice-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  font-size: 15px !important;
}
@media (max-width: 767.98px) {
  .invoice-tab-filter {
    flex-wrap: wrap;
  }
  .invoice-tab-filter .nav-tabs {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .invoice-tab-filter .client-invoice-filter {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 8px;
    margin-bottom: 12px;
    order: 1;
    border-bottom: none;
  }
  .invoice-tab-filter .client-invoice-filter form {
    margin: 0 auto;
  }
}

.select2-results__option {
  font-size: 16px;
}

.choose-product-icons {
  display: block;
  background: var(--color-text);
  padding: 6px 10px;
  border-radius: 10px;
}
.choose-product-icons ul {
  display: block;
  overflow: hidden;
  max-height: 105px;
  min-height: 50px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  list-style: none;
}
.choose-product-icons ul li {
  position: relative;
  float: left;
  margin-right: 8px;
  margin-bottom: 4px;
  margin-top: 4px;
}
.choose-product-icons ul li.selected .btn-choose-icon {
  border-color: var(--color-green);
}
.choose-product-icons ul li.selected .btn-choose-icon i {
  opacity: 1;
}
.choose-product-icons ul li .btn-choose-icon {
  padding: 0;
  border: 1px solid var(--color-light-dark);
  border-radius: 4px;
  position: relative;
}
.choose-product-icons ul li .btn-choose-icon img {
  padding: 2px;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
.choose-product-icons ul li .btn-choose-icon i {
  position: absolute;
  top: 4px;
  left: 3px;
  color: var(--color-green);
  background-color: var(--color-white);
  font-size: 12px;
  opacity: 0;
  border-radius: 10px;
}
.choose-product-icons ul li .btn-choose-icon:hover {
  opacity: 0.75;
}
.choose-product-icons ul li a.delete-choosed-icon {
  position: absolute;
  top: 5px;
  right: 3px;
  color: var(--color-danger);
  background-color: var(--color-white);
  font-size: 12px;
  line-height: 1;
  border-radius: 10px;
}

.or-seperator {
  border-top: 1px dashed var(--color-white);
  margin: 25px 0;
  position: relative;
  text-align: center;
}
.or-seperator span {
  position: absolute;
  top: -13px;
  background: #2e2d2d;
  padding: 0px 6px;
}

.buy-and-payment-wrap.role-permission {
  height: 100%;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table {
  height: 100%;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive {
  height: 100%;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table {
  height: 100%;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table thead {
  position: sticky;
  top: 0;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table thead th {
  background: #2e2d2d;
  font-size: 15px;
  line-height: 20px;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table thead th:first-child {
  width: 0;
  padding-left: 5px;
  padding-right: 5px;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody {
  height: calc(100% - 50px);
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr td {
  font-size: 15px;
  line-height: 20px;
  vertical-align: middle;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr td:first-child {
  width: 0;
  padding-left: 5px;
  padding-right: 5px;
  background: #979797;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr td:first-child img {
  width: 18px;
  height: 18px;
  -o-object-fit: fill;
     object-fit: fill;
  margin-top: -11px;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr td:nth-child(2) {
  background: #979797;
  width: 215px;
  max-width: 215px;
  min-width: 215px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr.permission-tr td {
  padding-left: 8px;
  background: #626262;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr.permission-tr td:first-child {
  background: transparent;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr.permission-tr td:first-child::before {
  content: none;
}
.buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr.permission-tr td:nth-child(2) {
  padding-left: 8px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.buy-and-payment-wrap.role-permission .form-check-input:checked {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}
.buy-and-payment-wrap.role-permission .show-hide-for {
  display: flex;
}
.buy-and-payment-wrap.role-permission .show-hide-for .show-hide-for-title {
  padding-right: 100px;
}
.buy-and-payment-wrap.role-permission .show-hide-info {
  padding: 15px 0;
  display: block;
  overflow: hidden;
}
.buy-and-payment-wrap.role-permission .show-hide-info h4.title {
  font-size: 20px;
  border-bottom: 1px solid var(--color-white-gray);
  padding-bottom: 6px;
  margin-bottom: 20px;
}
.buy-and-payment-wrap.role-permission .show-hide-info .show-hide-info-wrap {
  display: flex;
  justify-content: space-between;
  width: 32.33%;
  float: left;
  padding: 8px 12px;
  background: #3b3b3b;
  margin-right: 1%;
  margin-bottom: 12px;
  border-radius: 6px;
}
@media (max-width: 1620px) {
  .buy-and-payment-wrap.role-permission .show-hide-for .show-hide-for-title {
    padding-right: 30px;
  }
}
@media (max-width: 1520px) {
  .buy-and-payment-wrap.role-permission .show-hide-for {
    flex-direction: column;
  }
  .buy-and-payment-wrap.role-permission .show-hide-for .show-hide-for-title {
    padding-right: 0;
  }
}
@media (max-width: 1499.98px) {
  .buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table thead th {
    font-size: 14px;
  }
  .buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr td {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 1399.98px) {
  .buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr td:first-child img {
    margin-top: -5px;
  }
  .buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr td:nth-child(2) {
    width: 150px;
    max-width: 150px;
    min-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .buy-and-payment-wrap.role-permission .show-hide-info .show-hide-info-wrap {
    width: 49%;
  }
}
@media (max-width: 767.98px) {
  .buy-and-payment-wrap.role-permission .main-table.role-permission-table .table-responsive .table tbody tr td:nth-child(2) {
    width: 130px;
    max-width: 130px;
    min-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .buy-and-payment-wrap.role-permission .show-hide-info .show-hide-info-wrap {
    width: 100%;
    margin-right: 0;
  }
}

.user-companey-identifier {
  background: var(--color-yellow-light);
  color: var(--color-dark);
  border-color: var(--color-yellow-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 3px 6px;
  border-radius: 6px;
}

.table-view-shipped-orders {
  border-collapse: separate;
  border-spacing: 0 10px;
}
.table-view-shipped-orders thead th {
  background: transparent;
  color: var(--color-text);
  border: none;
  font-size: 16px;
  white-space: nowrap;
  vertical-align: middle;
}
.table-view-shipped-orders tbody tr td {
  padding: 6px;
  background: #a4a5a4;
  color: var(--color-white);
  border: none;
  font-size: 17px;
  line-height: 22px;
  white-space: nowrap;
  vertical-align: middle;
}
.table-view-shipped-orders tbody tr td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.table-view-shipped-orders tbody tr td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.table-view-shipped-orders tbody tr td .form-check-input {
  margin-top: 3px;
}
.table-view-shipped-orders tbody tr td .order-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.table-view-shipped-orders tbody tr td .download-pdf-wrap {
  margin-right: 2px;
}
.table-view-shipped-orders tbody tr td .hub-icon {
  background: #535353;
  width: 26px;
  min-width: 26px;
  height: 26px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  margin-top: 0px;
}
.table-view-shipped-orders tbody tr td .hub-icon img {
  width: 18px;
  filter: invert(0%) brightness(222%);
}
.table-view-shipped-orders tbody tr td a.order-id-link {
  color: var(--color-white);
  font-weight: 600;
  padding-right: 3px;
}
.table-view-shipped-orders tbody tr td a.order-id-link:hover {
  color: var(--color-white-gray);
}
.table-view-shipped-orders tbody tr td a.order-note-link {
  margin-right: 3px;
}
.table-view-shipped-orders tbody tr td .order-review {
  color: var(--color-orange);
  font-size: 14px;
  margin-top: 0;
  letter-spacing: -1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.table-view-shipped-orders tbody tr td .order-review .fa-regular.fa-star {
  color: var(--color-white-gray);
}

@media (max-width: 575.98px) {
  .calendar-section .calendar-top-option.dayily-calendar-option .previous-month,
  .calendar-section .calendar-top-option.dayily-calendar-option .previous-data {
    position: absolute;
    top: 150px;
    left: 16px;
    font-size: 32px;
  }
  .calendar-section .calendar-top-option.dayily-calendar-option .next-month,
  .calendar-section .calendar-top-option.dayily-calendar-option .next-data {
    position: absolute;
    top: 150px;
    right: 16px;
    font-size: 32px;
  }
  .calendar-section .calendar-top-option.weekly-calendar-option .previous-month,
  .calendar-section .calendar-top-option.weekly-calendar-option .previous-data {
    position: absolute;
    top: 138px;
    left: 16px;
    font-size: 32px;
  }
  .calendar-section .calendar-top-option.weekly-calendar-option .next-month,
  .calendar-section .calendar-top-option.weekly-calendar-option .next-data {
    position: absolute;
    top: 138px;
    right: 16px;
    font-size: 32px;
  }
}
.change-order-date-modal .modal-dialog {
  max-width: 550px;
}
.change-order-date-modal .order-list-change-date ul {
  padding-left: 0;
  display: block;
  overflow: hidden;
  margin-bottom: 8px;
}
.change-order-date-modal .order-list-change-date ul li {
  display: inline-block;
  float: left;
  margin-right: 8px;
  margin-bottom: 8px;
  background: var(--color-lighter-dark);
  padding: 5px 10px;
  border-radius: 20px;
  line-height: 1;
}
.change-order-date-modal .order-list-change-date ul li:last-child {
  margin-right: 0;
}/*# sourceMappingURL=custom.css.map */