* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  color: #000;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

pre {
  height: 0;
}

body {
  max-width: 100%;
  /* overflow-x: hidden; */
  margin: 0;
  background-color: #F2F4F6;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}

p {
  color: #000;
  font-size: 16px;
  line-height: 140%;
}

a {
  color: black;
  cursor: pointer;
  text-decoration: none;
}

.strong {
  font-weight: 700;
}

img {
  display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=checkbox], input[type=radio] {
  accent-color: #00CD50;
  height: 18px;
  width: 18px;
  outline-color: #00CD50;
  flex-shrink: 0;
}

header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 119px;
  height: 55px;
  flex-shrink: 0;
}
header .right {
  display: flex;
  align-items: center;
}
header .right .user {
  margin: 10px;
}
header .right #logout {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  border-radius: 1000px;
  background: #00CD50;
  align-items: center;
}
header .right #logout img {
  width: 24px;
  height: 24px;
}
header .right > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: 14px;
}
header .right > div strong {
  color: #004664;
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
}
header .right > div p {
  color: rgba(77, 77, 77, 0.7);
  font-size: 10px;
  line-height: 130%;
}

main {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 103px);
}

#main_container {
  width: calc(100% - 220px);
  transition: width 0.3s ease;
}
#main_container.long {
  width: calc(100% - 74px);
}
#main_container .search-container {
  position: relative;
  margin: 0 0 24px 24px;
}
#main_container .search-container form {
  margin: 0;
  width: auto;
}
#main_container .search-container:before {
  background: url(../assets/img/search.svg) center no-repeat;
  background-size: 16px;
  content: "";
  position: absolute;
  width: 16px;
  height: 100%;
  left: 16px;
}
#main_container .search-container #search {
  width: 282px;
  max-width: 100%;
  padding: 12px 16px 12px 44px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 220px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 24px;
  margin-left: 24px;
  margin-bottom: auto;
  overflow: hidden;
  transition: width 0.3s ease;
}
.sidebar hr {
  border-color: rgba(218, 218, 218, 0.4);
  margin: 12px 0;
}
.sidebar.short {
  width: 72px;
}
.sidebar.short a span {
  color: transparent !important;
}
.sidebar.short a {
  gap: 30px;
}
.sidebar.short a.toggle svg {
  rotate: 180deg;
}
.sidebar a {
  transition: gap 0s 65ms;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar a span {
  font-weight: 500;
  line-height: 140%;
  font-size: 13px;
  white-space: nowrap;
  transition: color 60ms ease-out, font-weight 60ms ease-out;
}
.sidebar a svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.sidebar a svg path {
  transition: stroke 60ms ease-out;
}
.sidebar a.active span, .sidebar a:hover span {
  color: #00CD50;
}
.sidebar a.active path, .sidebar a:hover path {
  stroke: #00CD50;
}
.sidebar a.active span {
  font-weight: 700;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px;
  margin: 0 24px;
  margin: 0 auto;
  width: calc(100% - 48px);
  position: relative;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}
.main-content .heading {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
}
.main-content .heading div {
  max-width: 800px;
}
.main-content .table .thead .row {
  white-space: nowrap;
}
.main-content .table .thead .row span {
  width: 25%;
  display: inline-block;
  color: #004664;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 48px;
  min-width: 250px;
}
.main-content .table .thead .row span.lp {
  width: 62px;
  min-width: unset !important;
}
.main-content .table .thead .row span.short {
  min-width: unset !important;
  width: auto;
}
.main-content .table .tbody {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-content .table .tbody .row {
  position: relative;
  border-radius: 10px;
  border: none;
  background: #F2F4F6;
  padding: 16.5px 0;
  width: fit-content;
  min-width: 100%;
  white-space: nowrap;
}
.main-content .table .tbody .row.green > div.head span, .main-content .table .tbody .row.green > .lp {
  color: #00CD50;
}
.main-content .table .tbody .row div.head {
  display: inline-flex;
  width: 50%;
}
.main-content .table .tbody .row div.head span {
  width: 50%;
}
.main-content .table .tbody .row span {
  width: 25%;
  display: inline-block;
  color: #1E1E1E;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  min-width: 250px;
  vertical-align: bottom;
}
.main-content .table .tbody .row span.strong {
  transition: color 0.08s ease-out;
  color: #004664;
}
.main-content .table .tbody .row span.blocked {
  color: #b1b1b1;
}
.main-content .table .tbody .row span.lp {
  width: 62px;
  width: 38px;
  margin-right: 24px;
  text-align: center;
  min-width: unset !important;
}
.main-content .table .tbody .row span.more {
  cursor: pointer;
  width: auto;
  margin: -4.5px 20px -4.5px auto;
  margin: 0 20px 0 auto;
  float: right;
  min-width: unset !important;
  overflow: hidden;
}
.main-content .table .tbody .row span.more img {
  transition: rotate 0.2s;
  transition-delay: 0.1s;
}
.main-content .table .tbody .row span.dots {
  float: right;
  cursor: pointer;
  width: 38px;
  min-width: unset !important;
}
.main-content .table .tbody .row span.dots > img {
  margin: 0 auto;
}
.main-content .table .tbody .row span.dots .qr > img {
  padding: 1px;
}
.main-content .table .tbody .row span.dots .container {
  display: none;
  position: absolute;
  right: 0;
  top: 50px;
  background: #fff;
  overflow: hidden;
  z-index: 2;
  left: auto;
  width: auto;
  height: auto;
  box-shadow: 0 2px 10.6px 0 rgba(0, 0, 0, 0.13);
  border-radius: 8px;
}
.main-content .table .tbody .row span.dots .container .create {
  display: none;
}
.main-content .table .tbody .row span.dots .container div {
  padding: 16px 26px 16px 20px;
  gap: 8px;
  display: flex;
  color: #004664;
  font-size: 13px;
  font-weight: 600;
  align-items: center;
  transition: background-color 0.15s;
}
.main-content .table .tbody .row span.dots .container div:hover {
  background-color: #F2F4F6;
}
.main-content .table .tbody .row span.dots .container div > img {
  width: 24px;
  height: 24px;
}
.main-content .table .tbody .row.active > .strong {
  color: #00CD50;
}
.main-content .table .tbody .row.active > .lp {
  font-weight: 700;
  color: #00CD50;
}
.main-content .table .tbody .row.active > .more img, .main-content .table .tbody .row.active > .top-row > .more img {
  rotate: 90deg;
}
.main-content .table .tbody .row .button.transparent {
  margin: 12px 0;
}
.main-content .table .terminals, .main-content .table .admin {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 42px 24px 25.5px;
  width: 100%;
  border-top: 2px solid #00CD50;
  margin-top: 16.5px;
}
.main-content .table .terminals.empty, .main-content .table .admin.empty {
  padding-top: 25.5px;
  margin-bottom: -20px;
  border-bottom: none;
}
.main-content .table .terminals .top-row, .main-content .table .admin .top-row {
  display: flex;
  flex: 1;
  align-items: center;
  background: #FFF;
  height: 48px;
  border-radius: 8px;
}
.main-content .table .terminals .row, .main-content .table .admin .row {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  padding: 0 !important;
}
.main-content .table .terminals .row .strong > img, .main-content .table .admin .row .strong > img {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 10px;
}
.main-content .table .admin.empty {
  padding: 0;
}
.main-content .table .endUsers {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-content .table .endUsers .row {
  background: #F2F4F6;
  justify-content: flex-end;
  height: 48px;
}
.main-content .table .endUsers .row .strong {
  margin-right: auto;
}
.main-content.reports .box.first {
  align-items: flex-end;
}
.main-content.reports .box.first select {
  background-color: white;
}
.main-content.reports .box.first label {
  margin: 0;
}
.main-content.reports .box.first label.date {
  width: calc(25% - 12px);
}
.main-content.reports .box.second .button.secondary.transparent {
  width: 174px;
}
.main-content.reports .box.second .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.main-content.reports .box.second .bottom {
  display: flex;
  gap: 24px;
  width: 100%;
}
.main-content.reports .box.second .bottom .button {
  height: 52px;
}
.main-content.reports .box.second .bottom .qty {
  width: 90px;
}
.main-content .pager {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.main-content .pager span {
  margin-top: 24px;
  margin-bottom: -6px;
  color: #16222F;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  padding: 6px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s ease-out;
}
.main-content .pager span.active, .main-content .pager span:hover {
  opacity: 1;
}

.button {
  display: flex;
  height: 48px;
  padding: 20px;
  align-items: center;
  gap: 8px;
  color: #FEFEFE;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  border-radius: 8px;
  background: #00CD50;
  width: max-content;
  border: none;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  /*    &.secondary {
       background: #004664;
      }*/
}
.button.transparent, .button.secondary {
  background: transparent;
  border: 2px solid #004664;
  color: #004664;
}

h2 {
  font-size: 28px;
  line-height: 140%;
  width: fit-content;
  margin-bottom: 8px;
  color: #004664;
}

form {
  display: flex;
  flex-direction: column;
  width: 600px;
  max-width: 100%;
  gap: 8px;
  margin: 10px 0;
}

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=date],
input[type=tel],
input[type=nuumber],
input[type=search],
select,
textarea {
  font-size: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  background: #F2F4F6;
  height: 52px;
}
input[type=text]:focus, input[type=text]:focus-visible,
input[type=email]:focus,
input[type=email]:focus-visible,
input[type=number]:focus,
input[type=number]:focus-visible,
input[type=password]:focus,
input[type=password]:focus-visible,
input[type=date]:focus,
input[type=date]:focus-visible,
input[type=tel]:focus,
input[type=tel]:focus-visible,
input[type=nuumber]:focus,
input[type=nuumber]:focus-visible,
input[type=search]:focus,
input[type=search]:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: 2px solid #004664;
  box-shadow: none;
}

input[type=search] {
  background: rgba(255, 255, 255, 0.7);
}

input:disabled, select:disabled, textarea:disabled {
  background-color: white;
  appearance: none;
}

input[type=checkbox]:checked {
  background-color: #00CD50;
}

input[type=checkbox]:checked:after {
  content: url("/assets/img/check.svg");
  color: white;
  line-height: 22px;
}

input[type=checkbox] {
  text-align: center;
  width: 20px !important;
  height: 20px !important;
  appearance: none;
  box-shadow: none;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #F2F4F6;
  background: #F2F4F6;
  cursor: pointer;
}

main.register {
  margin: auto;
  width: fit-content;
  max-width: 1440px;
}

.flash_message {
  position: absolute;
  width: 600px;
  max-width: 90%;
  padding: 20px;
  background: white;
  z-index: 2000;
  border: 1px solid #94c01f;
  border-radius: 4px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  display: none;
}

.flash_message.fade {
  display: block;
}

.flash_message.error {
  border: 1px solid #909090;
}

.top {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

th, td {
  padding: 8px;
}

tr:not(:last-of-type) td {
  border-bottom: 1px solid black;
}

#addShopBtn {
  margin-left: 50px;
}

.modal {
  display: none;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 660px;
  width: 700px;
  max-width: calc(100% - 32px);
  padding: 24px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 2px 10.6px 0 rgba(0, 0, 0, 0.13);
  align-items: flex-end;
}
.modal .close {
  background: url(../assets/img/x.svg) center no-repeat;
  background-size: 24px;
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin: 4px;
  right: 24px;
  top: 24px;
}
.modal h3 {
  margin-bottom: 16px;
  color: #004664;
  font-size: 24px;
  line-height: 100%;
  width: 100%;
}
.modal h5 {
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  width: 100%;
}
.modal h5.margin {
  margin-bottom: 8px;
}
.modal h5.margin-big {
  margin-bottom: 24px;
}
.modal .button {
  width: calc(50% - 12px);
  margin-left: calc(50% + 12px);
  margin-top: 24px;
}
.modal .buttons {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}
.modal .buttons .button {
  flex-grow: 1;
  width: auto;
  margin: 0;
}
.modal .row-shops {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 48px;
  padding: 10px;
}
.modal .row-shops .head {
  display: flex;
  gap: 16px;
  width: calc(100% - 36px);
}
.modal .row-shops .head span {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: max-content;
}
.modal .row-shops label {
  display: contents;
}
.modal .row-shops .strong {
  color: #004664;
  display: flex;
  flex-direction: row;
  margin: 0;
  align-items: center;
  gap: 10px;
  width: 25%;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
  min-width: 200px;
  vertical-align: bottom;
  cursor: pointer;
}
.modal input.error {
  outline: 1px solid #db5353;
}
.modal .error-msg {
  width: 100%;
  color: #EB3246;
  line-height: 40px;
  margin-top: 10px;
  margin-bottom: -10px;
}

label {
  margin-top: 16px;
  width: calc(50% - 12px);
  flex-direction: column;
  display: inline-flex;
  gap: 6px;
  position: relative;
}
label.full {
  width: 100%;
}

#overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 70, 100, 0.2);
  z-index: 999;
  backdrop-filter: blur(2.5px);
}

/*
#shopModal {

  input {
    display: block;
    width: 100%;


    height: 52px;
    padding: 0 16px;
    background: #F2F4F6;
    background: #f9fafb;
    color: #4D4D4D;
    font-size: 13px;
    letter-spacing: -0.13px;

  }

  .button {
    margin: auto 0 0 14px;
  }
}
*/
#adminShopsModal button {
  width: 100%;
  margin-left: 0;
}

