/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after {
  clear: both;
}

body {
  font-family: Inter, Arial, Tahoma, sans-serif;
  color: #000;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

p {
  line-height: 1.35;
}

.icon {
  display: inline-block;
  vertical-align: middle;
}

*,
*:active,
*:focus {
  outline: none !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}

::-webkit-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

::placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.page {
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.main-content {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-top: 30px;
  padding-bottom: 50px;
}

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

strong,
b {
  font-weight: 700;
}

.btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  color: #000;
  font-family: Inter, Arial, Tahoma, sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  background: #FEDC09;
  border-radius: 10px;
  border: 1px solid transparent;
  min-height: 44px;
  padding: 8px 40px;
}

.btn:hover {
  background: #FEB909;
}

.btn img {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  transition: all 0.3s ease-out;
}

.btn.blue-btn {
  background: #4471FB;
  color: #fff;
}

.btn.blue-btn:hover {
  background: #042EB0;
}

.btn.blue-btn img {
  filter: brightness(0) invert(1);
}

.btn.darkblue-btn {
  background: #042EB0;
  color: #fff;
}

.btn.darkblue-btn:hover {
  background: #4471fb;
}

.btn.darkblue-btn img {
  filter: brightness(0) invert(1);
}

.btn.yellow-btn {
  background: #FEDC09;
}

.btn.yellow-btn:hover {
  background: #FEB909;
}

.btn.yellow-btn img {
  filter: brightness(0);
}

.btn.black-empty-btn {
  color: #000;
  background: transparent;
  border-color: #000;
}

.btn.black-empty-btn:hover {
  border-color: #042EB0;
  color: #042EB0;
}

.btn.black-empty-btn:hover img {
  filter: grayscale(0);
}

.btn.black-empty-btn img {
  filter: grayscale(1);
}

.btn.blue-empty-btn {
  color: #042EB0;
  background: transparent;
  border-color: #042EB0;
}

.btn.blue-empty-btn:hover {
  border-color: #042EB0;
  background: #042EB0;
  color: #fff;
}

.btn.blue-empty-btn:hover img {
  filter: brightness(0) invert(1);
}

.btn.gray-btn {
  color: #8E8E8E;
  background: #fff;
  border-color: #E5E5E5;
}

.btn.gray-btn:hover {
  border-color: #000;
  color: #000;
}

.btn.gray-btn:hover img {
  opacity: 1;
}

.btn.gray-btn img {
  filter: brightness(0);
  opacity: 0.5;
}

.btn[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.btn.only-img {
  padding-left: 19px;
  padding-right: 19px;
}

.btn.only-img img {
  margin-right: 0;
}

.btn.only-img span {
  display: none;
}

button.btn {
  cursor: pointer;
  font-family: Inter, Arial, Tahoma, sans-serif;
  line-height: 1.2;
}

.w-100 {
  width: 100%;
}

.simple-form input,
.simple-form select {
  display: block;
  width: 100%;
  height: 44px;
  transition: border-color 0.3s ease-out;
  padding: 0 20px;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  font-family: Inter, Arial, Tahoma, sans-serif;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  background: #fff;
  transition: all 0.3s ease-out;
}

.simple-form input::-webkit-input-placeholder,
.simple-form select::-webkit-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.simple-form input:-moz-placeholder,
.simple-form select:-moz-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.simple-form input::-moz-placeholder,
.simple-form select::-moz-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.simple-form input:-ms-input-placeholder,
.simple-form select:-ms-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.simple-form input:focus,
.simple-form select:focus {
  border-color: #042EB0;
}

.simple-form input[disabled],
.simple-form select[disabled] {
  background: rgba(160, 160, 160, 0.1);
}

.simple-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("../images/select-arrow.svg") right 19px center no-repeat;
  background-size: 17px 9px;
  padding-right: 50px;
  cursor: pointer;
}

.simple-form select:hover {
  border-color: #042EB0;
}

.simple-form .custom-input {
  padding-top: 16px;
}

.simple-form .input-block {
  margin-bottom: 20px;
}

.simple-form .input-note {
  margin-top: 10px;
  color: #616161;
  font-size: 13px;
  line-height: 1.23;
}

.simple-form .input-note a {
  color: #042EB0;
  text-decoration: underline;
}

.simple-form .input-note a:hover {
  text-decoration: none;
}

.input-block {
  position: relative;
}

.input-block.active .custom-input-label {
  font-size: 11px;
  color: #042EB0;
  font-weight: 700;
  top: 8px;
}

.input-block.disabled {
  pointer-events: none;
}

.custom-input-label {
  font-weight: 400;
  font-size: 14px;
  pointer-events: none;
  color: #8E8E8E;
  transition: color 0.3s ease-out, top 0.3s ease-out, font-size 0.3s ease-out;
  position: absolute;
  left: 21px;
  top: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: calc(100% - 30px);
  text-align: left;
  padding-bottom: 1px;
}

.custom-select ~ .custom-input-label {
  width: calc(100% - 60px);
}

h1 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 1.2;
}

