@font-face {
  font-family: "Gilroy-Medium";
  src: url("/public/fonts/Gilroy-Medium.woff") format("woff");
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("/public/fonts/Gilroy-Regular.woff") format("woff");
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url("/public/fonts/Gilroy-Bold.woff") format("woff");
}
* {
  padding: 0;
  margin: 0;
  font-family: "Gilroy-Medium";
  font-size: 14px;
  user-select: none;
}
.form-error-message {
  font-size: 12px;
  margin-top: 5px;
  color: indianred;
}
.form-error-message i {
  color: indianred;
}
.flash {
  margin-bottom: 15px;
}
.flash > div {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flash button {
  background: none;
  border: none;
}
.flash .error {
  background-color: rgba(250, 92, 124, 0.18);
  border-color: rgba(250, 92, 124, 0.2);
}
.flash .error p,
.flash .error b {
  color: #fa5c7c;
}
.flash .error button i {
  color: #fa5c7c;
}
.flash .success {
  background-color: rgba(10, 207, 151, 0.18);
  border-color: rgba(10, 207, 151, 0.2);
}
.flash .success p,
.flash .success b {
  color: #4BB543;
}
.flash .success button i {
  color: #4BB543;
}
a {
  text-decoration: none;
}
.modal-background {
  position: fixed;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
}
.modal-background .modal {
  position: absolute;
  background-color: white;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  min-width: 500px;
  min-height: 100px;
  max-height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}
.modal-background .modal .success-message {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}
.modal-background .modal .success-message i {
  margin-bottom: 20px;
  font-size: 40px;
  color: #4BB543;
}
.modal-background .modal .success-message p {
  font-size: 20px;
  color: #4BB543;
}
.modal-background .modal .unlink {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}
.modal-background .modal .unlink h1 {
  font-size: 20px;
  margin-bottom: 30px;
}
.modal-background .modal .unlink > div {
  display: flex;
}
.modal-background .modal .unlink > div button:nth-child(1) {
  margin-right: 30px;
}
.modal-background .modal .modal-header {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.modal-background .modal .modal-header h1 {
  font-size: 20px;
}
.modal-background .modal .buttons {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
  border-top: 1px solid #ebebeb;
}
.modal-background .modal .mess {
  padding: 15px;
  border-radius: 5px;
  background-color: #fcfcfc;
  border: 1px solid #ebebeb;
  margin-bottom: 15px;
}
.modal-background .modal ul {
  list-style-type: none;
  margin-bottom: 15px;
}
.modal-background .modal ul li {
  padding: 15px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.modal-background .modal ul li:last-child {
  margin: 0;
}
.modal-background .modal ul li > label {
  margin-left: 10px;
  cursor: pointer;
}
.modal-background .modal button[modal-close] {
  background: none;
  border: none;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
}
.modal-background .modal button[modal-close] i {
  color: #5c656d;
}
.modal-background .modal.show {
  animation: 0.3s showModal ease;
}
@keyframes showModal {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-background .modal.hide {
  animation: 0.3s hideModal ease-out;
}
@keyframes hideModal {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.modal-background.show {
  animation: 0.3s showBackground ease-out;
}
@keyframes showBackground {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-background.hide {
  animation: 0.3s hideBackground ease-out;
}
@keyframes hideBackground {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 5px;
}
.form-group.line {
  flex-direction: row;
  align-items: center;
}
.form-group.line label {
  margin: 0;
  margin-right: 5px;
}
.form-group.line.right {
  justify-content: flex-end;
}
body.auth {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.auth .logo {
  margin-bottom: 30px;
}
body.auth .powered {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  font-size: 12px;
}
body.auth .powered a {
  position: relative;
  text-decoration: underline;
  font: inherit;
}
body.auth .auth-form {
  height: 60vh;
  display: flex;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ebebeb;
}
body.auth .auth-form form {
  width: 250px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.auth .auth-form form > div {
  margin-bottom: 15px;
}
body.auth .auth-form h1 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
}
body.auth .auth-form > div {
  padding: 30px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #157eb1;
}
body.auth .auth-form > div img {
  width: 100%;
}
body.auth .auth-form > div h1,
body.auth .auth-form > div h2,
body.auth .auth-form > div p {
  color: white;
  text-transform: uppercase;
  white-space: normal;
  margin-bottom: 15px;
  text-align: center;
  font-weight: normal;
}
body.auth .auth-form > div h2 {
  font-size: 20px;
}
body.auth .auth-form .f1 {
  margin: 0;
  display: flex;
  justify-content: space-between;
}
a.link {
  position: relative;
  text-decoration: none;
}
a.link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  border-bottom: 1px dotted #acb5bd;
  height: 1px;
  width: 100%;
  padding-top: 5px;
  left: 0;
}
[contenteditable] {
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  background-color: #fafafa;
}
hr {
  height: 1px;
  background-color: #ebebeb;
  border: none;
}
.base {
  background-color: white;
  padding: 15px 15px 0 15px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  position: relative;
  z-index: 2;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea,
select {
  height: 38px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 0 15px;
  outline-color: rgba(21, 126, 177, 0.5);
  outline-width: thick;
}
select {
  height: 40px;
}
textarea {
  padding: 15px;
  height: auto;
  resize: vertical;
}
button {
  cursor: pointer;
}
.btn {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  height: 40px;
  padding: 0 15px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background 0.3s;
  position: relative;
}
.btn:hover {
  background-color: #ebebeb;
}
.btn i {
  color: inherit;
  margin-right: 5px;
  pointer-events: none;
}
@keyframes pulse {
  0% {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0.5;
  }
  100% {
    top: -1em;
    bottom: -1em;
    right: -1em;
    left: -1em;
    opacity: 0;
  }
}
.btn.pulsed:before {
  content: '';
  border-radius: 5px;
  display: block;
  z-index: -1;
  position: absolute;
  background-color: inherit;
  animation: 2s pulse infinite;
}
.btn.filter {
  background-color: #ebebeb;
}
.btn.filter:before {
  content: "";
  display: block;
  background-image: url(/icons/free-icon-filter-tool-black-shape-25337.png);
  height: 12px;
  width: 12px;
  background-size: contain;
  margin-right: 5px;
}
.btn.add {
  background-color: #157eb1;
  color: white;
  transition: background 0.3s;
}
.btn.add:hover {
  background-color: #066fa2;
}
.btn.delete {
  background-color: indianred;
  color: white;
  transition: background 0.3s;
}
.btn.delete:hover {
  background-color: #be4d4d;
}
.btn-menu {
  position: relative;
}
.btn-menu > div {
  position: absolute;
  bottom: -2px;
  right: 0;
  transform: translateY(100%);
  display: none;
  z-index: 5;
}
@keyframes show {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-menu > div ul {
  list-style-type: none;
  background-color: white;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: 0.1s show cubic-bezier(0.1, -0.6, 0.2, 0);
}
.btn-menu > div ul li {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 15px 0;
  border-bottom: 1px solid #ebebeb;
  white-space: nowrap;
  color: #5c656d;
}
.btn-menu > div ul li:last-child {
  border: none;
}
.btn-menu.active > div {
  display: block;
}
.draggable {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-gap: 3px;
  width: 11px;
  cursor: grab;
}
.draggable span {
  display: block;
  height: 2px;
  width: 2px;
  border-radius: 50%;
  background-color: #d7d7d7;
}
.pagination {
  background-color: white;
  padding: 15px;
  position: sticky;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid #ebebeb;
}
.pagination ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}
.images-container {
  padding: 10px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 148px);
  grid-gap: 10px;
}
.images-container .image {
  position: relative;
  z-index: 2;
  height: 148px;
  width: 148px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  overflow: hidden;
}
.images-container .image .image-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  align-items: center;
  transition: transform 0.3s;
  transform: translateY(-100%);
}
.images-container .image .image-panel button {
  background: none;
  border: none;
}
.images-container .image .image-panel button i {
  color: indianred;
}
.images-container .image:hover .image-panel {
  transform: translateY(0);
}
.images-container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.images-container .image:nth-child(2):before {
  content: 'Головна';
  display: block;
  position: absolute;
  bottom: 15px;
  left: 0;
  background-color: #157eb1;
  color: white;
  padding: 2px 5px;
  font-size: 12px;
  border-radius: 0 5px 5px 0;
}
.images-container label {
  display: block;
  background-color: #ffffee;
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  height: 148px;
  width: 148px;
  cursor: pointer;
  z-index: 1;
}
.images-container label i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #e1e1e1;
}
.images-container.single {
  height: 150px;
  width: 150px;
}
.images-container.single .image {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
}
.images-container.single .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.images-container.single label {
  display: block;
  background-color: #ffffee;
  position: absolute;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  height: 148px;
  width: 148px;
  cursor: pointer;
  z-index: 1;
}
.images-container.single label i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #e1e1e1;
}
.fake-checkbox input {
  display: none;
}
.fake-checkbox input:checked + label:before {
  opacity: 1;
}
.fake-checkbox label {
  position: relative;
  display: block;
  height: 20px;
  width: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  cursor: pointer;
  background-color: white;
}
.fake-checkbox label:before {
  content: '';
  opacity: 0;
  display: block;
  transition: opacity 0.3s;
  background-color: #157eb1;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 16px;
  width: 16px;
  border-radius: 3px;
}
.fake-checkbox-v2 input {
  display: none;
}
.fake-checkbox-v2 input:checked + label {
  background-color: #157eb1;
}
.fake-checkbox-v2 input:checked + label:before {
  left: calc(35px - 16px - 2px);
  background-color: white;
}
.fake-checkbox-v2 label {
  position: relative;
  display: block;
  height: 20px;
  width: 35px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  cursor: pointer;
  background-color: white;
  transition: background 0.3s;
}
.fake-checkbox-v2 label:before {
  content: '';
  display: block;
  transition: background 0.3s, right 0.3s, left 0.3s;
  background-color: #e1e1e1;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
}
hr {
  margin: 15px 0;
}
.panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel > input {
  flex: 1;
  margin-right: 15px;
}
.panel > div {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.panel > div:last-child {
  margin: 0;
}
.panel > div button {
  margin-left: 15px;
}
.panel > div button:first-child {
  margin: 0;
}
.panel .lang-selector {
  display: flex;
  align-items: center;
}
.panel .lang-selector label {
  margin-right: 10px;
}
.panel .lang-selector ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}
.panel .lang-selector ul li {
  margin-right: 5px;
}
.panel .lang-selector ul li a {
  padding: 5px;
  border: 2px solid #ebebeb;
  border-radius: 5px;
  display: block;
}
.panel .lang-selector ul li.active a {
  background-color: #157eb1;
  border-color: #157eb1;
  color: white;
}
.product-menu ul {
  list-style-type: none;
  display: flex;
}
.product-menu ul li {
  overflow: hidden;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  border-left: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  position: relative;
  margin-bottom: -1px;
  z-index: 1;
  background-color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
  transform: translateY(5px);
  transition: transform 0.3s;
}
.product-menu ul li a {
  padding: 15px 30px;
  display: block;
}
.product-menu ul li:hover {
  transform: translateY(0);
  opacity: 1;
}
.product-menu ul li.active {
  z-index: 3;
  opacity: 1;
  transform: translateY(0);
}
.product-menu ul li.active:before {
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  background-color: #157eb1;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table thead {
  background-color: #ebebeb;
}
table thead tr th {
  padding: 10px 15px;
  text-align: left;
  white-space: nowrap;
}
table thead tr th:last-child {
  border-radius: 0 5px 5px 0;
}
table thead tr th:first-child {
  border-radius: 5px 0 0 5px;
}
table tbody tr {
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.3s;
}
table tbody tr:last-child {
  border: none;
}
table tbody tr td {
  padding: 15px 15px;
  white-space: nowrap;
}
table tbody tr td .title {
  position: relative;
}
table tbody tr td .title > p {
  margin-top: 15px;
  font-size: 12px;
}
table tbody tr td .title > p b {
  font-size: inherit;
}
table tbody tr td .title .modal-list {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  list-style-type: none;
  background-color: white;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0 10px;
}
table tbody tr td .title .modal-list li {
  padding: 7.5px 15px;
  border-bottom: 1px dotted #ebebeb;
  cursor: pointer;
}
table tbody tr td p {
  white-space: normal;
}
table tbody tr td img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  border: 1px solid #ebebeb;
}
body {
  overflow: hidden;
  height: 100vh;
  background-color: #f8f8fb;
  display: flex;
  color: #5c656d;
}
body a,
body input,
body select,
body .btn {
  color: inherit;
}
body .left-col {
  background-color: #23282d;
  min-width: 250px;
  padding: 15px;
}
body .left-col .logo {
  margin-top: 15px;
  text-align: center;
}
body .left-col .logo h1 {
  font-size: 20px;
  color: white;
}
body .left-col .logo img {
  height: 40px;
  filter: grayscale(1);
}
body .left-col hr {
  background-color: #373c41;
}
body .left-col .menu > div {
  color: white;
  padding: 15px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .left-col .menu ul {
  background-color: #20252a;
  padding: 15px 30px;
  list-style-type: none;
  border-radius: 5px;
}
body .left-col .menu ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
body .left-col .menu ul li:last-child {
  margin: 0;
}
body .left-col .menu ul li span {
  background-color: #d54e21;
  display: flex;
  padding: 0 3px;
  justify-content: center;
  align-items: center;
  height: 20px;
  min-width: 20px;
  border-radius: 10px;
  color: white;
  font-size: 11px;
  margin-left: 5px;
}
body .left-col .menu ul li a {
  color: white;
  display: flex;
  align-items: center;
  opacity: 0.4;
}
body .left-col .menu ul li a:before {
  display: none;
}
body .left-col .menu ul li.active a {
  opacity: 1;
}
body .right-col {
  flex: 7;
  display: flex;
  flex-direction: column;
  position: relative;
}
body .right-col .filter-block {
  display: none;
  position: absolute;
  padding: 15px;
  width: 350px;
  background-color: rgba(255, 255, 255, 0.98);
  height: 100vh;
  z-index: 2;
  border-right: 1px solid #ebebeb;
}
body .right-col header {
  background-color: white;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #ebebeb;
  padding: 15px 0;
}
body .right-col header > div {
  display: flex;
  align-items: center;
  min-width: 71px;
  justify-content: center;
  margin-left: 30px;
  cursor: pointer;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  transition: border 0.3s;
}
body .right-col header > div:hover {
  border-color: #ebebeb;
}
body .right-col header .lang-selector {
  padding: 0 15px;
}
body .right-col header .lang-selector img {
  margin-right: 5px;
  display: block;
  height: 20px;
  width: 20px;
}
body .right-col header .lang-selector i {
  margin-left: 10px;
}
body .right-col header .notice-btn {
  position: relative;
}
body .right-col header .notice-btn i {
  font-size: 20px;
  animation: 3s bell infinite;
}
body .right-col header .logout-btn a i {
  font-size: 20px;
}
body .right-col header .profile-btn {
  padding: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
body .right-col header .profile-btn > div:not(.hidden-menu) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
}
body .right-col header .profile-btn img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
body .right-col header .profile-btn span {
  display: block;
  font-weight: bold;
}
body .right-col header .profile-btn i {
  margin-left: 10px;
}
body .right-col .page {
  overflow: auto;
  flex: 1;
}
body .right-col .page .page-header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .right-col .page .page-header h1 {
  font-size: 17px;
  font-family: "Gilroy-Bold";
}
body .right-col .page .page-header h1 span {
  font: inherit;
}
body .right-col .page .page-header .breadcrumbs {
  list-style-type: none;
  display: flex;
}
body .right-col .page .page-header .breadcrumbs li {
  margin-left: 5px;
}
body .right-col .page .page-container {
  margin: 0 15px 15px 15px;
}
.page.products-page .products-table tr td:nth-child(5) {
  width: 30%;
}
.page.products-page .products-table tr.catname th {
  background-color: #fafafa;
  padding: 5px 0;
}
.page.product-page form {
  position: relative;
  z-index: 2;
}
.page.product-page form table tr td {
  vertical-align: baseline;
  padding: 15px 0;
}
.page.product-page form table tr td:first-child {
  width: 200px;
}
.page.product-page form table tr td .descr,
.page.product-page form table tr td .title {
  display: flex;
  flex-direction: column;
}
.page.product-page form table tr td .descr textarea,
.page.product-page form table tr td .title textarea {
  resize: vertical;
}
.page.product-page form table tr:nth-child(1) td {
  vertical-align: top;
}
.page.product-page form hr {
  margin: 15px 0 0 0;
}
.page.product-page form .categories label {
  margin-bottom: 5px;
  display: block;
}
.page.product-page form .categories .categories-container > div {
  background-color: #ffffee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  height: 38px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  margin-bottom: 5px;
}
.page.product-page form .categories .categories-container > div button {
  background: none;
  border: none;
  color: indianred;
}
.page.product-page form .categories .categories-container > div .draggable {
  margin-right: 15px;
}
.page.product-page form .categories .categories-container > div > div {
  display: flex;
  align-items: center;
}
.page.product-page form input[type="file"] {
  display: none;
}
.page.product-page form .form-group-wrap {
  display: flex;
}
.page.product-page form .form-group-wrap > div {
  margin-left: 15px;
}
.page.product-page form .form-group-wrap > div:first-child {
  margin: 0;
}
.page.product-page form .form-group-wrap.w1 > div:first-child {
  flex: 4;
}
.page.product-page form .form-group-wrap.w1 > div:last-child {
  flex: 1;
}
.page.product-page form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.page.product-page form .form-group label {
  margin-bottom: 5px;
}
.product-attributes-page .attributes-container .panel.center {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.product-attributes-page .attributes-container table tbody tr:last-child {
  margin: 0;
}
.product-attributes-page .attributes-container table tbody tr td {
  vertical-align: top;
}
.product-attributes-page .attributes-container table tbody tr td [add-value] {
  background: none;
  border: none;
  color: green;
  font-size: 12px;
}
.product-attributes-page .attributes-container table tbody tr td [add-value] i {
  margin-right: 5px;
}
.product-attributes-page .attributes-container table tbody tr td .values-container {
  display: flex;
  flex-direction: column;
}
.product-attributes-page .attributes-container table tbody tr td .values-container .value-component {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.product-attributes-page .attributes-container table tbody tr td .values-container .value-component input {
  flex: 1;
}
.product-attributes-page .attributes-container table tbody tr td .values-container .value-component button {
  visibility: hidden;
  background: none;
  border: none;
  padding: 0 15px;
}
.product-attributes-page .attributes-container table tbody tr td .values-container .value-component button i {
  margin: 0;
  color: indianred;
}
.product-attributes-page .attributes-container table tbody tr td .values-container .value-component:hover button {
  visibility: visible;
}
.product-attributes-page .attributes-container table tbody tr td:nth-child(4) {
  width: 100%;
}
.page.stock .table-container table tr td {
  vertical-align: top;
}
.page.stock .table-container table tr td .values-container {
  display: flex;
  flex-direction: column;
}
.page.stock .table-container table tr td .values-container input {
  margin-bottom: 5px;
}
.page.stock .table-container table tr td .values-container input:last-child {
  margin: 0;
}
.page.stock .table-container table tr td:nth-child(4) {
  width: 100%;
}
.page.categories-page .page-container .categories-tree {
  list-style-type: none;
}
.page.categories-page .page-container .categories-tree li {
  margin-bottom: 5px;
  position: relative;
}
.page.categories-page .page-container .categories-tree li .row {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border: 1px solid #ebebeb;
  border-radius: 5px;
}
.page.categories-page .page-container .categories-tree li .row:hover {
  background-color: #fdfdfd;
}
.page.categories-page .page-container .categories-tree li .row .btns {
  display: flex;
  align-items: center;
}
.page.categories-page .page-container .categories-tree li .row .btns button {
  background: none;
  border: none;
}
.page.categories-page .page-container .categories-tree li .row .btns button:first-child {
  margin-right: 30px;
}
.page.categories-page .page-container .categories-tree li .row .btns button:first-child i {
  color: darkseagreen;
}
.page.categories-page .page-container .categories-tree li .row .btns button:last-child i {
  color: indianred;
}
.page.categories-page .page-container .categories-tree li .row .toggle {
  margin-right: 30px;
  background: none;
  border: none;
}
.page.categories-page .page-container .categories-tree li .row .toggle i {
  pointer-events: none;
}
.page.categories-page .page-container .categories-tree li .row > div {
  display: flex;
  align-items: center;
}
.page.categories-page .page-container .categories-tree li .row > div > div {
  margin: 0 15px 0 15px;
}
.page.categories-page .page-container .categories-tree li .row > div > div:first-child {
  margin: 0 15px 0 15px;
}
.page.categories-page .page-container .categories-tree li > ul {
  margin-left: 35px;
  position: relative;
  display: none;
}
.page.categories-page .page-container .categories-tree li > ul li:before {
  content: "";
  counter-increment: item;
  position: absolute;
  top: -5px;
  left: -16px;
  border-left: 1px dashed #157eb1;
  border-bottom: 1px dashed #157eb1;
  width: 15px;
  height: calc(54px / 2 + 5px);
}
.page.categories-page .page-container .categories-tree li > ul li:after {
  position: absolute;
  content: "";
  top: calc(54px / 2);
  left: -16px;
  border-left: 1px dashed #157eb1;
  width: 15px;
  bottom: 0;
}
.page.categories-page .page-container .categories-tree li > ul li:last-child:before {
  border-radius: 0 0 0 5px;
}
.page.categories-page .page-container .categories-tree li > ul li:last-child:after {
  display: none;
}
.page.categories-page .page-container .categories-tree li > ul.active {
  display: block;
}
.page.stats-page {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page.stats-page .page-container {
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.page.stats-page .page-container .left {
  flex: 5;
  margin-right: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page.stats-page .page-container .left h2 {
  margin-bottom: 15px;
}
.page.stats-page .page-container .left .stat-wrap-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 15px;
}
.page.stats-page .page-container .left .stat-wrap-1 > div {
  flex: 1;
  padding: 15px;
  background-color: white;
  border: 1px solid #ebebeb;
  border-radius: 5px;
}
.page.stats-page .page-container .left .stat-wrap-1 > div > div {
  display: flex;
  justify-content: space-between;
}
.page.stats-page .page-container .left .stat-wrap-1 > div > div span {
  display: block;
}
.page.stats-page .page-container .left .stat-wrap-1 > div > div .percent {
  font-size: 18px;
  font-weight: bold;
}
.page.stats-page .page-container .left .stat-wrap-1 > div > div .percent i {
  color: inherit;
  margin-right: 5px;
}
.page.stats-page .page-container .left .stat-wrap-1 > div > div .percent.plus {
  color: darkseagreen;
}
.page.stats-page .page-container .left .stat-wrap-1 > div > div .percent.minus {
  color: indianred;
}
.page.stats-page .page-container .left .stat-wrap-1 > div h3 {
  font-size: 30px;
}
.page.stats-page .page-container .left .charts-container {
  margin-top: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page.stats-page .page-container .left .chart-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page.stats-page .page-container .left .chart-container #chart {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page.stats-page .page-container .left .chart-container #chart .chart-panel ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.page.stats-page .page-container .left .chart-container #chart .chart-panel ul li {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.page.stats-page .page-container .left .chart-container #chart .chart-panel ul li span {
  display: block;
  margin-left: 5px;
}
.page.stats-page .page-container .left .chart-container #chart .chart-panel ul li input:checked + label[for="l2"] {
  background-color: violet;
}
.page.stats-page .page-container .left .chart-container #chart .chart-panel ul li input:checked + label[for="l3"] {
  background-color: darkorange;
}
.page.stats-page .page-container .left .chart-container #chart .chart-panel ul li input:checked + label[for="l4"] {
  background-color: darkseagreen;
}
.page.stats-page .page-container .left .chart-container #chart .chart-panel ul li input:checked + label[for="l5"] {
  background-color: #d54e21;
}
.page.stats-page .page-container .left .chart-container #chart .chart-panel ul li input:checked + label[for="l6"] {
  background-color: darkred;
}
.page.stats-page .page-container .left .chart-container #chart .chart {
  border: 2px dashed #e1e1e1;
  flex: 1;
  margin-top: 15px;
  border-radius: 5px;
}
.page.stats-page .page-container .right {
  position: sticky;
  top: 15px;
  flex: 1;
  background-color: white;
  padding: 15px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
}
.page.stats-page .page-container .right h2 {
  margin-bottom: 15px;
}
.page.stats-page .page-container .right #calendar .month-selector {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
}
.page.stats-page .page-container .right #calendar .month-selector button {
  height: 30px;
}
.page.stats-page .page-container .right #calendar .month-selector button i {
  margin: 0;
}
.page.stats-page .page-container .right #calendar .days {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  border-radius: 5px;
}
.page.stats-page .page-container .right #calendar .days > div {
  text-align: center;
  font-weight: bold;
  color: #157eb1;
}
.page.stats-page .page-container .right #calendar .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 5px;
}
.page.stats-page .page-container .right #calendar .container > div {
  text-align: center;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.page.stats-page .page-container .right #calendar .container > div:hover:not(.active) {
  background-color: #157eb1;
  color: white;
}
.page.stats-page .page-container .right #calendar .container div.active {
  background-color: #157eb1;
  color: white;
}
.page.stats-page .page-container .right #calendar .container div.path {
  background-color: rgba(21, 126, 177, 0.1);
}
.page.stats-page .page-container .right > span {
  display: block;
  margin-bottom: 5px;
}
.page.stats-page .page-container .right > div p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.page.stats-page .page-container .right > div p:last-child {
  margin: 0;
}
.page.stats-page .page-container .right > div p span {
  display: block;
  font-weight: bold;
}
.page.stats-page .page-container .right > div p span.plus {
  color: darkseagreen;
}
.page.stats-page .page-container .right > div p span.minus {
  color: indianred;
}
.page.stats-page .page-container .right .stat-total span {
  font-size: 20px;
}
.page.pages-page .page-container .pages-list {
  list-style-type: none;
}
.page.pages-page .page-container .pages-list li {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  margin-bottom: 5px;
}
.page.pages-page .page-container .pages-list li > div {
  display: flex;
  align-items: center;
}
.page.pages-page .page-container .pages-list li > div > div {
  margin: 0 15px;
}
.page.order-page .page-container h2 {
  font-size: 20px;
}
.page.order-page .page-container .quantity-block {
  display: flex;
}
.page.order-page .page-container .quantity-block input {
  border-radius: 5px 0 0 5px;
  width: 20px;
}
.page.order-page .page-container .quantity-block > div {
  display: flex;
  flex-direction: column;
}
.page.order-page .page-container .quantity-block > div button {
  border: none;
  flex: 1;
  width: 25px;
  background-color: #e1e1e1;
  cursor: pointer;
  transition: background 0.3s;
}
.page.order-page .page-container .quantity-block > div button:hover {
  background-color: #d7d7d7;
}
.page.order-page .page-container .quantity-block > div button:first-child {
  border-radius: 0 5px 0 0;
}
.page.order-page .page-container .quantity-block > div button:last-child {
  border-radius: 0 0 5px 0;
}
.page.order-page .page-container form {
  margin-bottom: 15px;
}
.page.order-page .page-container .product-table input {
  text-align: center;
}
.page.order-page .page-container .order-table tr td:first-child {
  width: 1%;
}
.page.order-page .page-container .order-table tr td > div {
  display: flex;
  flex-direction: column;
}
.page.order-page .page-container .order-table tr.head th {
  background-color: #ebebeb;
  border-radius: 5px;
  padding: 10px 15px;
  text-align: left;
}
body.dark {
  background-color: #222224;
  color: #a7a7a7;
}
body.dark .left-col .menu > div {
  color: inherit;
}
body.dark .left-col {
  background-color: #222224;
}
body.dark .left-col .menu ul {
  background-color: #1f1f21;
}
body.dark .page.stats-page .page-container .left .stat-wrap-1 > div,
body.dark .page.stats-page .page-container .right {
  background-color: #292A2B;
  border-color: #2e2f30;
}
body.dark a {
  color: #a7a7a7;
}
body.dark input,
body.dark select,
body.dark .fake-checkbox label,
body.dark .fake-checkbox-v2 label,
body.dark textarea {
  background-color: #222224;
  border-color: #2c2c2e;
  color: inherit;
}
body.dark .images-container,
body.dark .images-container .image {
  border-color: #222224;
}
body.dark hr {
  background-color: #222224;
}
body.dark header {
  background-color: #292A2B;
  border-color: #2e2f30;
}
body.dark .btn {
  background-color: #3d3e3f;
  color: #7a7a7a;
}
body.dark .images-container label {
  background-color: #3d3e3f;
  color: #7a7a7a;
  border-color: #222224;
}
body.dark table thead {
  background-color: #2e2f30;
}
body.dark table tbody tr {
  border-color: #222224;
}
body.dark .draggable span {
  background-color: #3d3e3f;
}
body.dark .base,
body.dark .product-menu ul li {
  background-color: #292A2B;
  border-color: #2e2f30;
}
