@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap);
:root {
  --blue: #109cf1;
  --dark-blue: #334d6e;
  --light-blue: #cfebfc;
  --middle-blue: #9fd7f9;
  --yellow: #ffb946;
  --red: #f7685b;
  --green: #2ed47a;
  --purple: #885af8;
  --black: #192a3e;
  --table-black: #323c47;
  --table-grey: #707683;
  --grey: #90a0b7;
  --grey-light: #c2cfe0;
  --grey-extra-light: #eff1f4;
  --grey-middle: #e0e4eb;
  --grey-skeleton: #f5f6f8;
  --white: #ffffff;
}

@font-face {
  font-family: 'fontello';
  src: url(/assets/fonts/font/fontello.8b7a95785a5403910df401fd8350031d.eot);
  src: url(/assets/fonts/font/fontello.8b7a95785a5403910df401fd8350031d.eot#iefix) format('embedded-opentype'),
       url(/assets/fonts/font/fontello.d21f544d1635819382af8ff17c71ee19.woff2) format('woff2'),
       url(/assets/fonts/font/fontello.fa5a645c8b4aaef39a3746976e3f3b92.woff) format('woff'),
       url(/assets/fonts/font/fontello.6fc595a40e35cae8488656a4a572d639.ttf) format('truetype'),
       url(/assets/fonts/font/fontello.ffb657ff39d885adafe2d7b891136616.svg#fontello) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?11275683#fontello') format('svg');
  }
}
*/
 
 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.icon-sales:before { content: '\e800'; } /* '' */
.icon-categories:before { content: '\e801'; } /* '' */
.icon-dashboard:before { content: '\e802'; } /* '' */
.icon-products:before { content: '\e803'; } /* '' */
.icon-reset-demo:before { content: '\e804'; } /* '' */
.icon-toggle-sidebar:before { content: '\e805'; } /* '' */
:root {
  --blue: #109cf1;
  --dark-blue: #334d6e;
  --light-blue: #cfebfc;
  --middle-blue: #9fd7f9;
  --yellow: #ffb946;
  --red: #f7685b;
  --green: #2ed47a;
  --purple: #885af8;
  --black: #192a3e;
  --table-black: #323c47;
  --table-grey: #707683;
  --grey: #90a0b7;
  --grey-light: #c2cfe0;
  --grey-extra-light: #eff1f4;
  --grey-middle: #e0e4eb;
  --grey-skeleton: #f5f6f8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  margin: 0;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.full-height {
  height: 100%;
}

.button-primary,
.button-primary-outline {
  outline: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 6px 34px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s all;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background-color: var(--blue);
  box-shadow: 0 4px 10px rgba(16, 156, 241, 0.24);
}

.button-primary:hover,
.button-primary:focus,
.button-primary:active,
.button-primary.active {
  opacity: 0.8;
}

.button-primary-outline {
  color: var(--blue);
  background-color: var(--white);
}

.button-primary-outline:hover,
.button-primary-outline:focus,
.button-primary-outline:active,
.button-primary-outline.active {
  border-color: var(--light-blue);
}

button.fit-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

button.is-loading::before {
  content: "";
  display: grid;
  width: 24px;
  height: 24px;
  -webkit-animation: spin 1000ms linear infinite;
          animation: spin 1000ms linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
  z-index: 1;
}

.button-primary.is-loading::before {
  background: url(/assets/icons/icon-loading-circle-white.355bdbb26bc80de10344987f86e2215b.svg) center
    no-repeat;
  background-size: cover;
}

.button-primary-outline.is-loading::before {
  background: url(/assets/icons/icon-loading-circle-blue.368cb3d9023055419e58550dd3d263d1.svg) center
    no-repeat;
  background-size: cover;
}

button.is-loading {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
  overflow: hidden;
  text-indent: -9999px;
  position: relative;
}

button.is-loading > span {
  display: none;
}

/* skeleton */

.loading-line {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: backgroundMovement;
          animation-name: backgroundMovement;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: var(--grey-skeleton);
  background: linear-gradient(
    267.58deg,
    var(--grey-middle) 0%,
    var(--grey-skeleton) 80%,
    var(--grey-middle) 100%
  );
  background-size: 200%;
  border-radius: 2px;
  display: block;
  height: var(--loading-line-height);
}

@-webkit-keyframes backgroundMovement {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

@keyframes backgroundMovement {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

form.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 16px;
}

form.form-grid .form-group {
  display: grid;
  position: relative;
}

form .form-group.has-error .form-control {
  border-color: var(--red);
}

form .form-error-text {
  margin-top: 8px;
  display: none;
}

form .form-group.has-error .form-error-text {
  display: inline-block;
  color: var(--red);
}

form.form-grid fieldset {
  display: grid;
  grid-gap: 16px;
  border: none;
  padding: 0;
}

form.form-grid .form-group__wide {
  grid-column: 1 / 4;
}

form.form-grid .form-group__half_left {
  grid-column: 1 / 3;
}

form.form-grid .form-group__half_right {
  grid-column: 2 / 4;
}

form.form-grid .form-group__part-half {
  grid-column: 1 / 2;
}

form.form-grid .form-group__two-col {
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
}

.form-group_nested {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 16px;
}

form .form-label {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: var(--table-grey);
  margin-bottom: 8px;
}

form .form-control {
  background-color: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--dark-blue);
  outline: none;
}

form.form-grid .form-control {
  width: 100%;
}

form .form-control::-webkit-input-placeholder {
  color: var(--grey-light);
}

form .form-control::-moz-placeholder {
  color: var(--grey-light);
}

form .form-control:-ms-input-placeholder {
  color: var(--grey-light);
}

form .form-control::-ms-input-placeholder {
  color: var(--grey-light);
}

form .form-control::placeholder {
  color: var(--grey-light);
}

form textarea {
  min-height: 250px;
}

form select.form-control {
  height: 38px;
}

form .form-buttons {
  display: grid;
  grid-column: 1 / 3;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  margin-top: 24px;
}

form.form-inline {
  display: grid;
  grid: auto-flow / repeat(auto-fit, minmax(50px, 1fr));
  grid-gap: 16px;
}

form.form-inline .form-group {
  margin-bottom: 0;
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.main {
  display: grid;
  grid-template-columns: 256px 1fr;
  grid-template-rows: minmax(100vh, auto);
  grid-template-areas: "sidebar content";
}

.content {
  grid-area: content;
  background: var(--grey-skeleton);
  padding: 24px 36px;
}

.sidebar {
  grid-area: sidebar;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  background: var(--white);
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.06);
  padding: 24px 26px;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.is-collapsed-sidebar .sidebar ul {
  margin-left: -3px;
}

.is-collapsed-sidebar .sidebar ul a span,
.is-collapsed-sidebar .sidebar ul button span {
  display: none;
}

.is-collapsed-sidebar .sidebar__title {
  font-size: 12px;
  line-height: 1.2;
  margin-left: -16px;
  text-align: center;
  width: 48px;
}

.is-collapsed-sidebar .main {
  grid-template-columns: 70px 1fr;
}

.is-collapsed-sidebar .sidebar__nav_bottom li {
  height: 24px;
}

.sidebar__title {
  font-size: 24px;
  line-height: 36px;
  height: 36px;
  color: var(--dark-blue);
  margin-top: 0;
  margin-bottom: 32px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

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

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

.sidebar__nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sidebar__nav li {
  margin-bottom: 16px;
}

.sidebar__nav li:last-child {
  margin-bottom: 0;
}

.sidebar__nav li a,
.sidebar__nav li button {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-blue);
  text-decoration: none;
  padding-left: 32px;
  position: relative;
}

.sidebar__nav li a i,
.sidebar__nav li button i {
  color: var(--grey-light);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.sidebar__nav li a:hover,
.sidebar__nav li a:focus,
.sidebar__nav li a:active,
.sidebar__nav li.active a,
.sidebar__nav li a:hover i,
.sidebar__nav li a:focus i,
.sidebar__nav li a:active i,
.sidebar__nav li.active a i,
.sidebar__nav li button:hover,
.sidebar__nav li.active button,
.sidebar__nav li button:hover i,
.sidebar__nav li.active button i {
  color: var(--blue);
}

.sidebar__toggler {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  height: 24px;
}

.content__top-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.content__top-panel .form-inline {
  width: 50%;
}

.page-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: var(--grey);
  margin: 0;
}

.page-title .link {
  text-decoration: none;
  color: var(--blue);
  transition: .2s all;
}

.page-title .link:hover {
  color: var(--middle-blue);
}

.page-title .link.disabled {
  color: inherit;
  pointer-events: none;
}

.block-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: var(--grey);
  margin: 40px 0 24px;
}

.content-box {
  padding: 34px 32px 48px;
  background-color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.content-box.content-box_small {
  padding: 16px 32px;
}

.progress-bar {
  background-color: var(--grey);
  box-shadow: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 10px;
  display: none;
  z-index: 1;
}

.progress-bar__line {
  height: 100%;
  box-shadow: none;
  -webkit-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
  background: var(--blue)
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent
    );
  background-size: 40px 40px;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

.main.is-loading .progress-bar {
  display: block;
}

.alert {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1010;
    opacity: 1;
    transition: opacity 0.6s;
    font-family: Arial, sans-serif;
}

.alert__backdrop {
    pointer-events: none;
    height: 100%;
    width: 100%;
    background-color: rgba(64, 64, 64, 0.8);
    position: relative;
}

.alert__box {
    max-width: 464px;
    background-color: var(--white);
    padding: 32px 40px;
    margin: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.alert__text {
    font-size: 18px;
}

.alert__buttons {
    text-align: center;
}

.alert__button {
    margin-top: 24px;
}
.rangepicker {
  position: relative;
}

.rangepicker__input {
  display: inline-flex;
  padding: 12px 16px 12px 40px;
  cursor: pointer;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  background-color: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  outline: none;
  background: var(--white) url(/components/range-picker/calendar-icon.fdd2d3f0c5114bdeec52a39295d29cf8.svg) 16px center no-repeat;
  background-size: 18px 18px;
  transition: .2s all;
}

.rangepicker_open .rangepicker__input,
.rangepicker__input:focus,
.rangepicker__input:active,
.rangepicker__input:hover {
  border-color: var(--blue);
}

.rangepicker__input:hover {

}

.rangepicker__input > span {
  display: inline-flex;
  margin: 0 4px;
}

.rangepicker__input > span:last-child {
  margin-right: 0;
}

.rangepicker__selector {
  display: none;
  background-color: var(--white);
  padding: 32px 26px;
  border-radius: 6px;
  box-shadow: 0 4px 29px rgba(0, 0, 0, 0.09);
  flex-direction: row;
  justify-content: space-between;
  flex: 1 0 auto;
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 1;
}

.rangepicker__selector-arrow {
  width: 30px;
  height: 15px;
  position: absolute;
  bottom: 100%;
  right: 60px;
  overflow: hidden;
}

.rangepicker__selector-arrow:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  top: 100%;
  left: 50%;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.09);
}

.rangepicker_open .rangepicker__selector {
  display: inline-flex;
}

.rangepicker__cell {
  cursor: pointer;
}

.rangepicker__calendar {
  width: 252px;
}

.rangepicker__calendar:last-child {
  margin-left: 26px;
}

.rangepicker__month-indicator {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  padding: 0 15px;
  color: var(--dark-blue);
}

.rangepicker__selector-control-left,
.rangepicker__selector-control-right {
  position: absolute;
  top: 32px;
  width: 15px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all;
  background: url(/components/range-picker/angle-arrow-icon.a66bd609a60a60e4fe1eeae2db2fac04.svg) left center no-repeat;
  background-size: 9px 13px;
}

.rangepicker__selector-control-left:hover,
.rangepicker__selector-control-right:hover {
  opacity: 0.8;
}

.rangepicker__selector-control-left {
  left: 26px;
}

.rangepicker__selector-control-right {
  right: 26px;
  transform: rotate(180deg);
}

.rangepicker__day-of-week,
.rangepicker__date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.rangepicker__day-of-week {
  margin-top: 28px;
}

.rangepicker__day-of-week > * {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--grey);
  text-align: center;
}