#deleteModal h3, #deleteModal h5, #blockModal h3, #blockModal h5, #sendReportModal h3, #sendReportModal h5 {
  text-align: center;
}

#qrModal {
  justify-content: center;
  width: 400px;
}
#qrModal .qr-box {
  width: 250px;
  height: 250px;
}
#qrModal .qr-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
#qrModal .qr-copy .copy-btn {
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 6px;
  padding: 2px;
}
#qrModal .qr-copy .copy-btn:focus, #qrModal .qr-copy .copy-btn:focus-visible, #qrModal .qr-copy .copy-btn:active {
  background-color: #e6edf4;
}
#qrModal .qr-text {
  color: #004664;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 140%;
}
#qrModal .heading {
  font-size: 13px;
  margin-bottom: 16px;
}
#qrModal .button {
  margin: 16px 0 0;
  width: 100%;
}

#terminalModal button {
  margin-left: auto;
}

#deleteProduct h3 {
  text-align: center;
  margin: 0;
}

#saveReportModal {
  text-align: center;
}

main.container .login-page h1 {
  color: #004664;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
main.container .login-page h5 {
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}
main.container .login-page p {
  margin: 8px 0 0;
}
main.container .login-page a {
  color: #00CD50;
  font-weight: 600;
  text-decoration-line: underline;
}
main.container .login-page .button {
  width: 100%;
}
main.container .login-page .left {
  position: fixed;
  left: 0;
  height: 100vh;
  max-width: calc(100vw - 900px);
  object-fit: cover;
  object-position: right;
}
main.container .login-page .left .logo {
  width: 163px;
  height: 76px;
  position: absolute;
  left: 25px;
  top: 25px;
}
main.container .login-page .left .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
main.container .login-page .left .bottom {
  position: absolute;
  left: 38px;
  bottom: 32px;
  color: #FFF;
  width: 506px;
  max-width: calc(100% - 74px);
}
main.container .login-page .left .bottom h1 {
  color: #FFF;
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
}
main.container .login-page .left .bottom p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
main.container .login-page .right {
  position: fixed;
  min-width: 48.2%;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  width: 900px;
  max-width: 100%;
}
main.container .login-page .right .mobile {
  display: none;
}

.toggle-pass {
  position: absolute;
  right: 16px;
  width: 24px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px;
}
.toggle-pass:focus {
  outline: 2px solid #004664;
}

#main_container .toggle-pass {
  margin-top: 12px;
}