h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #042EB0;
}

h2 img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}

.breadcrumbs-outer {
  margin-bottom: 20px;
}

.breadcrumbs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #042EB0;
}

.breadcrumbs li {
  position: relative;
  margin: 0 9px 12px 0;
  padding-left: 30px;
  max-width: 100%;
}

.breadcrumbs li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 9px;
  height: 9px;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top: 2px solid #BFBFBF;
  border-right: 2px solid #BFBFBF;
  transform: rotate(45deg);
}

.breadcrumbs li:first-child {
  padding-left: 0;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs li:last-child {
  margin-right: 0;
}

.breadcrumbs a {
  color: #6B6B6B;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: inline-block;
  padding: 2px 0;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: inline-block;
  padding: 2px 0;
}

.pagination-nav {
  margin-top: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.pagination {
  margin: 0 -5px -10px;
  color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
}

.pagination li {
  margin: 0 5px 10px;
}

.pagination a {
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  background: #F9F9F9;
  border-radius: 10px;
  text-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  border: 1px solid transparent;
}

.pagination a:hover {
  background: #FEDC09;
  border-color: #FEDC09;
}

.pagination a.active {
  background: #fff;
  border-color: #000;
}

.pagination .arrow i {
  width: 8px;
  height: 8px;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.pagination .prev i {
  transform: rotate(-135deg);
  margin-right: -2px;
}

.pagination .next i {
  transform: rotate(45deg);
  margin-left: -2px;
}

header {
  position: relative;
  z-index: 50;
}

.header-top {
  background: #fff;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #EBEBEB;
}

.header-top-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 0;
}

.main-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 31px;
  font-weight: 500;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 30px;
}

.main-logo img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
  height: auto;
}

.header-top-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.header-user {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  color: #042EB0;
  margin-right: 30px;
  line-height: 1.2;
}

.header-user:hover span {
  text-decoration: underline;
}

.header-user .avatar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
}

.header-user .avatar img {
  height: 42px;
  display: block;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.header-top-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -15px;
  font-weight: 600;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-top-menu li {
  margin: 0 15px;
}

.header-top-menu a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #424242;
  transition: all 0.3s ease-out;
}

.header-top-menu a:hover {
  color: #042EB0;
}

.header-top-menu a:hover img {
  filter: none;
  opacity: 1;
}

.header-top-menu img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  filter: brightness(0);
  opacity: 0.8;
  display: block;
  width: 18px;
  height: auto;
}

.header-bottom {
  background: #F6F6F6;
}

.header-menu {
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 500;
}

.header-menu li {
  position: relative;
}

.header-menu li:hover .header-menu-link {
  background: #fff;
  color: #042EB0;
}

.header-menu li:hover .header-menu-link img {
  filter: none;
}

.header-menu li:hover .header-menu-link .arrow {
  border-color: #042EB0;
  transform: rotate(-45deg);
  top: 3px;
}

.header-menu-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  padding: 0 20px;
  transition: all 0.3s ease-out;
  width: 100%;
  text-align: center;
  border-radius: 10px;
}

.header-menu-link.active {
  background: #fff;
  color: #042EB0;
}

.header-menu-link.active img {
  filter: none;
}

.header-menu-link.active .arrow {
  border-color: #042EB0;
}

.header-menu-link img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  display: block;
  filter: brightness(0);
  transition: all 0.3s ease-out;
}

.header-menu-link .arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 12px;
  width: 10px;
  height: 10px;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top: 2px solid #8E8E8E;
  border-right: 2px solid #8E8E8E;
  transform: rotate(135deg);
  position: relative;
  transition: all 0.3s ease-out;
  top: -2px;
}

.header-buter,
.header-close,
.header-overlay {
  display: none;
}

.simple-block {
  padding: 30px;
  background: #FFF;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  border-radius: 20px;
}

.panel-statistics {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.panel-statistics-list {
  width: 396px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
  color: #31394D;
}

.panel-statistics-list li {
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  border: 1px solid #D8D8D8;
  background: #FFF;
  padding: 15px 29px;
  border-radius: 20px;
  line-height: 1.25;
}

.panel-statistics-list li:last-child {
  margin-bottom: 0;
}

.panel-statistics-list img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  display: block;
  filter: brightness(0);
}

.panel-statistics-list span {
  margin-right: 10px;
}

