

/* Start:/local/templates/brand/style.css?176407656866409*/
@charset "UTF-8";

@font-face {
  font-family: 'Cormorant';
  src: url('/local/templates/brand/../fonts/Cormorant-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('/local/templates/brand/../fonts/Jost-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('/local/templates/brand/../fonts/Jost-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

body {
  overflow-x: clip;
  width: 100vw;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px;
}

@-webkit-keyframes showHeader {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

@keyframes showHeader {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

.dropdown-container {
  position: relative;
  background-color: #fff;
}

.dropdown-selected {
  padding: 14px 18px;
  cursor: pointer;
  background-color: #f2f2f7;
}

.dropdown-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  max-height: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  scrollbar-width: none;
}

.dropdown-list li {
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 1px solid #f2f2f7;
}

.dropdown-list__item::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-preview);
  top: 10px;
  right: 13px;
  border: 1px solid #000;
}

.dropdown-list li:hover,
.dropdown-list li.selected {
  background-color: #e95420;
  color: white;
}

.arrow {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.arrowUp {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dropdown-list.active {
  max-height: 220px;
  overflow-y: scroll;
}

.dropdown-menu {
  position: absolute;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 20px;
  width: 200px;
  height: 84px;
  background-color: #f2f2f7;
  top: 24px;
  right: -212px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: -12px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #f2f2f7;
}

.dropdown-menu__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 400;
  line-height: 144%;
  color: #000;
}

/* Контейнер чекбокса */

.checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* Скрываем стандартный чекбокс */

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Создаем пустой чекбокс */

.checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #8e8e93;
  border-radius: 4px;
  background-color: white;
  margin-right: 13px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Галочка (изначально скрыта) */

.checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Стили для активного чекбокса */

.checkbox-container input:checked + .checkmark {
  background-color: #ec670f;
  border-color: #ec670f;
}

.checkbox-container input:checked + .checkmark::after {
  display: block;
}

/* Стили для текста рядом */

.checkbox-label {
  font-size: 16px;
  color: #000;
}

#tippy {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 10px;
  background-color: #f2f2f7;
  right: -25px;
  top: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input + #tippy {
  top: 23px;
  right: -28px;
}

.tippy-box[data-theme~='custom'] {
  background-color: #f2f2f7;
  color: #000;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 60px;
  width: 100%;
  max-width: 472px;
}

.form__label {
  line-height: 18pxc;
}

.form__message-error {
  display: block;
  color: #ff3c2f;
  font-size: 16px;
}

.form__title {
  font-size: clamp(30px, 5vw, 48px);
  font-family: 'Cormorant', sans-serif;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 24px;
  position: relative;
  width: 100%;
  max-width: 472px;
}

.form__inputs-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 8px;
}

.form__inputs-error {
  border: 1px solid #ff3c2f;
}

.form__email-label {
  line-height: 128%;
  color: #8e8e93;
}

.form__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.form__link {
  color: #ec670f;
  font-size: 16px;
}

.form__icon {
  position: absolute;
  height: 16px;
  width: 16px;
  bottom: 12px;
  right: 12px;
}

.form__icon:hover {
  cursor: pointer;
}

.hidePassword {
  display: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.in-delivery {
  background-color: #ec670f;
}

.delivered {
  background-color: #4c5828;
}

.not-paid {
  background-color: #ff3c2f;
}

.canceled {
  background-color: #8e8e93;
  width: 138px;
  height: 20px;
  color: #fff;
}

.status-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 10px;
  color: #fff;
  border-radius: 2px;
}

.burger-menu__button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ec670f;
  color: #fff;
  font-size: 30px;
}

.overflow-hidden {
  overflow: hidden;
}

.button {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 93px;
  font-size: 14px;
  line-height: 144.5%;
  text-transform: uppercase;
  background-color: #ec670f;
  color: #fff;
  text-align: center;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 2px;
}

.input {
  background-color: #f2f2f7;
  font-size: 16px;
  height: 40px;
  padding: 15px 12px;
}