.info {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.info.buttons {
  margin-top: 0;
}

.reports-header {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: center;
}

#reportsTable {
  min-width: max-content;
}
#reportsTable span.status {
  display: inline-flex;
  height: 16px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  width: auto;
  padding: 0 4px;
  min-width: unset;
  background: #00CD50;
  overflow: visible;
}
#reportsTable span.status.draft {
  background: rgba(77, 77, 77, 0.7);
}

.search-cont {
  position: relative;
  display: flex;
  gap: 20px;
  width: calc(100% - 198px);
}

.search-select label {
  width: 100%;
}
.search-select input {
  background: white;
}

.dropdown {
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  border-radius: 8px;
  scrollbar-width: thin;
}
.dropdown .option {
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  gap: 20px;
}
.dropdown .option:hover {
  background-color: #F2F4F6;
}
.dropdown .option span {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
  width: 204px;
}
.dropdown .option span.desc {
  text-overflow: ellipsis;
  flex-shrink: unset;
  width: auto;
}

.box {
  display: flex;
  padding: 24px;
  border-radius: 8px;
  background: #F2F4F6;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box h2 {
  width: 100%;
}
.box input {
  background: white;
}
.box p {
  color: #4D4D4D;
  font-size: 13px;
  line-height: 130%;
  letter-spacing: -0.13px;
  opacity: 0.7;
  margin-bottom: 10px;
}

