html,
body,
#divMain {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #eee;
  overflow-x: hidden;
  overflow-y: hidden;
  color: #404040;
  font-family: 'Montserrat';
}
html {
  -webkit-text-size-adjust: auto !important;
  -ms-text-size-adjust: auto !important;
}
* {
  min-width: 0;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.scroll-y {
  overflow-y: auto;
}
.flex-grow {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
}
.flex-grow-1 {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
}
.flex-grow-4 {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  -webkit-flex-grow: 4;
  flex-grow: 4;
}
.flex-noshrink {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.background-contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.background-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hidden {
  display: none !important;
}
*[disabled] {
  opacity: 0.6;
  pointer-events: none;
}
.right {
  float: right;
}
.nowrap {
  white-space: nowrap;
}
.before-bar {
  position: relative;
}
.before-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ed1b24;
  width: 8px;
  height: 100%;
}
.pointer {
  cursor: pointer;
}
.red {
  color: red;
}
.no-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 18px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 14px 14px transparent;
  border: solid 6px transparent;
}
::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 14px 14px #bbbbbe;
  border: solid 6px transparent;
  border-radius: 16px;
}
::-webkit-scrollbar-button {
  display: none;
}
.panel {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 16px 0px 32px;
  border-radius: 2px;
}
.panel .content {
  background-color: white;
  border-radius: 2px;
  padding: 32px;
}
.panel > .title {
  background-color: #f6f6f6;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 500;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  position: relative;
}
.panel > .title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ed1b24;
  width: 8px;
  height: 100%;
}
.panel > .title + .content {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.panel .large-title {
  background-color: #f6f6f6;
  padding: 20px 32px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  font-weight: bold;
  color: #404040;
}
.panel .large-title .icon {
  color: #bfbfbf;
  font-size: 26px;
  margin-right: 12px;
  vertical-align: sub;
}
.panel.collapsible .title {
  cursor: pointer;
}
.panel.collapsible .title:after {
  content: "\f363";
  font-family: 'Ionicons';
  font-size: 24px;
  position: absolute;
  right: 8px;
  width: 24px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.panel.collapsible .title + .content {
  display: none;
}
.panel.collapsible.openDefault .content {
  display: block;
}
.panel.collapsible.opened .title:after {
  content: "\f35f";
}
.htmlKeyboard .key-row {
  display: flex;
}
.htmlKeyboard .key {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  background-color: #ed1b24;
  padding: 8px;
  margin: 4px;
  width: 60px;
  height: 60px;
  border-radius: 2px;
  color: white;
  text-transform: uppercase;
}
.htmlKeyboard .key.key-2 {
  width: 128px;
}
.form .inputBlock {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  margin-bottom: 10px;
}
.form .inputBlock label {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-bottom: 0px;
  width: 200px;
}
.form .inputBlock.radio .checkboxContainer label,
.form .inputBlock.checkbox .checkboxContainer label,
.form .inputBlock.radio .radioContainer label,
.form .inputBlock.checkbox .radioContainer label {
  width: auto;
}
.pageTitle {
  background-color: #f6f6f6;
  padding: 16px;
  padding-left: 48px;
  padding-top: 24px;
}
.pageTitle .title {
  font-size: 24px;
  font-weight: bold;
  position: relative;
}
.pageTitle .title .icon {
  position: absolute;
  left: 0;
  top: 50%;
  color: #aaa;
  transform: translateX(-150%) translateY(-50%);
}
.pageTitle .subtitle {
  color: #555;
}
.modal .modal-content {
  border: none;
  border-radius: 2px;
  box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.2);
}
.modal .modal-content .modal-header {
  background-color: #f0f0f0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  font-weight: bold;
  font-size: 18px;
  padding: 16px 32px;
  position: relative;
}
.modal .modal-content .modal-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ed1b24;
  width: 8px;
  height: 100%;
}
.modal .modal-content .modal-header h1,
.modal .modal-content .modal-header h2,
.modal .modal-content .modal-header h3,
.modal .modal-content .modal-header h4,
.modal .modal-content .modal-header h5 {
  margin-bottom: 0;
}
.modal .modal-content .modal-body {
  padding: 32px;
}
.modal .modal-content .modal-body hr {
  margin: 16px -32px;
}
input[type=checkbox],
input[type="radio"]  {
  display: none;
}
input[type=checkbox] + label,
input[type="radio"]  + label {
  position: relative;
  padding: 4px;
  padding-left: 36px;
  cursor: pointer;
}
input[type=checkbox] + label:before,
input[type="radio"]  + label:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: transparent;
  box-shadow: 0px 0px 0px 3px #ed1b24;
  border: 3px solid transparent;
  position: absolute;
  left: 3px;
  top: 3px;
}
input[type=checkbox]:checked + label:before {
  content: "\f122";
  font-family: "Ionicons";
  color: #ed1b24;
  font-size: 24px;
  padding-bottom: 0px;
}
input[type="radio"] + label:before {
  border-radius: 50%;
}
input[type=radio]:checked + label:before {
  background-color: #ed1b24;
}
/* Fixes */
.dataTables_wrapper {
  overflow-x: auto;
  padding: 0px;
}
.dataTables_wrapper:not(:last-child) {
  padding-bottom: 20px;
}
.dataTables_wrapper .dataTable thead {
  background-color: #f3f3f3;
}
.dataTables_wrapper .dataTable thead th {
  border-bottom: none;
  border-top: none;
}
.dataTables_wrapper .dataTable tbody td a {
  font-weight: 600;
}
.dataTables_wrapper .dataTable tbody td a:not(:last-child) {
  margin-right: 10px;
}
.table tbody td a {
  font-weight: 600;
}
.table tbody td a:not(:last-child) {
  margin-right: 10px;
}
.select2-container {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  margin: 5px 2px;
  width: auto !important;
  display: block;
}
.select2-container .select2-selection--single {
  min-height: 40px;
  height: initial;
  padding: 4px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #eee;
  color: inherit;
}
.select2-container--default .select2-selection--single {
  border-color: #ced4da;
}
.select2-hidden-accessible {
  display: none !important;
}
.clearSelectValue {
  font-size: 35px;
  line-height: 20px;
  padding: 5px 10px !important;
  margin-bottom: 6px;
}
.genericForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.genericForm label {
  margin: 0px;
  font-size: 18px;
}
.genericForm label:not(:first-of-type) {
  margin-top: 16px;
}
.genericForm .genericTitle {
  margin-bottom: 0px;
}
.genericForm .genericButtons {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.genericForm .genericButtons .genericCancel {
  margin-right: 16px;
}
.genericForm .genericButtons .genericSubmit {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.genericForm .genericDynamic {
  margin-bottom: 8px;
}
.genericForm .genericDynamic .entry {
  margin-bottom: 8px;
}
.genericForm [data-nested] {
  padding-left: 16px;
}
ul {
  list-style-position: inside;
  padding-left: 0px;
}
.nav-fill .nav-item {
  -webkit-flex-basis: 0;
  flex-basis: 0;
}
/* Divs */
#divGlobal {
  height: 100% !important;
}
#divGlobal #divHeader {
  height: 64px;
  background-color: white;
  box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#divGlobal #divHeader .btnLogout {
  height: 64px;
  width: 64px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
#divGlobal #divHeader .btnLogout svg {
  height: 25px;
  width: 25px;
  margin-right: 10px;
  fill: #bfbfbf;
}
#divGlobal #divRegionMainContainer {
  height: 100% !important;
}
#divGlobal #divRegionMainContainer #divLeftMenu {
  width: 220px;
  background-color: #404040;
  color: #ddd;
  box-shadow: 2px 0px 8px 1px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: margin-left 0.4s ease;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuHeader {
  height: 64px;
  background-color: #212121;
  padding: 16px;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuHeader .image {
  width: 100% !important;
  height: 100% !important;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/logo.png");
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems {
  background-color: #404040;
  overflow-y: auto;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem {
  border-bottom: 1px solid #505050;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  line-height: 1.2;
  font-size: 18px;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  color: white;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .title:hover {
  text-decoration: none;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .title:not([href]):after {
  content: "\f363";
  font-family: 'Ionicons';
  font-size: 24px;
  position: absolute;
  right: 8px;
  width: 24px;
  top: 50%;
  color: #808080;
  transform: translateY(-50%);
  text-align: center;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .title.opened:not([href]):after {
  content: "\f35f";
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .title span:last-child {
  color: #bfbfbf;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .title > span {
  width: 18px;
  margin-right: 12px;
  display: inline-block;
  color: #808080;
  text-align: center;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .items {
  background-color: #666666;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .items .item {
  text-decoration: none;
  display: block;
  width: 100%;
  color: #bbb;
  padding: 12px;
  padding-left: 24px;
  transition: background-color 0.3s ease;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .items .item:hover {
  background-color: #5f5f5f;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .items .item.active {
  background-color: #545454;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem .items .separator {
  font-size: 14px;
  padding: 0px 8px 0px 24px;
  border-bottom: 1px solid white;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem.active .title {
  background-color: #4a4a4a;
  position: relative;
}
#divGlobal #divRegionMainContainer #divLeftMenu .menuItems .menuItem.active .title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ed1b24;
  width: 8px;
  height: 100%;
}
#divGlobal #divRegionMainContainer #divLeftMenu .version {
  text-align: end;
  padding: 10px 24px;
  color: #bfbfbf;
  opacity: 50%;
  font-size: 12px;
}
#divGlobal #divRegionMainContainer #loggedInInfo {
  padding: 25px 22px 20px 22px;
  line-height: 1.2;
  background-color: #4c4c4c;
  height: 100px;
}
#divGlobal #divRegionMainContainer #loggedInInfo .welcome {
  font-weight: 300;
  font-size: 14px;
}
#divGlobal #divRegionMainContainer #loggedInInfo .user {
  font-weight: 600;
}
#divGlobal #divRegionMainContainer #loggedInInfo .type {
  font-weight: 300;
  font-size: 14px;
}
#divGlobal #divRegionMainContainer #divRight {
  overflow-x: auto;
}
#divGlobal #divRegionMainContainer #divRight #divHeader .toggleLeftMenu {
  font-size: 32px;
  margin: 0px 16px;
  color: black;
}
#divGlobal #divRegionMainContainer #divRegionMain {
  overflow-y: auto;
}
#divGlobal #divRegionMainContainer #divRegionMain > div {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  overflow-x: auto;
}
#divToasts {
  position: fixed;
  top: 128px;
  right: 128px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
  z-index: 2000;
}
#divToasts .toast {
  padding: 8px 16px;
  background-color: #333;
  color: white;
  border: 1px solid black;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 8px;
  animation-name: slide-left;
  animation-duration: 0.4s;
  overflow: visible;
}
#divToasts .toast.out {
  animation-name: slide-out-left;
  animation-duration: 0.4s;
}
@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slide-out-left {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@media (min-width: 1200px) {
  #divRight #divRegionMain > div > .container-fluid {
    padding: 30px 80px 0 80px;
  }
}
@media (max-width: 1199px) {
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos .divHeader .togglePosMenu .icon {
    padding: 10px 25px;
  }
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos .pos-content {
    overflow: hidden;
  }
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos #divPosMenu {
    margin-left: -260px;
    z-index: 2;
    transition: margin-left 0.3s ease;
  }
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos #divPosMenu .togglePosMenu:after {
    content: "";
    width: 150rem;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: transparent;
    transition: background-color 0.3s ease;
  }
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos #divPosMenu:not(.opened) {
    box-shadow: none;
  }
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos #divPosMenu:not(.opened) .togglePosMenu:after {
    pointer-events: none;
  }
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos #divPosMenu.opened {
    margin-left: 0;
    position: relative;
  }
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos #divPosMenu.opened .togglePosMenu:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
  }
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos #posRight {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    overflow-x: visible;
  }
  #divGlobal #divRegionMainContainer #divRight #divRegionMain #divPos #posRight #divPosSale {
    width: 400px;
    max-width: 400px;
  }
}
@media (max-width: 1500px) {
  #divPos #posRight #divPosSale {
    width: 400px;
    max-width: 400px;
  }
  #divPosSearchCart .items .item .header,
  #divPosSearchReceipt .items .item .header {
    padding: 15px 20px !important;
  }
  #divPosSearchCart .items .item .header .actions button,
  #divPosSearchReceipt .items .item .header .actions button {
    width: 45px !important;
    margin: 0 1px !important;
  }
  #divPosSearchCart .items .item .header .name,
  #divPosSearchReceipt .items .item .header .name {
    margin-right: 10px !important;
  }
}
#divProducts #tableProductsList .carouselContainer {
  width: 60px;
  height: 60px;
}
#divProducts #tableProductsList .carouselContainer .carousel {
  height: 100%;
}
#divProducts #tableProductsList .carouselContainer .step {
  height: 100%;
}
#divProducts #tableProductsList td {
  vertical-align: middle;
}
.dataTable td:last-child {
  white-space: nowrap;
}
#divEditProduct > .container-fluid {
  padding: 30px 80px 0 80px;
}
#divEditProduct #divPanelImages .images {
  margin: 16px 0px;
}
#divEditProduct #divPanelImages .images .image {
  height: 120px;
  width: 120px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 8px;
  position: relative;
}
#divEditProduct #divPanelImages .images .image:first-of-type {
  border: 2px solid #ed1b24;
}
#divEditProduct #divPanelImages .images .image .delete {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 32px;
  height: 32px;
}
#divEditProduct #aTitleTranslation,
#divEditProduct #aDescriptionTranslation {
  font-size: 12px;
  display: block;
  width: fit-content;
  margin-top: -4px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 100%;
}
#modalFileDialog .nav-tabs {
  margin-bottom: -17px;
  margin-left: -16px;
  margin-top: 16px;
}
#modalFileDialog .nav-tabs .nav-link {
  border-radius: 2px;
  font-size: 14px;
  padding: 4px 16px;
  color: #333;
}
#modalFileDialog .nav-tabs .nav-link:not(.active) {
  border: none;
}
#modalFileDialog .divAllImages .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  height: 400px;
  overflow-y: auto;
  padding: 8px;
  margin-top: 16px;
}
#modalFileDialog .divAllImages .images .image {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 4px;
  background-color: white;
}
#modalFileDialog .divAllImages .images .image.selected {
  box-shadow: 0px 0px 0px 4px #ed1b24;
}
#divReceptionRegionMain #divIndex .indexItem {
  margin: 10px 16px;
  position: relative;
  padding-left: 65px;
}
#divReceptionRegionMain #divIndex .indexItem .count {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ed1b24;
  color: white;
  font-weight: bold;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  line-height: 1;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
