* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 6px;
}
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #f4f4f4;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: #a8a8a8;
}

a,
button,
input,
textarea,
select {
  outline: 0;
}
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 0;
}
a:visited,
button:visited,
input:visited,
textarea:visited,
select:visited {
  outline: 0;
  text-decoration: none;
  color: inherit;
}
a:-webkit-any-link,
button:-webkit-any-link,
input:-webkit-any-link,
textarea:-webkit-any-link,
select:-webkit-any-link {
  outline: 0;
  text-decoration: none;
  color: inherit;
}

/*
input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
*/
ul {
  list-style: none;
}

hr {
  color: inherit;
  background: #cecece;
  border: 0;
  margin: 16px 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.toast {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  text-align: center;
  z-index: 11111111;
  padding: 12px;
  min-width: 140px;
  min-height: 40px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid #333;
  background: #fff;
}

.toast-error {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  text-align: center;
  z-index: 11111111;
  padding: 12px;
  min-width: 140px;
  min-height: 40px;
  color: red;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid red;
  background: #fff;
}

.lds-ring {
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1111111111;
  justify-content: center;
  align-items: center;
  background: transparent;
  background: rgba(255, 255, 255, 0.8);
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border: 4px solid #333;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #333 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn {
  text-align: center;
  border: 0;
  background: #f4f4f4;
  color: #333;
  padding: 12px;
  display: inline-block;
  cursor: pointer;
  border-radius: 6px;
  border: 1.5px solid #f4f4f4;
}
.btn.btn-block {
  display: block !important;
  width: 100% !important;
}
.btn.btn-outline {
  border-color: #333;
  background: transparent;
}
.btn.btn-upload {
  position: relative;
}
.btn.btn-upload input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.btn.btn-primary {
  background: #1266f1;
  border-color: #1266f1;
  color: #fff;
}
.btn.btn-danger {
  background: #f93154;
  border-color: #f93154;
  color: #fff;
}
.btn.btn-info {
  background: #39c0ed;
  border-color: #39c0ed;
  color: #fff;
}
.btn.btn-light {
  background: #fbfbfb;
  border-color: #fbfbfb;
  color: #333;
}
.btn.btn-success {
  background: #00b74a;
  border-color: #00b74a;
  color: #fff;
}
.btn.btn-warning {
  background: #ffa900;
  border-color: #ffa900;
  color: #fff;
}

.link {
  cursor: pointer;
  color: #1266f1;
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.font-weight-bold {
  font-weight: 600;
}

.container {
  padding: 0 10px;
  width: 100%;
  display: block;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 15px;
  }
}

.scrollable {
  overflow: auto;
}
.scrollable.vertical::-webkit-scrollbar {
  width: 6px;
}
.scrollable.vertical::-webkit-scrollbar-track {
  background: #f4f4f4;
}
.scrollable.vertical::-webkit-scrollbar-thumb {
  background: #a8a8a8;
}
.scrollable.horizontal::-webkit-scrollbar {
  height: 6px;
}
.scrollable.horizontal::-webkit-scrollbar-track {
  background: #f4f4f4;
}
.scrollable.horizontal::-webkit-scrollbar-thumb {
  background: #a8a8a8;
}

.table {
  border-collapse: collapse;
  width: 100%;
  border-spacing: 0;
}
.table th {
  padding: 6px 8px;
  border: 1px solid #e1e1e1;
  white-space: nowrap;
  vertical-align: middle;
}
.table td {
  padding: 5px;
  border: 1px solid #e1e1e1;
  white-space: nowrap;
  vertical-align: middle;
}
.table.table-stock th,
.table.table-stock td {
  white-space: normal;
}
.table.sticky-head th {
  position: sticky;
  top: -15px;
}

.stock-table {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  overflow: auto;
  z-index: 111;
  background: #fff;
  padding: 15px;
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar {
  display: none;
}
.main-nav.show {
  display: block;
}
@media (min-width: 1200px) {
  .main-nav {
    display: block !important;
    top: 0;
    border-top: 0;
    border-left: 1px solid #f4f4f4;
  }
}
.main-nav .logo {
  display: none;
  margin-bottom: 28px;
}
@media (min-width: 1024px) {
  .main-nav .logo {
    display: block;
  }
}
.main-nav .nav-item {
  display: block;
  margin-bottom: 8px;
}
.main-nav .nav-item .sub-menu {
  display: none;
  margin: 8px 0 0 0;
  padding: 8px 10px;
  background: #f4f4f4;
  border-radius: 4px;
}
.main-nav .nav-item .sub-menu.sub {
  margin: 0 0 0 10px;
}
.main-nav .nav-item .sub-menu.p-0 {
  padding: 0;
}
.main-nav .nav-item .sub-menu.show {
  display: block;
}
.main-nav .nav-item .sub-menu .nav-item:last-child {
  margin-bottom: 0;
}
.main-nav .nav-item .sub-menu .nav-item.active {
  color: #1266f1;
}
.main-nav .nav-item .sub-menu .nav-link {
  display: flex;
  height: 32px;
  align-items: center;
  margin-bottom: 6px;
  border-radius: 6px;
  cursor: pointer;
  opacity: 1;
}
.main-nav .nav-item .sub-menu .nav-link.active {
  background: transparent;
  color: #1266f1;
}
.main-nav .nav-item .sub-menu .nav-link:hover {
  color: #1266f1;
}
.main-nav .nav-item .sub-menu .nav-link svg {
  margin-left: auto;
}
.main-nav .nav-link {
  text-decoration: none;
  color: #333;
  align-items: center;
  opacity: 0.8;
  height: 38px;
  white-space: nowrap;
  padding: 0 10px;
  display: flex;
  border-radius: 6px;
  cursor: pointer;
}
.main-nav .nav-link:last-child {
  margin-bottom: 0;
}
.main-nav .nav-link:hover {
  color: #1266f1;
}
.main-nav .nav-link.active {
  background: #1266f1;
  color: #fff;
  opacity: 1;
}
.main-nav .nav-link.active svg stroke {
  fill: #fff;
}
.main-nav .nav-link.active svg path {
  fill: #fff;
}
.main-nav .nav-link.active:hover {
  color: #fff;
}
.main-nav .nav-link svg {
  margin-left: auto;
}

.app {
  position: relative;
  padding-bottom: 15px;
}
@media (min-width: 1200px) {
  .app {
    margin-right: 220px;
  }
}

.overflow-hidden {
  overflow: hidden !important;
}

.page-header {
  padding: 12px 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
}
@media (min-width: 1024px) {
  .page-header {
    justify-content: flex-end;
    padding: 15px;
  }
}
.page-header .hamburger {
  border: 0;
  background: transparent;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .page-header .hamburger {
    display: none;
  }
}
.page-header .user-name {
  font-size: 16px;
  margin-right: auto;
  cursor: pointer;
  position: relative;
}
.page-header .user-name .dropdown {
  z-index: 111;
  left: 0;
  right: auto;
}
.page-header .list-store {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 11;
}
.page-header .list-store .icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e1e1e1;
  position: relative;
  margin-right: 12px;
}
.page-header .list-store .icon svg {
  opacity: 0.6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-header .list-store .store-name {
  font-weight: 600;
}
.page-header .list-store .carret {
  border-top: 6px solid #ababab;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  margin-left: 14px;
}
.page-header .dropdown {
  display: none;
  position: absolute;
  white-space: nowrap;
  right: 0;
  top: calc(100% + 12px);
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 4px;
  z-index: 11;
  min-width: 180px;
}
.page-header .dropdown.show {
  display: block;
}
.page-header .dropdown li {
  border-radius: 4px;
  cursor: pointer;
  padding: 0 12px;
  height: 42px;
  line-height: 42px;
}
.page-header .dropdown li:hover {
  background: #f4f4f4;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
}

.modal .overlay {
  z-index: 1111;
}
.modal .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1111;
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .modal .modal-dialog {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    height: 100%;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
  }
}
@media (min-width: 1800px) {
  .modal .modal-dialog {
    max-width: 1600px;
  }
}
@media (min-width: 768px) {
  .modal .modal-dialog.modal-md {
    max-width: 450px;
    margin: auto;
  }
}
@media (min-width: 1024px) {
  .modal .modal-dialog.modal-md {
    max-width: 750px;
  }
}
.modal .modal-dialog.h-auto {
  height: auto !important;
}
.modal .modal-dialog .modal-header,
.modal .modal-dialog .modal-body,
.modal .modal-dialog .modal-footer {
  padding: 15px;
}
.modal .modal-dialog .modal-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
}
.modal .modal-dialog .modal-header .title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.modal .modal-dialog .modal-header .title.center-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-dialog .modal-header .close {
  cursor: pointer;
  margin-left: auto;
}
.modal .modal-dialog .modal-body {
  overflow: auto;
}
.modal .modal-dialog .modal-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.modal .modal-dialog .modal-body::-webkit-scrollbar-track {
  background: #f4f4f4;
}
.modal .modal-dialog .modal-body::-webkit-scrollbar-thumb {
  background: #a8a8a8;
}
.modal .modal-dialog .modal-body .search-wrapper {
  margin: -15px -15px 0;
  position: sticky;
  top: -15px;
  left: 0;
  padding: 12px 15px;
  background: #fff;
}
.modal .modal-dialog .modal-body .search-form {
  padding: 6px 10px;
  background: #f4f4f4;
  width: 100%;
  display: flex;
  border-radius: 6px;
  height: 42px;
}
.modal .modal-dialog .modal-body .search-form svg {
  margin-right: 10px;
}
.modal .modal-dialog .modal-body .search-form input {
  flex-grow: 1;
  border: 0;
  background: transparent;
}
.modal .modal-dialog .modal-footer {
  margin-top: auto;
}
.modal .modal-dialog .modal-footer .btn {
  font-size: 14px;
}