#products {
  counter-reset: rowNumber;
}
#products .tbody {
  min-width: 100%;
}
#products .row {
  display: flex;
  gap: 24px;
  padding-left: 24px;
  counter-increment: rowNumber;
  max-width: 100%;
}
#products .row span {
  width: auto;
  min-width: unset;
  flex-shrink: 0;
}
#products .row span.lp {
  width: 24px;
  margin: 0;
  padding: 0;
}
#products .row span.lp::before {
  content: counter(rowNumber);
}
#products .row span.ean {
  width: 160px;
}
#products .row span.name {
  width: calc(100% - 452px);
}
#products .row span.delete-item {
  margin-left: auto;
  cursor: pointer;
  flex-shrink: 0;
  width: 60px;
  padding-left: 0;
  margin-left: 22px;
  padding-right: 24px;
}
#products .row span.delete-item img {
  margin-left: auto;
}
#products .row .qty {
  background: white;
  position: relative;
  min-width: 0;
  height: 34px;
  margin: -5px 0;
  align-items: center;
  display: flex;
}
#products .row .qty span {
  position: absolute;
  vertical-align: middle;
  padding: 0 8.5px;
  cursor: pointer;
  height: 100%;
  line-height: 200%;
  transition: background-color 0.1s ease-out;
}
#products .row .qty span:active {
  background-color: #F2F4F6;
}
#products .row .qty span.min {
  left: 0;
}
#products .row .qty span.plus {
  right: 0;
}
#products .row .qty input[type=number] {
  background: white;
  width: auto;
  min-width: 0;
  outline: none;
  text-align: center;
  height: 100%;
}