#divIndex .panel {
  margin: 45px 0 0 0;
}
#divIndex .panel > .title {
  background-color: white;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
#divIndex .panel > .title .icon {
  margin-right: 20px;
  font-size: 20px;
  line-height: 1;
  color: #aaa;
}
#divIndex .panel > .content {
  padding: 20px 60px;
  background-color: #f6f6f6;
}
#divIndex .indexItem {
  width: 400px;
  min-height: 100px;
  background-color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 40px 16px;
  position: relative;
  padding: 16px;
  text-align: right;
  color: #404040;
  text-decoration: none;
  padding-right: 48px;
}
#divIndex .indexItem.scanItem:after {
  content: "\f3db";
  font-weight: bold;
  width: 40px;
  font-size: 30px;
}
#divIndex .indexItem:after {
  content: "\f125";
  font-family: "Ionicons";
  width: 32px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  font-size: 24px;
  color: #aaa;
}
#divIndex .indexItem .title {
  font-size: 18px;
}
#divIndex .indexItem .description {
  font-size: 14px;
  color: #888;
}
#divIndex .indexItem .icon {
  position: absolute;
  background-color: #ed1b24;
  color: white;
  width: 96px;
  height: 96px;
  bottom: 16px;
  left: 16px;
  border-radius: 8px;
  font-size: 60px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
#divPos,
#divReception {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}
#divPos .divHeader,
#divReception .divHeader {
  height: 64px;
  background-color: #212121;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
#divPos .divHeader .left,
#divReception .divHeader .left,
#divPos .divHeader .right,
#divReception .divHeader .right {
  font-size: 32px;
}
#divPos .divHeader .left .link,
#divReception .divHeader .left .link,
#divPos .divHeader .right .link,
#divReception .divHeader .right .link {
  margin: 0px 24px;
  color: white;
}
#divPos .divHeader .left .link:not(:last-of-type),
#divReception .divHeader .left .link:not(:last-of-type),
#divPos .divHeader .right .link:not(:last-of-type),
#divReception .divHeader .right .link:not(:last-of-type) {
  margin-right: 0px;
}
#divPos .divHeader .center,
#divReception .divHeader .center {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  height: 64px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#divPos {
  width: 100%;
  height: 100%;
}
#divPos .divHeader {
  background-color: #404040;
  color: white;
  box-shadow: 0px -7px 6px 6px rgba(0, 0, 0, 0.5);
}
#divPos #divPosOthers .pos-home-btn,
#divPos #divPosHome .pos-home-btn {
  width: 100%;
  display: flex;
  flex-direction: row !important;
  padding: 0 15px;
  justify-content: center;
}
#divPos #divPosOthers .btn,
#divPos #divPosHome .btn {
  max-width: 500px;
  min-width: 325px;
  font-weight: 600;
  font-size: 20px;
  flex-basis: 350px;
  flex-grow: 1;
  flex-shrink: 1;
}
#divPos #divPosMenu {
  width: 260px;
  background-color: #4d4d4d;
  box-shadow: 2px 0px 8px 1px rgba(0, 0, 0, 0.2);
}
#divPos #divPosMenu .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  padding: 8px 35px;
  color: #b3b3b3;
  text-align: center;
  text-decoration: none;
}
#divPos #divPosMenu .item:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#divPos #divPosMenu .item.active {
  color: white;
  font-weight: 500;
  background-color: #6f6f6f;
}
#divPos #divPosRegionMain {
  position: relative;
}
#divPos #divPosSale {
  width: 484px;
  max-width: 484px;
  box-shadow: -2px 0px 4px 1px rgba(0, 0, 0, 0.2);
}
#divPos #divPosSale .receipt-container .receipt-panel {
  border-radius: 2px;
  background-color: white;
}
#divPos #divPosSale .receipt-container .receipt-panel .quickUpc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#divPos #divPosSale .receipt-container .receipt-panel .quickUpc #txtQuickUpc {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  margin-right: 16px;
  margin-bottom: 0;
}
#divPos #divPosSale .receipt-container .receipt-panel .content {
  overflow-y: auto;
}
#divPos #divPosSale .receipt-container .receipt-panel .content tr {
  padding: 0px 24px;
}
#divPos #divPosSale .receipt-container .receipt-panel .content tr:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#divPos #divPosSale .receipt-container .receipt-panel .content tr td {
  padding: 8px;
}
#divPos #divPosSale .receipt-container .receipt-panel .content tr td .icon {
  height: 18px;
}
#divPos #divPosSale .receipt-container .receipt-panel .content tr td.quantity input {
  width: 48px;
  text-align: right;
}
#divPos #divPosSale .receipt-container .receipt-panel .content tr td:first-of-type {
  padding-left: 26px;
}
#divPos #divPosSale .receipt-container .receipt-panel .content tr td:last-of-type {
  padding-right: 26px;
}
#divPos #divPosSale .receipt-container .receipt-panel .content .text {
  line-height: 1.2;
}
#divPos #divPosSale .receipt-container .receipt-panel .content .text .number {
  font-size: 12px;
}
#divPos #divPosSale .receipt-container .receipt-panel .content .text .number,
#divPos #divPosSale .receipt-container .receipt-panel .content .text .description {
  color: #808080;
}
#divPos #divPosSale .receipt-container .receipt-panel .weight-box-info {
  padding: 8px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 14px;
}
#divPos #divPosSale .receipt-container .receipt-panel .weight-box-info span {
  font-weight: normal;
}
#divPos #divPosSale .receipt-container .receipt-panel .receipt-select {
  padding: 10px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
#divPos #divPosSale .receipt-container .receipt-panel .receipt-select .icon {
  font-size: 20px;
  position: absolute;
  left: 45px;
}
#divPos #divPosSale .receipt-container .receipt-panel .receipt-select select {
  margin-bottom: 0;
  padding-left: 35px;
  font-weight: bold;
}
#divPos #divPosSale .receipt-container .receipt-panel .footer {
  padding: 10px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#divPos #divPosSale .receipt-container .receipt-panel .footer .subtotal-line {
  font-size: 18px;
}
#divPos #divPosSale .receipt-container .receipt-panel .footer .tax-line {
  color: #aaa;
}
#divPos #divPosSale .receipt-container .receipt-panel .footer .total-line {
  font-size: 25px;
  font-weight: bold;
}
#divPos #divPosSale .buttons-bottom {
  background-color: #f8f8f8;
  font-weight: bold;
  padding: 10px 32px;
}
#divPos #divPosSale .buttons-bottom .control-buttons .btn {
  padding: 8px 16px;
  margin-bottom: 8px;
}
#divPos #divPosSale .buttons-bottom .control-buttons .btn:last-of-type {
  margin-bottom: 0px;
}
#divPos #divPosSale .buttons-bottom .keyboard {
  position: relative;
  padding-left: 8px;
}
#divPos #divPosSale .buttons-bottom .keyboard .key-row {
  padding-bottom: 8px;
}
#divPos #divPosSale .buttons-bottom .keyboard .key-row:last-of-type {
  padding-bottom: 0px;
}
#divPos #divPosSale .buttons-bottom .keyboard .key,
#divPos #divPosSale .buttons-bottom .keyboard .key-2,
#divPos #divPosSale .buttons-bottom .keyboard .key-enter {
  padding: 4px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  font-weight: bold;
}
#divPos #divPosSale .buttons-bottom .keyboard .key .icon,
#divPos #divPosSale .buttons-bottom .keyboard .key-2 .icon,
#divPos #divPosSale .buttons-bottom .keyboard .key-enter .icon {
  height: 18px;
}
#divPos #divPosSale .buttons-bottom .keyboard .key:not(:last-of-type),
#divPos #divPosSale .buttons-bottom .keyboard .key-2:not(:last-of-type) {
  margin-right: 8px;
}
#divPos #divPosSale .buttons-bottom .keyboard .key {
  width: 64px;
}
#divPos #divPosSale .buttons-bottom .keyboard .key-2 {
  width: 136px;
}
#divPos #divPosSale .buttons-bottom .keyboard .key-enter {
  width: 64px;
  height: 160px;
  position: absolute;
  bottom: 0;
  right: 0;
}
#divPos #divPosSale .buttons-bottom .btnInvoice,
#divPos #divPosSale .buttons-bottom .btnCancel,
#divPos #divPosSale .buttons-bottom .btnQuit,
#divPos #divPosSale .buttons-bottom .btnSlip {
  margin: 5px;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 12px;
}
#divPosSale .receipt-container .receipt-panel .header {
  padding: 4px 32px;
  background-color: #f8f8f8;
}
#divPosSale .receipt-container .receipt-panel .header .title {
  font-size: 20px;
  font-weight: bold;
}
#divPosSale .receipt-container .receipt-panel .header .in-context {
  font-weight: 500;
}
#divPosSale .receipt-container .receipt-panel .header .description {
  color: #808080;
  font-size: 14px;
  font-style: italic;
}
#divPosSale .receipt-container .receipt-panel .header #currentProject {
  font-weight: bold;
}
#divPosSale .receipt-container .receipt-panel .header .btn {
  padding: 8px 0px;
  width: 36px;
}
#divPosSale .receipt-container .receipt-panel .header .btn .icon {
  height: 18px;
}
#divPosHome .btn,
#divPosOthers .btn,
#divPosGiftcard .btn {
  padding: 16px 32px;
  width: 500px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}