/* Dates */
.rangepicker__date-grid {
  margin-top: 16px;
}

.rangepicker__cell {
  position: relative;
  border: 0;
  width: 36px;
  height: 36px;
  background-color: transparent;
  color: var(--dark-blue);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.rangepicker__cell:first-child {
  grid-column-start: var(--start-from);
}

.rangepicker__cell:active,
.rangepicker__cell.rangepicker__selected,
.rangepicker__cell.rangepicker__selected-from,
.rangepicker__cell.rangepicker__selected-to {
  background-color: var(--blue);
  color: var(--white);
}

.rangepicker__cell:hover,
.rangepicker__cell:focus {
  outline: none;
  background-color: var(--light-blue);
  color: var(--dark-blue);
  transition: 0.2s all;
}

.rangepicker__cell.rangepicker__selected:hover,
.rangepicker__cell.rangepicker__selected-from:hover,
.rangepicker__cell.rangepicker__selected-to:hover,
.rangepicker__cell.rangepicker__selected:focus,
.rangepicker__cell.rangepicker__selected-from:focus,
.rangepicker__cell.rangepicker__selected-to:focus {
  background-color: var(--middle-blue);
  color: var(--dark-blue);
}

.rangepicker__cell.rangepicker__selected-between {
  background-color: var(--light-blue);
}

.range-slider__inner {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 4px;
  margin: 10px 14px;
  background: var(--light-blue);
  box-shadow: 0 0 1px var(--grey-light);
  touch-action: none; /* otherwise pointermove event on mobiles doesn't trigger after a short dragmove */
  -moz-user-select: none;
       user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}

.range-slider__thumb-right,
.range-slider__thumb-left {
  position: absolute;
  top: 50%;
  margin-top: -9px;
  height: 18px;
  width: 6px;
  background: url(/components/double-slider/range-thumb-icon.f25a782d40b06ec30410b28866d9372c.svg) left center no-repeat;
  background-size: cover;
  cursor: -webkit-grab;
  cursor: grab;
}

/* cursor over all slider, so that if the cursor moves out of the thumb, it's still grabbing */
.range-slider_dragging,
.range-slider_dragging .range-slider__thumb-right,
.range-slider_dragging .range-slider__thumb-left {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.range-slider__thumb-left {
  left: 0;
  margin-left: -6px;
}

.range-slider__thumb-right {
  right: 0;
  transform: rotate(180deg);
  margin-right: -6px;
}

.range-slider__progress {
  background: var(--blue);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.range-slider {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 60px;
}

.range-slider > span {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--table-grey);
  width: 60px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.range-slider > span:first-child {
  text-align: right;
  left: 0;
}

.range-slider > span:last-child {
  right: 0;
}

.column-chart__chart {
  width: 100%;
  height: calc(var(--chart-height) * 1px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.column-chart__chart div {
  height: calc(var(--value) * 1px);
  background-color: var(--chart-column-color);
  min-width: 1px;
  flex-grow: 1;
  margin: 0 0 0 1px;
  cursor: pointer;
}

.column-chart__chart div:first-child {
  margin: 0;
}

.column-chart__chart div.is-hovered {
  opacity: 1;
}

.column-chart__chart.has-hovered div:not(.is-hovered) {
  opacity: 0.5;
}

.column-chart__container {
  max-width: 100%;
  position: relative;
}

.column-chart {
  padding: 16px 26px 24px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  border-left: 2px solid var(--chart-column-color);
  position: relative;
}

.column-chart__title {
  font-size: 16px;
  line-height: 20px;
  color: var(--grey);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
}

.column-chart__link {
  color: var(--blue);
  text-decoration: none;
}

.column-chart__header {
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  color: var(--dark-blue);
  margin-bottom: 28px;
  position: relative;
}

.column-chart_loading .column-chart__header,
.column-chart_loading .column-chart__chart {
  display: none;
}

.column-chart_loading .column-chart__container {
  height: 113px;
}

.column-chart_loading .column-chart__container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 113px;
  background: url("/assets/images/charts-skeleton.svg") center no-repeat;
  background-size: cover;
  display: block;
}

.column-chart_loading .loading-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.tooltip {
  cursor: pointer;
  position: fixed;
  padding: 8px 12px;
  border-radius: 4px;
  text-align: left;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 20px;
  color: rgba(51, 77, 110, 1);
  transition: opacity 0.1s ease-out;
  z-index: 99;
}

.tooltip small {
  line-height: 18px;
}

/* fixme: некоторые правила дублируются? */

.sortable-table {
  background-color: var(--white);
  max-width: 100%;
  border-radius: 4px;
  margin-bottom: 40px;
  overflow: hidden;
}

.sortable-table__row {
  display: grid;
  grid: auto-flow / 80px calc(50% - 80px) 20% 10% 10% 10%;
  text-decoration: none;
}

.sortable-table__cell {
  padding: 16px;
  font-size: 16px;
  line-height: 20px;
  color: var(--table-black);
  display: flex;
  align-items: center;
  text-align: left;
  text-align: initial;
  border-top: 1px solid var(--grey-extra-light);
}

.sortable-table__cell:first-child {
  padding-left: 32px;
}

.sortable-table__cell:last-child {
  padding-right: 32px;
}

.sortable-table__header .sortable-table__cell {
  color: var(--grey-light);
  border-top: none;
}

.sortable-table__header .sortable-table__cell[data-sortable] {
  cursor: pointer;
}

.sortable-table__header .sortable-table__cell[data-sortable]:hover {
  color: var(--grey);
}

.sortable-table__cell-img {
  height: 40px;
  max-width: 100%;
  padding: 4px;
  border: 1px solid var(--grey-light);
  border-radius: 2px;
}

.sortable-table__sort-arrow {
  padding: 8px;
  display: inline-flex;
  cursor: pointer;
}

.sortable-table__sort-arrow_asc {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid var(--grey-light);
}

.sortable-table__sort-arrow_desc {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--grey-light);
}

.sortable-table.sortable-table_loading {
  grid-template-columns: auto;
}

.sortable-table__loading-line {
  grid-column: 1 / 7;
  display: none;
  margin: 16px;
  --loading-line-height: 20px;
}

.sortable-table__body .sortable-table__row:hover {
  background-color: var(--grey-skeleton);
}

.sortable-table.sortable-table_loading .sortable-table__loading-line {
  display: grid;
}

.sortable-table_empty {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}

.sortable-table__empty-placeholder p {
  margin: 0 0 12px;
}

.sortable-table__empty-placeholder,
.sortable-table_empty .sortable-table__header,
.sortable-table_empty .sortable-table__body {
  display: none;
}

.sortable-table_empty .sortable-table__empty-placeholder {
  background: var(--grey-extra-light);
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--grey);
}

.sortable-list {
  position: relative;
  padding: 0;
  margin: 12px 0;
}

.sortable-list__item {
  min-height: 60px;
  background-color: var(--white);
  list-style: none;
  padding: 16px 16px 16px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  margin: 16px 0;
  position: relative;
}

.sortable-list__item[data-grab-handle],
.sortable-list__item [data-grab-handle] {
  cursor: -webkit-grab;
  cursor: grab;
}

.sortable-list__item [data-delete-handle] {
  cursor: pointer;
}

.sortable-list__item-arrow {
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--grey-light);
  position: absolute;
  left: 16px;
  top: -50%;
  transform: translate(0, -50%);
}

.sortable-list__item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--dark-blue);
}