.add-photo-btn {
  position: relative;
  width: 135px;
  height: 163px;
  border: 1px dashed rgba(128, 128, 128, 0.5490196078);
  background-color: rgba(255, 255, 255, 0.6117647059);
  font-size: 36px;
  color: rgba(128, 128, 128, 0.5490196078);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.file-input {
  top: 10px;
  left: 12px;
  width: 135px;
  height: 163px;
  position: absolute;
  display: none;
}

.head-buttons {
  width: 100%;
  height: 52px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.head-buttons-btn {
  font-family: 'Cormorant', sans-serif;
  font-weight: 700;
  background-color: transparent;
  line-height: 121%;
  border-bottom: 1px solid #e5e5eb;
  font-size: 16px;
  color: black;
  -webkit-tap-highlight-color: transparent;
  padding-inline: 10px;
}

.head-buttons-btn.active {
  color: #ec670f;
  border-bottom: 2px solid #ec670f;
}

.head-buttons-btn:hover {
  background-color: transparent;
  color: black;
}

.back-arrow {
  width: 20px;
  height: 15px;
}

.back-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-column-gap: 18px;
  -moz-column-gap: 18px;
  column-gap: 18px;
  position: relative;
  top: 77px;
}

.back-button:hover {
  cursor: pointer;
}

.title {
  text-align: center;
  font-family: 'Cormorant', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 121%;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  -ms-grid-columns: minmax(0, 286px) minmax(0, 948px);
  grid-template-columns: minmax(0, 286px) minmax(0, 948px);
  font-size: 16px;
  -webkit-column-gap: 160px;
  -moz-column-gap: 160px;
  column-gap: 160px;
  row-gap: 80px;
  padding: 120px 40px;
}

.grid__empty-cell {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bold-text {
  font-weight: 500;
}

.textarea {
  height: 128px;
  resize: none;
  padding: 8px 14px;
}

.aside-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 286px;
  font-size: 16px;
}

.aside-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 7px;
}

.aside-menu__item {
  color: #8e8e93;
  border-top: 1px solid #e5e5eb;
}

.aside-menu__item a {
  padding: 24px 0;
  width: 100%;
  height: 100%;
}

.aside-menu__item.active {
  color: #000;
}

.aside-menu__item:last-child {
  border-bottom: 1px solid #e5e5eb;
}

.aside-menu__arrow {
  height: 15px;
  width: 10px;
}

.buttons-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 606px;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 40px;
  margin-top: 28px;
}

.buttons-group__save {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #ec670f;
  color: #fff;
  border-radius: 2px;
}

.buttons-group__cancel {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border: 1px solid #ec670f !important;
  color: #ec670f !important;
  background: white !important;
  border-radius: 2px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  letter-spacing: 0.975px;
}

.pagination__item {
  color: gray;
}

.pagination__item:has(svg) {
  color: #000;
}

.pagination__item-arrow-left {
  padding-right: 78px;
}

.pagination__item-arrow-right {
  padding-left: 78px;
}

.pagination__icon {
  width: 24px;
  aspect-ratio: 1/1;
  -webkit-transition: stroke-width 0.3s ease-in-out;
  transition: stroke-width 0.3s ease-in-out;
}

.pagination__link {
  color: #828282;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.pagination__link--active {
  color: #000;
  font-weight: 400;
  pointer-events: none;
}

.pagination__link--disabled {
  color: gray;
  pointer-events: none;
}

.mobile-overlay {
  position: fixed;
  top: 3px;
  right: 3px;
  width: 100%;
  max-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #e5e5eb;
  z-index: 9999;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.mobile-overlay.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

.mobile-overlay.closing {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.mobile-overlay__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}

.mobile-overlay__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #e5e5eb;
}

.mobile-overlay__item:first-child {
  border: none;
}

.mobile-overlay__close-btn {
  position: absolute;
  width: 20px;
  top: 8px;
  right: 8px;
  font-size: 20px;
  background-color: transparent;
  color: #000;
}