#divPosRegionMain #divPosSearchProduct .search {
  border-bottom: 1px solid #ccc;
}
#divPosRegionMain #divPosSearchProduct .items {
  padding-top: 16px;
}
#divPosRegionMain #divPosSearchProduct .categories {
  padding: 17px;
  padding-top: 60px;
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
#divPosRegionMain #divPosSearchProduct .categories .categoryTitle {
  position: absolute;
  top: 16px;
  left: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
#divPosRegionMain #divPosSearchProduct .categories .categoryTitle .num {
  font-weight: bold;
  color: white;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  margin-right: 16px;
  background-color: #ed1b24;
}
#divPosRegionMain #divPosSearchProduct .categories .categoryTitle span {
  font-weight: bold;
  font-size: 17px;
}
#divPosRegionMain #divPosSearchProduct .categories .category,
#divPosRegionMain #divPosSearchProduct .categories .subCategory,
#divPosRegionMain #divPosSearchProduct .categories .subSubCategory {
  width: 180px;
  min-height: 100px;
  white-space: normal;
  padding: 25px 20px;
  margin: 25px 15px;
}
#modalEditClient .category-filter,
#divPosSearchClient .category-filter,
#divPosSearchCart .category-filter,
#divPosSearchProduct .category-filter,
#divPosSearchReceipt .category-filter {
  padding: 32px 32px 0 32px;
}
#modalEditClient .category-filter input,
#divPosSearchClient .category-filter input,
#divPosSearchCart .category-filter input,
#divPosSearchProduct .category-filter input,
#divPosSearchReceipt .category-filter input,
#modalEditClient .category-filter select,
#divPosSearchClient .category-filter select,
#divPosSearchCart .category-filter select,
#divPosSearchProduct .category-filter select,
#divPosSearchReceipt .category-filter select {
  margin: 0;
  margin-right: 16px;
  font-weight: 500;
}
#modalEditClient .category-filter .clearFilters,
#divPosSearchClient .category-filter .clearFilters,
#divPosSearchCart .category-filter .clearFilters,
#divPosSearchProduct .category-filter .clearFilters,
#divPosSearchReceipt .category-filter .clearFilters {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding: 8px 20px !important;
}
#modalEditClient .search,
#divPosSearchClient .search,
#divPosSearchCart .search,
#divPosSearchProduct .search,
#divPosSearchReceipt .search {
  padding: 17px 32px 32px 32px;
}
#modalEditClient .search input,
#divPosSearchClient .search input,
#divPosSearchCart .search input,
#divPosSearchProduct .search input,
#divPosSearchReceipt .search input,
#modalEditClient .search select,
#divPosSearchClient .search select,
#divPosSearchCart .search select,
#divPosSearchProduct .search select,
#divPosSearchReceipt .search select {
  margin: 0;
  margin-right: 16px;
}
#modalEditClient .search .createItem,
#divPosSearchClient .search .createItem,
#divPosSearchCart .search .createItem,
#divPosSearchProduct .search .createItem,
#divPosSearchReceipt .search .createItem {
  margin-bottom: 0;
  padding: 8px 20px !important;
}
#modalEditClient .footer,
#divPosSearchClient .footer,
#divPosSearchCart .footer,
#divPosSearchProduct .footer,
#divPosSearchReceipt .footer {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding: 32px;
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.pagination .back,
.pagination .forward {
  padding: 0px 10px !important;
  background-color: white !important;
  color: #ed1b24;
}
.pagination .back .icon,
.pagination .forward .icon {
  font-size: 30px;
  line-height: 1;
}
.pagination .back {
  margin-right: 16px;
}
.pagination .forward {
  margin-left: 16px;
}
.pagination .page {
  margin: 0px 8px;
  cursor: pointer;
  color: #bfbfbf;
}
.pagination .page.active {
  font-weight: bold;
  color: #404040;
}
.pagination .pageQuote {
  margin: 0px 8px;
  cursor: pointer;
}
.pagination .pageQuote.active {
  font-weight: bold;
  text-decoration: underline;
}
#divPosSearchClient .items {
  padding: 1px 32px;
  overflow-y: auto;
}
#divPosSearchClient .items .item {
  margin-bottom: 16px;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  padding: 16px 32px;
  cursor: pointer;
}
#divPosSearchClient .items .item .name {
  font-weight: bold;
  margin-right: 16px;
  line-height: 1.2;
}
#divPosSearchClient .items .item .name .clientNumber {
  font-weight: normal;
}
#divPosSearchClient .items .item .actions {
  margin-left: 16px;
}
#divPosSearchClient .items .item .actions button {
  padding: 8px 0px;
  width: 36px;
}
#divPosSearchClient .items .item .actions button .icon {
  height: 18px;
}
#divPosSearchClient .nav-tabs {
  border-color: rgba(0, 0, 0, 0.4);
}
#divPosSearchClient .nav-tabs .pill {
  display: inline-block;
  background-color: #ed1b24;
  color: white;
  padding: 0px 4px;
  border-radius: 12px;
  min-width: 24px;
  text-align: center;
}
#divPosSearchClient .nav-tabs .nav-link.active {
  color: #404040;
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid #eee;
}
#divPosSearchClient .nav-tabs .nav-link:hover:not(.active) {
  border-color: rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
@media (min-width: 992px) {
  #divReception .container,
  #divReception .container-fluid {
    max-width: calc(100% - 50px) !important;
    padding: 0 !important;
  }
}
#modalShowItem .modal-dialog {
  max-width: 900px !important;
}
#modalEditClient.show,
#modalEditClient.closing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
#modalEditClient #modalEditClientBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
#modalEditClient #modalEditClientBody > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
#modalEditClient #modalEditClientBody #divPosEditClient {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
#modalEditClient .modal-dialog {
  width: 900px;
  max-width: 900px !important;
  height: calc(100% - 64px);
}
#modalEditClient .modal-content {
  height: auto;
  min-height: 500px;
}
#modalEditClient .modal-body {
  padding: 0;
}
#modalEditClient .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 24px 32px;
}
#modalEditClient .header .name {
  font-weight: bold;
  margin-right: 16px;
}
#modalEditClient .header .actions {
  margin-left: 16px;
}
#modalEditClient .header .actions button {
  padding: 8px 0px;
  width: 36px;
}
#modalEditClient .header .actions button .icon {
  height: 18px;
}
#modalEditClient .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#modalEditClient .contact .fidelityPoints {
  font-weight: bold;
}
#modalEditClient .contact .contact-addresses {
  max-height: 200px;
  overflow-y: auto;
}
#modalEditClient .history {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
#modalEditClient .history .nav-tabs {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
#modalEditClient .history .nav-tabs .nav-link {
  cursor: pointer;
}
#modalEditClient .history .nav-tabs .nav-link.active {
  color: #ed1b24;
}
#modalEditClient .history .tab-content {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
#modalEditClient .history .tab-content #customer_slips.active,
#modalEditClient .history .tab-content #customer_quotes.active,
#modalEditClient .history .tab-content #customer_invoices.active,
#modalEditClient .history .tab-content #customer_credit_notes.active,
#modalEditClient .history .tab-content #customer_projects.active {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  overflow-y: auto;
}
#modalEditClient .history .tab-content #customer_slips,
#modalEditClient .history .tab-content #customer_quotes,
#modalEditClient .history .tab-content #customer_invoices,
#modalEditClient .history .tab-content #customer_credit_notes,
#modalEditClient .history .tab-content #customer_projects {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  overflow-y: auto;
}
#modalEditClient .history .item .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 24px 32px;
}
#modalEditClient .history .item .top .name {
  font-weight: bold;
  margin-right: 16px;
}
#modalEditClient .history .item .top .price {
  font-weight: bold;
  margin-left: 16px;
}
#modalEditClient .history .item .top .actions {
  margin-left: 16px;
}
#modalEditClient .history .item .top .actions button {
  padding: 8px 0px;
  width: 36px;
}
#modalEditClient .history .item .top .actions button .icon {
  height: 18px;
}
#modalEditClient .history .item .content {
  display: none;
  padding: 24px 32px;
  background-color: #eee;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#modalEditClient .history .item .content .line {
  margin-bottom: 8px;
}
#modalEditClient .history .item .content .name {
  margin-right: 16px;
  line-height: 1.2;
}
#modalEditClient .history .item .content .description {
  color: #808080;
}
#modalEditClient .history .item .content .price {
  font-weight: bold;
  margin-left: 32px;
}
#modalEditClient .history .item .content .taxable {
  min-width: 15px;
  text-align: right;
}
#modalEditClient .history .item .content .subtotal,
#modalEditClient .history .item .content .tax {
  margin-right: 16px;
}
#modalEditClient .history .item .content .totalInfos .total {
  font-weight: bold;
}
#divPosSearchCart .items,
#divPosSearchReceipt .items {
  padding: 1px 32px;
  overflow-y: auto;
}
#divPosSearchCart .items .item,
#divPosSearchReceipt .items .item {
  margin-bottom: 16px;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
}
#divPosSearchCart .items .item .header,
#divPosSearchReceipt .items .item .header {
  padding: 16px 32px;
  cursor: pointer;
}
#divPosSearchCart .items .item .header .name,
#divPosSearchReceipt .items .item .header .name {
  font-weight: bold;
  margin-right: 16px;
  line-height: 1.2;
}
#divPosSearchCart .items .item .header .clientName,
#divPosSearchReceipt .items .item .header .clientName {
  margin-right: 16px;
}
#divPosSearchCart .items .item .header .price,
#divPosSearchReceipt .items .item .header .price {
  font-weight: bold;
  margin-left: 16px;
}
#divPosSearchCart .items .item .header .actions,
#divPosSearchReceipt .items .item .header .actions {
  margin-left: 16px;
}
#divPosSearchCart .items .item .header .actions button,
#divPosSearchReceipt .items .item .header .actions button {
  padding: 12px 0px;
  width: 48px;
  margin: 0 4px;
}
#divPosSearchCart .items .item .header .actions button .icon,
#divPosSearchReceipt .items .item .header .actions button .icon {
  height: 18px;
}
#divPosSearchCart .items .item .details,
#divPosSearchReceipt .items .item .details {
  display: none;
  padding: 16px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#divPosSearchCart .items .item .details .line,
#divPosSearchReceipt .items .item .details .line {
  margin-bottom: 8px;
}
#divPosSearchCart .items .item .details .name,
#divPosSearchReceipt .items .item .details .name {
  margin-right: 16px;
  line-height: 1.2;
}
#divPosSearchCart .items .item .details .description,
#divPosSearchReceipt .items .item .details .description {
  color: #808080;
}
#divPosSearchCart .items .item .details .price,
#divPosSearchReceipt .items .item .details .price {
  font-weight: bold;
  margin-left: 32px;
  min-width: 76px;
  text-align: right;
}
#divPosSearchCart .items .item .details .taxable,
#divPosSearchReceipt .items .item .details .taxable {
  min-width: 15px;
  text-align: right;
}
#divPosSearchCart .items .item .details .subtotal,
#divPosSearchReceipt .items .item .details .subtotal,
#divPosSearchCart .items .item .details .tax,
#divPosSearchReceipt .items .item .details .tax {
  margin-right: 16px;
}
#divPosSearchCart .items .item .details .totalInfos .total,
#divPosSearchReceipt .items .item .details .totalInfos .total {
  font-weight: bold;
}
#divPosSearchReceipt .details .line {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
#divPosSearchReceipt .btnRefundItem {
  padding: 8px 0px;
  width: 36px;
  margin-left: 16px;
}
#divPosSearchReceipt .btnRefundItem .icon {
  height: 18px;
}
#divPosSearchProduct .items {
  padding: 0px 24px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