.sortable-list__item-nav {
  display: flex;
  flex-direction: row;
}

.sortable-list__item-nav > a {
  font-size: 16px;
  line-height: 24px;
  color: var(--blue);
  display: inline-flex;
  padding: 0 4px;
  border-left: 1px solid var(--grey-light);
}

.sortable-list__item-nav > a:first-child {
  border-left: none;
}

.sortable-list__item.sortable-list__item_dragging {
  position: fixed;
  max-width: 100%;
  cursor: -webkit-grabbing;
  cursor: grabbing;
  border: 1px solid var(--blue);
  margin: 0;
  z-index: 10000;
}

.sortable-list__placeholder {
  border: 1px solid var(--blue);
  margin: 3px 0;
  border-radius: 4px;
}

.notification {
  background-color: var(--black);
  opacity: 0.8;
  border-radius: 4px;
  -webkit-animation: fadeOut 0.3s linear;
          animation: fadeOut 0.3s linear;
  display: none;
  position: fixed;
  right: 75px;
  bottom: 75px;
}

.notification.show {
  display: block;
  -webkit-animation: fadeIn 0.3s linear;
          animation: fadeIn 0.3s linear;
}

.notification__content {
  padding: 16px 24px 16px 64px;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
  position: relative;
}

.notification.notification_success .notification__content:after,
.notification.notification_error .notification__content:after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(0, -50%);
  background-size: 24px 24px;
}