@-webkit-keyframes openMenu {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes openMenu {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes closeMenu {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes closeMenu {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.auth-form__icon {
  position: absolute;
  height: 16px;
  width: 16px;
  top: 12px;
  right: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.auth-form__icon:hover {
  cursor: pointer;
}

.forgot-password .form__inputs {
  row-gap: 12px;
}

.forgot-password .form__button {
  padding-inline: 31px;
}

.password-recovery .form__inputs {
  row-gap: 12px;
}

.password-recovery .form__button {
  padding-inline: 93px;
}

.password-recovery__first-icon {
  position: absolute;
  height: 16px;
  width: 16px;
  top: 12px;
  right: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.password-recovery__first-icon:hover {
  cursor: pointer;
}

.password-recovery__second-icon {
  position: absolute;
  height: 16px;
  width: 16px;
  bottom: 12px;
  right: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.password-recovery__second-icon:hover {
  cursor: pointer;
}

.goods-grid {
  -ms-grid-columns: minmax(0, 286px) minmax(0, 948px);
  grid-template-columns: minmax(0, 286px) minmax(0, 948px);
  font-size: 16px;
}

.goods-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.goods__form {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 20px;
}

.goods__form-icon {
  position: absolute;
  top: 10px;
  left: 14px;
  height: 20px;
  width: 20px;
}

.goods__search-input {
  width: 100%;
  max-width: 510px;
  padding-left: 42px;
}

.goods__search-button {
  padding: 10px 25px;
  margin-right: 25px;
}

.goods__add-button {
  padding: 10px 30px;
  max-width: 190px;
}

.goods__table {
  display: -ms-grid;
  display: grid;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 40px;
}

.goods__table-row {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1.5fr 1.3fr 2fr 40px;
  grid-template-columns: 2fr 1.5fr 1.3fr 2fr 40px;
  border-bottom: 1px solid #e5e5eb;
  height: 83px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.goods__table-row-title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px 2fr 1.5fr 1.3fr 2fr 40px;
  grid-template-columns: 30px 2fr 1.5fr 1.3fr 2fr 40px;
  background-color: #f2f2f7;
  border-bottom: 2px solid #e5e5eb;
  height: 47px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.goods__table-row-title .goods__table-cell {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  padding-left: 35px;
}

.goods__table-cell {
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 25px;
}

.goods__table-cell-btn {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 700;
  height: 20px;
}

.goods__table-cell-checkbox {
  height: 42px;
  margin-left: 8px;
}

.goods__table-date {
  padding: 0;
  margin: 0;
}

.goods__table-date-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.goods__table-date-btn:hover {
  cursor: pointer;
}

.goods__table-date-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 4px;
}

.goods__table .checkbox-cell {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.goods__table .actions-cell {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.goods__table-brand-name {
  font-weight: 500;
}

.goods-description__arrow {
  width: 20px;
  height: 15px;
}

.goods-description__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 18px;
  -moz-column-gap: 18px;
  column-gap: 18px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.goods-description__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 32px;
  padding-top: 60px;
  max-width: 100% !important;
  padding-bottom: 40px;
}

.goods-description__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.goods-description__select {
  position: relative;
  background-color: #f2f2f7;
  height: 40px;
  padding: 8px 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.goods-description__select:hover {
  cursor: pointer;
}

.goods-description__option {
  background-color: transparent;
  cursor: pointer;
}

.goods-description__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  width: 100%;
  max-width: 606px;
  padding-bottom: 11px;
}

.goods-description__group {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 8px;
  max-width: 100% !important;
}

.goods-description__group-arrow {
  position: absolute;
  width: 14px;
  height: 10px;
  right: 14px;
  bottom: 15px;
}

.goods-description__group-title {
  color: #000;
}

.goods-description__textarea {
  height: 128px;
  resize: none;
  padding: 8px 14px;
}

.goods-settings__id {
  padding: 0;
  margin: 0;
  line-height: 144%;
}

.goods-settings__arrow {
  width: 20px;
  height: 15px;
}

.goods-settings__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 18px;
  -moz-column-gap: 18px;
  column-gap: 18px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.goods-settings__back:hover {
  cursor: pointer;
}

.goods-settings__form {
  width: 100%;
  max-width: 606px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 32px;
  margin: 0 auto;
}

.goods-settings__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.goods-settings__grid {
  -ms-grid-columns: minmax(0, 286px) minmax(0, 948px);
  grid-template-columns: minmax(0, 286px) minmax(0, 948px);
}

.goods-settings__grid .burger-menu__button {
  right: 10px;
}

.goods-settings__select {
  position: relative;
  background-color: #f2f2f7;
  height: 40px;
  padding: 8px 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.goods-settings__select:hover {
  cursor: pointer;
}

.goods-settings__option {
  background-color: transparent;
  cursor: pointer;
}

.goods-settings__checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.goods-settings__checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
}

.goods-settings__group {
  position: relative;
  width: 100%;
  max-width: 606px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 8px;
}

.goods-settings__group-arrow {
  position: absolute;
  width: 14px;
  height: 10px;
  right: 14px;
  bottom: 15px;
}

.goods-settings__group-title {
  color: #000;
}

.goods-settings__textarea {
  height: 128px;
  resize: none;
  padding: 8px 14px;
}

.goods-settings__photos {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 13px;
  width: 100%;
  background-color: #f2f2f7;
  padding: 10px 12px;
}

.goods-settings__photos-wrapper {
  position: relative;
  width: 135px;
  height: 163px;
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: -webkit-filter 0.5s ease;
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}

.goods-settings__photos-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.goods-settings__photos-wrapper:hover .goods-settings__remove-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: removeBtn 0.5s ease;
  animation: removeBtn 0.5s ease;
}

.goods-settings__remove-btn {
  display: none;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 19px;
  height: 19px;
  background-color: #8e8e93;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.goods-settings__announcement {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 159px;
  background-color: #f2f2f7;
  padding: 10px 12px;
}

@-webkit-keyframes removeBtn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes removeBtn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.goods-trade-grid {
  -ms-grid-columns: minmax(0, 286px) auto;
  grid-template-columns: minmax(0, 286px) auto;
}

.goods-trade__title {
  font-family: 'Cormorant';
  font-weight: 700;
  padding-left: 374px;
  text-align: start;
}

.goods-trade-main {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.goods-trade__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  height: 52px;
}

.goods-trade__buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 944px;
}

.goods-trade__button {
  height: 52px;
  width: 100%;
  max-width: 472px;
  font-family: 'Cormorant', sans-serif;
  font-weight: 700;
  background-color: transparent;
  line-height: 121%;
  border-bottom: 1px solid #e5e5eb;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

.goods-trade__button.active {
  color: #ec670f;
  border-bottom: 2px solid #ec670f;
}

.goods-trade__button-add {
  width: 100%;
  max-width: 234px;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  color: #fff;
  background-color: #ec670f;
}

.goods-trade__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.goods-trade__table {
  display: -ms-grid;
  display: grid;
  width: 100%;
  border-collapse: collapse;
  margin-top: 60px;
  font-size: 14px;
  margin-bottom: 40px;
}
.goods-trade__table-cell img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}
.goods-trade__table-row-title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 110px 110px 180px 1fr 1.7fr 1.2fr 1fr 2.2fr 60px;
  grid-template-columns: 50px 110px 110px 180px 1fr 1.7fr 1.2fr 1fr 2.2fr 60px;
  background-color: #f2f2f7;
  border-bottom: 2px solid #e5e5eb;
  height: 47px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.goods-trade__table-row-title .goods-trade__table-cell {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}
.dropdown-menu button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.goods-trade__table-row {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 110px 110px 180px 1fr 1.7fr 1.2fr 1fr 2.2fr 60px;
  grid-template-columns: 50px 110px 110px 180px 1fr 1.7fr 1.2fr 1fr 2.2fr 60px;
  border-bottom: 1px solid #e5e5eb;
  height: 79px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*.goods-trade__table-row .dropdown-menu {*/
/*  top: 30px;*/
/*  right: 50px;*/
/*}*/

.goods-trade__table-cell {
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.goods-trade__table-cell-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}

.goods-trade__table-cell-checkbox {
  height: 70px;
  margin-left: 8px;
}

.goods-trade__table-date {
  padding: 0;
  margin: 0;
}

.goods-trade__table-date.goods-trade--red {
  color: #ff0000;
}

.goods-trade__table-date-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-bottom: 8px;
}

.goods-trade__table-date-btn:hover {
  cursor: pointer;
}

.goods-history__main {
  width: 100%;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
}

.goods-history__wrapper {
  padding-top: 40px;
  margin-left: auto;
}

.goods-history__button {
  padding-inline: 53px;
}

.goods-history__table {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 1000px;
  border-collapse: collapse;
  margin-top: 60px;
  font-size: 14px;
  margin-bottom: 40px;
}

.goods-history__table-row {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 2.5fr) minmax(0, 5fr);
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 5fr);
  border-bottom: 1px solid #e5e5eb;
  height: 58px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 59px;
}

.goods-history__table-row-title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 2.5fr) minmax(0, 5fr);
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 5fr);
  background-color: #f2f2f7;
  border-bottom: 1px solid #e5e5eb;
  height: 47px;
  padding-left: 59px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.goods-history__table-row-title .goods-history__table-cell {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  background-color: #f0f0f0;
}

.profile__container {
  gap: 40px;
  padding-left: 20px;
  padding-right: 40px;
  padding-bottom: 20px;
}

.profile-container__narrow {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  margin: auto;
  align-self: center;
}

.profile__form {
  width: 100%;
  max-width: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 40px;
}

.profile__announcement {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 254px;
  max-width: 210px;
  padding: 0;
  background-color: #f2f2f7;
}

.profile__group {
  position: relative;
  width: 100%;
  max-width: 606px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 10px;
}

.profile__group-title {
  color: #8e8e93;
}

.profile__photo {
  position: relative;
  height: 254px;
  width: 210px;
  border: 1px dashed rgba(128, 128, 128, 0.5490196078);
  background-color: rgba(255, 255, 255, 0.6117647059);
  font-size: 36px;
  color: rgba(128, 128, 128, 0.5490196078);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.profile__table {
  width: 100%;
  max-width: 620px;
  font-size: 14px;
}

.profile__table-size-wrapper {
  width: 100%;
  max-width: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 19px;
  padding-top: 40px;
}

.profile__table-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.profile__table-wrapper {
  width: 100%;
  max-width: 606px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  row-gap: 19px;
  padding-top: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.profile__table-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 230px) 1fr 1fr 1fr 1fr;
  grid-template-columns: minmax(0, 230px) 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  height: 47px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 10px;
}

.profile__table-row-size {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 125px) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 125px) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  height: 47px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 10px;
  width: 100%;
}

.profile__table-row-title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 230px) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  background-color: #f2f2f7;
  height: 47px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 10px;
  font-size: 16px;
}