#divPosSearchProduct .items .item {
  width: 200px;
  height: 200px;
  margin: 8px 12px;
  border: 4px solid white;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  position: relative;
}
#divPosSearchProduct .items .item .image {
  background-color: black;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#divPosSearchProduct .items .item .details {
  padding: 6px 4px 0px;
}
#divPosSearchProduct .items .item .details .title {
  line-height: 100%;
  font-size: 14px;
  padding-right: 4px;
}
#divPosSearchProduct .items .item .details .price {
  font-size: 14px;
  font-weight: bold;
}
#divPosSearchProduct .items .item .details .number {
  font-size: 12px;
  color: #888;
}
#divPosSearchProduct .items .item .details .description {
  margin-top: 4px;
  font-size: 14px;
  color: #808080;
}
#divPosSearchProduct .items .item .showItem {
  position: absolute;
  top: -8px;
  right: -8px;
}
#divPosSearchProduct .items .item .showItem img {
  width: 32px;
  height: 32px;
}
#divPosSearchProduct .items .itemList {
  background-color: white;
  margin-bottom: 8px;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
#divPosSearchProduct .items .itemList .image {
  width: 80px;
  height: 80px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#divPosSearchProduct .items .itemList .name,
#divPosSearchProduct .items .itemList .description,
#divPosSearchProduct .items .itemList .sku,
#divPosSearchProduct .items .itemList .price {
  padding: 8px;
}
#divPosSearchProduct .items .itemList .name,
#divPosSearchProduct .items .itemList .price {
  font-weight: bold;
}
#divPosSearchProduct .items .itemList .description {
  color: #666;
}
#divPosSearchProduct .items .itemList .showItem {
  width: 40px;
  height: 40px;
  margin-right: 16px;
}
#divPosSearchProduct .items .itemList .showItem img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
#divReception .divHeader .left .item {
  font-size: 16px;
  color: white;
  font-weight: 500;
  padding: 20px 32px 20px 60px;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
#divReception .divHeader .left .item:after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: "▼";
  font-size: 12px;
}
#divReception .divHeader .left .item .icon {
  position: absolute;
  left: 16px;
  top: 21px;
  width: 20px;
  height: 20px;
  fill: white;
  color: white;
  font-size: 22px;
  line-height: 1;
}
#divReception .top-bar {
  padding: 24px;
  background-color: #f3f3f3;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
}
#divReception .btnShowCart {
  position: relative;
}
#divReception .btnShowCart .itemCount {
  position: absolute;
  right: -12px;
  top: -1px;
  background-color: white;
  color: #404040;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  padding-top: 1px;
}
#divReceptionMenu {
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transition: top 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
}
#divReceptionMenu.show {
  opacity: 1;
  pointer-events: all;
}
#divReceptionMenu.show .after {
  width: 10000px;
  height: 10000px;
}
#divReceptionMenu .after {
  position: absolute;
  left: 0;
  top: -64px;
  width: 0;
  height: 0;
  z-index: -1;
}
#divReceptionMenu .item {
  display: block;
  padding: 20px 32px 20px 60px;
  background-color: white;
  color: #404040;
  text-decoration: none;
  position: relative;
}
#divReceptionMenu .item.active {
  color: white;
  font-weight: 500;
  background-color: #4c4c4c;
  position: relative;
}
#divReceptionMenu .item.active .icon {
  fill: white;
  color: white;
}
#divReceptionMenu .item .icon {
  position: absolute;
  left: 16px;
  top: 21px;
  width: 20px;
  height: 20px;
  font-size: 22px;
  line-height: 1;
  fill: #404040;
  color: #404040;
}
#divReceptionMenu hr {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin: 0;
}
#modalShowItem .modal-header .name {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  padding-left: 8px;
}
#modalShowItem .presentation .image {
  min-height: 160px;
}
#modalShowItem .presentation .name {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}
#modalShowItem .presentation .specs {
  line-height: 100%;
  font-size: 14px;
}
#modalShowItem .presentation .availability {
  margin-top: 8px;
}
#modalShowItem .presentation .price,
#modalShowItem .presentation .last-cost,
#modalShowItem .presentation .last-ordering-cost {
  font-size: 24px;
  font-weight: bold;
}
#modalShowItem .documents h4 {
  font-weight: bold;
}
#modalShowItem .informations h4 {
  margin: 20px 0px;
  font-weight: bold;
}
#modalShowItem .informations .description {
  padding-right: 16px;
}
#modalShowItem .informations table thead tr {
  background-color: #f1f1f1;
}
#modalShowItem .informations table tbody tr:not(:last-child) {
  border-bottom: 1px solid #f1f1f1;
}
#modalShowItem .label {
  font-size: 14px;
  line-height: 1;
  color: #404040;
  margin-top: 4px;
}
#divPayment .pageTitle {
  box-shadow: inset -10px 0px 3px -7px rgba(0, 0, 0, 0.2);
  padding-bottom: 26px;
}
#divPayment .paymentContent {
  overflow-y: auto;
  width: 100%;
  padding: 0 16px;
}
#divPayment .panel {
  flex-shrink: 0;
  margin-bottom: 0;
}
#divPayment .panel:last-child {
  margin-bottom: 16px;
}
#divPayment .panel .title {
  font-size: 17px;
  padding: 12px 24px;
}
#divPayment .panel .content {
  padding: 22px;
}
#divPayment .left {
  margin-right: 16px;
}
#divPayment .step:not(:last-child) {
  padding-bottom: 10px;
}
#divPayment .stepTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 14px;
}
#divPayment .stepTitle .num {
  background-color: #ed1b24;
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  color: white;
  border-radius: 25px;
  margin-right: 10px;
}
#divPayment .invoiceStatuses .content .btn {
  margin-bottom: 0;
}
#divPayment .paymentMethods {
  margin-top: 20px;
}
#divPayment .paymentMethods .btn {
  text-transform: uppercase;
  width: 320px !important;
}
#divPayment .invoiceStatuses .btn,
#divPayment .paymentMethods .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  margin: 0px 16px 8px;
  white-space: normal;
  padding: 8px;
  width: 160px;
  height: 70px;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  background-color: #fff;
  color: #ed1b24;
}
#divPayment .invoiceStatuses .btn img,
#divPayment .paymentMethods .btn img {
  margin-bottom: 8px;
}
#divPayment .invoiceStatuses .btn.selected,
#divPayment .paymentMethods .btn.selected {
  background-color: #ed1b24;
  border: 1px solid #f1f1f1;
  color: #fff;
}
#divPayment .payment-actions .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  margin: 0px 16px 8px;
  white-space: normal;
  padding: 8px 16px;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
#divPayment .toggleActions {
  line-height: 1;
  font-size: 20px;
}
#divPayment .toggleActions .icon::before {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#divPayment .actions.open .toggleActions .icon::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#divPayment .actions .title {
  cursor: pointer;
}
#divPayment .actions .title b {
  padding-right: 10px;
}
#divPayment .actions .title .separator {
  opacity: 0.2;
  padding: 0 10px;
}
#divPayment .actionButtons {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
#divPayment .actionButtons .btn {
  margin: 0px 4px 16px;
}
#divPayment .paymentOptions .leftContent {
  max-width: 400px;
  width: 100%;
  margin-right: 10px;
}
#divPayment #modalLoyaltyPayment #txtLoyaltyPayment {
  font-size: 32px;
  text-align: center;
  margin: 16px 0px;
}
#divPayment #modalLoyaltyPayment .actions {
  margin-top: 16px;
}
#divPayment #modalLoyaltyPayment .spanLoyaltyAmount {
  font-weight: bold;
}
#divPaymentLockMenu,
#divPaymentLockTop {
  position: fixed;
  left: 0;
  z-index: 2;
  background-color: rgba(60, 60, 60, 0.6);
}
#divPaymentLockMenu {
  height: 100%;
  width: 264px;
  top: 64px;
}
#divPaymentLockTop {
  width: 100%;
  height: 64px;
  top: 0;
}
#divReception {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
#divReception #divHeader {
  box-shadow: none;
  z-index: 2;
  position: relative;
}
#divReception #divHeader .center {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  height: calc(100% - 16px);
}
#divReception .divHeader label {
  margin: 0;
  color: white;
  font-weight: bold;
}
#divReception .divHeader select {
  margin: 0 24px 0 12px;
  min-width: 200px;
  max-width: 200px;
  background-color: transparent;
  border: 1px solid #404040;
  color: white;
}
#divReception .divHeader option {
  background: #212121;
}
#divReception #divFilters {
  padding: 32px;
  background-color: #f3f3f3;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  z-index: 1;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
#divReception #divFilters .spacer {
  width: 24px;
}
#divReception #divFilters .form-control {
  margin-bottom: 0;
}
#divReception .nav-tabs .nav-link.active {
  background-image: linear-gradient(white, #eee);
  border-bottom-color: #eee;
}
#divReceptionOrders,
#divReceptionReports {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
#divReceptionOrders .items,
#divReceptionReports .items {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  overflow-y: auto;
  padding-top: 32px;
}
#divReceptionOrders .items .item,
#divReceptionReports .items .item {
  background-color: white;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 32px;
}
#divReceptionOrders .items .item .header,
#divReceptionReports .items .item .header {
  padding: 24px 32px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
#divReceptionOrders .items .item .header .btnInfo,
#divReceptionReports .items .item .header .btnInfo {
  padding: 8px 10px;
}
#divReceptionOrders .items .item .header .btnInfo img,
#divReceptionReports .items .item .header .btnInfo img {
  height: 20px;
}
#divReceptionOrders .items .item .body .details,
#divReceptionReports .items .item .body .details {
  background-color: #f2f2f2;
}
#divReceptionOrders .items .item .body .details .detail,
#divReceptionReports .items .item .body .details .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 32px;
}
#divReceptionOrders .items .item .body .details .detail .left,
#divReceptionReports .items .item .body .details .detail .left {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
}
#divReceptionOrders .items .item .body .details .detail .right,
#divReceptionReports .items .item .body .details .detail .right {
  font-weight: bold;
}
#divReceptionOrders .items .item .body .details .detail:not(:last-of-type),
#divReceptionReports .items .item .body .details .detail:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#divReceptionOrders .items .item .body .actions,
#divReceptionReports .items .item .body .actions {
  padding: 24px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