.notification.notification_success .notification__content:after {
  background: url(/components/notification/icon-circle-check.e37fc449393b4467471a19dd39ea9472.svg) center no-repeat;
}

.notification.notification_error .notification__content:after {
  background: url(/components/notification/icon-error.beee463b1a6b9bd218255436b59b731f.svg) center no-repeat;
}

.notification__content a {
  color: var(--middle-blue);
  text-decoration: none;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

.sortable-table-image {
  max-height: 80px;
  max-width: 100%;
  padding: 4px;
  border: 1px solid var(--grey-light);
  border-radius: 2px;
}

.sortable-table-tooltip__category {
  color: var(--grey);
}

.sortable-field-tooltip__subcategory {
  color: var(--dark-blue);
}

.sortable-table-image {
  max-height: 80px;
  max-width: 100%;
  padding: 4px;
  border: 1px solid var(--grey-light);
  border-radius: 2px;
}

.sortable-table-tooltip__category {
  color: var(--grey);
}

.sortable-field-tooltip__subcategory {
  color: var(--dark-blue);
}

.product-form form:not(.form-inline) {
  max-width: 800px;
}

.product-form .form .form-group__wide [class*="button-"] {
  width: 160px;
  margin-bottom: 8px;
}

.product-form .sortable-list {
  margin: 8px 0 16px;
  list-style: none;
  padding: 0;
}

.product-form .products-edit__imagelist-item {
  background-color: var(--grey-skeleton);
  box-shadow: none;
  margin: 3px 0;
  padding: 8px 12px;
}

.product-form .products-edit__imagelist-item > span {
  display: flex;
  align-items: center;
}

.product-form .products-edit__imagelist-item > button {
  padding: 0;
  box-shadow: none;
  background: none;
  border: none;
  outline: none;
  margin: 0 8px;
  transition: .2s all;
}

.product-form .products-edit__imagelist-item > button:hover {
  opacity: .8;
}

.product-form .products-edit__imagelist-item > span > * {
  margin: 0 8px;
}

.dashboard__charts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 24px;
  --chart-height: 50;
}