.filters {
  margin: 0 0 24px 24px;
  display: flex;
  gap: 8px;
}
.filters select {
  width: 300px;
  max-width: calc(100% - 258px);
}
.filters .picker {
  position: relative;
}
.filters .picker .input-button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.filters .picker .input-button.clear {
  display: none;
}
.filters .form-control.input {
  background: white;
  width: 250px;
}

.flatpickr-prev-month, .flatpickr-next-month {
  display: none;
}

.flatpickr-current-month {
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flatpickr-months .flatpickr-month {
  height: 40px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: #00CD50 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.flatpickr-current-month .numInputWrapper {
  color: #4D4D4D !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.flatpickr-prev-month, .flatpickr-next-month {
  display: none;
}

.flatpickr-current-month {
  width: 100% !important;
  left: 0 !important;
  display: flex !important;
  justify-content: space-between;
}

.flatpickr-day {
  border: none !important;
}
.flatpickr-day.today {
  border: 1px solid #959ea9;
}
.flatpickr-day.inRange {
  background: #d6fae4 !important;
  box-shadow: -5px 0 0 #d6fae4, 5px 0 0 #d6fae4 !important;
  border-color: #d6fae4 !important;
}
.flatpickr-day.startRange {
  border-color: #00CD50 !important;
  background: #00CD50 !important;
  border-radius: 14px 0 0 14px !important;
}
.flatpickr-day.endRange {
  border-color: #00CD50 !important;
  background: #00CD50 !important;
  border-radius: 0 14px 14px 0 !important;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #d6fae4 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(0, 0, 0, 0.3) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover,
.numInputWrapper:hover {
  background: transparent !important;
}

.numInputWrapper span {
  border: none !important;
  opacity: 1 !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #004664;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-bottom-color: #004664;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:hover:after {
  border-top-color: #00CD50 !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:hover:after {
  border-bottom-color: #00CD50 !important;
}

.numInputWrapper span:hover {
  background: transparent !important;
}

.flatpickr-current-month input.cur-year {
  margin: 0 !important;
}

.form-floating > label {
  margin: 0;
}

.return {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  line-height: 120%;
  margin: 0 0 24px 24px;
}

#notifications {
  min-width: 100%;
}
#notifications .row {
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #F2F4F6;
  background: #FFF;
  display: flex;
  padding: 24px;
  justify-content: space-between;
  position: relative;
  white-space: break-spaces;
}
#notifications .row.unread:after {
  right: 24px;
  top: 50px;
  width: 14px;
  height: 14px;
}
#notifications .row .left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#notifications .row .left b {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}
#notifications .row .left p {
  color: #858585;
  font-size: 14px;
  line-height: 130%;
}
#notifications .row .date {
  color: #858585;
  font-size: 12px;
  line-height: 130%;
}

.unread:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #EB3246;
  border-radius: 40px;
  position: absolute;
}

.sidebar a.notification {
  position: relative;
}
.sidebar a.notification.unread:after {
  left: 11px;
  top: 11px;
}

.overflow-container {
  position: relative;
}
.overflow-container .over {
  display: none;
  position: absolute;
  bottom: 14px;
  top: 0;
  width: 25px;
  background: linear-gradient(269deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50.19%);
  backdrop-filter: blur(2px);
}
.overflow-container .over.left {
  left: 0;
}
.overflow-container .over.right {
  right: 0;
  transform: scaleX(-1);
}
.overflow-container .over.visible {
  display: block;
}

#loader {
  background: url(/assets/img/loader.svg) center no-repeat rgba(0, 70, 100, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 100px;
  z-index: 10000;
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
  display: none;
}