.confirm-modal .overlay,
.confirm-modal .modal-dialog {
  z-index: 1111111;
}
.confirm-modal .modal-dialog {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  width: 85%;
  height: auto;
  max-width: 350px;
  height: auto;
}
.confirm-modal .modal-dialog .modal-body {
  border-bottom: 1px solid #e1e1e1;
}
.confirm-modal .modal-dialog .modal-footer {
  display: grid;
  grid-gap: 12px;
  grid-template: auto / 1fr 1fr;
}

.nav-tab {
  background: #f4f4f4;
  display: flex;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nav-tab::-webkit-scrollbar {
  display: none;
}
.nav-tab .nav-item {
  padding: 12px;
  flex-grow: 1;
  text-align: center;
  color: #ababab;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.nav-tab .nav-item.active {
  border: 0;
  color: #333;
  font-weight: 600;
  background: #fff;
}
.nav-tab .nav-item.active::before {
  content: "";
  border-top: 3px solid #1266f1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  display: block;
}

.tab-content .tab-pane {
  display: none;
}
.tab-content .tab-pane.active {
  display: block;
}

.form-group {
  margin-bottom: 14px;
}
.form-group .label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group.two-item {
  display: grid;
  grid-gap: 8px;
  grid-template: auto / 1fr 1fr;
  align-items: center;
}
.form-group.two-item-2 {
  display: grid;
  grid-gap: 8px;
  grid-template: auto / 20% 1fr;
  align-items: center;
}
.form-group.three-item {
  display: grid;
  grid-gap: 8px;
  grid-template: auto / 1fr 1fr 1fr;
  align-items: center;
}

.input,
.select-wrap {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  background: #fff;
}
.input[disabled],
.select-wrap[disabled] {
  background: #f4f4f4;
}
.input.border-0,
.select-wrap.border-0 {
  border: 0;
}

.input {
  padding: 8px;
}

.select-wrap {
  padding: 0;
  position: relative;
}
.select-wrap::after {
  content: "";
  border-top: 4px solid #333;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translate(0, -50%);
  background: transparent;
  border-radius: 0;
}
.select-wrap select {
  padding: 8px;
  border: 0;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border-radius: 4px;
}

.select-search {
  position: relative;
}
.select-search .dropdown {
  display: none;
  position: absolute;
  z-index: 111;
  left: 0;
  white-space: nowrap;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 4px;
  padding: 4px;
  min-width: 100%;
  /* max-width: 250px; */
  max-height: 220px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
}
.select-search.show .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.select-search .dropdown.show {
  display: block;
}
.select-search .dropdown .input {
  padding: 6px;
}
.select-search .dropdown ul {
  list-style: none;
}
.select-search .dropdown ul li {
  padding: 6px;
  border-bottom: 1px solid #f4f4f4;
  cursor: pointer;
}
.select-search .dropdown ul li:last-child {
  border-bottom: 0;
}
.select-search .dropdown ul label {
  display: block;
}
.select-search .dropdown ul label input[type="checkbox"],
.select-search .dropdown ul label input[type="radio"] {
  display: inline-block;
  margin-right: 6px;
  height: auto;
}
.select-search .dropdown .search-wrapper {
  display: block !important;
  position: sticky !important;
  top: 0;
  margin: -4px;
  padding: 4px;
  top: -4px;
  background: #fff;
}

.tag-list .tag-item {
  display: inline-block;
  padding: 4px;
  border-radius: 4px;
  background: #cecece;
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}
.tag-list .tag-item:last-child {
  margin-right: 0;
}

.checklist label {
  display: block;
  margin-bottom: 12px;
}
.checklist label:last-child {
  margin-bottom: 0;
}
.checklist input[type="checkbox"],
.checklist input[type="radio"] {
  margin-right: 10px;
}

.image-scale {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11111111;
  background: #000;
}
.image-scale img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 300px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .image-scale img {
    max-width: 400px;
  }
}
@media (min-width: 1200px) {
  .image-scale img {
    max-width: 480px;
  }
}
.image-scale .close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.image-scale .close path {
  fill: #fff;
}