#divReceptionOrders .items .item .body .actions select,
#divReceptionReports .items .item .body .actions select {
  width: 140px;
  margin: 0px 12px;
}
#divReceptionOrders .items .item.new,
#divReceptionReports .items .item.new {
  box-shadow: 0px 0px 8px 4px #ed1b24;
}
@keyframes pulse {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  50% {
    transform: scaleX(1.01) scaleY(1.01);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}
#divReceptionMove,
#divReceptionMoveHistory {
  padding-top: 32px;
}
#divReceptionRegionMain {
  overflow-y: auto;
}
#divReceptionRegionMain .nav-tabs .nav-link {
  color: #404040;
  font-weight: bold;
}
#divReceptionShipping #shipping-header .set-package {
  padding: 8px 15px;
  font-size: 20px;
  line-height: 1.1;
}
#divReceptionShipping #shipping-header .see-package {
  padding: 8px 15px;
  font-size: 20px;
  line-height: 1.1;
}
#divReceptionShipping .delivery-note {
  background-color: rgba(245, 185, 25, 0.2);
  border: 1px solid rgba(245, 185, 25, 0.5);
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}
#divBatchIn .select2-container,
#divPurchaseOrder .select2-container,
#divPriceContract .select2-container {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  margin-right: 10px;
}
#divBatchIn .table tbody th,
#divPurchaseOrder .table tbody th,
#divPriceContract .table tbody th {
  vertical-align: middle;
}
#divBatchIn .table tbody .rowFooter td:not(:first-child),
#divPurchaseOrder .table tbody .rowFooter td:not(:first-child),
#divPriceContract .table tbody .rowFooter td:not(:first-child) {
  padding: 8px 20px;
}
#divBatchIn .container-fluid,
#divPurchaseOrder .container-fluid,
#divPriceContract .container-fluid {
  padding-left: 55px;
  padding-right: 55px;
}
#divBatchIn,
#divPurchaseOrder,
#divPriceContract,
#divReceptionTransferIn,
#divReceptionOut,
#divReceptionShipping,
#divReceptionTransferResolve,
#divReceptionTransferResolve,
#divReceptionReports {
  padding-top: 32px;
}
#divBatchIn .select2-container .select2-selection--single,
#divPurchaseOrder .select2-container .select2-selection--single,
#divPriceContract .select2-container .select2-selection--single,
#divReceptionTransferIn .select2-container .select2-selection--single,
#divReceptionOut .select2-container .select2-selection--single,
#divReceptionShipping .select2-container .select2-selection--single,
#divReceptionTransferResolve .select2-container .select2-selection--single,
#divReceptionTransferResolve .select2-container .select2-selection--single,
#divReceptionReports .select2-container .select2-selection--single {
  min-height: 37px;
}
#divBatchIn .content,
#divPurchaseOrder .content,
#divPriceContract .content,
#divReceptionTransferIn .content,
#divReceptionOut .content,
#divReceptionShipping .content,
#divReceptionTransferResolve .content,
#divReceptionTransferResolve .content,
#divReceptionReports .content {
  padding: 0;
}
#divBatchIn .top,
#divPurchaseOrder .top,
#divPriceContract .top,
#divReceptionTransferIn .top,
#divReceptionOut .top,
#divReceptionShipping .top,
#divReceptionTransferResolve .top,
#divReceptionTransferResolve .top,
#divReceptionReports .top {
  padding: 32px;
}
#divBatchIn .top label,
#divPurchaseOrder .top label,
#divPriceContract .top label,
#divReceptionTransferIn .top label,
#divReceptionOut .top label,
#divReceptionShipping .top label,
#divReceptionTransferResolve .top label,
#divReceptionTransferResolve .top label,
#divReceptionReports .top label {
  color: #aaa;
  font-size: 14px;
}
#divBatchIn .bottom,
#divPurchaseOrder .bottom,
#divPriceContract .bottom,
#divReceptionTransferIn .bottom,
#divReceptionOut .bottom,
#divReceptionShipping .bottom,
#divReceptionTransferResolve .bottom,
#divReceptionTransferResolve .bottom,
#divReceptionReports .bottom {
  padding: 32px;
}
#divBatchIn .table,
#divPurchaseOrder .table,
#divPriceContract .table,
#divReceptionTransferIn .table,
#divReceptionOut .table,
#divReceptionShipping .table,
#divReceptionTransferResolve .table,
#divReceptionTransferResolve .table,
#divReceptionReports .table {
  font-size: 14px;
}
#divBatchIn .table .scanProduct input[disabled]:not(.disabled),
#divPurchaseOrder .table .scanProduct input[disabled]:not(.disabled),
#divPriceContract .table .scanProduct input[disabled]:not(.disabled),
#divReceptionTransferIn .table .scanProduct input[disabled]:not(.disabled),
#divReceptionOut .table .scanProduct input[disabled]:not(.disabled),
#divReceptionShipping .table .scanProduct input[disabled]:not(.disabled),
#divReceptionTransferResolve .table .scanProduct input[disabled]:not(.disabled),
#divReceptionTransferResolve .table .scanProduct input[disabled]:not(.disabled),
#divReceptionReports .table .scanProduct input[disabled]:not(.disabled),
#divBatchIn .table .scanProduct select[disabled]:not(.disabled),
#divPurchaseOrder .table .scanProduct select[disabled]:not(.disabled),
#divPriceContract .table .scanProduct select[disabled]:not(.disabled),
#divReceptionTransferIn .table .scanProduct select[disabled]:not(.disabled),
#divReceptionOut .table .scanProduct select[disabled]:not(.disabled),
#divReceptionShipping .table .scanProduct select[disabled]:not(.disabled),
#divReceptionTransferResolve .table .scanProduct select[disabled]:not(.disabled),
#divReceptionTransferResolve .table .scanProduct select[disabled]:not(.disabled),
#divReceptionReports .table .scanProduct select[disabled]:not(.disabled) {
  background-color: white;
}
#divBatchIn .table tbody th,
#divPurchaseOrder .table tbody th,
#divPriceContract .table tbody th,
#divReceptionTransferIn .table tbody th,
#divReceptionOut .table tbody th,
#divReceptionShipping .table tbody th,
#divReceptionTransferResolve .table tbody th,
#divReceptionTransferResolve .table tbody th,
#divReceptionReports .table tbody th {
  padding: 20px 8px 8px 8px;
  font-weight: normal;
}
#divBatchIn .table tbody th:not(.name-width):not(.action-width):not(.date-width):not(.wp-width),
#divPurchaseOrder .table tbody th:not(.name-width):not(.action-width):not(.date-width):not(.wp-width),
#divPriceContract .table tbody th:not(.name-width):not(.action-width):not(.date-width):not(.wp-width),
#divReceptionTransferIn .table tbody th:not(.name-width):not(.action-width):not(.date-width):not(.wp-width),
#divReceptionOut .table tbody th:not(.name-width):not(.action-width):not(.date-width):not(.wp-width),
#divReceptionShipping .table tbody th:not(.name-width):not(.action-width):not(.date-width):not(.wp-width),
#divReceptionTransferResolve .table tbody th:not(.name-width):not(.action-width):not(.date-width):not(.wp-width),
#divReceptionTransferResolve .table tbody th:not(.name-width):not(.action-width):not(.date-width):not(.wp-width),
#divReceptionReports .table tbody th:not(.name-width):not(.action-width):not(.date-width):not(.wp-width) {
  width: 90px;
}
#divBatchIn .table tbody th.action-width,
#divPurchaseOrder .table tbody th.action-width,
#divPriceContract .table tbody th.action-width,
#divReceptionTransferIn .table tbody th.action-width,
#divReceptionOut .table tbody th.action-width,
#divReceptionShipping .table tbody th.action-width,
#divReceptionTransferResolve .table tbody th.action-width,
#divReceptionTransferResolve .table tbody th.action-width,
#divReceptionReports .table tbody th.action-width {
  width: 1px;
}
#divBatchIn .table tbody th.date-width,
#divPurchaseOrder .table tbody th.date-width,
#divPriceContract .table tbody th.date-width,
#divReceptionTransferIn .table tbody th.date-width,
#divReceptionOut .table tbody th.date-width,
#divReceptionShipping .table tbody th.date-width,
#divReceptionTransferResolve .table tbody th.date-width,
#divReceptionTransferResolve .table tbody th.date-width,
#divReceptionReports .table tbody th.date-width {
  width: 120px;
}
#divBatchIn .table tbody th.wp-width,
#divPurchaseOrder .table tbody th.wp-width,
#divPriceContract .table tbody th.wp-width,
#divReceptionTransferIn .table tbody th.wp-width,
#divReceptionOut .table tbody th.wp-width,
#divReceptionShipping .table tbody th.wp-width,
#divReceptionTransferResolve .table tbody th.wp-width,
#divReceptionTransferResolve .table tbody th.wp-width,
#divReceptionReports .table tbody th.wp-width {
  width: 225px;
}
#divBatchIn .table tbody td,
#divPurchaseOrder .table tbody td,
#divPriceContract .table tbody td,
#divReceptionTransferIn .table tbody td,
#divReceptionOut .table tbody td,
#divReceptionShipping .table tbody td,
#divReceptionTransferResolve .table tbody td,
#divReceptionTransferResolve .table tbody td,
#divReceptionReports .table tbody td {
  vertical-align: middle;
  padding: 8px;
}
#divBatchIn .table tbody td .nostyle,
#divPurchaseOrder .table tbody td .nostyle,
#divPriceContract .table tbody td .nostyle,
#divReceptionTransferIn .table tbody td .nostyle,
#divReceptionOut .table tbody td .nostyle,
#divReceptionShipping .table tbody td .nostyle,
#divReceptionTransferResolve .table tbody td .nostyle,
#divReceptionTransferResolve .table tbody td .nostyle,
#divReceptionReports .table tbody td .nostyle {
  border: none;
  background-color: transparent;
  padding: 0;
  padding-right: 5px;
  display: inline-block;
  text-align: right;
}
#divBatchIn .table tbody td .icon.ion-android-add-circle,
#divPurchaseOrder .table tbody td .icon.ion-android-add-circle,
#divPriceContract .table tbody td .icon.ion-android-add-circle,
#divReceptionTransferIn .table tbody td .icon.ion-android-add-circle,
#divReceptionOut .table tbody td .icon.ion-android-add-circle,
#divReceptionShipping .table tbody td .icon.ion-android-add-circle,
#divReceptionTransferResolve .table tbody td .icon.ion-android-add-circle,
#divReceptionTransferResolve .table tbody td .icon.ion-android-add-circle,
#divReceptionReports .table tbody td .icon.ion-android-add-circle {
  margin-left: 0;
}
#divBatchIn .table tbody input,
#divPurchaseOrder .table tbody input,
#divPriceContract .table tbody input,
#divReceptionTransferIn .table tbody input,
#divReceptionOut .table tbody input,
#divReceptionShipping .table tbody input,
#divReceptionTransferResolve .table tbody input,
#divReceptionTransferResolve .table tbody input,
#divReceptionReports .table tbody input,
#divBatchIn .table tbody select,
#divPurchaseOrder .table tbody select,
#divPriceContract .table tbody select,
#divReceptionTransferIn .table tbody select,
#divReceptionOut .table tbody select,
#divReceptionShipping .table tbody select,
#divReceptionTransferResolve .table tbody select,
#divReceptionTransferResolve .table tbody select,
#divReceptionReports .table tbody select {
  padding: 6px 10px;
  height: auto;
  font-size: 14px;
  margin: 0;
}
#divBatchIn .table tbody .highLighted,
#divPurchaseOrder .table tbody .highLighted,
#divPriceContract .table tbody .highLighted,
#divReceptionTransferIn .table tbody .highLighted,
#divReceptionOut .table tbody .highLighted,
#divReceptionShipping .table tbody .highLighted,
#divReceptionTransferResolve .table tbody .highLighted,
#divReceptionTransferResolve .table tbody .highLighted,
#divReceptionReports .table tbody .highLighted {
  background-color: rgba(63, 191, 63, 0.25);
}
#divBatchIn .table tbody .modified-fade-in,
#divPurchaseOrder .table tbody .modified-fade-in,
#divPriceContract .table tbody .modified-fade-in,
#divReceptionTransferIn .table tbody .modified-fade-in,
#divReceptionOut .table tbody .modified-fade-in,
#divReceptionShipping .table tbody .modified-fade-in,
#divReceptionTransferResolve .table tbody .modified-fade-in,
#divReceptionTransferResolve .table tbody .modified-fade-in,
#divReceptionReports .table tbody .modified-fade-in {
  background-color: #f9c26f;
  -webkit-transition: background 1s;
  -moz-transition: background 1s;
  -o-transition: background 1s;
  transition: background 1s;
}
#divBatchIn .table tbody .modified-fade-out,
#divPurchaseOrder .table tbody .modified-fade-out,
#divPriceContract .table tbody .modified-fade-out,
#divReceptionTransferIn .table tbody .modified-fade-out,
#divReceptionOut .table tbody .modified-fade-out,
#divReceptionShipping .table tbody .modified-fade-out,
#divReceptionTransferResolve .table tbody .modified-fade-out,
#divReceptionTransferResolve .table tbody .modified-fade-out,
#divReceptionReports .table tbody .modified-fade-out {
  -webkit-transition: background 4s;
  -moz-transition: background 4s;
  -o-transition: background 4s;
  transition: background 4s;
}
#divBatchIn .table tbody .received,
#divPurchaseOrder .table tbody .received,
#divPriceContract .table tbody .received,
#divReceptionTransferIn .table tbody .received,
#divReceptionOut .table tbody .received,
#divReceptionShipping .table tbody .received,
#divReceptionTransferResolve .table tbody .received,
#divReceptionTransferResolve .table tbody .received,
#divReceptionReports .table tbody .received {
  display: none;
}
#divBatchIn .table tbody input.qtyError,
#divPurchaseOrder .table tbody input.qtyError,
#divPriceContract .table tbody input.qtyError,
#divReceptionTransferIn .table tbody input.qtyError,
#divReceptionOut .table tbody input.qtyError,
#divReceptionShipping .table tbody input.qtyError,
#divReceptionTransferResolve .table tbody input.qtyError,
#divReceptionTransferResolve .table tbody input.qtyError,
#divReceptionReports .table tbody input.qtyError {
  background-color: rgba(191, 63, 82, 0.25);
}
#divBatchIn .table tbody .statuses,
#divPurchaseOrder .table tbody .statuses,
#divPriceContract .table tbody .statuses,
#divReceptionTransferIn .table tbody .statuses,
#divReceptionOut .table tbody .statuses,
#divReceptionShipping .table tbody .statuses,
#divReceptionTransferResolve .table tbody .statuses,
#divReceptionTransferResolve .table tbody .statuses,
#divReceptionReports .table tbody .statuses {
  font-weight: bold;
  white-space: nowrap;
}
#divBatchIn .table tbody .statuses .success,
#divPurchaseOrder .table tbody .statuses .success,
#divPriceContract .table tbody .statuses .success,
#divReceptionTransferIn .table tbody .statuses .success,
#divReceptionOut .table tbody .statuses .success,
#divReceptionShipping .table tbody .statuses .success,
#divReceptionTransferResolve .table tbody .statuses .success,
#divReceptionTransferResolve .table tbody .statuses .success,
#divReceptionReports .table tbody .statuses .success {
  color: #21CB00;
}
#divBatchIn .table tbody .statuses .warning,
#divPurchaseOrder .table tbody .statuses .warning,
#divPriceContract .table tbody .statuses .warning,
#divReceptionTransferIn .table tbody .statuses .warning,
#divReceptionOut .table tbody .statuses .warning,
#divReceptionShipping .table tbody .statuses .warning,
#divReceptionTransferResolve .table tbody .statuses .warning,
#divReceptionTransferResolve .table tbody .statuses .warning,
#divReceptionReports .table tbody .statuses .warning {
  color: #FFC000;
}
#divBatchIn .table tbody .statuses .error,
#divPurchaseOrder .table tbody .statuses .error,
#divPriceContract .table tbody .statuses .error,
#divReceptionTransferIn .table tbody .statuses .error,
#divReceptionOut .table tbody .statuses .error,
#divReceptionShipping .table tbody .statuses .error,
#divReceptionTransferResolve .table tbody .statuses .error,
#divReceptionTransferResolve .table tbody .statuses .error,
#divReceptionReports .table tbody .statuses .error {
  color: #FE0000;
}
#divBatchIn .table tbody .statuses .hold,
#divPurchaseOrder .table tbody .statuses .hold,
#divPriceContract .table tbody .statuses .hold,
#divReceptionTransferIn .table tbody .statuses .hold,
#divReceptionOut .table tbody .statuses .hold,
#divReceptionShipping .table tbody .statuses .hold,
#divReceptionTransferResolve .table tbody .statuses .hold,
#divReceptionTransferResolve .table tbody .statuses .hold,
#divReceptionReports .table tbody .statuses .hold {
  color: #c4c4c4;
}
#divBatchIn .table tbody .no-option,
#divPurchaseOrder .table tbody .no-option,
#divPriceContract .table tbody .no-option,
#divReceptionTransferIn .table tbody .no-option,
#divReceptionOut .table tbody .no-option,
#divReceptionShipping .table tbody .no-option,
#divReceptionTransferResolve .table tbody .no-option,
#divReceptionTransferResolve .table tbody .no-option,
#divReceptionReports .table tbody .no-option {
  color: #c4c4c4;
  font-size: 14px;
}
#divBatchIn .table tbody .manualScan,
#divPurchaseOrder .table tbody .manualScan,
#divPriceContract .table tbody .manualScan,
#divReceptionTransferIn .table tbody .manualScan,
#divReceptionOut .table tbody .manualScan,
#divReceptionShipping .table tbody .manualScan,
#divReceptionTransferResolve .table tbody .manualScan,
#divReceptionTransferResolve .table tbody .manualScan,
#divReceptionReports .table tbody .manualScan {
  cursor: pointer;
  font-size: 24px;
}
#divBatchIn .table tbody .actions,
#divPurchaseOrder .table tbody .actions,
#divPriceContract .table tbody .actions,
#divReceptionTransferIn .table tbody .actions,
#divReceptionOut .table tbody .actions,
#divReceptionShipping .table tbody .actions,
#divReceptionTransferResolve .table tbody .actions,
#divReceptionTransferResolve .table tbody .actions,
#divReceptionReports .table tbody .actions {
  white-space: nowrap;
}
#divBatchIn .table tbody .actions .icon,
#divPurchaseOrder .table tbody .actions .icon,
#divPriceContract .table tbody .actions .icon,
#divReceptionTransferIn .table tbody .actions .icon,
#divReceptionOut .table tbody .actions .icon,
#divReceptionShipping .table tbody .actions .icon,
#divReceptionTransferResolve .table tbody .actions .icon,
#divReceptionTransferResolve .table tbody .actions .icon,
#divReceptionReports .table tbody .actions .icon {
  cursor: pointer;
  margin-left: 12px;
  font-size: 30px;
}
#divBatchIn .tableItems,
#divPurchaseOrder .tableItems,
#divPriceContract .tableItems,
#divReceptionTransferIn .tableItems,
#divReceptionOut .tableItems,
#divReceptionShipping .tableItems,
#divReceptionTransferResolve .tableItems,
#divReceptionTransferResolve .tableItems,
#divReceptionReports .tableItems {
  background-color: #f2f2f2;
  margin: 0;
}
#divBatchIn .rowHeader,
#divPurchaseOrder .rowHeader,
#divPriceContract .rowHeader,
#divReceptionTransferIn .rowHeader,
#divReceptionOut .rowHeader,
#divReceptionShipping .rowHeader,
#divReceptionTransferResolve .rowHeader,
#divReceptionTransferResolve .rowHeader,
#divReceptionReports .rowHeader {
  color: #aaa;
}
#divBatchIn .rowFooter,
#divPurchaseOrder .rowFooter,
#divPriceContract .rowFooter,
#divReceptionTransferIn .rowFooter,
#divReceptionOut .rowFooter,
#divReceptionShipping .rowFooter,
#divReceptionTransferResolve .rowFooter,
#divReceptionTransferResolve .rowFooter,
#divReceptionReports .rowFooter {
  font-weight: bold;
}
#divBatchIn tr td:first-of-type,
#divPurchaseOrder tr td:first-of-type,
#divPriceContract tr td:first-of-type,
#divReceptionTransferIn tr td:first-of-type,
#divReceptionOut tr td:first-of-type,
#divReceptionShipping tr td:first-of-type,
#divReceptionTransferResolve tr td:first-of-type,
#divReceptionTransferResolve tr td:first-of-type,
#divReceptionReports tr td:first-of-type,
#divBatchIn tr th:first-of-type,
#divPurchaseOrder tr th:first-of-type,
#divPriceContract tr th:first-of-type,
#divReceptionTransferIn tr th:first-of-type,
#divReceptionOut tr th:first-of-type,
#divReceptionShipping tr th:first-of-type,
#divReceptionTransferResolve tr th:first-of-type,
#divReceptionTransferResolve tr th:first-of-type,
#divReceptionReports tr th:first-of-type {
  padding-left: 32px;
}
#divBatchIn tr td:last-of-type,
#divPurchaseOrder tr td:last-of-type,
#divPriceContract tr td:last-of-type,
#divReceptionTransferIn tr td:last-of-type,
#divReceptionOut tr td:last-of-type,
#divReceptionShipping tr td:last-of-type,
#divReceptionTransferResolve tr td:last-of-type,
#divReceptionTransferResolve tr td:last-of-type,
#divReceptionReports tr td:last-of-type,
#divBatchIn tr th:last-of-type,
#divPurchaseOrder tr th:last-of-type,
#divPriceContract tr th:last-of-type,
#divReceptionTransferIn tr th:last-of-type,
#divReceptionOut tr th:last-of-type,
#divReceptionShipping tr th:last-of-type,
#divReceptionTransferResolve tr th:last-of-type,
#divReceptionTransferResolve tr th:last-of-type,
#divReceptionReports tr th:last-of-type {
  padding-right: 32px;
}
#divBatchIn #modalScanProduct .image,
#divPurchaseOrder #modalScanProduct .image,
#divPriceContract #modalScanProduct .image,
#divReceptionTransferIn #modalScanProduct .image,
#divReceptionOut #modalScanProduct .image,
#divReceptionShipping #modalScanProduct .image,
#divReceptionTransferResolve #modalScanProduct .image,
#divReceptionTransferResolve #modalScanProduct .image,
#divReceptionReports #modalScanProduct .image {
  width: 140px;
  height: 140px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#divBatchIn #modalScanProduct .infos,