.dashboard__chart_orders {
  --chart-column-color: var(--yellow);
}

.dashboard__chart_sales {
  --chart-column-color: var(--green);
}

.dashboard__chart_customers {
  --chart-column-color: var(--purple);
}

.dashboard .sortable-table {
  --cols: 6;
}

.products-list {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.products-list .sortable-table {
  --cols: 6;
  margin-bottom: 0;
}

.products-list form.form-inline {
  grid-template-columns: 3fr 3fr 2fr;
  grid-gap: 46px;
}

.products-list form.form-inline .form-label {
  margin-bottom: 0;
  margin-right: 16px;
}

.products-list form.form-inline .form-group {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.products-list .products-list__container {
  height: 100%;
}

.products-list .products-empty {
  background: var(--grey-extra-light);
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey);
}

.products-edit {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category {
  background: var(--white);
  border: 1px solid var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  margin-bottom: 16px;
}

.category.category_add-first {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--grey-extra-light);
  border: 1px solid var(--grey-light);
  box-shadow: none;
}

.category.category_add-first p {
  color: var(--grey);
  margin: 0 0 12px;
}

.category.category_add-first .category__body,
.category.category_add-first .category__header {
  flex: 1 0 auto;
}

.category__header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 40px;
  position: relative;
  cursor: pointer;
}