.ticket-list {
  padding: 18px 0;
}
@media (min-width: 768px) {
  .ticket-list {
    padding: 18px 14px;
  }
}
.ticket-list .item {
  padding: 14px;
  border-bottom: 1px solid #e1e1e1;
  display: grid;
  grid-gap: 12px;
}
.ticket-list .item:last-child {
  border-bottom: 0;
}
@media (min-width: 768px) {
  .ticket-list .item {
    grid-template: auto / 1fr 1fr;
  }
}
.ticket-list .item .status {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 50%;
  background: #e1e1e1;
}
.ticket-list .item .status.processing {
  background: #ffa900;
}
.ticket-list .item .status.approved {
  background: #1266f1;
}
.ticket-list .item .status.completed {
  background: #00b74a;
}
.ticket-list .item .status.canceled {
  background: #f93154;
}
.ticket-list .item p {
  color: #ababab;
}
.ticket-list .item p .text {
  color: #333;
}
.ticket-list .item p.ticket-id {
  grid-template: auto / 20px 1fr;
  display: grid;
  grid-gap: 14px;
  align-items: center;
}
.ticket-list .item svg {
  opacity: 0.6;
}
.ticket-list .item .arrow {
  margin: 0 10px;
}
.ticket-list .item .arrow svg {
  opacity: 1;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-gap: 10px;
  padding: 14px 0;
}
.pagination .btn {
  padding: 6px;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  font-weight: 600;
  background: #f4f4f4;
}
.pagination .input {
  width: 55px;
  height: 28px;
  padding: 6px;
}