#divPurchaseOrder #modalScanProduct .infos,
#divPriceContract #modalScanProduct .infos,
#divReceptionTransferIn #modalScanProduct .infos,
#divReceptionOut #modalScanProduct .infos,
#divReceptionShipping #modalScanProduct .infos,
#divReceptionTransferResolve #modalScanProduct .infos,
#divReceptionTransferResolve #modalScanProduct .infos,
#divReceptionReports #modalScanProduct .infos {
  padding-left: 24px;
}
#divBatchIn #modalScanProduct .infos .upc,
#divPurchaseOrder #modalScanProduct .infos .upc,
#divPriceContract #modalScanProduct .infos .upc,
#divReceptionTransferIn #modalScanProduct .infos .upc,
#divReceptionOut #modalScanProduct .infos .upc,
#divReceptionShipping #modalScanProduct .infos .upc,
#divReceptionTransferResolve #modalScanProduct .infos .upc,
#divReceptionTransferResolve #modalScanProduct .infos .upc,
#divReceptionReports #modalScanProduct .infos .upc {
  font-size: 18px;
}
#divBatchIn #modalScanProduct .infos .name,
#divPurchaseOrder #modalScanProduct .infos .name,
#divPriceContract #modalScanProduct .infos .name,
#divReceptionTransferIn #modalScanProduct .infos .name,
#divReceptionOut #modalScanProduct .infos .name,
#divReceptionShipping #modalScanProduct .infos .name,
#divReceptionTransferResolve #modalScanProduct .infos .name,
#divReceptionTransferResolve #modalScanProduct .infos .name,
#divReceptionReports #modalScanProduct .infos .name {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}
#divBatchIn #modalScanProduct .modal-footer,
#divPurchaseOrder #modalScanProduct .modal-footer,
#divPriceContract #modalScanProduct .modal-footer,
#divReceptionTransferIn #modalScanProduct .modal-footer,
#divReceptionOut #modalScanProduct .modal-footer,
#divReceptionShipping #modalScanProduct .modal-footer,
#divReceptionTransferResolve #modalScanProduct .modal-footer,
#divReceptionTransferResolve #modalScanProduct .modal-footer,
#divReceptionReports #modalScanProduct .modal-footer {
  padding: 32px;
}
#divReceptionReports .reports {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
  overflow-y: auto;
  padding-top: 32px;
}
#divReceptionReports .reports .report {
  background-color: white;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 32px;
  padding: 24px 32px;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.reception-report .subtitle {
  font-weight: bold;
  padding: 0 32px;
}
.reception-report .label {
  font-size: 12px;
  color: #ccc;
  display: block;
}
.reception-report .value {
  font-size: 14px;
}
.reception-report .info {
  padding: 0 32px;
}
.reception-report .address {
  font-size: 14px;
  padding: 20px 32px;
  border-top: 1px solid #ddd;
  margin-top: 20px;
}
.reception-report .address .bold {
  font-weight: bold;
}
.reception-report .address p {
  margin-bottom: 0;
  line-height: 1.3;
}
.reception-report .address .label {
  margin-right: 20px;
}
.reception-report .address .from {
  border-right: 1px solid #ddd;
}
.reception-report .address .to {
  margin-right: 20px;
}
.reception-report .table {
  background-color: #f2f2f2;
}
.reception-report .table tr,
.reception-report .table td,
.reception-report .table th {
  border: none;
}
.reception-report .table thead {
  font-size: 12px;
  color: #aaa;
  font-weight: normal;
}
.reception-report .table thead th {
  padding: 20px 8px 8px 8px;
  font-weight: normal;
}
.reception-report .table tfoot {
  font-weight: bold;
}
.reception-report .table tfoot td {
  padding: 8px;
  font-size: 14px;
}
.reception-report .table tfoot .newProductTotal td {
  padding-top: 20px;
  padding-bottom: 0px;
}
.reception-report .table tfoot .newProductTotal td,
.reception-report .table tfoot .editedProductTotal td {
  color: #aaa;
  font-weight: normal;
  font-size: 12px;
}
.reception-report .table tfoot .total td {
  padding-bottom: 20px;
}
.reception-report .table tr td:first-of-type,
.reception-report .table tr th:first-of-type {
  padding-left: 32px;
}
.reception-report .table tr td:last-of-type,
.reception-report .table tr th:last-of-type {
  padding-right: 32px;
}
.reception-report .table tbody td {
  padding: 8px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}