.profile__table-row-title-size {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 125px) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 125px) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  background-color: #f2f2f7;
  height: 47px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 10px;
  font-size: 16px;
}

.profile__announcement > .goods-settings__photos-wrapper {
  width: 100%;
  height: 100%;
}

.orders__table-cell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5e5eb;
  overflow: hidden;
}

.orders__table-cell_small {
  font-size: 0.8em;
}

.orders__table-date-goods {
  padding: 16px;
}

.orders__table-cell:first-child {
  border-left: 1px solid #e5e5eb;
}

.orders .orders__table-cell_status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding: 16px;
}

.orders .orders__table-cell_status > a:hover {
  cursor: pointer;
  color: #ec670f;
}

.orders__title {
  font-family: Cormorant;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  padding-left: 376px;
}

.orders-grid {
  -ms-grid-columns: minmax(0, 286px) minmax(0, 1394px);
  grid-template-columns: minmax(0, 286px) minmax(0, 1394px);
}

.orders__table {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.orders__table-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 6px;
  height: 100%;
  justify-content: center;
  transition: all 200ms ease;
}

a.orders__table-text:hover {
  color: #e95420;
}

.orders__table-text:last-child {
  border-bottom: none;
}

.orders__table-date-client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 19px;
  line-height: 128%;
}