.warning {
  color: #ffa900 !important;
}

.primary {
  color: #1266f1 !important;
}

.success {
  color: #00b74a !important;
}

.danger {
  color: #f93154 !important;
}

.checklist .label,
.checklist label {
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
}
.checklist .label:last-child,
.checklist label:last-child {
  margin-bottom: 0;
}
.checklist input[type="checkbox"],
.checklist input[type="radio"] {
  margin-right: 10px;
}

.btn-dropdown {
  position: relative;
}
.btn-dropdown svg {
  margin-left: 6px;
  fill: #fff;
}
.btn-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  display: none;
}
.btn-dropdown .dropdown ul {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  padding: 4px;
  white-space: nowrap;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
  min-width: 150px;
}
.btn-dropdown .dropdown ul li {
  text-align: left;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 14px;
  height: 42px;
  display: flex;
  align-items: center;
  position: relative;
  color: #333;
}
.btn-dropdown .dropdown.show {
  display: block;
}

.search-dropdown {
  position: relative;
}
.search-dropdown .dropdown {
  position: absolute;
  z-index: 1;
  left: 0;
  white-space: nowrap;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 4px;
  padding: 4px;
  width: 100%;
  max-height: 140px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
}
.search-dropdown .dropdown li {
  padding: 6px;
  font-size: 12px;
  border-bottom: 1px solid #f4f4f4;
  cursor: pointer;
}
.search-dropdown .dropdown li:last-child {
  border: 0;
}

.ecom-page > .table-wrapper {
  overflow: auto;
}
@media (min-width: 1024px) {
  .ecom-page > .table-wrapper {
    overflow: unset;
  }
}