.reception-report .table tbody .status {
  font-weight: bold;
}
.reception-report .table tbody .status .success,
.reception-report .table tbody .status.ion-arrow-up-b {
  color: #21CB00;
}
.reception-report .table tbody .status .warning {
  color: #FFC000;
}
.reception-report .table tbody .status .error,
.reception-report .table tbody .status.ion-arrow-down-b {
  color: #FE0000;
}
.reception-report .table tbody .status .hold,
.reception-report .table tbody .status.ion-record {
  color: #c4c4c4;
}
.grabable {
  cursor: grab !important;
  user-select: none;
  color: grey;
  opacity: 40%;
}
tr.grabbed {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3) !important;
}
tr.grabbed:active {
  user-input: none;
}
tr.grabbed:active * {
  user-input: none;
  cursor: grabbing !important;
}
#divReceptionReport .panel,
#divReceptionTransferResolve .panel {
  margin-top: 32px;
}
#divReceptionReport .panel .content,
#divReceptionTransferResolve .panel .content {
  padding: 32px 0;
}
#divReceptionReport .panel .reportFooter,
#divReceptionTransferResolve .panel .reportFooter {
  padding: 32px 32px 32px 32px;
}
#divPosBalance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100% !important;
  width: 100% !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
#divPosBalance .content {
  width: 100% !important;
  margin: 0px 32px;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  background-color: white;
}
#divPosBalance .content .header {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#divPosBalance .content .body {
  padding: 24px;
  background-color: #f2f2f2;
}
#divPosBalance .content .body .section {
  padding: 16px;
}
#divPosBalance .content .body .section .title {
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 8px;
  margin-bottom: 8px;
}
#divPosBalance .content .body .section .line {
  margin-bottom: 8px;
}
#divPosBalance .content .footer {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#divPosConfig {
  padding: 32px;
  overflow-y: auto;
}
#divPosConfig .section {
  background-color: white;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
}
#divPosConfig .section:not(:last-of-type) {
  margin-bottom: 32px;
}
#divPosConfig .section .header {
  padding: 24px;
  font-weight: bold;
}
#divPosConfig .section .body {
  padding: 24px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#divPosConfig .section .body .setting:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
#divPosConfig .section .body .setting .title {
  font-weight: bold;
}
#divPosConfig .section .body .setting .description {
  margin: 8px 0px;
}
#tablePosCart .title .product {
  font-weight: 500;
}
#tablePosCart .title .product .icon {
  color: #515151;
  margin-left: 10px;
  display: inline-block;
}
#tablePosCart .actions {
  margin-top: -5px;
}
#tablePosCart .actions .icon {
  padding: 10px;
  height: 35px !important;
  width: 35px;
}
#tablePosCart .actions .btnRemove {
  margin-right: -10px;
}
#tablePosCart .skuNumber {
  font-size: 16px;
  color: #515151;
}
#tablePosCart .prices {
  font-size: 17px;
}
#tablePosCart .prices label {
  margin: 0;
  padding-right: 8px;
}
#tablePosCart .prices .value {
  min-width: 75px;
  text-align: right;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