.orders__table-date-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 6px;
}

.orders__table-date-goods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  grid-auto-rows: 1fr;
  line-height: 128%;
  height: 100%;
  width: 100%;
}

.orders__table-row {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45px 1fr 1.5fr 1.5fr 1.2fr 1fr 1fr 1fr 1fr 1.4fr 1.4fr 165px;
  grid-template-columns: 45px 1fr 1.5fr 1.5fr 1.2fr 1fr 1fr 1fr 1fr 1.4fr 1.4fr 165px;
  border-bottom: 1px solid #e5e5eb;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.orders__table-row-title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45px 1fr 1.5fr 1.5fr 1.2fr 1fr 1fr 1fr 1fr 1.4fr 1.4fr 165px;
  grid-template-columns: 45px 1fr 1.5fr 1.5fr 1.2fr 1fr 1fr 1fr 1fr 1.4fr 1.4fr 165px;
  background-color: #f2f2f7;
  border-bottom: 2px solid #e5e5eb;
  height: max-content;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.orders__table-row-title .orders__table-cell {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  text-align: left;
  background-color: #f0f0f0;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.orders__table-btn {
  width: 138px;
  height: 40px;
  background-color: #ec670f;
  color: #fff;
  border-radius: 2px;
  font-size: 14px;
}

.returns-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.returns-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 6px;
  line-height: 120%;
}

.returns-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
}

.returns-card__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.returns-card__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 6px;
}

.returns__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.returns__title {
  font-family: Cormorant;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  padding-left: 376px;
}

.returns-grid {
  -ms-grid-columns: minmax(0, 286px) minmax(0, 1394px);
  grid-template-columns: minmax(0, 286px) minmax(0, 1394px);
}

.returns__table {
  display: -ms-grid;
  display: grid;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.returns__table-client-name {
  font-weight: 500;
}

.returns__table-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.returns__table-cell_status_input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.returns__table-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 6px;
}

.returns__table-date-client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 19px;
  line-height: 128%;
}

.returns__table-date-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 6px;
}

.returns__table-date-goods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
  line-height: 128%;
}

.returns__table-row {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -ms-grid-columns: 30px 9% 1fr 1fr 1fr;
  grid-template-columns: 30px 9% 1fr 1fr 1fr;
  border-bottom: 1px solid #e5e5eb;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 16px 0;
}

.returns__table-row-title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px 9% 1fr 1fr 1fr;
  grid-template-columns: 30px 9% 1fr 1fr 1fr;
  background-color: #f2f2f7;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  border-bottom: 1px solid #e5e5eb;
  height: 47px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.returns__table-btn {
  width: 138px;
  height: 40px;
  background-color: #ec670f;
  color: #fff;
  border-radius: 2px;
}

.returns .status_input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 16px;
}

.returns .status_input-group > input {
  background-color: #e5e5eb;
  height: 48px;
  width: 100%;
  font-size: 16px;
  padding: 0 8px;
}

.returns .status_input-group > textarea {
  background-color: #e5e5eb;
  width: 100%;
  font-size: 16px;
  padding: 0 8px;
}