.panel-statistics-list .count {
  display: block;
  margin-left: auto;
  padding: 10px;
  background: #FEDC09;
  border-radius: 10px;
}

.panel-statistics-content {
  width: calc(100% - 396px);
  padding-left: 40px;
}

h3 {
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 700;
}

.barcode-search {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -15px -20px;
}

.barcode-search .input-block {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 15px;
  margin-right: 15px;
}

.barcode-search .input-block input {
  padding-right: 48px;
}

.barcode-search .options {
  margin: 0 15px 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.barcode-search .barcode-info {
  margin: 0 15px 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
}

.barcode-search .barcode-info .image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 6px;
}

.barcode-search .barcode-info .image img {
  display: block;
}

.barcode-search .barcode-info span {
  font-size: 12px;
  word-break: break-word;
}

.barcode-search .btn {
  margin-left: 20px;
}

.barcode-search .btn:first-child {
  margin-left: 0;
}

.barcode-search .only-img {
  padding: 6px;
  width: 44px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.barcode-block {
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 4px 26px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
}

.barcode-block:last-child {
  margin-bottom: 0;
}

.barcode-block .block-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -6px;
}

.barcode-block .block-info > div {
  margin: 0 6px;
}

.barcode-block .line {
  height: 1px;
  background: #E5E5E5;
  margin: 14px 0;
}