#tablePosCart .prices .quantity,
#tablePosCart .prices .unit {
  font-size: 16px;
  padding-bottom: 2px;
  color: #515151;
}
#tablePosCart .prices .total {
  font-weight: 600;
  padding-top: 2px;
}
#tablePosCart .prices .total .value {
  font-size: 16px;
}
#tablePosCart .prices .quantity input {
  max-width: 50px;
  border: 1px solid #ced4da;
  border-radius: 3px;
  padding: 0 4px;
  text-align: right;
}
#divOrderRequests #tableOrderRequestsList .select2-container .select2-selection--single,
#divOrders #tableOrderRequestsList .select2-container .select2-selection--single,
#divPaymentsDue #tableOrderRequestsList .select2-container .select2-selection--single,
#divOrderRequests #tableOrdersList .select2-container .select2-selection--single,
#divOrders #tableOrdersList .select2-container .select2-selection--single,
#divPaymentsDue #tableOrdersList .select2-container .select2-selection--single,
#divOrderRequests #tablePaymentsDueList .select2-container .select2-selection--single,
#divOrders #tablePaymentsDueList .select2-container .select2-selection--single,
#divPaymentsDue #tablePaymentsDueList .select2-container .select2-selection--single {
  min-height: 37px;
}
#divOrderRequests #tableOrderRequestsList tr.selected td,
#divOrders #tableOrderRequestsList tr.selected td,
#divPaymentsDue #tableOrderRequestsList tr.selected td,
#divOrderRequests #tableOrdersList tr.selected td,
#divOrders #tableOrdersList tr.selected td,
#divPaymentsDue #tableOrdersList tr.selected td,
#divOrderRequests #tablePaymentsDueList tr.selected td,
#divOrders #tablePaymentsDueList tr.selected td,
#divPaymentsDue #tablePaymentsDueList tr.selected td {
  background-color: rgba(237, 27, 36, 0.2);
}
#divOrderRequests #tableOrderRequestsList .btn,
#divOrders #tableOrderRequestsList .btn,
#divPaymentsDue #tableOrderRequestsList .btn,
#divOrderRequests #tableOrdersList .btn,
#divOrders #tableOrdersList .btn,
#divPaymentsDue #tableOrdersList .btn,
#divOrderRequests #tablePaymentsDueList .btn,
#divOrders #tablePaymentsDueList .btn,
#divPaymentsDue #tablePaymentsDueList .btn {
  padding: 4px 20px;
}
#divOrderRequests #tableOrderRequestsList thead,
#divOrders #tableOrderRequestsList thead,
#divPaymentsDue #tableOrderRequestsList thead,
#divOrderRequests #tableOrdersList thead,
#divOrders #tableOrdersList thead,
#divPaymentsDue #tableOrdersList thead,
#divOrderRequests #tablePaymentsDueList thead,
#divOrders #tablePaymentsDueList thead,
#divPaymentsDue #tablePaymentsDueList thead {
  background-color: #f3f3f3;
}
#divOrderRequests .filterForm,
#divOrders .filterForm,
#divPaymentsDue .filterForm {
  margin-bottom: 30px;
}
#divOrderRequests .filterForm .form-control,
#divOrders .filterForm .form-control,
#divPaymentsDue .filterForm .form-control {
  margin-bottom: 0;
  margin-right: 10px;
}
#divOrderRequests #btnRefresh,
#divOrders #btnRefresh,
#divPaymentsDue #btnRefresh {
  padding: 0.5rem 0.75rem;
  margin-left: 10px;
}
#modalCardPayment .modal-body,
#modalCardRefund .modal-body,
#modalCashRefund .modal-body,
#modalCardAuth .modal-body,
#modalCardScan .modal-body,
#modalChangePassword .modal-body,
#modalScannerScan .modal-body,
#modalScanReceipt .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  padding: 64px 32px;
}
#modalCardPayment .icon,
#modalCardRefund .icon,
#modalCashRefund .icon,
#modalCardAuth .icon,
#modalCardScan .icon,
#modalChangePassword .icon,
#modalScannerScan .icon,
#modalScanReceipt .icon {
  width: 120px;
  height: 120px;
  fill: #ed1b24;
}
#modalCardPayment .title,
#modalCardRefund .title,
#modalCashRefund .title,
#modalCardAuth .title,
#modalCardScan .title,
#modalChangePassword .title,
#modalScannerScan .title,
#modalScanReceipt .title {
  font-weight: bold;
  font-size: 20px;
  margin: 16px 0px 8px;
}
#modalCardPayment .text,
#modalCardRefund .text,
#modalCashRefund .text,
#modalCardAuth .text,
#modalCardScan .text,
#modalChangePassword .text,
#modalScannerScan .text,
#modalScanReceipt .text {
  text-align: center;
}
#modalCardPayment .actions,
#modalCardRefund .actions,
#modalCashRefund .actions,
#modalCardAuth .actions,
#modalCardScan .actions,
#modalChangePassword .actions,
#modalScannerScan .actions,
#modalScanReceipt .actions {
  margin-top: 16px;
}
#modalCardPayment .actions .btn,
#modalCardRefund .actions .btn,
#modalCashRefund .actions .btn,
#modalCardAuth .actions .btn,
#modalCardScan .actions .btn,
#modalChangePassword .actions .btn,
#modalScannerScan .actions .btn,
#modalScanReceipt .actions .btn {
  margin: 0px 8px;
}
#modalNewProduct label {
  font-size: 14px;
  color: #aaa;
}
#modalNewProduct .error-message {
  margin-top: 20px;
  font-weight: bold;
  color: #FE0000;
  font-size: 14px;
  margin-bottom: 0;
}
#modalOrderItems h4 {
  margin-bottom: 0;
}
#modalOrderItems .checkbox {
  display: none;
}
#modalOrderItems .table {
  width: 100%;
  border: none;
  margin-bottom: 0;
}
#modalOrderItems .table thead {
  background-color: #f3f3f3;
}
#modalOrderItems .modal-dialog {
  position: relative;
  display: table;
  /* This is important */
  overflow-y: auto;
  overflow-x: auto;
  width: auto;
  min-width: 1100px;
}
#formAddClient #formAddClientAddress {
  max-height: 460px;
  overflow-y: auto;
  margin-top: 16px;
}
#formAddClient #formAddClientAddress .addressBlock {
  padding: 16px 0px;
}
#formAddClient #formAddClientAddress .addressBlock:not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#modalCashChange .modal-body {
  padding: 48px 32px;
}
#modalCashChange .title {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
#modalCashChange .description {
  text-align: center;
}
#modalCashChange .amounts {
  padding: 16px;
}
#modalCashChange .amounts .amountContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  text-align: center;
}
#modalCashChange .amounts .amountContainer .title {
  color: #888;
}
#modalCashChange .amounts .amountContainer .amount {
  font-size: 32px;
}
#modalCashChange .amounts .amountContainer .amountToGive {
  font-weight: bold;
}
#modalCashChange .amounts .amountContainer .amountToGive.invalid {
  color: #aa0000;
}
#modalCashChange .buttons {
  margin-top: 32px;
}
.number-keyboard .key {
  width: 80px;
  padding: 12px 0px;
  font-size: 30px;
  text-align: center;
  margin: 4px;
  color: white;
  background-color: #ed1b24;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border-radius: 2px;
}
.number-keyboard .key-2x {
  width: 168px;
}
.number-keyboard .key-3y {
  padding: 89px 0px;
}
#modalAddPromotion .title {
  font-weight: bold;
}
#modalAddPromotion .title,
#modalAddPromotion .description {
  text-align: center;
  padding: 0px 64px;
}
#modalAddPromotion .type {
  margin-bottom: 10px;
  margin-top: 30px;
}
#modalAddPromotion .promotions {
  background-color: #f2f2f2;
  margin-bottom: 32px;
}
#modalAddPromotion .promotions .promotion {
  color: #666;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  padding: 12px 16px;
  position: relative;
}
#modalAddPromotion .promotions .promotion .name {
  font-size: 18px;
  color: #404040;
}
#modalAddPromotion .promotions .promotion .promo {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0%;
  flex-basis: 0%;
}
#modalAddPromotion .promotions .promotion .date {
  margin-right: 16px;
}
#modalAddPromotion .promotions .promotion label:before {
  top: -5px;
}
#modalAddPromotion .promotions .promotion:not(:last-of-type):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #999;
}
#modalAddPromotion .actions .spacer {
  width: 24px;
}
@media (max-width: 767px) {
  #divGlobal #divRegionMainContainer #divLeftMenu {
    margin-left: -220px;
    z-index: 2;
  }
  #divGlobal #divRegionMainContainer #divLeftMenu .toggleLeftMenu:after {
    content: "";
    width: 150rem;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: transparent;
    transition: background-color 0.3s ease;
  }
  #divGlobal #divRegionMainContainer #divLeftMenu:not(.opened) {
    box-shadow: none;
  }
  #divGlobal #divRegionMainContainer #divLeftMenu:not(.opened) .toggleLeftMenu:after {
    pointer-events: none;
    width: 0;
  }
  #divGlobal #divRegionMainContainer #divLeftMenu.opened {
    margin-left: 0;
    position: relative;
  }
  #divGlobal #divRegionMainContainer #divLeftMenu.opened .toggleLeftMenu:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
  }
  #divRight {
    width: 100%;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-basis: inherit;
    flex-basis: inherit;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    overflow-x: visible;
  }
  #divRight #divPosSale .buttons-bottom {
    padding: 32px 16px;
  }
}
#divSpinner {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: transparent;
  z-index: 3000;
  transition: display 1s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#divSpinner #divSpinnerCircle {
  width: 128px;
  height: 128px;
  border-top: 8px solid #ed1b24;
  border-bottom: 8px solid #ed1b24;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-radius: 50%;
  -webkit-animation-name: kfSpinner;
  animation-name: kfSpinner;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes kfSpinner {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes kfSpinner {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
  }
}
#divPrint {
  display: none !important;
}
#divPrint #divReceptionReportPrint .title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}
#divPrint #divReceptionReportPrint .subtitle {
  font-size: 22px;
  font-weight: bold;
}
#divPrint #divReceptionReportPrint .icon {
  display: none;
}
#divPrint #divReceptionReportPrint .label {
  font-weight: bold;
  display: block;
}
#divPrint #divReceptionReportPrint .info {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#divPrint #divReceptionReportPrint .address {
  margin-bottom: 60px;
}
#divPrint #divReceptionReportPrint .address p {
  margin-bottom: 0;
  line-height: 1.3;
}
#divPrint #divReceptionReportPrint .address .bold {
  font-weight: bold;
}
#divPrint #divReceptionReportPrint .address .label {
  margin-right: 20px;
}
#divPrint #divReceptionReportPrint .items th {
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  border-top: 1px solid rgba(204, 204, 204, 0.8);
}
#divPrint #divReceptionReportPrint .items tbody td {
  border: none;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
}
#divPrint #divReceptionReportPrint .items tfoot {
  font-weight: bold;
}
#divPrint #divReceptionReportPrint .items tfoot td {
  padding: 16px 8px;
  border: none;
}
#divPrint #divReceptionReportPrint .items tfoot .total td {
  border-top: 1px solid rgba(204, 204, 204, 0.8);
}
#divPrint #divBalanceReport .title {
  font-size: 32px;
  font-weight: bold;
}
#divPrint #divBalanceReport .section {
  margin-top: 16px;
}
#divPrint #divBalanceReport .section .title {
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#divReport .select2-selection {
  height: 38px;
}
#divReport #divReportTable th,
#divReport #divReportTable td {
  padding: 0px 2px;
}
#divReport .pageTitle {
  position: relative;
}
#divReport .btnPrint {
  position: absolute;
  top: 16px;
  right: 32px;
}
@page {
  size: letter;
}
@media print {
  html,
  body {
    overflow: visible;
    height: auto;
  }
  body {
    width: 216mm;
  }
  .noPrint {
    display: none !important;
  }
  #divPrint {
    display: block !important;
    width: 100%;
  }
  #divPrint #divReportTable .title {
    font-size: 24px;
    font-weight: bold;
  }
  #divPrint #divReportTable tr {
    border-bottom: 1px solid #aaa;
  }
  .modal,
  .modal-backdrop {
    display: none !important;
  }
}
#pdfPrint {
  display: flex !important;
  width: 275mm;
}
#pdfPrint #divPrintSale {
  min-height: 350mm;
}
#pdfPrint #divReportTable .title {
  font-size: 24px;
  font-weight: bold;
}
#pdfPrint #divReportTable tr {
  border-bottom: 1px solid #aaa;
}
#tableReport td {
  font-size: 0.85rem;
}
#tableReport th,
#tableReport td {
  padding: 0.25rem;
  text-align: right;
}
#tableReport .format-money,
#tableReport .format-quantity,
#tableReport .format-percent {
  font-family: monospace;
  font-size: 1em;
}
#tableReport .format-BR_list {
  white-space: nowrap;
}
#tableReport .sorting:before,
#tableReport .sorting:after,
#tableReport .sorting_desc:before,
#tableReport .sorting_asc:before,
#tableReport .sorting_desc:after,
#tableReport .sorting_asc:after {
  bottom: 0;
}
#divImageCarousel {
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}
#divImageCarousel.show {
  display: block;
}
#divImageCarousel .imagesContainer {
  width: 100%;
  height: 100%;
  padding: 80px 200px;
}
#divImageCarousel .imagesContainer .images {
  width: 100%;
  height: 100%;
  overflow: visible !important;
}
#divImageCarousel .imagesContainer .images > div,
#divImageCarousel .imagesContainer .images > div > div {
  height: 100%;
}
#divImageCarousel .closeButton {
  position: absolute;
  top: 0;
  right: 16px;
  font-size: 48px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
#dTableContainer {
  white-space: nowrap;
}
/* Invoice Report */
#divPrint #divInvoiceReport {
  min-height: 340mm;
  padding: 0;
}
#divInvoiceReport {
  font-size: 17px;
  line-height: 1.3;
  background-color: white;
  padding: 20px;
  font-family: "Century Gothic";
  page-break-after: always;
  page-break-inside: avoid;
}
#divInvoiceReport .header img {
  margin-bottom: 20px;
  height: 80px;
}
#divInvoiceReport .header .seller {
  font-weight: bold;
  margin-top: 16px;
}
#divInvoiceReport .header .right {
  font-weight: bold;
  max-width: 540px;
}
#divInvoiceReport .header .right .info {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  margin-top: 16px;
  text-align: center;
  max-width: 200px;
}
#divInvoiceReport .header .right .info .shipping-status {
  text-transform: uppercase;
}
#divInvoiceReport .header .right .info .shipping-date {
  padding-top: 4px;
  font-weight: normal;
}
#divInvoiceReport .header .right .date {
  margin-right: 32px;
}
#divInvoiceReport .header .street {
  line-height: 1.2;
}
#divInvoiceReport .page-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
#divInvoiceReport .customer {
  margin-bottom: 16px;
  min-height: 140px;
}
#divInvoiceReport .customer .title {
  background-color: #ececec;
  -webkit-print-color-adjust: exact;
  font-weight: bold;
  font-size: 18px;
  padding: 4px 8px;
  margin-bottom: 20px;
  font-style: italic;
}
#divInvoiceReport .customer .title:before {
  content: none;
}
#divInvoiceReport .sign-box {
  border: 1px solid #797979;
  margin-top: 10px;
}
#divInvoiceReport .sign-box .label {
  width: 130px;
  background-color: #ececec;
  -webkit-print-color-adjust: exact;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}
#divInvoiceReport .sign-box .x {
  margin-left: 10px;
  line-height: 1;
  font-size: 22px;
}
#divInvoiceReport table {
  -webkit-print-color-adjust: exact;
  border-collapse: collapse;
}
#divInvoiceReport table thead {
  display: table-row-group;
}
#divInvoiceReport table th,
#divInvoiceReport table td {
  padding: 4px 8px;
}
#divInvoiceReport table th.nowrap,
#divInvoiceReport table td.nowrap {
  white-space: nowrap;
}
#divInvoiceReport table td {
  font-size: 15px;
}
#divInvoiceReport table th {
  font-style: italic;
  text-align: left;
  font-size: 16px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #ececec;
  -webkit-print-color-adjust: exact;
}
#divInvoiceReport table tr.hr {
  border-top: 1px solid #ddd;
}
#divInvoiceReport table tr {
  border-bottom: 1px solid #ececec;
}
#divInvoiceReport .items table td {
  border: 1px solid #ececec;
}
#divInvoiceReport .disclaimer {
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 16px;
  margin-right: 40px;
}
#divInvoiceReport .disclaimer h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
#divInvoiceReport .disclaimer ul {
  list-style-type: decimal;
  margin-bottom: 0;
}
#divInvoiceReport .disclaimer .accept {
  font-weight: bold;
  margin-top: 5px;
}
#divInvoiceReport .totals {
  page-break-inside: avoid;
  margin-top: 40px;
}
#divInvoiceReport .totals table {
  border: none;
}
#divInvoiceReport .totals table tr:last-of-type {
  border-bottom: none;
}
#divInvoiceReport .text-right {
  text-align: right;
}
#divInvoiceReport .font-weight-bold {
  font-weight: bold;
}
#divInvoiceReport .nowrap {
  white-space: nowrap;
}
#divInvoiceReport .mr-6 {
  margin-right: 70px;
}
#divInvoiceReport .ml-6 {
  margin-left: 70px;
}
#divInvoiceReport .align-items-start {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
#divInvoiceReport .align-items-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
#divInvoiceReport .text-center {
  text-align: center;
}
#divInvoiceReport .text-left {
  text-align: left;
}
#divInvoiceReport .text-right {
  text-align: right;
}
#divInvoiceReport .flex-noshrink {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
#divInvoiceReport .logo-text {
  font-weight: bolder;
  font-size: xx-large;
}
#divPos .skid {
  display: block;
  height: 12px;
  width: 12px;
  border: 1px solid #ccc;
  border-radius: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 6px;
  margin-bottom: 6px;
}
#divPos .skid.blue {
  background-color: #3b78ff;
}
#divBatchIn .select2-container,
#divPurchaseOrder .select2-container,
#divPriceContract .select2-container {
  margin-top: 0;
}