/** Подключение шрифтов локально из папки "./src/fonts" */

/** Подключение sass function и mixins и extends стилей */

/** Подключение переменных */

/** Обнуление */

/** Подключение custom scrollbar для всего сайта */

/** Общие параметры, шаблоны(заготовки) и вспомогательные классы */

/** aнимация keyframes */

/** БЕМ блоки используемые во всё проекте */

/** Подключение стилей отдельных блоков и секций */

/*
При использовании @import появлялась предупреждение

* Deprecation Warning: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.
More info and automated migrator: https://sass-lang.com/d/import

Изменено подключение стилей для удаления все предупреждений
При необходимости можно отменить и разкоментирвать строку @import '/local/templates/brand/../html/...scss
*/

@media (min-width: 1200px) {
  .visible-mobile {
    display: none;
  }
}

@media (max-width: 2500px) {
  .dropdown-menu::before {
    left: -10px;
    top: 5px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@media (max-width: 1650px) {
  .dropdown-menu::before {
    left: 200px;
    top: 5px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .dropdown-menu {
    z-index: 99999;
    right: 55px;
  }
}
@media (max-width: 1200px) {
  .goods__table {
    border: 1px solid #e5e5eb;
  }

  .goods__table-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 25px;
    height: auto;
    padding: 5px;
  }

  .goods__table-row-title {
    display: none;
  }

  .goods__table-cell {
    display: block;
    height: auto;
  }

  .goods__table-cell::before {
    content: attr(data-title);
    font-family:'Jost', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
  }

  .goods__table-cell-btn {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .goods__table-cell-checkbox {
    height: 20px;
    margin: 0;
  }
}

@media (max-width: 1400px) {
  .orders-grid {
    -ms-grid-columns: minmax(0, 144px) minmax(0, 1394px);
    grid-template-columns: minmax(0, 144px) minmax(0, 1394px);
  }
}

@media (max-width: 1300px) {
  .grid {
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
    -ms-grid-columns: minmax(0, 144px) minmax(0, 1100px);
    grid-template-columns: minmax(0, 144px) minmax(0, 1100px);
  }

  .returns-card__title {
    display: none;
  }
}

@media (max-width: 1200px) {
  .back-button {
    display: none;
  }

  .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    row-gap: 40px;
    padding: 60px 20px;
    width: 100%;
  }

  .goods-description__form {
    width: 100%;
    max-width: 100% !important;
  }

  .goods-settings__grid {
    padding: 60px 40px;
  }

  .goods-trade__title {
    padding: 0;
    text-align: center;
  }

  .goods-trade-main {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .goods-trade__buttons {
    height: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 12px;
  }

  .goods-trade__table-row-title {
    display: none;
  }

  .dropdown-menu {
    top: 18px;
    right: 60px;
  }

  .goods-trade__table-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 15px;
    height: auto;
  }

  .goods-trade__table-cell-btn {
    position: absolute;
    top: 0px;
    right: 10px;
  }

  .goods-trade__table-cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 8px;
    height: auto;
  }

  .goods-trade__table-cell::before {
    content: attr(data-title);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
  }

  .goods-trade__table {
    border: 1px solid #e5e5eb;
    font-size: 18px;
  }

  .orders .orders__table-row-title {
    display: none;
  }

  .orders .orders__table-cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 10px;
  }

  .orders .orders__table-cell::before {
    content: attr(data-title);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
  }

  .orders .orders__table {
    border: 1px solid #e5e5eb;
  }

  .orders__title {
    padding: 0;
    text-align: center;
  }

  .orders__table {
    max-width: 100% !important;
  }

  .orders-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 40px;
    padding: 80px 40px;
  }

  .orders__table-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }

  .returns .returns-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .returns__title {
    padding: 0;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .goods__form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .goods__search-input {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .goods-trade__button {
    font-size: 14px;
    color: black !important;
  }

  .returns .returns__table-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 15px;
  }

  .returns .returns__table-cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 8px;
  }

  .returns .returns__table-cell::before {
    content: attr(data-title);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
  }

  .returns .returns__table {
    border: 1px solid #e5e5eb;
  }

  .returns__table-row-title {
    display: none;
  }
}

@media (max-width: 680px) {
  .input + #tippy {
    right: -25px;
  }
}