.create-ticket-page .modal-dialog,
.change-status-page .modal-dialog {
  height: 100%;
}
.create-ticket-page .page-title,
.change-status-page .page-title {
  margin-bottom: 40px;
}
.create-ticket-page .container,
.change-status-page .container {
  padding: 15px;
}
@media (min-width: 1024px) {
  .create-ticket-page .container,
  .change-status-page .container {
    padding: 28px;
  }
}
.create-ticket-page .modal-dialog .modal-body .search-wrapper,
.change-status-page .modal-dialog .modal-body .search-wrapper {
  position: relative;
  top: 0;
  margin: 0;
  background: #fff;
  padding: 12px 0;
  display: grid;
  grid-template: 40px / 1fr;
  grid-gap: 14px;
}
@media (min-width: 768px) {
  .create-ticket-page .modal-dialog .modal-body .search-wrapper,
  .change-status-page .modal-dialog .modal-body .search-wrapper {
    padding: 0;
  }
}
.create-ticket-page .modal-dialog .modal-body .search-wrapper .search-form,
.change-status-page .modal-dialog .modal-body .search-wrapper .search-form {
  padding: 5px 10px;
  height: 42px;
  background: #f4f4f4;
  width: 100%;
  display: flex;
  border-radius: 6px;
}
.create-ticket-page .modal-dialog .modal-body .search-wrapper .search-form svg,
.change-status-page .modal-dialog .modal-body .search-wrapper .search-form svg {
  margin-right: 10px;
}
.create-ticket-page .modal-dialog .modal-body .search-wrapper .search-form input,
.change-status-page .modal-dialog .modal-body .search-wrapper .search-form input {
  flex-grow: 1;
  border: 0;
  background: transparent;
  height: 100%;
}
.create-ticket-page .modal-dialog .modal-body .search-wrapper .dropdown,
.change-status-page .modal-dialog .modal-body .search-wrapper .dropdown {
  position: absolute;
  z-index: 1;
  left: 0;
  white-space: nowrap;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 4px;
  padding: 4px;
  width: 100%;
  max-height: 140px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
}
.create-ticket-page .modal-dialog .modal-body .search-wrapper .dropdown li,
.change-status-page .modal-dialog .modal-body .search-wrapper .dropdown li {
  padding: 6px;
  font-size: 12px;
  border-bottom: 1px solid #f4f4f4;
  cursor: pointer;
}
.create-ticket-page .form,
.create-ticket-page .form-2,
.change-status-page .form,
.change-status-page .form-2 {
  display: grid;
  grid-gap: 22px;
  align-items: self-start;
}
@media (min-width: 768px) {
  .create-ticket-page .form,
  .create-ticket-page .form-2,
  .change-status-page .form,
  .change-status-page .form-2 {
    grid-template: auto / 1fr 34%;
  }
}
@media (min-width: 1024px) {
  .create-ticket-page .form,
  .create-ticket-page .form-2,
  .change-status-page .form,
  .change-status-page .form-2 {
    grid-gap: 28px;
  }
}
@media (min-width: 768px) {
  .create-ticket-page .form .full-width,
  .create-ticket-page .form-2 .full-width,
  .change-status-page .form .full-width,
  .change-status-page .form-2 .full-width {
    grid-column: 1 / 3;
  }
}
.create-ticket-page .form .content.right,
.create-ticket-page .form-2 .content.right,
.change-status-page .form .content.right,
.change-status-page .form-2 .content.right {
  position: sticky;
  top: 0;
}
.create-ticket-page .form .content.right .search-wrapper,
.create-ticket-page .form-2 .content.right .search-wrapper,
.change-status-page .form .content.right .search-wrapper,
.change-status-page .form-2 .content.right .search-wrapper {
  position: sticky;
  z-index: 1;
  top: 0;
  left: 0;
}
.create-ticket-page .form .content.right ul,
.create-ticket-page .form-2 .content.right ul,
.change-status-page .form .content.right ul,
.change-status-page .form-2 .content.right ul {
  padding: 10px 0;
  position: relative;
}
.create-ticket-page .form .content.right ul .lds-ring,
.create-ticket-page .form-2 .content.right ul .lds-ring,
.change-status-page .form .content.right ul .lds-ring,
.change-status-page .form-2 .content.right ul .lds-ring {
  position: absolute;
  top: 50px;
}
.create-ticket-page .form .content.right ul .item,
.create-ticket-page .form-2 .content.right ul .item,
.change-status-page .form .content.right ul .item,
.change-status-page .form-2 .content.right ul .item {
  padding: 12px;
  border: 1px solid #e1e1e1;
  margin-bottom: 16px;
  border-radius: 4px;
}
.create-ticket-page .form .content.right ul .item:last-child,
.create-ticket-page .form-2 .content.right ul .item:last-child,
.change-status-page .form .content.right ul .item:last-child,
.change-status-page .form-2 .content.right ul .item:last-child {
  margin-bottom: 0;
}
.create-ticket-page .form .content.right ul .item.active,
.create-ticket-page .form-2 .content.right ul .item.active,
.change-status-page .form .content.right ul .item.active,
.change-status-page .form-2 .content.right ul .item.active {
  border-color: #1266f1;
  background: #e7f0ff;
}
.create-ticket-page .form .content.right ul .item p,
.create-ticket-page .form-2 .content.right ul .item p,
.change-status-page .form .content.right ul .item p,
.change-status-page .form-2 .content.right ul .item p {
  margin-bottom: 4px;
}
.create-ticket-page .form .content.right ul .item p:last-child,
.create-ticket-page .form-2 .content.right ul .item p:last-child,
.change-status-page .form .content.right ul .item p:last-child,
.change-status-page .form-2 .content.right ul .item p:last-child {
  margin-bottom: 0;
}
.create-ticket-page .form .content.right .parent,
.create-ticket-page .form .content.right .child,
.create-ticket-page .form-2 .content.right .parent,
.create-ticket-page .form-2 .content.right .child,
.change-status-page .form .content.right .parent,
.change-status-page .form .content.right .child,
.change-status-page .form-2 .content.right .parent,
.change-status-page .form-2 .content.right .child {
  /*
      position: relative;
      input[type="checkbox"] {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0, -50%);
      }
      */
  display: grid;
  grid-template: auto / 1fr 14px;
  grid-gap: 8px;
  align-items: center;
}
.create-ticket-page .form .content.right .child-list,
.create-ticket-page .form-2 .content.right .child-list,
.change-status-page .form .content.right .child-list,
.change-status-page .form-2 .content.right .child-list {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e1e1e1;
}
.create-ticket-page .form .content.right .child-list .child,
.create-ticket-page .form-2 .content.right .child-list .child,
.change-status-page .form .content.right .child-list .child,
.change-status-page .form-2 .content.right .child-list .child {
  margin-bottom: 14px;
}
.create-ticket-page .form .content.right .child-list .child:last-child,
.create-ticket-page .form-2 .content.right .child-list .child:last-child,
.change-status-page .form .content.right .child-list .child:last-child,
.change-status-page .form-2 .content.right .child-list .child:last-child {
  margin-bottom: 0;
}
.create-ticket-page .form .content.right .child-list.show,
.create-ticket-page .form-2 .content.right .child-list.show,
.change-status-page .form .content.right .child-list.show,
.change-status-page .form-2 .content.right .child-list.show {
  display: block;
}
.create-ticket-page .form .content.left .form-group,
.create-ticket-page .form-2 .content.left .form-group,
.change-status-page .form .content.left .form-group,
.change-status-page .form-2 .content.left .form-group {
  margin-bottom: 16px;
}
.create-ticket-page .form .content.left .product-list input[name="set_all_quantity"],
.create-ticket-page .form-2 .content.left .product-list input[name="set_all_quantity"],
.change-status-page .form .content.left .product-list input[name="set_all_quantity"],
.change-status-page .form-2 .content.left .product-list input[name="set_all_quantity"] {
  width: 80px;
  margin-left: auto;
}
.create-ticket-page .modal-dialog .form-2,
.change-status-page .modal-dialog .form-2 {
  padding: 0;
}
@media (min-width: 768px) {
  .create-ticket-page .modal-dialog .form-2,
  .change-status-page .modal-dialog .form-2 {
    grid-template: auto / 1fr 30%;
  }
}
.create-ticket-page .form-2,
.change-status-page .form-2 {
  height: 100%;
  align-items: stretch;
  grid-gap: 0;
}
.create-ticket-page .form-2 .content.left,
.create-ticket-page .form-2 .content.right,
.change-status-page .form-2 .content.left,
.change-status-page .form-2 .content.right {
  padding: 15px;
  height: auto;
}
.create-ticket-page .form-2 .content.right,
.change-status-page .form-2 .content.right {
  border-left: 1px solid #e1e1e1;
  position: relative;
}
.create-ticket-page .form-2 .content.right::before,
.change-status-page .form-2 .content.right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: #fff;
  display: block;
}
.create-ticket-page .form-2 .content.right ul,
.change-status-page .form-2 .content.right ul {
  padding: 10px 0;
}