.category__header::before {
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left: 6px solid var(--grey);
  position: absolute;
  top: 50%;
  left: 19px;
  margin-top: -6px;
  transition: 0.3s all ease;
}

.category.category_open .category__header::before {
  left: 16px;
  margin-top: -3px;
  transform: rotate(90deg);
}

.category__header .link {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: var(--blue);
  padding: 0;
  margin: 0;
  text-decoration: none;
  outline: none;
  display: inline-block;
  transition: 0.2s all;
}

.category__header .link:hover {
  text-decoration: underline;
}

.category__body {
  height: 0;
  overflow: hidden;
  transition: all 0.05s ease-out;
}

.category.category_open {
  background: var(--grey-extra-light);
  border: 1px solid var(--grey-light);
  box-shadow: none;
}

.category.category_open .category__body {
  height: auto;
}

.subcategory-list {
  padding: 0 16px 24px 40px;
}

.categories.categories_empty {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.categories form input {
  margin-right: 12px;
}

.categories__sortable-list {
  margin: 0;
}

.categories__sortable-list-item {
  margin: 12px 0;
  padding: 12px 16px;
  min-height: 48px;
}

.categories__sortable-list-item > strong {
  color: var(--dark-blue);
}

.categories__sortable-list-item > span {
  color: var(--grey);
}

.sales .sortable-table__row {
  grid: auto-flow / 10% 33% 33% 12% 12%;
}

/* components */
/* pages */