.barcode-block .product-info {
  width: 212px;
  font-size: 13px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.barcode-block .product-info .image {
  width: 70px;
}

.barcode-block .product-info .name {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /* autoprefixer: off */
}

.barcode-block .add-text {
  min-height: 24px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
}

.barcode-block .add-note {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #7b7b7b;
  line-height: 1.2;
}

.barcode-block .number-copy {
  margin-left: 10px;
}

.barcode-block .number {
  width: 85px;
}

.barcode-block .barcode {
  width: 160px;
}

.barcode-block .barcode .add-text {
  word-break: break-word;
}

.barcode-block .count {
  width: 86px;
}

.barcode-block .articul {
  width: 170px;
}

.barcode-block .articul .add-text {
  word-break: break-word;
}

.barcode-block .id {
  text-align: right;
  width: 58px;
}

.barcode-block .places {
  width: 120px;
}

.barcode-block .current {
  font-size: 20px;
  font-weight: 600;
  color: #07B004;
}

.barcode-block .status span {
  color: #206100;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  padding: 6px 8px;
  line-height: 1.2;
  border-radius: 10px;
  background: rgba(4, 190, 0, 0.19);
}

.barcode-block .status i {
  display: block;
}

.barcode-block .status.blue span {
  color: #fff;
  background: #4471fb;
}

.barcode-block .location {
  -ms-flex-order: 6;
  order: 6;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 500;
  color: #07B004;
}

.barcode-block .location span {
  display: inline-block;
}

.barcode-block .location i {
  display: block;
}

.barcode-block .location.blue {
  color: #fff;
  font-size: 13px;
}

.barcode-block .location.blue span {
  background: #4471fb;
  padding: 6px 8px;
  border-radius: 10px;
}

.barcode-block .photos-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.barcode-block .photos-info .btn {
  margin-left: 10px;
}

.barcode-block .photos-list {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.barcode-block .photo-image {
  margin-left: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.barcode-block .photo-image:hover img {
  opacity: 0.8;
}

.barcode-block .photo-image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  image-rendering: -webkit-optimize-contrast;
  transition: all 0.3s ease-out;
}

.barcode-block .photo-image:first-child {
  margin-left: 0;
}

.barcode-block .more:after {
  content: '+' attr(data-count);
  padding-right: 1px;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: rgba(69, 69, 69, 0.73);
  border-radius: 10px;
  pointer-events: none;
}

.barcode-block .only-img {
  padding: 6px;
  width: 44px;
}

.barcode-block .barcode-main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.barcode-block .buttons {
  display: -ms-flexbox;
  display: flex;
}

.barcode-block .buttons .btn {
  margin-left: 20px;
}

.barcode-block .barcode-detail {
  text-align: center;
}

.barcode-block .barcode-image img {
  display: block;
  margin: 0 auto;
  height: auto;
  max-width: 100%;
}

.barcode-block .barcode-number {
  font-size: 15px;
  line-height: 1.2;
  margin-top: 6px;
  word-break: break-word;
}

.barcode-block .box-code {
  color: #4471fb;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-top: 3px;
}

.barcode-block .options {
  -ms-flex-order: 5;
  order: 5;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
}

.barcode-block .options .only-img {
  margin-left: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.barcode-block .parameters {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
}

.barcode-block .parameters-block {
  margin-right: 30px;
  width: 140px;
}

.barcode-block .parameters-block:last-child {
  margin-right: 0;
}

.barcode-block .parameters-block .add-text {
  width: 100%;
}

.barcode-block .edit {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 10px;
  width: 30px;
  height: 30px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  background: #F4F4F4;
  transition: all 0.3s ease-out;
}

.barcode-block .edit:hover {
  background: #4471FB;
}

.barcode-block .edit:hover img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.barcode-block .edit img {
  filter: brightness(0);
  opacity: 0.5;
  transition: all 0.3s ease-out;
}

.barcode-block .product-amount {
  height: 30px;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.barcode-block .send {
  cursor: pointer;
  border: none;
  text-align: center;
  padding: 0;
}

.barcode-block .send img {
  display: block;
  margin: 0 auto;
}

.barcode-block .enabled {
  background: #4471FB;
}

.barcode-block .enabled img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.barcode-block .add-input-square {
  width: 44px;
  height: 44px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.barcode-block .note {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 4px;
  color: #07B004;
  max-width: 260px;
  display: inline-block;
}

.barcode-block .options-btn {
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.barcode-block .hidden-gallery {
  display: none;
}

.download-buttons {
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.download-buttons .btn {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 10px 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.download-gallery {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px 10px;
}

.download-gallery li {
  margin: 0 5px 10px;
  width: 70px;
  height: 70px;
  position: relative;
}

.download-gallery .download-image {
  height: 100%;
}

.download-gallery .download-image img {
  display: block;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.download-gallery .download-image:hover {
  cursor: zoom-in;
}

.download-gallery .download-link {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.56) url("../images/download.svg") center no-repeat;
  border-radius: 10px 0 5px 0;
  transition: all 0.3s ease-out;
}

.download-gallery .download-link:hover {
  background-color: #000000;
}

.download-gallery .remove-link {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.56) url("../images/close-small-white.svg") center no-repeat;
  border-radius: 0 10px 0 5px;
  transition: all 0.3s ease-out;
}

.download-gallery .remove-link:hover {
  background-color: #000000;
}

.number-copy {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.number-copy:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.number-copy img {
  display: block;
  transition: all 0.3s ease-out;
  filter: grayscale(1);
  opacity: 0.7;
}

.number-copy-tooltip {
  white-space: normal;
  position: absolute;
  z-index: 4;
  right: -11px;
  bottom: 100%;
  padding: 6px 10px;
  background: #fff;
  border-radius: 6px;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.2));
  line-height: 1.33;
  margin-bottom: 8px;
  white-space: nowrap;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  display: none;
}

.number-copy-tooltip:after {
  top: 100%;
  right: 17px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 5px;
}

.product-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
}

.product-info .image {
  text-align: center;
  width: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
  display: block;
}

.product-info .image:hover img {
  opacity: 0.8;
}

.product-info .image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  transition: all 0.3s ease-out;
  border-radius: 10px;
}

.product-info .name {
  display: inline-block;
}

.product-info a.name {
  color: #042EB0;
}

.product-info a.name:hover {
  text-decoration: underline;
}

.add-input-square {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  width: 100%;
  border: 1px solid #042EB0;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}

.add-input-square:hover {
  background: #042EB0;
}

.add-input-square:hover img {
  filter: brightness(0) invert(1);
}

.add-input-square input {
  display: none;
}

.add-input-square img {
  display: block;
  transition: all 0.3s ease-out;
}

.search-clean {
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -8px;
  cursor: pointer;
  display: none;
}

.search-clean:hover img {
  opacity: 0.8;
}

.search-clean img {
  display: block;
  transition: all 0.3s ease-out;
}

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

.input-block .select2-container .select2-selection--single {
  background: transparent;
  border-radius: 10px !important;
  height: 44px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease-out;
}

.input-block .select2-container .select2-selection__rendered {
  height: 44px;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 400;
  padding-right: 45px;
  padding-left: 20px;
  color: #222;
}

.input-block .select2-container .select2-selection__arrow {
  top: 0;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  right: 19px;
  width: 14px;
}

.input-block .select2-container .select2-selection__arrow:after {
  content: url("../images/select-arrow.svg");
  display: inline-block;
  transition: all 0.3s ease-out;
  filter: brightness(0);
  opacity: 0.5;
}

.input-block .select2-container .select2-selection__arrow b {
  display: none;
}

.input-block .select2-container--open .select2-selection--single {
  border-color: #042EB0;
}

.input-block .select2-container--open .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-dropdown {
  background: #FFFFFF;
  border: 1px solid #EBEBEB !important;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  padding: 0;
  border-radius: 10px !important;
  overflow: hidden;
}

.select2-dropdown .select2-results > .select2-results__options {
  max-height: 322px;
  overflow-x: hidden;
  padding: 15px;
}

.select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 3px;
  background: #F4F4F4;
}

.select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 7px;
  background: #7A7A7A;
}

.select2-dropdown .select2-results__option {
  padding: 2px 8px 2px 0;
  font-size: 14px;
  font-weight: 400;
  border-radius: 0;
  background: none !important;
  margin-bottom: 10px;
  line-height: 1.23;
}

.select2-dropdown .select2-results__option:last-child {
  margin-bottom: 0;
}

.select2-dropdown .select2-results__option[aria-selected="true"] {
  font-weight: 700;
  color: #042EB0;
}

.select2-dropdown .select2-results__option--highlighted[aria-selected] {
  color: #042EB0;
  text-decoration: underline;
}

.select2-dropdown .select2-search {
  padding: 15px;
  padding-bottom: 0;
}

.select2-dropdown .select2-search__field {
  font-family: Inter, Arial, Tahoma, sans-serif;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 10px;
}

.select2-container--open + .custom-input-label {
  font-size: 11px;
  color: #042EB0;
  font-weight: 700;
  top: 8px;
}

.select2-container.opened + .custom-input-label {
  font-size: 11px;
  color: #042EB0;
  font-weight: 700;
  top: 8px;
}

.radio-block {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.radio-block input {
  display: none;
}

.radio-block input:checked ~ i {
  border-color: #FEDC09;
}

.radio-block input:checked ~ i:before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: #FEDC09;
}

.radio-block label {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.2;
}

.radio-block label:hover i {
  border-color: #FEDC09;
}

.radio-block i {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease-out;
  display: block;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #CFCFCF;
  margin-right: 10px;
}

.radio-block span {
  padding-top: 2px;
}

.radio-block a {
  text-decoration: underline;
  transition: all 0.3s ease-out;
}

.radio-block a:hover {
  color: #042EB0;
}

.checkbox-block {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.checkbox-block input {
  display: none;
}

.checkbox-block input:checked + i {
  background: #FEDC09;
  border-color: #FEDC09;
}

.checkbox-block input:checked + i:before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 10px;
  top: 4px;
  left: 3px;
  background: url("../images/check.svg") center no-repeat;
  background-size: 100% auto;
}

.checkbox-block label {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.2;
}

.checkbox-block label:hover i {
  border-color: #FEDC09;
}

.checkbox-block i {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease-out;
  display: block;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 4px;
  background: #FFFFFF;
  border: 1px solid #CFCFCF;
  margin-right: 10px;
}

.checkbox-block span {
  padding-top: 2px;
}

.checkbox-block a {
  text-decoration: underline;
  transition: all 0.3s ease-out;
}

.checkbox-block a:hover {
  color: #FEDC09;
}

.form-buttons-flex {
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.form-buttons-flex .btn {
  margin: 0 10px;
}

.input-block-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px -20px;
}

.input-block-flex .input-block {
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% - 20px);
}

.input-block-flex .width-50 {
  width: calc(50% - 20px);
}

.input-block-flex .width-20 {
  width: calc(20% - 20px);
}

.form-block {
  margin-bottom: 30px;
}

.orders-navigation {
  background: #FFF;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.06);
  padding: 0 30px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.js-tabs-content {
  display: none;
}

.js-tabs-content.visible {
  display: block;
}

.product-amount {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 44px;
  width: 88px;
  position: relative;
}

.product-amount .qty {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  font-family: Inter, Arial, Tahoma, sans-serif;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  border: 1px solid #ECECEC;
  background: #fff;
  height: 100%;
  transition: all 0.3s ease-out;
  border-radius: 10px;
}

.product-amount .qty:focus {
  border-color: #000;
}

.product-amount .qtyminus,
.product-amount .qtyplus {
  position: absolute;
  z-index: 2;
  height: 100%;
  cursor: pointer;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-amount .qtyminus:hover img,
.product-amount .qtyplus:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.product-amount .qtyminus img,
.product-amount .qtyplus img {
  display: block;
  transition: all 0.3s ease-out;
  filter: grayscale(1);
  opacity: 0.5;
}

.product-amount .qtyminus {
  left: 0;
  padding-left: 11px;
  padding-right: 5px;
}

.product-amount .qtyplus {
  right: 0;
  padding-right: 11px;
  padding-left: 5px;
}

.qtyminus,
.qtyplus {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.orders-tabs {
  display: -ms-flexbox;
  display: flex;
  margin: 0 -32px;
  line-height: 1.2;
  font-weight: 700;
}

.orders-tabs li {
  margin: 0 32px;
}

.orders-tabs a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease-out;
  height: 54px;
}

.orders-tabs a:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transition: all 0.3s ease-out;
  position: absolute;
}

.orders-tabs a:hover,
.orders-tabs a.active {
  color: #042EB0;
}

.orders-tabs a:hover img,
.orders-tabs a.active img {
  filter: none;
}

.orders-tabs img {
  transition: all 0.3s ease-out;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  filter: brightness(0);
}

.orders-tabs span {
  margin-top: 1px;
}

.orders-tabs .count {
  font-size: 12px;
  font-weight: 600;
  color: #838383;
  margin-left: 10px;
  margin-top: 2px;
}

.orders-tabs .active:after {
  background: #4471FB;
}

.back-btn:hover .arrow {
  border-color: #000;
}

.back-btn .arrow {
  display: block;
  border: none;
  width: 10px;
  height: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top: 2px solid #8e8e8e;
  border-right: 2px solid #8e8e8e;
  margin-right: 10px;
  transform: rotate(-135deg);
  transition: all 0.3s ease-out;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.show-count {
  margin-left: auto;
  padding-left: 15px;
  -ms-flex-item-align: center;
  align-self: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.show-count .input-block {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 20px;
  width: 100px;
}

.show-count .select2-selection__rendered {
  padding-top: 0 !important;
  line-height: 43px !important;
}

.show-count select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding-left: 20px;
}

.form-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.form-flex.mb-0 {
  margin-bottom: -20px;
}

.form-flex .input-block {
  padding: 0 10px;
}

.form-flex .w-50 {
  width: 50%;
}

.form-flex .w-33 {
  width: 33.333%;
}

/*================= МОДАЛКИ ======================*/

.popup-modal {
  max-width: 480px;
  margin: 20px auto;
  position: relative;
  background: #FFFFFF;
  border-radius: 0;
  padding: 40px;
  border-radius: 20px;
}

.popup-modal .mfp-close {
  top: 33px;
  right: 34px;
  line-height: 1px;
  opacity: 1;
  width: 34px;
  height: 34px;
}

.popup-modal .mfp-close img,
.popup-modal .mfp-close i {
  pointer-events: none;
  transition: all 0.3s ease-out;
  filter: grayscale(1);
  opacity: 0.6;
}

.popup-modal .mfp-close:hover img,
.popup-modal .mfp-close:hover i {
  filter: grayscale(0);
  opacity: 1;
}

.mfp-bg {
  background: #050A1C;
}

.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.65);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.49;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.65);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.popup-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 30px;
  padding-right: 45px;
  position: relative;
}

/* ==================== MEDIA =========================== */

@media (min-width: 0) {
  .container {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 1020px) {
  .container {
    width: 1000px;
  }

  .header-overlay {
    display: none !important;
  }

  .header-top-info {
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (min-width: 1300px) {
  .container {
    width: 1270px;
  }
}

@media (min-width: 1600px) {
  .container {
    width: 1560px;
  }
}

@media (max-width: 1599px) {
  .main-logo {
    font-size: 27px;
  }

  .main-logo img {
    margin-right: 15px;
  }

  .header-menu {
    font-size: 14px;
  }

  .panel-statistics {
    display: block;
  }

  .panel-statistics-list {
    width: calc(100% + 20px);
    margin: 0 -10px 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .panel-statistics-list li {
    width: calc(25% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 20px;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .panel-statistics-content {
    width: 100%;
    padding-left: 0;
  }

  .orders-tabs.long-list {
    margin: 0 -18px;
  }

  .orders-tabs.long-list li {
    margin: 0 18px;
  }

  .barcode-block .buttons .btn {
    margin-left: 15px;
  }

  .barcode-block .options .only-img {
    margin-left: 10px;
  }

  .barcode-block .options-btn .btn {
    padding-left: 10px;
    padding-right: 10px;
  }

  .barcode-block .parameters-block {
    margin-right: 20px;
    width: 120px;
  }
}

@media (max-width: 1299px) {
  h2 {
    font-size: 16px;
  }

  .header-menu {
    font-size: 13px;
  }

  .header-menu-link {
    padding: 0 15px;
  }

  .header-menu-link img {
    margin-right: 6px;
  }

  .header-menu-link .arrow {
    margin-left: 8px;
  }

  .panel-statistics-list li {
    width: calc(50% - 20px);
  }

  .barcode-search {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .barcode-search .input-block {
    width: calc(100% + 30px);
  }

  .barcode-search .barcode-info {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .orders-tabs {
    margin: 0 -15px;
  }

  .orders-tabs li {
    margin: 0 15px;
  }

  .orders-tabs.long-list img {
    display: none;
  }

  .popup-content .buttons-flex {
    margin-top: 10px;
  }

  .popup-content .buttons-flex .btn {
    width: auto;
  }

  .product-info {
    font-size: 13px;
  }

  .barcode-block .block-info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -20px;
  }

  .barcode-block .block-info > div {
    margin-bottom: 20px;
  }

  .barcode-block .product-info {
    width: 47%;
  }

  .barcode-block .barcode-number {
    font-size: 14px;
  }

  .barcode-block .parameters {
    width: calc(100% + 6px);
  }

  .barcode-block .parameters-block {
    margin-right: 30px;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (max-width: 1019px) {
  .btn.only-img span {
    display: inline;
    margin-left: 10px;
  }

  html.no-hidden {
    overflow: hidden;
  }

  .page {
    overflow: hidden;
  }

  h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .breadcrumbs-outer {
    margin-bottom: 5px;
  }

  .breadcrumbs li {
    margin: 0 4px 12px 0;
    padding-left: 25px;
  }

  .pagination-nav {
    margin-top: 30px;
  }

  .main-content {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .header-top-content {
    padding: 8px 0;
  }

  .main-logo {
    font-size: 26px;
    margin-right: 15px;
  }

  .main-logo img {
    max-width: 100px;
  }

  .header-buter {
    display: block;
    padding: 5px 4px;
    padding-right: 0;
    cursor: pointer;
    margin-left: auto;
  }

  .header-buter:hover span {
    background: #042EB0;
  }

  .header-buter span {
    display: block;
    height: 2px;
    width: 28px;
    margin: 7px 0;
    background: #000;
    border-radius: 10px;
    transition: all 0.3s ease-out;
  }

  .header-buter span:nth-of-type(2) {
    width: 19px;
  }

  .header-close {
    display: block;
    position: absolute;
    z-index: 102;
    right: 10px;
    top: 15px;
    cursor: pointer;
  }

  .header-close:hover img {
    opacity: 1;
    filter: none;
  }

  .header-close img {
    display: block;
    transition: all 0.3s ease-out;
    filter: grayscale(1);
    opacity: 0.6;
  }

  .header-overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.44);
    display: none;
  }

  .header-top-info {
    display: none;
    width: 274px;
    position: fixed;
    z-index: 101;
    background: #fff;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    padding: 20px 10px;
    margin: 0;
  }

  .header-top-info::-webkit-scrollbar {
    width: 3px;
    background: #F4F4F4;
  }

  .header-top-info::-webkit-scrollbar-thumb {
    border: none;
    border-radius: 7px;
    background: #7A7A7A;
  }

  .header-user {
    margin-bottom: 30px;
    margin-right: 50px;
  }

  .header-top-menu {
    display: block;
    margin: 0;
  }

  .header-top-menu li {
    margin: 0 0 30px;
  }

  .header-menu {
    overflow: auto;
    font-size: 15px;
  }

  .header-menu::-webkit-scrollbar {
    height: 0;
    background: transparent;
  }

  .header-menu::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .header-menu-link {
    padding: 0 15px;
  }

  .header-menu-link img {
    margin-right: 10px;
  }

  .header-menu-link span {
    white-space: nowrap;
  }

  div.header-menu-link {
    display: none;
  }

  .simple-block {
    margin-bottom: 20px;
    padding: 20px;
  }

  .mfp-container {
    padding: 0;
  }

  .mfp-content {
    vertical-align: top;
  }

  .popup-modal {
    margin: 0 auto;
    padding: 25px;
    max-width: 100% !important;
    border-radius: 0 0 20px 20px;
  }

  .popup-modal .mfp-close {
    top: 18px;
    right: 19px;
  }

  .popup-title {
    padding-right: 30px;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .input-block-flex {
    margin: 0 -5px -20px;
  }

  .input-block-flex .input-block {
    margin-left: 5px;
    margin-right: 5px;
    width: calc(100% - 10px);
  }

  .input-block-flex .width-50 {
    width: calc(50% - 10px);
  }

  .input-block-flex .width-20 {
    width: calc(20% - 10px);
  }

  .orders-navigation {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .orders-tabs {
    margin: 0 -15px;
    font-size: 13px;
  }

  .orders-tabs li {
    margin: 0 15px;
  }

  .orders-tabs span {
    margin-top: 0;
  }

  .orders-tabs .count {
    margin-top: 1px;
  }

  .orders-tabs img {
    display: none;
  }

  .orders-tabs.long-list a {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .orders-tabs.long-list .count {
    margin-left: 0;
  }

  .message-form .btn {
    width: 100%;
  }

  .good-back {
    margin-bottom: 20px;
  }

  .form-flex .w-33 {
    width: 50%;
  }

  .panel-statistics-list {
    margin-bottom: 20px;
  }

  .panel-statistics-list li {
    width: calc(100% - 20px);
    margin-bottom: 10px;
  }

  .barcode-block .product-info {
    width: 200px;
  }

  .barcode-block .status {
    width: calc(100% + 12px);
  }

  .barcode-block .status i {
    display: inline-block;
  }

  .barcode-block .note {
    max-width: 190px;
  }

  .barcode-search .btn {
    margin-left: 10px;
  }

  .barcode-search .btn:last-child {
    padding-right: 19px;
    padding-left: 19px;
  }
}

@media (max-width: 767px) {
  .btn {
    padding-left: 19px;
    padding-right: 19px;
  }

  .pagination-nav {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header-bottom .container {
    padding: 0;
  }

  .form-buttons-flex .btn {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .input-block-flex .input-block {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .input-block-flex .width-50 {
    width: calc(100% - 10px);
  }

  .input-block-flex .width-20 {
    width: calc(50% - 10px);
  }

  .input-category {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }

  .input-category + .form-buttons-flex {
    padding-top: 0;
  }

  .input-category .input-block {
    width: calc(100% - 20px);
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .input-category .btn {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .orders-tabs {
    overflow: auto;
    font-size: 14px;
    margin: 0 -20px;
  }

  .orders-tabs::-webkit-scrollbar {
    height: 0;
    background: transparent;
  }

  .orders-tabs::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .orders-tabs li {
    margin: 0 20px;
  }

  .orders-tabs a {
    white-space: nowrap;
  }

  .orders-tabs img {
    display: block !important;
  }

  .orders-tabs.long-list a {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .orders-tabs.long-list .count {
    margin-left: 10px;
  }

  .mobile-hidden {
    display: none;
  }

  .title-options .btn {
    margin-left: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .show-count {
    padding-left: 0;
    margin-left: 0;
    margin-top: 20px;
  }

  .show-count .input-block {
    margin-left: 10px;
    width: 95px;
  }

  .form-flex .w-50 {
    width: 100%;
  }

  .form-flex .w-33 {
    width: 100%;
  }

  .w-100-mobile {
    width: 100%;
  }

  .popup-content .buttons-flex .btn {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .barcode-search .barcode-info,
  .barcode-search .options {
    width: calc(100% + 30px);
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .barcode-search .btn {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .barcode-search .btn:last-child {
    padding-left: 9px;
    padding-right: 9px;
  }

  .barcode-search .input-block input {
    padding-right: 40px;
  }

  .barcode-block .block-info {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .barcode-block .block-info > div {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .barcode-block .add-note {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .barcode-block .add-text {
    text-align: right;
  }

  .barcode-block .id {
    text-align: left;
  }

  .barcode-block .product-info {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .barcode-block .line {
    display: none;
  }

  .barcode-block .barcode-main {
    padding-top: 14px;
  }

  .barcode-block .options .only-img {
    margin-left: 20px;
  }

  .barcode-block .options-btn {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .barcode-block .options-btn .btn {
    width: 100%;
  }

  .barcode-block .parameters {
    display: block !important;
  }

  .barcode-block .parameters-block {
    margin-bottom: 20px;
    margin-right: 0;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .barcode-block .parameters-block:last-child {
    margin-bottom: 0;
  }

  .barcode-block .parameters-block .add-text {
    width: auto;
  }

  .barcode-block .product-amount {
    width: 100px;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }

  .barcode-block .note {
    max-width: 100%;
  }

  .barcode-block .location {
    font-size: 13px;
  }

  .barcode-block .location i {
    display: inline-block;
  }

  .barcode-block .box-code {
    font-size: 16px;
  }

  .search-clean {
    right: 12px;
  }
}

@media (max-width: 500px) {
  .main-logo {
    font-size: 22px;
  }

  .pagination {
    margin: 0 -3px -6px;
  }

  .pagination li {
    margin: 0 3px 6px;
  }

  .pagination a {
    width: 38px;
    height: 38px;
  }

  .form-buttons-flex {
    margin: 0;
    display: block;
  }

  .form-buttons-flex .btn {
    margin: 0;
    width: 100%;
    margin-top: 20px;
  }

  .form-buttons-flex .btn:first-child {
    margin-top: 0;
  }

  .good-back {
    width: 100%;
  }

  .barcode-block .barcode-main {
    display: block !important;
  }

  .barcode-block .buttons {
    margin: 18px -10px 0;
  }

  .barcode-block .buttons .btn {
    width: calc(50% - 20px);
    margin: 0 10px;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .download-buttons {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}