.login-page .login-modal {
  height: 100vh;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .login-page .login-modal {
    height: auto;
    border-radius: 8px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
    margin: 50px auto 0;
    max-width: 400px;
  }
}
.login-page .login-modal .input {
  padding: 10px;
}
.login-page .login-modal .form-group {
  position: relative;
}
.login-page .login-modal .form-group .show-password {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 10px;
  background: transparent;
  border: 0;
}

.ticket-detail-page .ticket-infomation {
  display: grid;
  grid-gap: 24px;
  align-items: self-start;
}
@media (min-width: 1024px) {
  .ticket-detail-page .ticket-infomation {
    grid-gap: 40px;
    grid-template: auto / 1fr 60%;
  }
}
.ticket-detail-page .ticket-infomation .form-group.two-item {
  grid-template: auto / 25% 1fr;
}
.ticket-detail-page .ticket-infomation .arrow {
  margin: 0 16px;
}
.ticket-detail-page .ticket-infomation .sticky {
  position: sticky;
  top: 0;
}

.lost-modal .checklist .label {
  display: grid;
  grid-gap: 12px;
  grid-template: auto / 1fr auto 60px auto;
  padding: 14px 0;
  border-bottom: 1px solid #cecece;
}
.lost-modal .checklist .label:last-child {
  border-bottom: 0;
}
.lost-modal .checklist .label .name {
  font-weight: 600;
}