@media (max-width: 568px) {
  .form .form__button {
    padding-inline: 20px;
    font-size: 12px;
  }

  .form__message-error {
    font-size: 14px;
  }

  .form__title {
    white-space: wrap;
  }

  .form__link {
    font-size: 14px;
  }

  .head-buttons-btn {
    font-size: 14px;
  }

  .head-buttons {
    font-size: 14px;
  }

  .title {
    font-size: 36px;
  }

  .pagination {
    gap: 25px;
  }

  .pagination__item-arrow-left {
    padding-right: 8px;
  }

  .pagination__item-arrow-right {
    padding-left: 8px;
  }

  .goods-history__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
  }

  .goods-history__table-row {
    -ms-grid-columns: 0.7fr 1fr;
    grid-template-columns: 0.7fr 1fr;
    font-size: 13px;
    padding-left: 10px;
  }

  .goods-history__table-row-title {
    -ms-grid-columns: 0.7fr 1fr;
    grid-template-columns: 0.7fr 1fr;
    font-size: 14px;
    padding-left: 10px;
  }

  .profile__table {
    border: 1px solid #e5e5eb;
  }

  .profile__table-cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 8px;
  }

  .profile__table-cell::before {
    content: attr(data-title);
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }

  .profile__table-cell-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 8px;
  }

  .profile__table-cell-title::before {
    content: attr(data-title);
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }

  .profile__table-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: 1px solid #e5e5eb;
    height: auto;
    row-gap: 10px;
    padding: 5px 5px;
  }

  .profile__table-row-size {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: 1px solid #e5e5eb;
    height: auto;
    row-gap: 10px;
    padding: 5px 5px;
  }

  .profile__table-row-title {
    display: none;
  }

  .profile__table-row-title-size {
    display: none;
  }
}

@media (max-width: 525px) {
  .tippy-box[data-theme='custom'] {
    font-size: 12px;
    /* Уменьшенный текст */
    padding: 4px;
    /* Меньший отступ */
    width: 130px;
    /* Ограничение ширины */
  }
}

@media (max-width: 420px) {
  .goods__buttons-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .goods__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .goods__search-button {
    font-size: 12px;
    margin: 0;
  }

  .goods__add-button {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media (max-width: 414px) {
  .forgot-password .form__button {
    font-size: 12px;
    padding: 10px 15px;
  }

  .password-recovery .form__button {
    padding: 10px 25px;
  }

  .goods-trade__button-add {
    font-size: 14px;
  }
}

@media screen and (hover: hover) {
  #tippy:hover {
    cursor: pointer;
  }

  .add-photo-btn:hover {
    background-color: #dedede;
  }

  .aside-menu__item:hover {
    cursor: pointer;
  }

  .pagination__link:hover {
    color: #000;
  }

  .pagination__link:hover .pagination__icon {
    stroke-width: 2px;
  }

  .goods-settings__photos-wrapper:hover {
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
  }

  .profile__photo:hover {
    background-color: #dedede;
  }
}

.relative {
  position: relative;
}

.flex-navel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.deactivate-button {
  visibility: visible;
  opacity: 1;
  transition: all 250ms ease-in;
  position: sticky;
  bottom: 0;
  z-index: 1;
  display: flex;
  padding: 10px;
  box-shadow: 0px -5px 5px -5px rgba(34, 60, 80, 0.6);
  background-color: #fff;
}

.deactivate-button__hidden {
  opacity: 0;
  visibility: hidden;
}

.horizontal-separator {
  width: 100%;
  height: 1px;
  background-color: #e5e5eb;
}

.horizontal-separator:last-child {
  display: none;
}

.text-bold {
  font-weight: bold;
}

.goods-settings__group input {
  scroll-margin: 50px;
}

.flex-col,
.flex-row {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

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

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.gap-4 {
  gap: 16px;
}
.gap-5 {
  gap: 20px;
}
.gap-6 {
  gap: 24px;
}
.gap-7 {
  gap: 28px;
}
.gap-8 {
  gap: 32px;
}
.gap-9 {
  gap: 36px;
}
.gap-10 {
  gap: 40px;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-navel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.underline {
  text-decoration: underline;
}

.cursor-pointer {
  cursor: pointer;
}

.file_picker {
  position: relative;
  display: inline-block;
}
.file_picker .loader-overlay {
  position: absolute;
}
.checkbox-container input:disabled + .checkmark {
  background-color: grey !important;
  border-color: grey !important;
}
.error {
  border: 1px solid red;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #ec670f !important;
}
.select2-container .select2-search--inline .select2-search__field {
  margin: 0 !important;
}
.select2-selection--multiple {
  display: flex !important;
  gap: 10px;
}
.select2 {
  width: 100% !important;
}
.select2-container .select2-selection--single {
  height: 40px !important;
}
.select2-selection {
  padding: 7px 18px !important;
  cursor: pointer !important;
  background-color: #f2f2f7 !important;
  border: unset !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}
.select2-search--dropdown .select2-search__field {
  font-family: inherit !important;
  font-size: 16px !important;
  text-transform: uppercase;
}
.select2-container--open .select2-dropdown--below {
  margin: 0;
  padding: 0;
  list-style: none;
  border: unset !important;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  scrollbar-width: none;
}
.select2-results__option {
  transition: all 0.2s ease;
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 1px solid #f2f2f7;
  font-size: 16px !important;
}
.select2-results__option:hover {
  background-color: #e95420 !important;
  color: #fff !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  top: -4px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin: 0 !important;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex !important;
  gap: 10px;
  height: 100%;
  flex-wrap: wrap;
}
.select2-results__option {
  padding: 17px 14px !important;
  height: 47px !important;
}
#imageInput0,
#imageInput1 {
  display: none;
}

.file_picker {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  background-color: rgba(242, 242, 247, 1);
  padding: 10px 12px;
  width: fit-content;
  height: fit-content;
}

.upload-button-container {
  background-color: rgba(255, 255, 255, 0.6117647059);
}

.upload-button-container {
  position: relative;
  height: 163px;
  width: 135px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(128, 128, 128, 0.5490196078);
  background-color: rgba(255, 255, 255, 0.61);
  font-size: 36px;
  font-weight: 700;
  color: rgba(128, 128, 128, 0.5490196078);
  transition: all 0.4s ease;
}

.upload-button-container:hover {
  background-color: #dedede;
}

.preview-container {
  display: flex;
  flex-direction: row;
  gap: 13px;
  flex-wrap: wrap;
}

.preview-container img {
  height: 163px;
  width: 135px;
  object-fit: cover;
}

.image-container {
  position: relative;
  height: 163px;
  width: 135px;
}

.delete-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  z-index: 10;
}

.input-label {
  font-size: 16px;
  color: #000;
  font-family: sans-serif;
}

.dropzone .dz-preview .dz-image img {
  width: auto;
  height: 100%;
  margin: auto;
}

.dz-disable {
  pointer-events: none;
  cursor: default;
}

.buttons-group__save:disabled {
  background-color: #999;
}

#product_form .dropzone {
  padding: 10px;
}