@media (max-width: 1440px) {
  main.container .login-page .left {
    max-width: calc(100vw - 48.2% - 48px);
  }
  main.container .login-page .left .bottom h1 {
    font-size: 56px;
    line-height: 110%;
  }
  main.container .login-page .right {
    width: calc(48.2% - 48px);
    margin: 0 24px;
  }
}
@media (max-width: 1200px) {
  .main-content.reports .info.buttons {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 1000px) {
  .main-content {
    padding: 24px;
  }
  .main-content .table .thead .row span, .main-content .table .tbody .row span {
    min-width: 180px;
  }
  #main_container {
    width: calc(100% - 200px);
  }
  .sidebar {
    padding: 16px;
    gap: 18px;
    width: 200px;
  }
  .sidebar hr {
    margin: 10px 0;
  }
}
@media (max-width: 900px) {
  .main-content #addShopBtn, .main-content #addAdminBtn, .main-content #createReport {
    position: absolute;
    right: 40px;
    top: 24px;
  }
  .main-content .table .thead {
    display: none !important;
  }
  .main-content .table .tbody .row {
    padding: 8px 0;
  }
  .main-content .table .tbody .row div.head {
    flex-direction: column;
    gap: 2px;
  }
  .main-content .table .tbody .row div.head span {
    line-height: normal;
    width: 100%;
  }
  .main-content .table .tbody .row span {
    font-size: 13px;
    min-width: unset;
    width: auto;
    line-height: 34px;
  }
  .main-content .table .tbody .row span.lp {
    line-height: 34px;
  }
  .main-content .table .tbody .row span.status {
    margin-bottom: 10px;
  }
  .main-content .table .tbody .row span.more > img, .main-content .table .tbody .row span.dots > img {
    padding: 5px 0;
  }
  .main-content .table .terminals {
    padding: 24px 24px 1.5px;
  }
  .main-content .table.reportPage .thead .row span, .main-content .table.reportPage .tbody .row span {
    min-width: 180px;
  }
  #main_container {
    width: 100%;
  }
  #main_container .search-container {
    margin: 0 16px 8px;
  }
  #main_container .search-container:before {
    left: 12px;
  }
  #main_container .search-container #search {
    width: 100%;
    padding: 12px 12px 12px 40px;
    font-size: 13px;
    letter-spacing: -0.13px;
  }
  .main-content {
    padding: 12px;
    padding: 12px 12px 78px;
    width: calc(100% - 32px);
    margin-bottom: 100px;
  }
  .main-content.notificationPage {
    padding: 12px;
  }
  .main-content #addShopBtn, .main-content #addAdminBtn, .main-content #createReport {
    top: unset;
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    margin: 0;
  }
  .main-content .info.buttons {
    position: absolute;
    bottom: 12px;
    width: calc(100% - 38px);
    left: 19px;
  }
  .main-content .info.buttons .button {
    width: 100%;
  }
  .main-content.reports {
    gap: 12px;
    padding-bottom: 130px;
  }
  .main-content.reports .reports-header {
    margin-bottom: 4px;
  }
  .main-content.reports .box {
    flex-direction: column;
  }
  .main-content.reports .box.first {
    padding: 0;
    background: transparent;
    gap: 12px;
  }
  .main-content.reports .box.first label, .main-content.reports .box.first label.date {
    width: 100%;
    gap: 8px;
    line-height: 120%;
  }
  .main-content.reports .box.first label input, .main-content.reports .box.first label select, .main-content.reports .box.first label.date input, .main-content.reports .box.first label.date select {
    background: #F2F4F6;
  }
  .main-content.reports .box.second {
    padding: 8px;
  }
  .main-content.reports .box.second .top {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .main-content.reports .box.second .top p {
    color: #000;
    font-size: 16px;
    line-height: 120%;
    margin: 0;
    opacity: 1;
    letter-spacing: normal;
  }
  .main-content.reports .box.second .bottom {
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-content.reports .box.second .bottom .search-cont {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .main-content.reports .box.second .bottom .search-cont .search-select {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .main-content.reports .box.second .bottom .qty {
    width: calc(100% - 62px);
  }
  .main-content.reports .box.second .bottom .button {
    height: 44px;
    padding: 16px;
  }
  .main-content.reports #products .tbody {
    min-width: 100%;
    gap: 6px;
  }
  .main-content.reports #products .row {
    flex-wrap: wrap;
    row-gap: 2px;
    column-gap: 12px;
    width: 100%;
    padding: 8px 12px;
  }
  .main-content.reports #products .row > span {
    line-height: normal;
  }
  .main-content.reports #products .row > span.lp {
    display: none;
  }
  .main-content.reports #products .row > span.ean, .main-content.reports #products .row > span.name {
    width: calc(100% - 160px);
  }
  .main-content.reports #products .row > span.ean {
    color: #004664;
  }
  .main-content.reports #products .row > span.delete-item {
    padding: 0;
    width: 36px;
    margin: -14px 0 0;
  }
  .main-content.reports #products .row > span.delete-item img {
    margin: auto;
  }
  .main-content.reports #products .row .qty {
    margin: -18px 0 0px;
  }
  .main-content.reports #products .row .qty input[type=number] {
    width: 100px;
  }
  .sidebar {
    width: 100% !important;
    flex-direction: row;
    justify-content: space-around;
    margin: auto 0 0;
    padding: 14px;
    border-radius: 8px 8px 0 0;
    background: #FFF;
    position: fixed;
    bottom: 0;
    z-index: 100;
  }
  .sidebar a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 64px;
  }
  .sidebar a span {
    white-space: wrap;
    line-height: normal;
    font-size: 13px;
    text-align: center;
    margin: auto;
  }
  .sidebar a.active span {
    font-weight: 500;
  }
  .sidebar a.toggle {
    display: none;
  }
  .sidebar a.notification.unread:after {
    left: 50px;
  }
  .sidebar hr {
    display: none;
  }
  main.container .login-page .left {
    display: none;
  }
  main.container .login-page .right {
    width: 100%;
    padding: 0 15px;
    margin: 0;
    background: url(../assets/img/login-mb.jpg) lightgray -173.212px 0px/181.096% 100% no-repeat;
  }
  main.container .login-page .right .mobile {
    display: block;
  }
  main.container .login-page .right .desktop {
    display: none;
  }
  main.container .login-page .right h1 {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 14px;
  }
  main.container .login-page .right h5 {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 64px;
  }
  main.container .login-page .right .logo {
    width: 165px;
    height: 72px;
    flex-shrink: 0;
    margin-bottom: 14px;
  }
  main.container .login-page p {
    margin: 4px 0 0;
    color: #FFF;
    font-weight: 500;
    line-height: normal;
  }
  main.container .login-page p.reset {
    margin-top: 14px;
  }
  main.container .login-page .form-floating {
    margin: 0 !important;
  }
  main.container .login-page .form-floating label {
    color: #FFF;
    justify-content: center;
    padding: 0;
    left: 24px;
    margin-top: 0px;
  }
  main.container .login-page .form-floating > input.form-control {
    padding: 20px 24px 10px;
  }
  main.container .login-page .form-floating > .form-control-plaintext ~ label,
  main.container .login-page .form-floating > .form-control:focus ~ label,
  main.container .login-page .form-floating > .form-control:not(:placeholder-shown) ~ label,
  main.container .login-page .form-floating > .form-select ~ label {
    margin-top: -4px;
  }
  main.container .login-page form {
    margin: 0;
    gap: 10px;
  }
  main.container .login-page input.form-control {
    padding: 24px;
    border-radius: 16px;
    height: 64px;
    border: 2px solid #FFF;
    background: transparent;
    color: #FFF;
  }
  main.container .login-page .toggle-pass {
    filter: brightness(0) invert(1);
  }
  main.container .login-page .toggle-pass:focus {
    outline-color: white;
  }
}
@media (max-width: 600px) {
  header {
    padding: 24px 16px;
  }
  header .logo {
    width: 96px;
    height: 41px;
  }
  .main-content .table {
    overflow-x: auto;
  }
  .main-content .table .tbody {
    gap: 2px;
  }
  .main-content .table .tbody .row {
    position: static;
    width: 100%;
    padding: 3.5px 0;
  }
  .main-content .table .tbody .row div.head {
    max-width: calc(100% - 150px);
  }
  .main-content .table .tbody .row span.dots .container {
    position: fixed;
    bottom: 100px;
    left: 16px;
    top: unset;
    width: calc(100% - 32px);
  }
  .main-content .table .tbody .row span.dots .container .create {
    display: flex;
  }
  .main-content .table .tbody .row span.dots .container div {
    padding: 12px 24px;
    gap: 12px;
    line-height: 100%;
  }
  .main-content .table .tbody .row span.dots .container div:first-of-type {
    padding-top: 24px;
  }
  .main-content .table .tbody .row span.dots .container div:last-of-type {
    padding-bottom: 24px;
  }
  .main-content .table .terminals, .main-content .table .admin {
    padding: 0 0 2px;
    gap: 2px;
    margin: 3.5px 0 -3.5px !important;
    border-bottom: solid white 12.5px;
  }
  .main-content .table .terminals .top-row, .main-content .table .admin .top-row {
    width: 100%;
    border-radius: 0;
  }
  .main-content .table .terminals > .row, .main-content .table .admin > .row {
    flex-direction: column;
  }
  .main-content .table .terminals > .row span, .main-content .table .admin > .row span {
    line-height: 44px;
  }
  .main-content .table .terminals .button.transparent, .main-content .table .admin .button.transparent {
    display: none;
  }
  .main-content .table .terminals .row .strong, .main-content .table .admin .row .strong {
    max-width: calc(100vw - 156px);
    display: inline-block;
  }
  .main-content .table .terminals .endUsers, .main-content .table .admin .endUsers {
    gap: 0;
    border-top: 2px solid #00CD50;
  }
  .main-content .table .terminals .endUsers .row, .main-content .table .admin .endUsers .row {
    height: 44px;
  }
  .main-content .table #notifications .row {
    padding: 12px 8px;
  }
  .main-content .table #notifications .row.unread:after {
    top: 39px;
  }
  h2 {
    font-size: 20px;
    line-height: 100%;
  }
  p {
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
    opacity: 0.7;
    line-height: 130%;
    letter-spacing: -0.16px;
  }
  input[type=text], input[type=email],
  input[type=number], input[type=password],
  input[type=date], input[type=tel],
  input[type=nuumber], input[type=search],
  select, textarea {
    height: 44px;
  }
  .modal {
    width: calc(100% - 16px);
    max-width: unset;
    top: unset;
    bottom: 100px;
    transform: initial;
    left: 8px;
    padding: 12px;
  }
  .modal h3 {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 12px;
  }
  .modal h5 {
    display: none;
  }
  .modal label {
    width: 100%;
    margin-top: 12px;
  }
  .modal .buttons {
    flex-direction: column-reverse;
    gap: 12px;
    margin-bottom: 12px;
  }
  .modal .buttons button {
    margin: 0 !important;
  }
  .modal .button {
    width: calc(100% - 13px);
    margin: 24px 6.5px 0 !important;
  }
  .modal .close {
    width: 24px;
    height: 24px;
    top: 12px;
    right: 12px;
    margin: 0;
  }
  .modal .row-shops {
    margin: 0;
  }
  .modal .row-shops .strong {
    min-width: unset;
  }
  .modal .row-shops .head {
    flex-direction: column;
    gap: 2px;
    position: relative;
    padding-left: 34px;
    overflow: hidden;
  }
  .modal .row-shops .head label {
    margin: 0;
    width: auto;
    display: block;
  }
  .modal .row-shops .head img {
    transform: translateY(11px);
    overflow: visible;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
  }
  .modal .row-shops .head span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: auto;
  }
  #deleteModal h3, #blockModal h3, #sendLinkModal h3 {
    margin-top: 36px;
  }
  #deleteModal h5, #blockModal h5, #sendLinkModal h5 {
    display: block;
    font-size: 16px;
    line-height: 120%;
  }
  #qrModal {
    width: calc(100% - 16px);
  }
  .filters {
    margin: 0 16px 8px;
  }
  .filters select, .filters .picker {
    width: calc(50% - 4px);
    max-width: unset;
    font-size: 13px;
  }
  .filters select .form-control.input, .filters .picker .form-control.input {
    width: 100%;
    font-size: 13px;
  }
  .dropdown .option {
    flex-direction: column;
    gap: 2px;
    padding: 6px 12px;
  }
  .dropdown .option span {
    line-height: normal;
    width: 100%;
    font-size: 13px;
  }
  .dropdown .option span:first-of-type {
    color: #004664;
  }
  main.container .login-page .right {
    padding-bottom: 40px;
  }
  main.container .login-page .right .logo {
    width: 132px;
    height: 60px;
    flex-shrink: 0;
  }
  main.container .login-page .right h5 {
    margin-bottom: 34px;
  }
}
@media (max-width: 460px) {
  .sidebar {
    gap: 12px;
    padding: 10px 6px;
  }
  .sidebar a span {
    letter-spacing: -0.16px;
    font-size: 12px;
  }
  .main-content.reports #products .row {
    align-items: center;
  }
  .main-content.reports #products .row .qty {
    margin: 8px 0 0;
    width: calc(100% - 36px);
    height: 30px;
    font-size: 13px;
  }
  .main-content.reports #products .row .qty input[type=number] {
    width: 100%;
  }
  .main-content.reports #products .row > span.ean, .main-content.reports #products .row > span.name {
    width: 100%;
  }
  .main-content.reports #products .row > span.delete-item {
    margin: 8px 0 0;
    width: auto;
  }
}

/*# sourceMappingURL=style.css.map */