.home-page .change-ecom {
  padding: 10px 10px 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .home-page .change-ecom {
    padding: 10px 15px 0;
  }
}
.home-page .change-ecom a,
.home-page .change-ecom span {
  display: inline-block;
  padding: 10px 12px;
  font-size: 12px;
  margin: 6px 12px 6px 0;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.5;
}
.home-page .change-ecom a:last-child,
.home-page .change-ecom span:last-child {
  margin-right: 0;
}
.home-page .change-ecom a.active,
.home-page .change-ecom span.active {
  opacity: 1;
}
.home-page .change-ecom a.shopee,
.home-page .change-ecom span.shopee {
  background: #e64807;
}
.home-page .change-ecom a.lazada,
.home-page .change-ecom span.lazada {
  background: #0e1467;
}
.home-page .change-ecom a.store,
.home-page .change-ecom span.store {
  background: #00bcd4;
}
.home-page .change-ecom a.web,
.home-page .change-ecom span.web {
  background: #333;
}
@media (min-width: 1024px) {
  .home-page .change-ecom a,
  .home-page .change-ecom span {
    padding: 10px 18px;
    font-size: inherit;
  }
}
.home-page .nav-tab {
  background: #f4f4f4;
}
.home-page .nav-tab .nav-item {
  flex-grow: unset;
}
.home-page .nav-tab.main-status {
  border: 1px solid #e1e1e1;
}
.home-page .nav-tab.main-status .nav-item {
  border-left: 1px solid #e1e1e1;
}
.home-page .nav-tab.main-status .nav-item.active {
  background: #fff;
}
.home-page .nav-tab.main-status .nav-item:first-child {
  border-left: 0;
}
.home-page .sub-status .nav-tab {
  border: 1px solid #e1e1e1;
}
.home-page .sub-status .nav-tab .nav-item {
  border-left: 1px solid #e1e1e1;
}
.home-page .sub-status .nav-tab .nav-item.active {
  border: 0;
  background: #fff;
}
.home-page .sub-status .nav-tab .nav-item.active::before {
  border-color: #f93154;
}
.home-page .table tr th,
.home-page .table tr td {
  white-space: normal;
}
.home-page .table .product-table p,
.home-page .table .product-tableee p {
  margin: 0 -6px 6px;
  padding: 6px;
  border-bottom: 1px solid #e1e1e1;
}
.home-page .table .product-table p:last-child,
.home-page .table .product-tableee p:last-child {
  border-bottom: 0;
}
.home-page .table .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  display: none;
  z-index: 1;
}
.home-page .table .dropdown ul {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px 0 rgba(155, 155, 155, 0.4);
  padding: 6px;
}
.home-page .table .dropdown ul li {
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  padding: 4px 6px;
  color: #333;
  text-align: left;
}
.home-page .table .dropdown ul li:hover {
  background: #f4f4f4;
}
.home-page .table .dropdown.show {
  display: block;
}
.home-page .table .status {
  color: #fff;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 2px;
  white-space: nowrap;
}
.home-page .table .status.approved {
  background: #00bcd4;
}
.home-page .table .status.completed {
  background: #4caf50;
}
.home-page .table .status.shipped {
  background: #00897b;
}
.home-page .table .status.new {
  background: #1266f1;
}
.home-page .table .status.canceled {
  background: #f93154;
}
.home-page .table .status.packaged {
  background: #ffa900;
}
.home-page .table .status svg {
  margin-left: 4px;
  fill: #fff;
}
.home-page .table .status .dropdown {
  left: auto;
  right: 0;
}
.home-page .order-title {
  padding: 15px 0;
  display: grid;
  grid-template: auto / auto 34px 34px;
  grid-gap: 12px;
  align-items: center;
}
.home-page .order-title .btn,
.home-page .order-title .input {
  padding: 6px;
}
.home-page .order-title .btn {
  width: 34px;
  height: 34px;
}
.home-page .order-title b {
  font-size: 14px;
  font-weight: 600;
}
.home-page .order-title select {
  padding: 8px;
}
.home-page .order-title b,
.home-page .order-title .name {
  grid-column: 1 / 4;
}
@media (min-width: 1024px) {
  .home-page .order-title {
    grid-template: auto / 1fr auto 34px 34px 34px;
  }
  .home-page .order-title b,
  .home-page .order-title .name {
    font-size: 16px;
    grid-column: auto;
  }
}
.home-page .filter-order {
  background: #fff;
}
.home-page .filter-order .list-order {
  display: none;
}
.home-page .filter-order .list-order.show {
  display: block;
}
.home-page .filter-options {
  padding: 10px;
  background: #f4f4f4;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
}
@media (min-width: 1024px) {
  .home-page .filter-options {
    padding: 15px;
  }
}
.home-page .filter-options .row {
  display: grid;
  grid-gap: 8px;
  grid-template: auto / 1fr 1fr;
  margin-bottom: 14px;
  align-items: flex-end;
}
.home-page .filter-options .row input,
.home-page .filter-options .row .select-wrap {
  height: 35px;
}
@media (min-width: 1024px) {
  .home-page .filter-options .row {
    grid-gap: 12px;
    grid-template: auto/repeat(5, 1fr);
  }
}
.home-page .filter-options .label {
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}
.home-page .filter-options .btn {
  padding: 5px 12px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  white-space: nowrap;
}
.home-page .filter-options .row-2 {
  display: flex;
  flex-wrap: wrap;
}
.home-page .filter-options .row-2 .btn {
  margin-right: 8px;
  margin-bottom: 8px;
}
.home-page .filter-options .row-2 .btn:last-child {
  margin-right: 0;
}
@media (min-width: 1024px) {
  .home-page .filter-options .row-2 .btn {
    margin-right: 12px;
    margin-bottom: 0;
  }
}
.home-page .filter-options .create-order {
  position: relative;
}
.home-page .filter-options .create-order svg {
  margin-left: 6px;
  fill: #fff;
}
.home-page .filter-options .create-order .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  display: none;
}
.home-page .filter-options .create-order .dropdown.show {
  display: block;
}
.home-page .filter-options .create-order .dropdown ul {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  padding: 4px;
  white-space: nowrap;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
  min-width: 180px;
}
.home-page .filter-options .create-order .dropdown ul li {
  color: #333;
  display: none;
  text-align: left;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 14px;
  height: 42px;
  display: flex;
  align-items: center;
  position: relative;
}
.home-page .filter-options .create-order .dropdown ul li:hover {
  background: #f4f4f4;
}
.home-page .filter-options .create-order .dropdown ul li input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.home-page .filter-options .search-dropdown {
  position: relative;
}
.home-page .filter-options .search-dropdown .dropdown {
  position: absolute;
  z-index: 111;
  left: 0;
  white-space: nowrap;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 4px;
  padding: 4px;
  min-width: 300px;
  max-width: 300px;
  max-height: 200px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
}
.home-page .filter-options .search-dropdown .dropdown::-webkit-scrollbar-track {
  background: #fff;
}
.home-page .filter-options .search-dropdown .dropdown li {
  padding: 6px;
  font-size: 12px;
  border-bottom: 1px solid #f4f4f4;
  cursor: pointer;
}
.home-page .filter-options .search-dropdown .dropdown li:last-child {
  border: 0;
}
.home-page .filter-options .search-dropdown .dropdown li:hover {
  background: #f4f4f4;
}
.home-page .pagination {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 11;
}