#product_form .dropzone .dz-preview {
  margin: 0 12px 12px 0;
}

#product_form .dropzone .dz-preview .dz-image {
  border-radius: 0;
  height: 163px;
  width: 133px;
}

#product_form .dz-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  z-index: 1000;
  cursor: pointer;
  text-decoration: none;
}

.treeselect-input {
  background-color: rgba(242, 242, 247, 1) !important;
}

.s-radio-container {
  width: 18px;
  height: 18px;
  position: relative;
  cursor: pointer;
}

input.s-radio {
  appearance: none;
  z-index: 1;
  cursor: pointer;
}

.s-radio-checkmark {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: 1px solid rgba(242, 242, 247, 1);
  top: 0;
  left: 0;
}

.s-radio-checkmark::after {
  content: '';
  left: 50%;
  top: 50%;
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  background-color: #e95420;
  opacity: 0;
  transition: 200ms ease-out;
}

.s-radio:checked ~ .s-radio-checkmark {
  border-color: #e95420 !important;
}

.s-radio:checked ~ .s-radio-checkmark::after {
  opacity: 1;
}

.s-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: 300ms ease-in-out;
  opacity: 1;
  z-index: 1;
}

.s-modal_content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  background-color: white;
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  padding-inline: 54px;
  padding-block: 58px;
  border-radius: 25px;
}

.s-modal_hidden {
  opacity: 0;
  z-index: -1;
}

.s-modal_close {
  position: absolute;
  top: 22px;
  right: 22px;
  cursor: pointer;
}

.bold {
  font-weight: bold;
}

.flex-wrap {
  flex-wrap: wrap;
}

.fill-available {
  width: -webkit-fill-available;
}

.w-full {
  width: 100%;
}

.w-max-content {
  width: max-content;
}

.font-medium {
  font-weight: 500;
}

.treeselect-list__item--checked .treeselect-list__item-checkbox-icon,
.treeselect-list__item--partial-checked .treeselect-list__item-checkbox-icon {
  background-color: #e95420;
}

/* End */


/* Start:/local/templates/brand/custom.css?1757509772357*/
/*.goods__table-cell {*/
/*    white-space: break-spaces;*/
/*}*/
.orders__table-row-title, .returns__table-row-title, .goods__table-row-title, .goods-trade__table-row-title {
    border-bottom: unset;
}
.returns__table-row {
    grid-template-columns: 30px 30px 1fr 1fr 2fr;
}
.returns__table-row-title {
    grid-template-columns: 30px 30px 1fr 1fr 2fr;
}
/* End */
/* /local/templates/brand/style.css?176407656866409 */
/* /local/templates/brand/custom.css?1757509772357 */