.stock-page .header {
  z-index: 1;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  margin-bottom: 12px;
}
.stock-page .header .grid-row {
  position: relative;
  display: grid;
  grid-template: auto / 1fr 44px 44px;
  grid-gap: 10px;
  padding: 12px 10px;
}
@media (min-width: 1024px) {
  .stock-page .header .grid-row {
    grid-template: auto / 1fr auto auto auto;
    padding: 12px 15px;
  }
}
.stock-page .header .grid-row.type-2 {
  grid-template: 44px / 1fr 20% auto;
}
@media (min-width: 1024px) {
  .stock-page .header .grid-row.type-2 {
    grid-template: 44px / 1fr 25% auto;
  }
}
.stock-page .header .search-form {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid #cecece;
}
.stock-page .header .search-form svg {
  margin-right: 10px;
}
.stock-page .header .search-form input {
  width: 100%;
  border: 0;
  padding: 2px;
  height: 100%;
}
.stock-page .header .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 12px 0;
}
@media (min-width: 1024px) {
  .stock-page .header .btn {
    padding: 14px 16px;
  }
}
@media (min-width: 1024px) {
  .stock-page .header .btn svg {
    margin-right: 8px;
  }
}
.stock-page .header .btn span {
  display: none;
}
@media (min-width: 1024px) {
  .stock-page .header .btn span {
    display: inline-block;
  }
}
.stock-page .header .upload-excel {
  position: relative;
}
.stock-page .header .upload-excel input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.stock-page .header .product-filter {
  z-index: 1;
  position: absolute;
  right: 0;
  left: 50%;
  transform: translate(-50%, 0);
  top: 100%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: none;
}
@media (min-width: 768px) {
  .stock-page .header .product-filter {
    width: 100%;
    max-width: 400px;
    right: 10px;
    left: auto;
    transform: none;
  }
}
@media (min-width: 1024px) {
  .stock-page .header .product-filter {
    right: 15px;
  }
}
.stock-page .header .product-filter.show {
  display: block;
}
.stock-page .header .product-filter .btn-primary {
  width: 100%;
  padding: 8px;
}
.stock-page .header .product-filter .form-group {
  grid-gap: 5px 14px;
  display: grid;
}
.stock-page .header .product-filter .form-group.two-column {
  grid-template: auto / 1fr 1fr;
}
.stock-page .header .product-filter .form-group:last-child {
  margin-bottom: 0;
}
.stock-page .header .product-filter .form-group.mb-0 {
  margin-bottom: 0;
}
.stock-page .header .product-filter .btn {
  padding: 10px;
  height: auto;
}
.stock-page .header .product-filter .btn-row {
  padding: 12px 0 0;
}
.stock-page .header .product-filter .input {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid #e1e1e1;
  border-radius: 0;
}
.stock-page .header .product-filter .input select,
.stock-page .header .product-filter .select-wrap select {
  padding: 0;
}
.stock-page .table th {
  position: sticky;
  top: 0;
}
.stock-page .grid-row {
  display: grid;
  grid-gap: 15px;
}
.stock-page .grid-row.type-3 {
  grid-template: 44px / 1fr 1fr;
}
@media (min-width: 1024px) {
  .stock-page .grid-row.type-3 {
    grid-template: 44px / 1fr 1fr 1fr 1fr;
  }
}

.stock-detail-modal .table th {
  position: sticky;
  top: -15px;
}
.stock-detail-modal .table td {
  vertical-align: top;
}

.create-handover-page .modal-dialog {
  height: 100%;
}
.create-handover-page .form-row {
  display: grid;
  grid-gap: 12px;
  grid-template: auto/repeat(5, 1fr);
  margin-bottom: 12px;
}
.create-handover-page .form-row-2 {
  display: grid;
  grid-gap: 12px;
  grid-template: auto / 1fr auto auto;
}

.change-status-page .form-group {
  display: grid;
  grid-template: auto / 20% 1fr;
}
.change-status-page .form-group.three-item {
  grid-gap: 12px;
  grid-template: auto / 20% 1fr 1fr;
}

.print-barcode-page .container {
  padding: 15px;
}
.print-barcode-page .search-wrapper {
  display: grid;
  grid-gap: 15px;
  grid-template: auto / 1fr auto auto;
  margin-bottom: 25px;
}
.print-barcode-page .table thead button {
  background: transparent;
  border: 0;
  margin-left: 6px;
  padding: 8px;
}
.print-barcode-page .search-form {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid #cecece;
}
.print-barcode-page .search-form svg {
  margin-right: 10px;
}
.print-barcode-page .search-form input {
  width: 100%;
  border: 0;
  padding: 2px;
}

.button-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: none;
}

.confirm-modal-select-wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.confirm-modal-select-wrapper select {
  text-align: center;
  width: 40%;
  height: 50px;
}

.search-content {
  height: 100%;
}

/*# sourceMappingURL=main.css.map */
