@charset "UTF-8";
:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Montserrat", sans-serif;
}

@font-face {
  font-family: "Roboto";
  src: url("/app/themes/nova/fonts/Roboto-VariableFont_wdth,wght.ttf") format("truetype-variations");
  font-stretch: 75% 125%;
  font-style: italic;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

html {
  margin: 0 auto;
  min-width: 1200px;
}

body {
  min-width: 1168px;
  margin: 0 auto;
  scroll-behavior: smooth;
}

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

input,
button {
  outline: 0;
  border: 0;
  cursor: pointer;
}

input[type=radio] {
  accent-color: #3871c1;
}

.up {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.up.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.15s ease, transform 0.2s ease;
}

.header {
  background: #f5f6f9;
  margin-bottom: 40px;
  min-width: 1200px;
  /* Кнопка — твои стили + мелкие доработки */
  /* ====== ДРОПДАУН ====== */
  /* список */
  /* поворот стрелки, когда меню открыто */
  /* тень/граница для тёмных фонов */
  /* если у пользователя выключены анимации */
}
.header__bar {
  min-width: 1168px;
  background: #ff5c00;
  color: #fff;
  font-size: 14px;
  padding: 6px 20px;
}
.header__bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__bar img {
  width: 12px;
  margin-right: 6px;
}
.header__bar-location {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__bar-contact {
  font-weight: 500;
}
.header__container {
  display: grid;
  grid-template-columns: 268px 660px 236px;
  padding: 32px 10px;
  justify-items: start;
}
.header__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  grid-row: 1/3;
}
.header__logo {
  font-size: 24px;
  font-weight: 700;
  color: #2f63d7;
}
.header__logo span {
  color: #ff5c00;
}
.header__catalog {
  background: #3871c1;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 5px;
  width: 168px;
  height: 44px;
}
.header__catalog img {
  width: 18px;
}
.header .catalog {
  position: relative;
  display: inline-block;
}
.header .header__catalog {
  background: #3871c1;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 5px;
  width: 168px;
  height: 44px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}
.header .header__catalog:hover {
  background: #2f62a8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.header .header__catalog:active {
  transform: translateY(1px);
}
.header .header__catalog .caret {
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.header .catalog__dropdown {
  --gap: 8px;
  position: absolute;
  left: 0;
  top: calc(100% + var(--gap));
  min-width: 260px;
  max-width: 320px;
  background: #fff;
  color: #111;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18), 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 10px;
  z-index: 50;
  /* анимационное состояние (закрыто) */
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0s linear 0.18s;
  /* скрываем после анимации */
}
.header .catalog__dropdown.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.16s ease, transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.header .catalog__list {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header .catalog__list a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.2;
  transition: background 0.12s ease, color 0.12s ease;
}
.header .catalog__list a:hover,
.header .catalog__list a:focus {
  background: #f1f5f9;
  color: #0b1220;
  outline: none;
}
.header .catalog__list a:active {
  background: #e5eaf1;
}
.header .catalog[aria-expanded=true] .caret,
.header .catalog .header__catalog[aria-expanded=true] .caret {
  transform: rotate(180deg);
}
@media (prefers-reduced-motion: reduce) {
  .header .catalog__dropdown {
    transition: none;
  }
  .header .header__catalog {
    transition: none;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #B0B0B0;
  width: 632px;
  height: 40px;
}
.header__nav a {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #1d1d1f;
  padding-bottom: 22px;
  border-bottom: 2px solid transparent;
}
.header__nav a.active {
  color: #2f63d7;
  border-color: #2f63d7;
}
.header__user {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-left: auto;
  gap: 6px;
  font-weight: 500;
  font-weight: 300;
  font-size: 10px;
  text-align: center;
  color: #7b868e;
}
.header__search {
  margin-top: 13px;
  flex: 1;
  grid-column: 2/3;
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0 10px;
  width: 632px;
  height: 44px;
  align-self: flex-end;
}
.header__search input {
  flex: 1;
  border: none;
  font-size: 14px;
  padding-left: 8px;
  outline: none;
}
.header__search input::-moz-placeholder {
  font-weight: 300;
  font-size: 14px;
  color: #b0b0b0;
}
.header__search input::placeholder {
  font-weight: 300;
  font-size: 14px;
  color: #b0b0b0;
}
.header__search button {
  background: none;
  border: none;
  cursor: pointer;
}
.header__search button img {
  width: 20px;
}
.header__cart {
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  grid-row: 2/3;
  grid-column: 3/4;
  border-radius: 5px;
  width: 236px;
  height: 44px;
  align-self: flex-end;
}
.header__cart img {
  padding-right: 20px;
  box-sizing: content-box;
}
.header__cart-badge {
  position: absolute;
  top: 5px;
  left: 30px;
  width: 14px;
  height: 14px;
  background: #fe6d2c;
  font-weight: 700;
  font-size: 8px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__cart-price {
  font-weight: 700;
  font-size: 16px;
  color: #1d1d1f;
}

.header-card {
  margin-top: -10px;
  grid-row: 1/2;
  grid-column: 3/4;
  width: 236px;
  padding: 10px 12px;
  box-sizing: border-box;
  border: 0.5px solid #3871c1;
  border-radius: 5px;
}

.header-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-card__id {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f2937;
}

.header-card__id-text {
  font-weight: 700;
  font-size: 10px;
  color: #1d1d1f;
}

.header-card__id-icon {
  display: block;
}

.header-card__name {
  margin-top: 6px;
  font-weight: 700;
  font-size: 12px;
  color: #1d1d1f;
}

.header-card__btn {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: #FF7A2E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.header-card__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.header-card__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.toggle-group {
  margin-top: 10px;
  display: flex;
  gap: 24px;
  align-items: center;
  grid-column: 2/3;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #222;
  cursor: pointer;
}
.toggle input {
  display: none;
}
.toggle__slider {
  position: relative;
  width: 20px;
  height: 10px;
  background: #d9d9d9;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.toggle__slider::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s ease;
}
.toggle input:checked + .toggle__slider {
  background: #fe6d2c;
}
.toggle input:checked + .toggle__slider::before {
  transform: translateX(10px);
}
.toggle__label {
  font-weight: 300;
  font-size: 10px;
  color: #1d1d1f;
}

.middle-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  background-color: #f7f7f9;
  gap: 12px;
  font-size: 13px;
}

/* Логотип */
.middle-panel__logo {
  font-weight: bold;
  font-size: 20px;
  color: #224;
}

/* Поиск */
.middle-panel__search {
  display: flex;
  align-items: center;
  width: 388px;
  height: 44px;
  border: 0.5px solid #b0b0b0;
  border-radius: 5px;
  padding: 0 12px;
  background-color: #fff;
}

.search-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* Input */
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  background-color: transparent;
}

/* Кошелек и корзина */
.middle-panel__wallet,
.middle-panel__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 44px;
  background: #fff;
  box-shadow: 1px 2px 10px rgba(5, 3, 152, 0.1);
  border-radius: 5px;
  position: relative;
  align-self: flex-end;
}
.middle-panel__wallet img,
.middle-panel__cart img {
  padding-right: 20px;
  box-sizing: content-box;
}

.wallet-icon,
.cart-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #fe6d2c;
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Навигация */
.middle-panel__nav {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid #b0b0b0;
  align-self: flex-end;
}

.nav-item {
  width: 56px;
  height: 44px;
  border-radius: 5px 5px 0 0;
  text-align: center;
  font-weight: 300;
  font-size: 8px;
  text-align: center;
  color: #7b868e;
  color: #fe6d2c;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: 1s;
}

.nav-item:hover {
  box-shadow: 1px 2px 10px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  border-bottom: 2px solid #2662d0;
  transition: 500ms;
  transform: scale(1.2);
}

.nav-text {
  color: #7b868e;
}

.nav-icon {
  width: 18px;
  height: 18px;
  margin-bottom: 2px;
}

.wallet-text,
.cart-text {
  font-weight: 700;
  font-size: 14px;
  color: #1d1d1f;
}

/* Размеры попапа */
.popup.header__id-popup {
  width: 424px;
  padding: 40px 28px;
  border-radius: 18px;
}

/* Кнопка закрытия */
.header__id-popup {
  position: relative;
}

.header__id-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  font-size: 6px;
  line-height: 22px;
  cursor: pointer;
}

/* Список и строки */
.header__id-accounts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__id-acc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #a9b2b8;
}

s .header__id-acc:last-child::after {
  display: none;
}

.header__id-acc-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header__id-name {
  font-weight: 600;
  font-size: 16px;
  color: #b7b9bc;
}

.header__id-id {
  color: #B8BEC8;
}

/* Активная строка */
.header__id-acc--active .header__id-name {
  color: #111827;
  font-weight: 600;
  font-size: 16px;
  color: #1d1d1f;
}

.header__id-acc--active .header__id-id {
  color: #111827;
}

/* Аватары */
.header__id-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  background: #b7b9bc;
  border: 0;
}

.header__id-avatar--active {
  background: #FF7A2E;
  border: none;
  color: #fff;
}

/* активный ID */
.footer {
  margin-top: 122px;
  background: #fff;
  color: #222;
}
.footer__top {
  background: #ff5c00;
  color: #fff;
  padding: 16px 20px;
}
.footer__top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__top p {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}
.footer__top a {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.footer__top .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.footer__top .social-icons a img {
  width: 36px;
}
.footer__up {
  position: fixed;
}
.footer__middle {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
.footer__middle h4 {
  font-weight: 700;
  font-size: 20px;
  color: #1d1d1f;
  margin-bottom: 10px;
}
.footer__middle ul {
  list-style: none;
  padding: 0;
}
.footer__middle ul li {
  margin-bottom: 6px;
}
.footer__middle ul li a {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
}
.footer__middle ul li a:hover {
  text-decoration: underline;
}
.footer__links {
  display: flex;
  gap: 80px;
}
.footer__bottom {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  display: flex;
  align-items: center;
  font-size: 13px;
}
.footer__bottom a {
  color: #222;
  text-decoration: none;
}
.footer__bottom a:hover {
  text-decoration: underline;
}
.footer__bottom__brand {
  font-weight: bold;
}
.footer__bottom__policy {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer__bottom__up {
  text-align: right;
}
.footer__brand {
  margin-right: 140px;
}
.footer__policy {
  display: flex;
  gap: 140px;
}

.label {
  font-weight: 400;
  font-size: 16px;
  color: #b7b9bc;
  display: flex;
  align-items: center;
}

.amount {
  font-weight: 700;
  font-size: 20px;
  color: #1d1d1f;
  margin-top: 4px;
}

.amount.large {
  font-weight: 700;
  font-size: 50px;
  color: #224474;
}

.amount.red {
  color: #d82d2d;
}

.btn {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn-balance {
  width: 396px;
  height: 80px;
}

.btn.primary {
  background: #3871c1;
  color: #fff;
}

.btn.dark {
  background: #224474;
  color: #fff;
}

.btn.lightblue {
  background: #88aada;
  color: #fff;
}

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

.balance-details {
  display: flex;
  justify-content: space-between;
  background: #ebf1f9;
  padding: 32px 44px;
  border-radius: 10px;
  margin: 48px 0;
}

.detail {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.custom-topup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}
.custom-topup__form {
  border-radius: 10px;
  height: 70px;
  box-shadow: inset 2px 2px 6px 0 rgba(34, 68, 116, 0.25);
  background: #224474;
}
.custom-topup__form input {
  padding: 10px;
  height: inherit;
  width: 200px;
  border: 1px solid #224474;
  border-radius: 10px;
}
.custom-topup__form button {
  padding: 22px;
}

.turnover {
  margin-top: 100px;
}
.turnover h2 {
  font-weight: 700;
  font-size: 30px;
  color: #1d1d1f;
}
.turnover h2 .blue {
  color: #3871c1;
}
.turnover table {
  margin-top: 45px;
  width: 100%;
  border-collapse: collapse;
}
.turnover table tbody {
  margin-top: 11px;
}
.turnover table th,
.turnover table td {
  text-align: left;
  padding: 13px 0;
}
.turnover table td {
  font-weight: 700;
  font-size: 20px;
  color: #1d1d1f;
}
.turnover table th {
  font-weight: 700;
  font-size: 16px;
  color: #b7b9bc;
}
.turnover table td.red {
  color: #d82d2d;
}
.turnover table .table-row--top {
  border-bottom: 1px solid #b7b9bc;
}

.bottom-actions {
  margin-top: 88px;
  display: flex;
  justify-content: space-between;
}

.forecast,
.payments {
  padding: 28px 24px;
  border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.forecast {
  padding-bottom: 20px;
  width: 768px;
  background: #f5f5f7;
  display: flex;
  flex-direction: column;
}
.forecast > div {
  height: -moz-min-content;
  height: min-content;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.forecast button {
  width: 404px;
  height: 52px;
}
.forecast table {
  margin-top: 49px;
  display: none;
}
.forecast tr {
  display: flex;
  gap: 107px;
}
.forecast th {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: #b7b9bc;
  width: 168px;
}
.forecast td {
  font-weight: 700;
  font-size: 20px;
  color: #1d1d1f;
  width: 168px;
}
.forecast tbody {
  margin-top: 12px;
  display: inline-block;
}
.forecast tbody tr {
  padding: 8px 0;
  border-bottom: 0.5px solid #3871c1;
}

.payments {
  width: 368px;
  height: 240px;
  border: 1px solid #3871c1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.payments button {
  font-size: 16px;
}

.debt-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 20px;
}
.debt-popup__content {
  background: #fff;
  width: 632px;
  padding: 32px;
  border-radius: 12px;
  position: relative;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: #1d1d1f;
}
.debt-popup__content h2 {
  font-weight: 700;
  font-size: 24px;
  color: #1d1d1f;
  margin-bottom: 10px;
}
.debt-popup__content h3.accent {
  font-weight: 700;
  font-size: 16px;
  color: #fe6d2c;
  margin-top: 16px;
}
.debt-popup__content p {
  margin-top: 8px;
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
}
.debt-popup__content ul {
  padding-left: 20px;
  margin-top: 20px;
  list-style-type: disc;
}
.debt-popup__content ul li {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
}
.debt-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #dd2a1b;
  border: none;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.suppliers {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.suppliers__info {
  width: 568px;
}
.suppliers__info .title {
  font-weight: 700;
  font-size: 44px;
  color: #1d1d1f;
}
.suppliers__info .text {
  margin-top: 28px;
  font-weight: 400;
  font-size: 24px;
  color: #1d1d1f;
}
.suppliers__info .btn {
  margin-top: 80px;
  width: 569px;
  height: 72px;
}
.suppliers__benefits {
  background: #f5f7fb;
  border-radius: 12px;
  padding: 40px 72px;
}
.suppliers__benefits .subtitle {
  font-weight: 700;
  font-size: 24px;
  color: #1d1d1f;
  margin-bottom: 40px;
}
.suppliers__benefits .benefit ~ .benefit {
  margin-top: 17px;
}
.suppliers__benefits .benefit {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.suppliers__benefits .benefit__number {
  font-weight: 700;
  font-size: 20px;
  color: #fe6d2c;
}
.suppliers__benefits .benefit__content p {
  margin-top: 4px;
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}

.access {
  margin-top: 88px;
  background: #f5f5f7;
  padding: 36px 0 60px;
}
.access__title {
  font-weight: 700;
  font-size: 30px;
  color: #1d1d1f;
}
.access__title .blue {
  color: #3871c1;
}
.access__cards {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  flex: 1;
  box-shadow: 0 0 0 1px #eee;
  position: relative;
}
.card .Qust {
  left: auto;
  right: 16px;
  top: 20px;
  z-index: 1;
}
.card .Qust:hover {
  opacity: 0;
}
.card .answer {
  top: 16px;
  right: 16px;
  align-items: center;
  justify-content: space-between;
  border: 0.5px solid #fe6d2c;
  border-radius: 5px;
  padding: 5px;
  width: 310px;
  height: 32px;
  bottom: auto;
  left: auto;
}
.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.card p {
  font-weight: 700;
  font-size: 16px;
  color: #1d1d1f;
}
.card .blue {
  color: #3871c1;
}
.card .orange {
  color: #fe6d2c;
}

.cooperation {
  position: relative;
  height: 700px;
  margin-top: 88px;
}
.cooperation__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.cooperation__circle {
  position: absolute;
  border-radius: 50%;
  background: #d3e1f3;
  opacity: 0.3;
}
.cooperation__circle--large {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cooperation__circle--medium {
  width: 564px;
  height: 564px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #d7e3f3;
}
.cooperation__circle--small {
  width: 436px;
  height: 436px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #c3d4ec;
  opacity: 1;
}
.cooperation__text {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #1d1d1f;
}
.cooperation__items {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cooperation__item {
  position: absolute;
  width: 280px;
  border-radius: 10px;
  padding: 15px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  width: 268px;
  height: 160px;
}
.cooperation__item a {
  color: #fff;
  text-decoration: underline;
}
.cooperation__item--top-left {
  top: 90px;
  left: 15px;
  background: #224474;
}
.cooperation__item--bottom-left {
  bottom: 90px;
  left: 15px;
  background: #2d5a9a;
}
.cooperation__item--top-right {
  top: 90px;
  right: 15px;
  background: #3871c1;
}
.cooperation__item--bottom-right {
  bottom: 90px;
  right: 15px;
  background: #608dcd;
}
.cooperation__badge {
  background: #fff;
  width: 25px;
  height: 25px;
  font-weight: 700;
  font-size: 16px;
  color: #224474;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cooperation__desc {
  margin: 0;
  line-height: 1.4;
}

.notice {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 24px 28px;
  border: 1px solid #fe6d2c;
  background: #fff0ea;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  margin-top: 32px;
}
.notice__icon {
  font-size: 20px;
  color: #ff5c00;
  margin-top: 2px;
}
.notice__content p {
  font-weight: 400;
  font-size: 18px;
  color: #21282b;
  margin-top: 13px;
}
.notice__content strong {
  font-weight: 700;
}

.wholesale__title {
  font-weight: 700;
  font-size: 44px;
  line-height: 109%;
  color: #1d1d1f;
}
.wholesale__subtitle {
  margin-top: 43px;
  font-weight: 400;
  font-size: 24px;
  color: #1d1d1f;
  width: 712px;
}
.wholesale__steps {
  position: relative;
  margin-top: 157px;
}
.wholesale__image {
  width: 1168px;
  margin: 0 auto;
  display: block;
}
.wholesale__labels {
  width: 100%;
  width: 880px;
}

.step {
  width: 204px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  pointer-events: auto;
  position: absolute;
}
.step p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #1d1d1f;
}
.step__num {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #1d1d1f;
}
.step--1 {
  bottom: 30px;
  left: -1.5%;
}
.step--2 {
  top: -90px;
  left: 15.5%;
}
.step--3 {
  bottom: 38px;
  left: 33.5%;
}
.step--4 {
  width: 244px;
  top: -90px;
  left: 48%;
}
.step--5 {
  bottom: 18px;
  left: 68%;
}
.step--6 {
  top: -90px;
  left: 84%;
}

.documents {
  margin-top: 226px;
}
.documents__title {
  font-weight: 700;
  font-size: 30px;
  color: #1d1d1f;
}
.documents__wrapper {
  margin-top: 38px;
  display: flex;
  gap: 20px;
}
.documents__card {
  flex: 1;
  padding: 33px;
  border-radius: 12px;
  background: #f8f9fb;
  position: relative;
}
.documents__card .Qust {
  left: auto;
  top: 16px;
  right: 16px;
}
.documents__card .answer {
  justify-content: center;
  align-items: center;
  position: absolute;
  left: auto;
  bottom: 100%;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 60px;
  z-index: 99;
}
.documents__card--legal {
  background: #f4f6fa;
}
.documents__card--individual {
  background: #f6f6f6;
}
.documents__subtitle {
  font-weight: 700;
  font-size: 35px;
}
.documents__subtitle.blue {
  color: #3871c1;
}
.documents__subtitle.orange {
  color: #fe6d2c;
}
.documents__icon {
  font-size: 16px;
  margin-left: 6px;
  color: #ff5c00;
}
.documents__list {
  margin-top: 40px;
  padding-left: 15px;
  list-style-type: disc;
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.documents__list li {
  margin-bottom: 8px;
}

.slider {
  margin-top: 120px;
  overflow: visible;
}
.slider h2 {
  font-weight: 700;
  font-size: 30px;
  color: #1d1d1f;
  margin-bottom: 60px;
}

.swiper {
  width: 1200px;
  height: 100%;
  overflow: visible !important;
}

.swiper-slide {
  cursor: pointer;
  border-radius: 10px;
  width: 368px;
  height: 304px;
  display: flex;
  flex-direction: column;
  padding: 30px 36px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
}
.swiper-slide h3 {
  margin-top: 17px;
  font-weight: 700;
  font-size: 26px;
  color: #1d1d1f;
}
.swiper-slide p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}

.swiper-slide.blue {
  background: #3871c1;
}
.swiper-slide.blue h3,
.swiper-slide.blue p {
  color: #fff;
}

.swiper-slide img {
  display: block;
  width: 44px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper {
  width: 100%;
  height: 300px;
  margin: 20px auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  top: -25% !important;
  left: 91% !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  top: -25% !important;
  left: 97% !important;
}

.swiper-button-prev {
  background-image: url("/app/themes/nova/images/icons/arrow_right.svg") !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  width: 40px !important;
  height: 40px !important;
}

.swiper-button-next {
  background-image: url("/app/themes/nova/images/icons/arrow_left.svg") !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  width: 40px !important;
  height: 40px !important;
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-prev::after {
  display: none;
}

.swiper-pagination-fraction {
  display: none;
}

/* ДОБАВИТЬ ВНИЗ В SCSS */
.contacts-bottom {
  margin-top: 40px;
}
.contacts-bottom .btn-primary {
  border-radius: 10px;
  background: #3871c1;
  width: 1168px;
  height: 72px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  border: none;
  cursor: pointer;
}
.contacts-bottom__info {
  margin-top: 116px;
}
.contacts-bottom__info h3 {
  font-weight: 700;
  font-size: 30px;
  color: #1d1d1f;
}
.contacts-bottom__info p {
  font-weight: 400;
  font-size: 24px;
  color: #1d1d1f;
  margin-top: 20px;
  margin-bottom: 31px;
}
.contacts-bottom__info .phone {
  font-weight: 700;
  font-size: 35px;
  color: #3871c1;
}

@media (max-width: 1170px) {
  .slider {
    overflow: hidden !important;
  }
  .swiper {
    overflow: hidden !important;
  }
}
.guest-access {
  display: flex;
  justify-content: space-between;
  width: 1168px;
  margin: 100px auto;
  gap: 48px;
}
.guest-access__text {
  width: 500px;
  font-weight: 400;
  font-size: 20px;
  color: #1d1d1f;
  text-wrap: balance;
}
.guest-access__text h2 {
  font-weight: 700;
  font-size: 44px;
  color: #1d1d1f;
}
.guest-access__text p {
  margin-top: 28px;
  margin-bottom: 16px;
  font-size: 18px;
}
.guest-access__text ul {
  margin-bottom: 16px;
  padding-left: 18px;
  font-size: 18px;
}
.guest-access__text ul li {
  margin-bottom: 6px;
  list-style: disc;
}
.guest-access__form {
  width: 600px;
  background: #d8e4f5;
  background-image: url("/app/themes/nova/images/Guest-entrance.png");
  border-radius: 12px;
  background-repeat: no-repeat;
  padding: 52px 32px 64px;
}
.guest-access__form-subtitle {
  margin-top: 10px;
  font-weight: 300;
  font-size: 16px;
  color: #8f9090;
}
.guest-access__form-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #1d1d1f;
}
.guest-access__form form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guest-access__form form .input-row {
  display: flex;
  gap: 8px;
}
.guest-access__form form .input-row input {
  flex: 1;
}
.guest-access__form form input,
.guest-access__form form textarea {
  border: none;
  border-radius: 6px;
  padding: 16px;
  padding-top: 14px;
  font-size: 16px;
}
.guest-access__form form input::-moz-placeholder, .guest-access__form form textarea::-moz-placeholder {
  font-weight: 300;
  font-size: 10px;
  color: #8f9090;
}
.guest-access__form form input::placeholder,
.guest-access__form form textarea::placeholder {
  font-weight: 300;
  font-size: 10px;
  color: #8f9090;
}
.guest-access__form form textarea {
  height: 100px;
  resize: none;
}
.guest-access__form form button {
  background: #336cd9;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  width: 535px;
  height: 56px;
}
.guest-access__form form .note {
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: rgba(92, 104, 143, 0.56);
  margin-top: 8px;
}

.proposal-section {
  width: 100%;
  width: 1168px;
  margin: 100px auto;
}
.proposal-section .proposal-title {
  font-weight: 700;
  font-size: 44px;
  color: #1d1d1f;
}
.proposal-section .proposal-title .proposal-section {
  width: 100%;
  width: 1168px;
  margin: 0 auto;
}
.proposal-section .proposal-title .proposal-section .proposal-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.proposal-section .proposal-title .proposal-section .proposal-wrapper {
  display: flex;
  gap: 32px;
  background: #f6f8fb;
  padding: 24px;
  border-radius: 10px;
}
.proposal-section .proposal-title .proposal-section .proposal-form {
  width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proposal-section .proposal-title .proposal-section .proposal-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.proposal-section .proposal-title .proposal-section .proposal-form label input,
.proposal-section .proposal-title .proposal-section .proposal-form label textarea {
  border: 1px solid #999;
  border-radius: 5px;
  padding: 8px;
  margin-top: 4px;
  font-size: 14px;
}
.proposal-section .proposal-title .proposal-section .proposal-form label textarea {
  resize: vertical;
  min-height: 120px;
}
.proposal-section .proposal-title .proposal-section .proposal-form .proposal-row {
  display: flex;
  gap: 16px;
}
.proposal-section .proposal-title .proposal-section .proposal-form .proposal-row label {
  flex: 1;
}
.proposal-section .proposal-title .proposal-section .proposal-form button {
  width: 240px;
  height: 44px;
  background: #2662d0;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.proposal-section .proposal-title .proposal-section .proposal-image {
  width: 368px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.proposal-section .proposal-title .proposal-section .proposal-image img {
  width: 100%;
  padding: 20px;
}
.proposal-section .proposal-wrapper {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  background: #f5f5f7;
  background-image: url("/app/themes/nova/images/Proposals-bg.png");
  background-size: cover;
  padding: 64px 44px 40px;
  border-radius: 10px;
}
.proposal-section .proposal-form {
  width: 700px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.proposal-section .proposal-form label {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 12px;
  color: #b7b9bc;
}
.proposal-section .proposal-form label input,
.proposal-section .proposal-form label textarea {
  border: 1px solid #1d1d1f;
  border-radius: 5px;
  padding: 16px;
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
}
.proposal-section .proposal-form label textarea {
  resize: vertical;
  min-height: 120px;
  width: 700px;
  height: 196px;
}
.proposal-section .proposal-form .proposal-row {
  display: flex;
  gap: 16px;
}
.proposal-section .proposal-form .proposal-row label {
  flex: 1;
}
.proposal-section .proposal-form button {
  margin-top: 40px;
  width: 368px;
  height: 56px;
  background: #3871c1;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}
.proposal-section .proposal-form .Complaint {
  background: #1d1d1f;
}
.proposal-section .proposal-image {
  margin-top: 24px;
  width: 368px;
  height: 372px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.profile-settings h1 {
  margin-top: 100px;
  font-weight: 700;
  font-size: 44px;
  color: #3d4b55;
}

.profile-settings_wrapp {
  margin-top: 29px;
  display: flex;
  gap: 28px;
}

.profile-settings__block {
  border-radius: 10px;
  padding: 28px 28px 48px;
  display: flex;
  flex-direction: column;
}
.profile-settings__block-password {
  display: flex;
  margin-top: 34px;
  gap: 29px;
}
.profile-settings__block-notice {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px !important;
  color: #1d1d1f;
  width: 288px;
}

.email-block {
  width: 468px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
}
.email-block h3 {
  margin-top: 4px;
  font-weight: 700;
  font-size: 26px;
  color: #3871c1;
}
.email-block p {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
}
.email-block .email-block__inputs {
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.email-block .email-block__inputs .input-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.email-block .email-block__inputs .input-group input {
  width: 299px;
  height: 48px;
  border: 1px solid #296acb;
  border-radius: 5px;
  padding: 0 12px;
}
.email-block .email-block__inputs .input-group .btn-add,
.email-block .email-block__inputs .input-group .btn-remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  font-weight: bold;
  color: white;
  background: #3871c1;
  cursor: pointer;
  font-size: 20px;
}
.email-block .email-block__inputs .input-group .btn-remove {
  background: #707070;
}

.password-block {
  width: 672px;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff2ec;
  background-image: url("/app/themes/nova/images/Profile-Settings-BG.png");
}
.password-block h3 {
  font-weight: 700;
  font-size: 26px;
  color: #fe6d2c;
}
.password-block h3 span {
  color: #fe6d2c;
}
.password-block p {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
}
.password-block .notice {
  margin: 12px 0;
}
.password-block .password-block__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.password-block .password-block__form input {
  border: 1px solid #fe6d2c;
  border-radius: 5px;
  width: 299px;
  height: 48px;
  padding: 0 12px;
}

.btn-save {
  margin-top: 48px;
  border-radius: 5px;
  width: 616px;
  height: 56px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.btn-save.blue {
  background: #296acb;
  width: 100%;
}
.btn-save.orange {
  background: #fe6d2c;
  width: 100%;
  color: #fff;
}

.notifications {
  margin-top: 100px;
}
.notifications h1 {
  font-weight: 700;
  font-size: 44px;
  color: #1d1d1f;
}

.notifications_wrapp {
  margin-top: 22px;
  display: flex;
  gap: 40px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  border-radius: 10px;
  padding: 56px 36px;
}

.notifications__left {
  width: 456px;
  padding: 24px;
}
.notifications__left span {
  color: #3871c1;
}
.notifications__left h2 {
  margin-top: 4px;
  font-weight: 700;
  font-size: 30px;
}
.notifications__left p {
  margin: 20px 0;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}

.notifications__right {
  width: 600px;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
}
.notifications__right h3 {
  font-weight: 500;
  font-size: 20px;
  color: #1d1d1f;
}
.notifications__right .desc {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
  margin-top: 4px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
}
.notifications__right h4 {
  font-weight: 500;
  font-size: 20px;
  color: #1d1d1f;
  margin-top: 29px;
}
.notifications__right .notify-block {
  margin-top: 15px;
  background: #f6f6f6;
  border-radius: 6px;
  padding: 12px 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.notifications__right .notify-block input[type=radio] {
  width: 16px;
  height: 16px;
  accent-color: #3871c1;
}
.notifications__right .notify-block input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.notifications__right .notify-block .check-label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.notifications__right .notify-block .fakecheck {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid #3D4B55;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out 0s;
}
.notifications__right .notify-block .fakecheck svg polyline {
  transition: all 0.3s ease-out 0s;
}
.notifications__right .notify-block .fakecheck.checked svg polyline {
  stroke-dashoffset: 0;
}
.notifications__right .notify-block .fakecheck.checked {
  background-color: #3871c1;
  border-color: #3871c1;
}
.notifications__right .notify-block label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
  padding-right: 5px;
}
.notifications__right .notify-block .notify-content {
  display: flex;
  flex-direction: column;
}
.notifications__right .notify-block .notify-content strong {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.notifications__right .notify-block .notify-content span {
  font-weight: 300;
  font-size: 12px;
  color: #8f9090;
  margin-top: 4px;
}
.notifications__right .notify-block:nth-of-type(1) {
  align-items: start;
}
.notifications__right .notify-block:nth-of-type(1) .notify-block_items {
  padding-left: 5px;
}
.notifications__right .notify-block:nth-of-type(1) strong {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.notifications__right .btn-save {
  width: 536px;
  height: 56px;
  background: #3871c1;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.check-label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.fakecheck {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid #3D4B55;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out 0s;
}

.fakecheck svg polyline {
  transition: all 0.3s ease-out 0s;
}

.fakecheck.checked svg polyline {
  stroke-dashoffset: 0;
}

.fakecheck.checked {
  background-color: #3871c1;
  border-color: #3871c1;
}

.check-label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.settings-notification form > label .fakecheck {
  width: 16px;
  height: 16px;
}

.fakecheck.checked {
  background-color: #3871c1;
  border-color: #3871c1;
}
.fakecheck.checked.orange {
  background: #fe6d2c;
  border-color: #fe6d2c;
  margin-right: 4px;
}
.fakecheck.checked.w-12 {
  width: 12px;
  height: 12px;
}
.fakecheck.checked.w-20 {
  width: 20px;
  height: 20px;
}

.fakecheck {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid transparent;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out 0s;
  margin-right: 4px;
}
.fakecheck.w-12 {
  width: 12px;
  height: 12px;
}
.fakecheck.w-20 {
  width: 20px;
  height: 20px;
}

.contacts {
  margin-top: 100px;
}
.contacts__title {
  font-weight: 700;
  font-size: 44px;
  color: #1d1d1f;
}
.contacts__desc {
  font-weight: 400;
  font-size: 24px;
  color: #1d1d1f;
  margin-bottom: 34px;
}
.contacts__layout {
  display: flex;
  gap: 32px;
  margin-top: 68px;
}
.contacts__tabs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  border-radius: 10px;
  width: 268px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 12px;
}
.contacts__tabs .tab {
  border-radius: 10px;
  width: 244px;
  height: 64px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #1d1d1f;
}
.contacts__tabs .tab.active {
  background: #c3d4ec;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
.contacts__tabs .tab {
  transition: all 0.3s ease;
}
.contacts__tabs .tab:hover {
  color: #3871c1;
  transform: scale(1.02);
}
.contacts__tabs .tab ~ .tab {
  border-top: 1px solid #ebf1f9;
}
.contacts__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  flex: 1;
}
.contacts .contact-card {
  background: #f5f5f7;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 268px;
}
.contacts .contact-card__left {
  display: flex;
  gap: 8px;
}
.contacts .contact-card__left srtong {
  font-weight: 700;
  font-size: 20px;
  color: #1d1d1f;
}
.contacts .contact-card__left p {
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #fe6d2c;
}
.contacts .contact-card img {
  width: 96px;
  height: 116px;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts .contact-card .info {
  display: flex;
  flex-direction: column;
}
.contacts .contact-card .info .extension {
  color: #ec3d20;
  font-size: 14px;
}
.contacts .contact-card .info .role {
  width: 236px;
  height: 28px;
  font-weight: 400;
  font-size: 12px;
  line-height: 233%;
  text-align: center;
  color: #fff;
  background: #3871c1;
  border-radius: 5px;
}
.contacts .contact-card .info .email,
.contacts .contact-card .info .phone {
  color: inherit;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}
.contacts .contact-card .info .email img,
.contacts .contact-card .info .phone img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}

.hidden {
  display: none;
}

.info-blocks {
  margin-top: 112px;
  display: flex;
  gap: 32px;
}

.info-block {
  flex: 1;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #1d1d1f;
  font-size: 14px;
  line-height: 1.6;
  width: 568px;
}
.info-block .accounts {
  margin-top: 12px;
  display: flex;
  gap: 30px;
}
.info-block .accounts .accounts_name,
.info-block .accounts .accounts_numb {
  display: flex;
  flex-direction: column;
}
.info-block p {
  margin-top: 20px;
  font-weight: 400;
}
.info-block p strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #1d1d1f;
}
.info-block--contacts {
  background: #f5f5f7;
  border: none;
}
.info-block__icon {
  margin-bottom: 16px;
}
.info-block__icon img {
  width: 32px;
  height: 32px;
}
.info-block__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #1d1d1f;
  margin-bottom: 20px;
}
.info-block .inline {
  display: flex;
  gap: 48px;
}
.info-block__link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: #3871c1;
}
.info-block__link:hover {
  text-decoration: underline;
}

.map {
  margin-top: 44px;
}
.map iframe {
  border-radius: 10px;
  width: 520px;
  height: 370px;
}

.docs-block {
  margin-top: 108px;
  display: flex;
  gap: 24px;
  font-family: sans-serif;
}

.docs-switcher {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.docs-switcher .switch-btn {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  text-align: center;
  border-radius: 10px;
  width: 244px;
  height: 64px;
}
.docs-switcher .switch-btn.active {
  background: #c3d4ec;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.docs-slider {
  width: 868px;
  height: 396px;
  background: #f5f5f7;
  border-radius: 12px;
  padding: 48px 68px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.docs-slider .slider-track-wrapper {
  overflow: hidden;
  width: 100%;
}
.docs-slider .slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}
.docs-slider .doc-card {
  width: 164px;
  height: 208px;
  background: #e0e0e0;
  border-radius: 8px;
}
.docs-slider .doc-card img {
  width: 164px;
  height: 208px;
  -o-object-fit: cover;
  object-fit: cover;
}
.docs-slider .doc-card.hidden {
  display: none;
}
.docs-slider .slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 20px;
  color: #3871c1;
  cursor: pointer;
  z-index: 2;
}
.docs-slider .slider-arrow.left {
  left: 16px;
}
.docs-slider .slider-arrow.right {
  right: 16px;
}
.docs-slider .download-all {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #3871c1;
  margin-top: 76px;
}
.docs-slider .download-all:hover {
  text-decoration: underline;
}

.switch-btn {
  transition: all 0.3s ease;
}
.switch-btn:hover {
  color: #3871c1;
  transform: scale(1.02);
}

.question {
  position: relative;
}

.Qust {
  position: absolute;
  left: 8px;
  top: -9px;
  cursor: pointer;
}

.Qust2 {
  position: relative;
}

.answer {
  font-weight: 400 !important;
  font-size: 12px;
  color: #7b868e !important;
  position: absolute;
  border: 0.5px solid #fe6d2c;
  border-radius: 5px;
  padding: 10px;
  background: #fcfcfc;
  width: 200px;
  bottom: 20px;
  left: -65px;
  text-align: left;
}

.Qust:hover + .answer {
  display: flex;
}

.Qust2:hover .answer {
  display: flex;
  bottom: 60px;
  width: auto;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 100px;
}

.answer {
  display: none;
}
.answer.red {
  border: 0.5px solid #b50e00;
}
.answer.green {
  border: 0.5px solid #007b3e;
}

.documents__card .answer {
  left: 50%;
}

.auth .login {
  display: flex;
  gap: 100px;
  align-items: center;
}
.auth .login_img img {
  width: 50vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.auth .registr_auth {
  border: 1px solid #3871c1;
  border-radius: 5px;
  width: 368px;
  height: 48px;
  background-color: transparent;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #3871c1;
}

.registr {
  position: relative;
  width: 1168px;
  height: 644px;
  margin-bottom: 450px;
}
.registr .tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: absolute;
  width: 268px;
  height: 152px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  border-radius: 10px;
  width: 268px;
  height: 152px;
  padding: 8px 12px;
}
.registr .tab-btn {
  padding: 10px 20px;
  border-radius: 10px;
  background: transparent;
  width: 244px;
  height: 64px;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #1d1d1f;
  cursor: pointer;
}
.registr .tab-btn.active {
  background: #f5f5f7;
}
.registr .tab-content {
  display: none;
}
.registr .tab-content.active {
  display: block;
  right: 0;
}
.registr .retail-header {
  border: 1px solid #fe6d2c;
  display: flex;
}
.registr .retail-header .col-1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-right: 70px;
}
.registr .retail-header .col-2 {
  display: flex;
  flex-direction: column;
}
.registr .wholesale-header {
  border: 1px solid #3871c1;
  display: flex;
}
.registr .wholesale-header .col-1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-right: 70px;
}
.registr .wholesale-header .col-2 {
  display: flex;
  flex-direction: column;
}
.registr .retail-header,
.registr .wholesale-header {
  padding: 20px 28px;
  border-radius: 10px;
  position: absolute;
  width: 868px;
  height: 152px;
  top: 0;
  right: 0;
}
.registr .retail-header,
.registr .wholesale-header {
  margin-bottom: 20px;
}
.registr .retail-header ul,
.registr .wholesale-header ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.registr .retail-header ul li,
.registr .wholesale-header ul li {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #1d1d1f;
}
.registr .retail-header ul li strong,
.registr .wholesale-header ul li strong {
  border-radius: 5px;
  width: 28px;
  height: 28px;
  background: #224474;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-right: 5px;
}
.registr .retail-header ul li span,
.registr .wholesale-header ul li span {
  margin-left: 3px;
}
.registr .retail-header ul li span {
  color: #fe6d2c;
}
.registr .wholesale-header ul li span {
  color: #3871c1;
}
.registr .retail-body,
.registr .wholesale-body {
  position: absolute;
  border-radius: 10px;
  width: 1168px;
  top: 212px;
}
.registr .retail-body {
  border: 1px solid #fe6d2c;
}
.registr .wholesale-body {
  border: 1px solid #3871c1;
}
.registr .retail-body,
.registr .wholesale-body {
  padding: 36px 68px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.registr .wholesale-body {
  display: grid;
  grid-template-columns: 201px 472px 201px;
}
.registr .left li,
.registr .right li {
  margin-bottom: 24px;
  display: flex;
  gap: 5px;
  flex-direction: column;
  align-items: end;
  text-align: right;
}
.registr .right {
  grid-column: 3/4;
  grid-row: 2/3;
}
.registr .right li {
  align-items: start;
  text-align: left;
}
.registr form {
  border-radius: 10px;
  width: 472px;
  background: #FFF0EA;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background-image: url("/app/themes/nova/images/regist.png");
}
.registr form h3 {
  margin-top: 0;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  color: #1d1d1f;
}
.registr form p {
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  color: #1d1d1f;
}
.registr form input {
  padding: 10px;
  border: 1px solid #fe6d2c;
  border-radius: 5px;
  width: 416px;
  height: 48px;
}
.registr form input::-moz-placeholder {
  font-weight: 300;
  font-size: 12px;
  color: #8f9090;
}
.registr form input::placeholder {
  font-weight: 300;
  font-size: 12px;
  color: #8f9090;
}
.registr form input[type=checkbox] {
  border-radius: 2px;
  width: 12px;
  height: 12px;
}
.registr form input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
}
.registr form input[type=checkbox]:checked {
  background-color: #fe6d2c;
  border-color: #fe6d2c;
}
.registr form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.registr form label {
  font-weight: 300;
  font-size: 10px;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  gap: 4px;
}
.registr form label p {
  font-weight: 300;
  font-size: 10px;
  color: #1d1d1f;
  text-align: left;
}
.registr form label a {
  color: #fe6d2c;
}
.registr form label input {
  margin-right: 5px;
}
.registr form button {
  padding: 12px;
  background: #f60;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.registr form .wholesale-checks label:nth-child(2) input {
  margin-right: 5px;
}
.registr .sub-tabs {
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  border-radius: 10px;
  width: 1031px;
  height: 80px;
  grid-column: 1/4;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}
.registr .sub-tabs .sub-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 5px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #1d1d1f;
  border-radius: 10px;
  width: 336px;
  height: 64px;
}
.registr .sub-tabs .sub-tab-btn span {
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}
.registr .sub-tabs .sub-tab-btn.active {
  background: #c3d4ec;
}
.registr .wholesale-form {
  display: none;
  background: #d7e3f3;
}
.registr .wholesale-form input {
  border: 1px solid rgba(56, 113, 193, 0.4784313725);
}
.registr .wholesale-form.active {
  display: flex;
}
.registr .wholesale-form button {
  border-radius: 5px;
  width: 92px;
  background: #3871c1;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  align-self: flex-end;
}
.registr .wholesale-form .prev-btn {
  background: #fff;
  color: #000;
}
.registr .wholesale-form > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.registr .wholesale-form > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.registr .wholesale-form > div > div input {
  width: auto;
}
.registr .wholesale-form > div > div span {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
}
.registr .wholesale-form .custom-toggle {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 16px;
}
.registr .wholesale-form .custom-toggle__input {
  opacity: 0;
  width: 0;
  height: 0;
}
.registr .wholesale-form .custom-toggle__input:checked + .custom-toggle__slider {
  background-color: #3375cd;
}
.registr .wholesale-form .custom-toggle__input:checked + .custom-toggle__slider::before {
  transform: translateX(16px);
}
.registr .wholesale-form .custom-toggle__slider {
  position: absolute;
  cursor: pointer;
  background-color: #bfc5cb;
  border-radius: 10px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background-color 0.3s;
}
.registr .wholesale-form .custom-toggle__slider::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  left: 2px;
  top: 2px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}
.registr .wholesale-form h4 {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #3871c1;
  margin: 20px 0;
}
.registr .wholesale-form .submit-btn {
  margin-top: 28px;
  width: 100%;
}
.registr .wholesale-form {
  display: none;
  background-image: url("/app/themes/nova/images/regist.png");
}
.registr .wholesale-form.active {
  display: flex;
}
.registr .wholesale-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.registr .wholesale-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.registr .wholesale-radios {
  justify-content: center !important;
  gap: 20px !important;
}
.registr .wholesale-radios input {
  width: 16px;
  height: 16px;
}
.registr .wholesale-radios label {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #1d1d1f;
}
.registr .wholesale-radio-group {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  height: 160px;
  font-weight: 400;
  font-size: 14px;
  color: #1d1d1f;
}
.registr .wholesale-radio-group input[type=radio] {
  width: 16px;
  height: 16px;
}
.registr .wholesale-checks {
  display: flex;
  flex-direction: column;
  align-items: start !important;
}
.registr .wholesale-checks input[type=checkbox] {
  padding: 0px;
  width: 12px !important;
  height: 12px !important;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.registr .wholesale-checks input[type=checkbox]:checked {
  background: #3871c1 !important;
  border: 1px solid #3871c1 !important;
}
.registr .wholesale-checks label {
  font-weight: 300;
  font-size: 10px;
  color: #1d1d1f;
}
.registr .wholesale-checks label a {
  font-weight: 400;
  color: #3871c1;
}
.registr .wholesale-form {
  grid-column: 2/3;
  grid-row: 2/3;
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #eaf0fb;
  padding: 30px;
  border-radius: 12px;
}
.registr .wholesale-form.step {
  width: 472px;
}
.registr .wholesale-form.active {
  display: flex;
  background-image: url("/app/themes/nova/images/regist.png");
  background-position: bottom;
}
.registr .wholesale-tab {
  display: none;
  grid-row: 2/3;
  grid-column: 2/3;
  height: auto;
}
.registr .wholesale-tab.active {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
.registr .wholesale-form {
  display: none;
}
.registr .wholesale-form.active {
  display: flex;
}
.registr .step {
  display: none;
}
.registr .step.active {
  display: flex;
}
.registr .form-wrapper {
  width: 472px;
  height: -moz-fit-content;
  height: fit-content;
}

.wholesale-tab {
  display: none;
}

.wholesale-tab.active {
  display: block;
}

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

.wholesale-form {
  display: none;
}

.wholesale-form.active {
  display: block;
}

.wholesale-tab {
  display: none;
}

.wholesale-tab.active {
  display: block;
}

.wholesale-wrapper {
  display: flex;
  flex-direction: column;
  transition: height 0.3s ease;
  overflow: hidden;
}

.wholesale-form {
  display: none;
}

.wholesale-form.active {
  display: block;
}

.cart-page-body {
  background: #f5f5f7;
}

.cart-page {
  display: flex;
  gap: 40px;
  font-family: sans-serif;
}
.cart-page input[type=checkbox] {
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  width: 20px;
  height: 20px;
}

.cart-page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.cart-page-heading h1 {
  font-weight: 700;
  font-size: 44px;
  color: #1d1d1f;
}
.cart-page-heading p {
  font-weight: 700;
  font-size: 20px;
  text-align: right;
  color: #3871c1;
}
.cart-page-heading p span {
  color: #1d1d1f;
}

.cart-empty .search-page {
  margin-bottom: 40px;
}
.cart-empty .search-empty-cart {
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cart-empty .search-empty-cart__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}
.cart-empty .search-empty-cart__text {
  margin: 0 0 20px;
  font-size: 14px;
  color: #4b5563;
}
.cart-empty .search-empty-cart__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3871c1;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  width: 200px;
  height: 56px;
  font-size: 14px;
}
.cart-empty .search-empty-cart__btn:hover {
  opacity: 0.95;
}
.cart-empty .search-empty-cart__btn:active {
  transform: translateY(1px);
}
.cart-empty .search-empty-cart__right {
  justify-self: end;
}
.cart-empty .search-empty-cart__logo {
  width: 260px;
  height: auto;
  display: block;
}

.cart-left {
  border-radius: 10px;
  width: 800px;
  background: #fff;
  padding: 20px 0 0;
  flex: 1;
}

.cart-header {
  height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 2px solid #f5f5f7;
}
.cart-header .delete-btn {
  background: #f5f5f7;
  border-radius: 5px;
  width: 180px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 8px;
}
.cart-header .delete-btn.hidden {
  display: none;
}

.cart-item {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fff;
}
.cart-item .item-check {
  margin-right: 12px;
}
.cart-item .item-check input {
  width: 20px;
  height: 20px;
}
.cart-item .item-body {
  flex: 1;
}
.cart-item .item-body .item-top {
  margin-bottom: 10px;
}
.cart-item .item-body .item-top .item-code,
.cart-item .item-body .item-top .item-name,
.cart-item .item-body .item-top .item-brand {
  margin-bottom: 4px;
}
.cart-item .item-body .item-top .comment {
  width: 300px;
  margin: 8px 0;
}
.cart-item .item-body .item-top .item-icons button {
  margin-right: 8px;
}
.cart-item .item-body .item-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cart-item .item-body .item-bottom .qty-block {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-item .item-body .item-bottom .qty-block button {
  padding: 0 10px;
}
.cart-item .item-body .item-bottom .qty-block input {
  width: 32px;
  text-align: center;
}
.cart-item .item-body .item-bottom .stock-status,
.cart-item .item-body .item-bottom .return-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}
.cart-item .item-body .item-bottom .green {
  background: #e0f3e0;
  color: #0f8f0f;
}
.cart-item .item-body .item-bottom .orange {
  background: #fff4e0;
  color: #d78f00;
}
.cart-item .item-body .item-bottom .red {
  background: #fde0e0;
  color: #c00000;
}
.cart-item .item-body .item-bottom .timestamps {
  font-size: 12px;
  color: #666;
  margin-left: auto;
}
.cart-item .item-body .item-bottom .price {
  font-weight: bold;
  font-size: 16px;
  margin-left: auto;
}

.cart-sidebar {
  width: 344px;
}
.cart-sidebar .cart-sidebar_wrapp {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 12px;
  padding-bottom: 0;
}
.cart-sidebar .cart-sidebar-prod {
  font-weight: 400;
  font-size: 12px;
  color: #b7b9bc;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cart-sidebar .total {
  font-weight: 700;
  font-size: 24px;
  color: #1d1d1f;
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.cart-sidebar button {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: none;
  border-radius: 4px;
}
.cart-sidebar .order-btn {
  border-radius: 5px;
  width: 296px;
  height: 56px;
  color: #fff;
  background: #3871c1;
}
.cart-sidebar .recalculate {
  background: none;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: #fe6d2c;
}
.cart-sidebar .export {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #1d1d1f;
  background: #ebf1f9;
  border-radius: 5px;
  width: 344px;
  height: 56px;
}
.cart-sidebar .warning-box {
  width: 296px;
  border: 1px solid #ff6b00;
  border-radius: 6px;
  background: #fff4ef;
  padding: 16px 20px;
  font-size: 9px;
  color: #1d1d1f;
  margin-bottom: 16px;
}
.cart-sidebar .warning-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 9px;
  color: #1d1d1f;
}
.cart-sidebar .warning-icon {
  margin-right: 8px;
  font-weight: bold;
}
.cart-sidebar .highlight {
  color: #fe6d2c;
}
.cart-sidebar .warning-check {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  font-weight: 500;
  font-size: 8px;
  color: #1d1d1f;
  cursor: default;
}
.cart-sidebar .warning-check input {
  display: none;
}
.cart-sidebar .custom-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #ff6b00;
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  margin-right: 8px;
}

.select-all {
  font-weight: 400;
  font-size: 14px;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
}
.select-all .fakecheck {
  border: 1px solid #b0b0b0;
  border-radius: 5px;
}

.product-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card {
  display: flex;
  justify-content: space-between;
  padding: 24px;
  font-family: sans-serif;
  background: #fff;
}
.product-card:hover {
  box-shadow: 0 6px 20px 0 rgba(5, 3, 152, 0.1);
}
.product-card .product-left {
  display: flex;
  gap: 16px;
  width: 332px;
}
.product-card .product-left .check-label {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 16px;
}
.product-card .product-left .fakecheck {
  border: 1px solid #b0b0b0;
  border-radius: 5px;
}
.product-card .product-left .custom-checkbox {
  margin-top: 8px;
}
.product-card .product-left .custom-checkbox input {
  display: none;
}
.product-card .product-left .custom-checkbox span {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  margin-top: 4px;
}
.product-card .product-left .custom-checkbox input:checked + span {
  background-color: #2e73f8;
  border-color: #2e73f8;
}
.product-card .product-left .custom-checkbox input:checked + span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.product-card .product-left .product-details .articul {
  font-weight: 300;
  font-size: 10px;
  color: #1d1d1f;
  margin-bottom: 4px;
}
.product-card .product-left .product-details .name {
  font-weight: 700;
  font-size: 14px;
  color: #1d1d1f;
  height: 76px;
  margin-bottom: 8px;
}
.product-card .product-left .product-details .brand {
  font-weight: 300;
  font-size: 10px;
  color: #1d1d1f;
  margin-bottom: 12px;
}
.product-card .product-left .product-details .comment-box {
  width: 208px;
  height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card .product-left .product-details .comment-box input {
  border: 0.5px solid rgba(56, 113, 193, 0.4117647059);
  border-radius: 5px;
  width: 184px;
  height: 28px;
  padding: 8px 12px;
  font-size: 14px;
}
.product-card .product-left .product-details .comment-box input::-moz-placeholder {
  font-weight: 300;
  font-size: 10px;
  color: #b0b0b0;
}
.product-card .product-left .product-details .comment-box input::placeholder {
  font-weight: 300;
  font-size: 10px;
  color: #b0b0b0;
}
.product-card .product-left .product-details .comment-box .char-count {
  font-size: 12px;
  color: #aaa;
}
.product-card .product-left .product-details .icon-buttons {
  margin-top: 12px;
  display: flex;
}
.product-card .product-left .product-details .icon-buttons button {
  border-radius: 5px;
  width: 42px;
  height: 36px;
  border: none;
  margin-right: 10px;
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product-card .product-left .product-details .icon-buttons .camera {
  cursor: pointer;
}
.product-card .product-right {
  width: 352px;
  display: flex;
  justify-content: space-between;
}
.product-card .product-right .quantity-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  justify-content: center;
  width: 124px;
}
.product-card .product-right .quantity-block .minus,
.product-card .product-right .quantity-block .plus {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
.product-card .product-right .quantity-block .quantity {
  width: 52px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #1d1d1f;
}
.product-card .product-right .product-right-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}
.product-card .product-right .product-right-2-trash {
  border-radius: 5px;
  width: 36px;
  height: 36px;
  background: #f5f5f7;
  display: none;
}
.product-card .product-right .available {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 16px;
  width: 124px;
  text-align: center;
}
.product-card .product-right .stock-status {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.product-card .product-right .stock-status .stock-bars {
  display: flex;
}
.product-card .product-right .stock-status .stock-bars .bar {
  width: 12px;
  height: 12px;
  margin-right: 3px;
  border-radius: 2px;
}
.product-card .product-right .stock-status .stock-bars .red {
  background: #f44336;
}
.product-card .product-right .stock-status .stock-bars .orange {
  background: #ff9800;
}
.product-card .product-right .stock-status .stock-bars .gray {
  background: #e0e0e0;
}
.product-card .product-right .stock-status .stock-text {
  font-weight: 400;
  font-size: 10px;
  color: #1d1d1f;
}
.product-card .product-right .return-status {
  border-radius: 5px;
  width: 216px;
  height: 24px;
  background: #f5f5f7;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 12px;
}
.product-card .product-right .return-status .return-text {
  font-weight: 500;
  font-size: 9px;
  color: #b50e00;
}
.product-card .product-right .return-status .return-text.yellow {
  font-weight: 500;
  font-size: 9px;
  color: #ffa600;
}
.product-card .product-right .return-status .return-icon {
  margin-right: 6px;
  position: relative;
  width: 15px;
}
.product-card .product-right .return-status .return-icon .return-icon_num {
  position: absolute;
  width: 8px;
  height: 8px;
  font-weight: 500;
  font-size: 8px;
  text-align: center;
  color: #fff;
  background-color: #b50e00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -1px;
  left: -1px;
}
.product-card .product-right .return-status .return-icon .return-icon_num.yellow {
  background: #ffa600;
}
.product-card .product-right .timestamps {
  font-weight: 300;
  font-size: 9px;
  color: #1d1d1f;
  margin-bottom: 15px;
}
.product-card .product-right .timestamps div {
  margin-bottom: 5px;
}
.product-card .product-right .timestamps b {
  font-weight: 600;
}
.product-card .product-right .price {
  font-weight: 700;
  font-size: 18px;
  text-align: right;
  color: #1d1d1f;
  margin-bottom: 4px;
}
.product-card .product-right .price-per {
  font-weight: 400;
  font-size: 10px;
  text-align: right;
  color: #1d1d1f;
}

.supplier-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.supplier-popup.hidden {
  display: none;
}
.supplier-popup__container {
  background: white;
  padding: 44px 20px;
  max-width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0.5px solid rgba(56, 113, 193, 0.4941176471);
  border-radius: 10px;
  width: 588px;
  background: #fff;
}
.supplier-popup__close {
  position: absolute;
  top: 6px;
  color: white;
  right: 6px;
  font-size: 7px;
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: #dd2a1b;
  cursor: pointer;
}
.supplier-popup__content {
  display: flex;
  gap: 12px;
}
.supplier-popup__info, .supplier-popup__delivery {
  width: 284px;
  flex: 1;
}
.supplier-popup__delivery {
  position: relative;
}
.supplier-popup .supplier-popup__date {
  border-radius: 5px;
  width: 252px;
  box-shadow: 3px 2px 10px 0 rgba(5, 3, 152, 0.1), -2px 0 10px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  padding: 16px 20px;
}
.supplier-popup__info {
  background: #ebf1f9;
  padding: 24px 20px;
  border-radius: 5px;
}
.supplier-popup__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #1d1d1f;
}
.supplier-popup__tag {
  color: #fff;
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 5px;
  background: #224474;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 244px;
  height: 36px;
}
.supplier-popup__orders {
  margin-top: 16px;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}
.supplier-popup__quality {
  margin-top: 12px;
  font-weight: 300;
  font-size: 10px;
  color: #1d1d1f;
  display: flex;
  justify-content: space-between;
}
.supplier-popup__quality-good span {
  font-weight: 700;
  font-size: 45px;
  color: #3871c1;
}
.supplier-popup__quality-bad span {
  font-weight: 700;
  font-size: 45px;
  color: #fe6d2c;
}
.supplier-popup__date p {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
}
.supplier-popup__date p strong {
  font-weight: 700;
  font-size: 16px;
  color: #1d1d1f;
}
.supplier-popup__date p a {
  font-weight: 700;
  font-size: 16px;
  color: #3871c1;
}
.supplier-popup__reliability {
  font-weight: 700;
  font-size: 16px;
  color: #1d1d1f;
  display: flex;
  margin-top: 20px;
}
.supplier-popup__bars {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.supplier-popup__bar {
  width: 20px;
  height: 12px;
  border-radius: 2px;
  background: #ddd;
}
.supplier-popup__bar.is-green {
  background: #37b24d;
}
.supplier-popup .supplier-popup__more {
  margin-top: 36px;
  display: block;
  margin-left: auto;
  font-weight: 400;
  font-size: 12px;
  text-align: right;
  color: #b7b9bc;
  background-color: transparent;
}
.supplier-popup .stat-box {
  width: 290px;
  padding: 16px;
  background: #fff0ea;
  font-weight: 400;
  font-size: 10px;
  color: #1d1d1f;
  position: absolute;
  right: -119%;
  bottom: -27px;
  z-index: -1;
  border-radius: 5px;
}
.supplier-popup .stat-box.hidden {
  display: none;
}
.supplier-popup .stat-box h3 {
  font-weight: 700;
  font-size: 10px;
  color: #1d1d1f;
  margin: 16px 0 8px;
  padding: 6px 8px;
}
.supplier-popup .stat-box h3:first-child {
  margin-top: 0;
}
.supplier-popup .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-bottom: 1px solid #b7b9bc;
}
.supplier-popup .stat-row span:first-child {
  width: 160px;
}
.supplier-popup .stat-row .value {
  flex: 0 0 40px;
  text-align: center;
  color: #999;
}
.supplier-popup .stat-row .percent {
  flex: 0 0 40px;
  text-align: right;
}

.payment-calendar {
  margin: 0 auto;
}

.status-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  width: 1168px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
}

.timestamp {
  font-weight: 400;
  font-size: 16px;
  color: #b7b9bc;
}

.status-text {
  font-weight: 700;
  font-size: 24px;
  color: #1d1d1f;
}

.status-text .green {
  color: #06a455;
  font-weight: bold;
}
.status-text .red {
  color: #b50e00;
  font-weight: bold;
  display: none;
}

.refresh-btn {
  background: #3871c1;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  width: 300px;
  height: 56px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.calendar-section {
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.month-header {
  padding: 15px;
  border-bottom: 1px solid #3871c1;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: #1d1d1f;
}

.month-header .arrow {
  margin-left: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.month-header.active .arrow {
  transform: rotate(-135deg);
}

.month-table {
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.month-table table {
  width: 100%;
  border-collapse: collapse;
}

.month-table thead tr:has(th) {
  border-bottom: 1px solid #1d1d1f;
}

.month-table th,
.month-table td {
  padding: 10px;
  text-align: left;
}

.month-table tr {
  height: 40px;
  border-bottom: 1px solid #b7b9bc;
}

.month-table th {
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}

.month-table td {
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}

.total-sum {
  font-weight: normal;
  color: #000;
  margin-left: auto;
}

.month-header.active {
  background: #ebf1f9;
  border-radius: 6px;
}

.schedule_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.schedule_heading h1 {
  font-weight: 700;
  font-size: 44px;
  color: #1d1d1f;
}
.schedule-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.schedule-tabs_wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule-tabs_wrapp .schedule-tabs_wrapp_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.schedule-tabs_wrapp .schedule-tabs_wrapp_text p {
  font-weight: 700;
  font-size: 24px;
  color: #3871c1;
}
.schedule-tabs_wrapp .schedule-tabs_wrapp_text span {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}

.schedule-status {
  color: #f44336;
  font-size: 14px;
  margin-bottom: 20px;
}

.schedule-tabs {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  border-radius: 10px;
  width: 668px;
  height: 152px;
  padding: 8px 12px;
}

.schedule-tab-btn {
  flex: 1;
  padding: 12px;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s, font-weight 0.3s;
}

.schedule-tab-btn.active {
  background: #f5f5f7;
  border-radius: 10px;
}

.schedule-tab-content {
  display: none;
  border-radius: 10px;
  margin-top: 70px;
  min-height: 100px;
}

.schedule-tab-content.active {
  display: block;
}

.schedule-warehouse {
  max-width: 1168px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  border-radius: 10px;
  background-color: #f8f9fb;
  gap: 40px;
}
.schedule-warehouse__info {
  max-width: 560px;
}
.schedule-warehouse__title {
  font-weight: 700;
  font-size: 24px;
  color: #1d1d1f;
  margin-bottom: 10px;
}
.schedule-warehouse__desc {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
  margin-bottom: 8px;
}
.schedule-warehouse__desc strong {
  font-weight: 700;
}
.schedule-warehouse__note {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.schedule-warehouse__form {
  display: flex;
  align-items: center;
  gap: 12px;
}
.schedule-warehouse__day {
  padding: 10px 12px;
  font-size: 14px;
  background-color: #c8d8f3;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.schedule-warehouse__time {
  display: flex;
  align-items: center;
  gap: 8px;
}
.schedule-warehouse__time label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background-color: #c8d8f3;
  padding: 8px 10px;
  border-radius: 6px;
  width: 148px;
  height: 56px;
}
.schedule-warehouse__time label span {
  font-size: 13px;
  color: #333;
}
.schedule-warehouse__time label input {
  border: none;
  border-radius: 5px;
  width: 100px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #a9b2b8;
}
.schedule-warehouse__time label input::-webkit-calendar-picker-indicator {
  filter: invert(0.4);
  display: none;
}

.schedule-warehouse__dropdown {
  position: relative;
  border-radius: 5px;
  width: 308px;
  font-size: 14px;
  z-index: 100;
  height: 56px;
}
.schedule-warehouse__dropdown .dropdown-selected {
  background-color: #c8d8f3;
  padding: 10px 40px 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 56px;
}
.schedule-warehouse__dropdown .dropdown-selected .dropdown-selected__text {
  pointer-events: none;
}
.schedule-warehouse__dropdown .dropdown-selected .dropdown-arrow {
  position: absolute;
  right: 10px;
  top: 18px;
  pointer-events: none;
}
.schedule-warehouse__dropdown .dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
}
.schedule-warehouse__dropdown .dropdown-list li {
  padding: 10px 16px;
  cursor: pointer;
}
.schedule-warehouse__dropdown .dropdown-list li:hover {
  background-color: #c8d8f3;
}
.schedule-warehouse__dropdown .dropdown-list li.active {
  background-color: #e6f0ff;
  font-weight: 600;
}
.schedule-warehouse__dropdown.open .dropdown-list {
  display: block;
}

.delivery-calendar {
  background: #f5f8fd;
  border-radius: 12px;
  padding: 24px;
  font-family: sans-serif;
  max-width: 1168px;
}
.delivery-calendar th {
  text-align: center;
  width: 124px;
  height: 52px;
  padding-right: 10px;
  vertical-align: middle;
  background: #0b1727;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}
.delivery-calendar table {
  width: 100%;
  border-collapse: separate;
}
.delivery-calendar td.day {
  width: 136px;
  height: 52px;
  border-radius: 6px;
  background: #d7e3f3;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #1d1d1f;
}
.delivery-calendar td.day.red {
  background: #ffe2d5;
  color: #000;
}
.delivery-calendar td.day.active {
  background-color: #2e72d2;
  color: #fff;
}
.delivery-calendar td.day::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 12px;
  background: #fff;
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery-calendar td.day.active::after {
  content: "";
  background: #fe6d2c;
  background-image: url("/app/themes/nova/images/icons/galochka.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 12px;
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-calendar h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.calendar-note {
  font-size: 14px;
  margin-bottom: 20px;
  color: #333;
}

.calendar-save {
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #2e72d2;
  color: white;
  font-weight: bold;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  width: 468px;
  height: 72px;
}

.schedule-tab-content .orders-table {
  font-family: sans-serif;
  background: #f9f9f9;
}
.schedule-tab-content .orders-table .orders-header {
  display: grid;
  grid-template-columns: 168px 230px 152px 176px 48px 48px 48px 48px 80px 114px;
  gap: 4px;
  color: #fff;
  align-items: center;
  justify-items: center;
  font-weight: bold;
  font-size: 14px;
}
.schedule-tab-content .orders-table .orders-header .Qust2:hover .answer {
  width: 200px;
}
.schedule-tab-content .orders-table .orders-header > div {
  background: #224474;
  border-radius: 5px;
  width: 100%;
  height: 48px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-tab-content .orders-table .orders-row ~ .orders-row {
  border-top: 1px solid #e0e0e0;
}
.schedule-tab-content .orders-table .orders-row {
  text-align: center;
  display: grid;
  grid-template-columns: 168px 230px 152px 176px 48px 48px 48px 48px 80px 114px;
  gap: 4px;
  background: #fff;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
  height: 120px;
}
.schedule-tab-content .orders-table .orders-row .order-info .order-date,
.schedule-tab-content .orders-table .orders-row .product-info div,
.schedule-tab-content .orders-table .orders-row .price-info div + div,
.schedule-tab-content .orders-table .orders-row .status-info .status-date {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
}
.schedule-tab-content .orders-table .orders-row .product-info strong {
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}
.schedule-tab-content .orders-table .orders-row .grey {
  color: #b7b9bc;
}
.schedule-tab-content .orders-table .orders-row .blue {
  color: #3871c1;
}
.schedule-tab-content .orders-table .orders-row .extra-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule-tab-content .orders-table .orders-row .extra-info .icons span {
  margin-right: 5px;
  font-size: 16px;
}
.schedule-tab-content .orders-table .orders-row .extra-info .availability {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}
.schedule-tab-content .orders-table .orders-row .extra-info .availability .icon-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
}
.schedule-tab-content .orders-table .orders-row .extra-info .availability .calendar-icon {
  width: 24px;
  height: 24px;
}
.schedule-tab-content .orders-table .orders-row .extra-info .availability .badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: orange;
  font-weight: 500;
  font-size: 8px;
  text-align: center;
  color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px white;
}
.schedule-tab-content .orders-table .orders-row .extra-info .availability .vendor {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
}
.schedule-tab-content .orders-table .orders-row .extra-info .availability .vendor strong {
  font-size: 12px;
}
.schedule-tab-content .orders-table .orders-row .extra-info .availability .delivery-date {
  font-size: 12px;
  color: #444;
}
.schedule-tab-content .orders-table .orders-total {
  display: flex;
  justify-content: space-between;
  background: #3871c1;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 5px;
}

.delivery-container {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  font-family: sans-serif;
}

.delivery-title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #1d1d1f;
}

.delivery-title a {
  color: #3871c1;
}

.delivery-form {
  padding: 32px;
  border-radius: 12px;
  border-radius: 10px;
  width: 700px;
  height: 456px;
  background: #f5f5f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("/app/themes/nova/images/delivery.png");
}

.delivery-form .inputs {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}

.delivery-form input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 14px;
  border-radius: 5px;
  width: 308px;
  height: 56px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #a9b2b8;
}

.delivery-form textarea {
  border-radius: 5px;
  width: 636px;
  height: 224px;
  margin-bottom: 20px;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: 400;
  font-size: 14px;
}
.delivery-form textarea::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #a9b2b8;
}
.delivery-form textarea::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #a9b2b8;
}

.delivery-form button {
  border-radius: 10px;
  width: 468px;
  height: 72px;
  background: #3871c1;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.parts-container {
  width: 1168px;
  margin: 0 auto;
  padding: 40px 0;
}

.parts-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f7;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  width: 1168px;
  height: 492px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/app/themes/nova/images/main1.png");
}

.hero-text {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 44px;
  text-align: center;
  color: #1d1d1f;
}

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

.hero-text p {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #414141;
}

.hero-text .blue {
  font-weight: 700;
  color: #3871c1;
}

.hero-images img {
  width: 150px;
  margin-left: 20px;
}

.parts-grid {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.part-card {
  padding: 20px;
  border-radius: 10px;
  width: 580px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.part-card2 {
  background-image: url("/app/themes/nova/images/tires.png");
}

.part-card3 {
  background-image: url("/app/themes/nova/images/light bulbs.png");
}

.part-card4 {
  background-image: url("/app/themes/nova/images/accessories.png");
}

.part-card5 {
  background-image: url("/app/themes/nova/images/pic.png");
}

.part-card h3 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #1d1d1f;
}

.part-card img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  max-height: 100px;
}

.parts-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("/app/themes/nova/images/main.png");
  padding: 40px;
  border-radius: 10px;
  width: 1168px;
  height: 332px;
}

.footer-text h3 {
  font-weight: 700;
  font-size: 30px;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.parts-container .btn {
  border-radius: 5px;
  width: 296px;
  height: 48px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
.parts-container .btn.blue {
  background: #3871c1;
  color: white;
}
.parts-container .btn.orange {
  background-color: #f26722;
  color: white;
}
.parts-container .btn.outline {
  background-color: transparent;
  border: 1px solid #266bdb;
  color: #266bdb;
}
.parts-container .btn:hover {
  background: #3871c1;
  color: #fff;
}

.footer-img img {
  height: 100px;
}

.mission-section {
  margin-top: 134px;
  height: 724px;
  background: url("/app/themes/nova/images/pasasic.png");
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.mission-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-title {
  font-weight: 700;
  font-size: 44px;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.mission-subtitle {
  padding: 12px 24px;
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #fff;
  width: 632px;
  height: 52px;
  background: #fe6d2c;
  border-radius: 6px;
}

.mission-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

.stats-section {
  width: 100%;
  background: #fff;
  padding: 60px 0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.stat-label {
  font-weight: 400;
  font-size: 18px;
  color: #1d1d1f;
  margin-bottom: 5px;
}

.stat-value {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: #266bdb;
  -webkit-text-stroke: 1px #266bdb;
  color: #fff;
}

.catalog-section {
  width: 100%;
  background: #fff;
  padding: 60px 0;
}

.catalog-container {
  width: 1168px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.catalog-text {
  width: 400px;
}

.catalog-text h2 {
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.catalog-text p {
  font-weight: 400;
  font-size: 20px;
  color: #1d1d1f;
}

.catalog-text a {
  font-weight: 700;
  color: #3871c1;
}

.catalog-grid {
  width: 768px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  background: #f6f8fb;
  padding: 16px;
}

.catalog-item {
  background: #f6f8fb;
  border: 1px solid #c3d4ec;
  border-radius: 6px;
  width: 116px;
  height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}

.catalog-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 4px;
}

.catalog-initial {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #3871c1;
  margin-bottom: 4px;
}

.catalog-name {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #1d1d1f;
}

.catalog-item:hover,
.catalog-item.active {
  background-color: #d4e5fc;
}

.why-section {
  width: 1094px;
  background: #fff;
  margin-top: 130px;
  margin-bottom: 56px;
}

.why-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.why-container {
  width: 1095px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 250px;
}

.why-list.left li {
  align-items: end;
}

.why-list.right {
  width: 200px;
}
.why-list.right p {
  text-align: left;
}

.why-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  text-align: right;
  font-weight: 400;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.why-list li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list a {
  color: #3871c1;
  text-decoration: none;
  font-weight: 500;
}

.why-center {
  width: 568px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  padding: 76px 58px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.why-logo {
  display: block;
  margin: 0 auto 47px;
}

.why-center p {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.orange {
  font-weight: 600;
  color: #fe6d2c;
}

.highlight {
  color: #266bdb;
  font-weight: 600;
}

.reviews-section {
  width: 100%;
  padding: 60px 0;
  background: #fff;
}

.reviews-container {
  width: 1168px;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.reviews-header h2 {
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
  color: #1d1d1f;
}

.reviews-arrows .arrow {
  color: #3871C1;
}

.reviews-arrows .arrow {
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
  margin-left: 10px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  padding-bottom: 50px;
  padding-left: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  width: 420px;
  height: 364px;
  box-shadow: 0 3px 6px 0 rgba(5, 3, 152, 0.05), 0 11px 11px 0 rgba(5, 3, 152, 0.04), 0 25px 15px 0 rgba(5, 3, 152, 0.03), 0 45px 18px 0 rgba(5, 3, 152, 0.01), 0 70px 20px 0 rgba(5, 3, 152, 0);
  background: #fff;
  padding: 44px;
  flex-shrink: 0;
}

.review-card p {
  font-weight: 400;
  font-size: 16px;
  color: #414141;
  margin-bottom: 20px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.review-user span {
  font-weight: bold;
  font-size: 14px;
}

.news-section {
  background: #f5f8fc;
  padding: 60px;
  border-radius: 30px;
}

.news-container {
  border-radius: 30px;
  background: #f6f8fb;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-header h2 {
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
  color: #1d1d1f;
}

.news-header .blue {
  color: #3871c1;
}

.news-arrows .arrow {
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
  margin-left: 10px;
  color: #3871C1;
  margin-bottom: 30px;
}

.news-arrows {
  display: flex;
  justify-content: end;
}

.news-track {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  padding-top: 40px;
  padding-bottom: 20px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 31px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: 300px;
  align-items: center;
  gap: 12px;
  transition: 500ms;
  position: relative;
}

.news-card:hover {
  transform: translate(0, -36px);
  transition: 500ms;
}

.news-card::before {
  content: "";
  position: absolute;
  border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  width: 282px;
  height: 10px;
  background: #fe6d2c;
  bottom: auto;
  top: -8px;
  transition: 1s;
}

.news-card:hover::before {
  content: "";
  position: absolute;
  border-radius: 0px 0px 11px 11px;
  -webkit-border-radius: 0px 0px 11px 11px;
  -moz-border-radius: 0px 0px 11px 11px;
  width: 282px;
  height: 10px;
  background: #fe6d2c;
  bottom: -8px;
  top: auto;
  transition: 1s;
}

.news-card img {
  border-radius: 10px;
  width: 236px;
  height: 148px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 12px;
}

.news-card h3 {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #1d1d1f;
}

.news-btn {
  background: #f26722;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  border-radius: 5px;
  width: 196px;
  height: 52px;
}

.contact-section {
  background: #fff;
  padding: 60px 0;
}

.contact-container {
  width: 1168px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-text {
  width: 500px;
}

.contact-text h2 {
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.contact-text .blue {
  color: #3871c1;
}

.contact-text p {
  font-size: 20px;
  color: #414141;
  font-weight: 400;
}

.contact-text a {
  color: #3871c1;
  font-weight: 700;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 408px;
  height: 444px;
  box-shadow: 0 5px 11px 0 rgba(5, 3, 152, 0.05), 0 20px 20px 0 rgba(5, 3, 152, 0.04), 0 44px 27px 0 rgba(5, 3, 152, 0.03), 0 79px 32px 0 rgba(5, 3, 152, 0.01), 0 123px 35px 0 rgba(5, 3, 152, 0);
  background: #fff;
  border-radius: 16px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form .contact-form button {
  background: #266bdb;
  color: white;
  font-weight: bold;
  border: none;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 10px;
  width: 360px;
  height: 72px;
  background: #3871c1;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.contact-form .checkbox {
  font-size: 12px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}
.contact-form .checkbox input[type=checkbox] {
  margin-top: 2px;
}
.contact-form .checkbox a {
  color: #f26722;
  text-decoration: none;
}
.contact-form p {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
  text-align: left;
}
.contact-form .input-with-icon {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 10px #eee;
}
.contact-form .input-with-icon input {
  width: 100%;
  padding: 14px 20px 14px 45px;
  border: none;
  border-radius: 16px;
  background: transparent;
  font-size: 16px;
  color: #333;
  outline: none;
}
.contact-form .input-with-icon input::-moz-placeholder {
  color: #bbb;
  padding-left: 30px;
}
.contact-form .input-with-icon input::placeholder {
  color: #bbb;
  padding-left: 30px;
}
.contact-form .input-with-icon .phone-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-form button {
  border-radius: 10px;
  width: 360px;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  height: 72px;
  background: #3871c1;
}

.contact-form input[type=tel],
.contact-form input[type=text] {
  border: 1px solid #efefef;
  border-radius: 10px;
  width: 360px;
  height: 80px;
  padding: 0 15px;
  font-weight: 400;
  font-size: 18px;
  color: #cfcfcf;
  box-shadow: inset 0 0 40px 0 rgba(216, 216, 216, 0.25);
  background: #fff;
}

.call-help {
  margin-top: 103px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #fe6d2c;
  border-radius: 10px;
  padding: 39px 53px 39px 29px;
  background: #fff;
}
.call-help p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  color: #1d1d1f;
  width: 624px;
}
.call-help p a {
  font-weight: 700;
  color: #3871c1;
  text-decoration: none;
}
.call-help .call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  background: #2d72d9;
  color: white;
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: 304px;
  height: 68px;
}
.call-help .call-btn svg {
  margin-right: 10px;
}
.call-help .call-btn .call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.call-help .call-btn .call-text span {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.call-help .call-btn .call-text small {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #c4c4c4;
}
.call-help .call-btn:hover {
  background: #1e5bbb;
}

.switchpanel-wrapper {
  width: 1168px;
  margin: 0 auto;
  font-family: sans-serif;
  padding: 20px;
}

.switchpanel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.switchpanel-head h1 {
  font-weight: 700;
  font-size: 44px;
  color: #1d1d1f;
}

.switchpanel-logout {
  background: #1d1d1f;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  width: 220px;
  height: 56px;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.switchpanel-tabs {
  margin-top: 58px;
  display: flex;
  background: #f8f9ff;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  width: 1168px;
  height: 80px;
}

.switchpanel-tab {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #1d1d1f;
}

.switchpanel-tab.active {
  background: #cfdcf2;
  border-radius: 10px;
  width: 376px;
  height: 64px;
  background: #c3d4ec;
}

.switchpanel-content {
  display: flex;
  gap: 20px;
}

.switchpanel-box {
  flex: 1;
  min-height: 200px;
  border-radius: 12px;
  display: none;
}

.switchpanel-box.active {
  display: block;
}

.contacts-block {
  width: 1168px;
  margin: 40px auto;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  font-family: sans-serif;
}
.contacts-block .contacts-title {
  font-weight: 700;
  font-size: 24px;
  color: #1d1d1f;
  margin-bottom: 30px;
}
.contacts-block .contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.contacts-block .contact-card {
  background: #f6f6f6;
  border-radius: 12px;
  padding: 24px 28px;
  font-size: 14px;
  line-height: 1.5;
  width: 284px;
  height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contacts-block .contact-card p {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.contacts-block .contact-card .contact-ext {
  font-weight: 700;
  font-size: 14px;
  color: #fe6d2c;
}
.contacts-block .contact-card .contact-time {
  font-weight: 400;
  font-size: 12px;
  color: #b0b0b0;
}
.contacts-block .contact-card1 {
  border-radius: 10px;
  width: 480px;
  height: 236px;
}
.contacts-block .contact-card h3 {
  font-weight: 700;
  font-size: 20px;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.contact-time {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

.minitab-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  border-radius: 10px;
  width: 268px;
  height: 152px;
  padding: 8px 12px;
}

.minitab-btn {
  border: none;
  background: transparent;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s;
  border-radius: 10px;
  width: 244px;
  height: 64px;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #1d1d1f;
}

.minitab-btn.active {
  background: #f5f5f7;
}

.minitab-content {
  display: flex;
}

.minitab-panel {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.minitab-panel.active {
  display: flex;
}

#prices {
  position: relative;
  margin-top: 40px;
}
#prices .minitab-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.upload-box {
  width: 868px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  font-family: sans-serif;
  display: grid;
  grid-template-columns: 512px 284px;
  gap: 24px;
  position: relative;
  padding-top: 36px;
}

.upload-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.upload-icon {
  font-size: 24px;
}

.upload-body {
  flex: 1;
  grid-column: 1/3;
}

.upload-form {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  background: #f9f9f9;
  padding: 20px;
  padding-top: 40px;
  border-radius: 12px;
  margin-bottom: 24px;
  width: 512px;
  height: 140px;
}

.file-label {
  border: 1px solid #f26722;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  border: 1px solid #fe6d2c;
  border-radius: 5px;
  width: 168px;
  height: 36px;
  text-align: center;
}

.file-label input {
  display: none;
}

.upload-form-wrapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.upload-form-wrapp > span {
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  color: #b0b0b0;
  margin-top: 10px;
}

.upload-btn {
  background: #1d1d1f;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  width: 168px;
  height: 36px;
  background: #1d1d1f;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.upload-info {
  font-size: 12px;
  color: #999;
}

.upload-table table {
  margin-bottom: 20px;
  font-size: 14px;
  border: 1px solid #3871c1;
  border-radius: 5px;
  width: 820px;
  height: 108px;
  width: 820px;
  height: 108px;
}
.upload-table table tbody tr {
  border-top: 1px solid #b7b9bc;
}
.upload-table table th {
  background-color: transparent;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
  padding: 5px;
  width: auto;
}
.upload-table table th svg {
  margin-left: 4px;
}
.upload-table table th:first-child,
.upload-table table td:first-child {
  font-weight: 700;
  font-size: 12px;
  color: #b7b9bc;
  text-align: left;
}
.upload-table table td {
  background-color: transparent;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
  padding: 10px;
  width: auto;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}
.upload-table table td svg {
  margin-left: 4px;
}

.upload-table th,
.upload-table td {
  padding: 10px;
  text-align: left;
}

.upload-summary p {
  font-size: 16px;
  color: #1d1d1f;
  font-weight: 400;
  margin: 6px 0;
}
.upload-summary p strong {
  font-weight: 700;
}

.upload-schedule {
  width: 284px;
  height: 268px;
  flex-shrink: 0;
  border-radius: 12px;
  font-size: 13px;
  grid-column: 2/3;
  grid-row: 1/2;
}

.upload-schedule td ~ td,
.upload-schedule th ~ th {
  padding-left: 28px;
  text-align: right;
}

.upload-schedule h3 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #1d1d1f;
}

.upload-schedule table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.upload-schedule tr {
  height: 24px;
}
.upload-schedule tr td:nth-child(2) {
  text-align: right;
}

.upload-schedule th {
  background: #3871c1;
  height: auto;
  color: white;
  border-radius: 0;
  padding: 8px;
  text-align: left;
  font-weight: 600;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
}

.upload-schedule td {
  padding: 6px 8px;
  border-bottom: 1px solid #e0e0e0;
  background: white;
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
}

.upload-schedule tbody tr:nth-child(even) {
  background: red;
}

.upload-schedule tbody tr:nth-child(even) {
  background-color: #c3d4ec;
}

.upload-schedule tbody tr:nth-child(even) td {
  background-color: #c3d4ec;
}

.minibox1 {
  top: 0;
  right: -40px;
}

.minibox2 {
  top: 600px;
  width: 1168px;
  margin-left: -300px;
  margin-top: 72px;
}

.price-search-block {
  margin: 30px auto;
  font-family: sans-serif;
}

.price-search-block h3 {
  font-weight: 700;
  font-size: 26px;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.price-search-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price-search-input {
  position: relative;
  flex: 1;
}

.price-search-input input {
  width: 100%;
  padding: 10px 14px 10px 32px;
  border: 1px solid #7fa1d1;
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid #3871c1;
  border-radius: 5px;
  width: 800px;
  height: 56px;
}
.price-search-input input::-moz-placeholder {
  font-weight: 300;
  font-size: 14px;
  color: #b0b0b0;
  padding-left: 10px;
}
.price-search-input input::placeholder {
  font-weight: 300;
  font-size: 14px;
  color: #b0b0b0;
  padding-left: 10px;
}

.price-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #7fa1d1;
}

.price-search-btn {
  background: #f26722;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 301px;
  height: 56px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.pricetable {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  font-size: 14px;
  margin-top: 20px;
}
.pricetable tr {
  border-radius: 5px;
}
.pricetable th {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  height: 52px;
}
.pricetable td {
  height: 68px;
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
}
.pricetable th:nth-child(1),
.pricetable td:nth-child(1) {
  width: 120px;
  padding-left: 16px;
  border-radius: 5px 0 0 5px;
}
.pricetable th:last-child {
  border-radius: 0 5px 5px 0;
}
.pricetable th:nth-child(2),
.pricetable td:nth-child(2) {
  width: 132px;
}
.pricetable th:nth-child(3),
.pricetable td:nth-child(3) {
  width: 327px;
}
.pricetable th:nth-child(4),
.pricetable td:nth-child(4) {
  width: 180px;
}
.pricetable th:nth-child(5),
.pricetable td:nth-child(5) {
  width: 108px;
}
.pricetable th:nth-child(6),
.pricetable td:nth-child(6) {
  width: 180px;
}
.pricetable th:nth-child(7),
.pricetable td:nth-child(7) {
  width: 108px;
}

.pricetable thead {
  background: #3871C1;
  color: white;
}

.pricetable th,
.pricetable td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
  background: transparent;
  border-radius: 0;
}

.pricetable .price {
  color: #3871C1;
  font-weight: 500;
}

.upload-arrow {
  cursor: pointer;
}

.upload-wrapper {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.upload-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  padding: 10px 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.upload-arrow {
  margin-left: 8px;
  font-size: 12px;
}

.upload-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  background: white;
  border: 1px solid rgba(38, 107, 219, 0.5333333333);
  border-radius: 0 0 6px 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: none;
  z-index: 10;
}

.upload-dropdown li {
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.upload-dropdown li:hover {
  background: #f0f6ff;
}

.upload-warning-message {
  margin: 12px 0;
  padding: 10px 16px;
  background: #ffeaea;
  color: #d10000;
  border: 1px solid #f5c2c2;
  border-radius: 4px;
  font-size: 14px;
  font-family: sans-serif;
}

.orders-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
}
.orders-tabs .orders-tab {
  position: relative;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 500;
  color: #1d1d1f;
  width: 168px;
  text-align: center;
}
.orders-tabs .orders-tab.active {
  font-weight: 700;
}
.orders-tabs .orders-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #3871c1;
}
.orders-tabs .orders-tab .badge {
  display: inline-block;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
  color: #fff;
  margin-left: 6px;
  position: absolute;
  top: 1px;
  right: 19px;
}
.orders-tabs .orders-tab .blue {
  background-color: #3871c1;
}
.orders-tabs .orders-tab .orange {
  background-color: #f26322;
}

.orders-content {
  display: none;
  border-top: none;
  margin-top: 34px;
}
.orders-content.active {
  display: block;
}
.orders-content.overdue .order-table th {
  background: #fe6d2c;
}
.orders-content.rejected .order-table th {
  background: #b50e00;
}
.orders-content th:first-child {
  background-color: transparent !important;
  padding: 0;
}
.orders-content > p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 30px;
}

.order-table-wrapper {
  overflow-x: auto;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #1d1d1f;
}
.order-table thead th:nth-child(2) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.order-table thead th:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.order-table th:first-child {
  background-color: transparent;
  padding: 0;
}
.order-table th {
  background: #3871c1;
  color: #fff;
  font-weight: 600;
  padding: 12px 5px;
  text-align: left;
  white-space: nowrap;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
.order-table td {
  padding: 12px 5px;
  border-bottom: 1px solid #eee;
  font-weight: 400;
  font-size: 10px;
  color: #1d1d1f;
}
.order-table td .fakecheck {
  border: 1px solid #fe6d2c;
}
.order-table td .custom-checkbox {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.order-table td .custom-checkbox input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.order-table td .custom-checkbox .checkmark {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #f7f7f9;
  border: 1px solid #f26322;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
}
.order-table td .custom-checkbox input:checked + .checkmark {
  background-color: #f26322;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-table td .custom-checkbox input:checked + .checkmark::after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.order-table .edit-input {
  display: flex;
  align-items: center;
  gap: 4px;
}
.order-table .edit-input input {
  width: 60px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.order-actions {
  border-radius: 10px;
  width: 770px;
  margin: 34px auto;
  padding: 24px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex-wrap: wrap;
}
.order-actions .order-actions-wr {
  display: flex;
  justify-content: space-between;
}
.order-actions .order-actions-wr .datebox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 296px;
  height: 56px;
  background: #f5f6f8;
  padding: 0 16px;
}
.order-actions .order-actions-wr .datebox input {
  width: 100%;
  text-align: center;
  border: none;
  background: transparent;
  color: #a7afb7;
  font-size: 16px;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.order-actions .order-actions-wr .flatpickr-calendar {
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  border: 1px solid #e6e8ec;
}
.order-actions .order-actions-wr .flatpickr-months {
  font-weight: 600;
}
.order-actions .order-actions-wr .flatpickr-day {
  border-radius: 6px;
}
.order-actions .order-actions-wr .flatpickr-day:hover,
.order-actions .order-actions-wr .flatpickr-day:focus {
  background: #e8f0fe;
}
.order-actions .order-actions-wr .flatpickr-day.selected,
.order-actions .order-actions-wr .flatpickr-day.startRange,
.order-actions .order-actions-wr .flatpickr-day.endRange {
  background: #e3eefc;
  color: #1d1d1f;
  border-color: #cfe0fb;
}
.order-actions .order-actions-wr .flatpickr-weekday {
  color: #6b7280;
}
.order-actions .order-actions-wr .flatpickr-calendar:before,
.order-actions .order-actions-wr .flatpickr-calendar:after {
  top: 611.627px !important;
  left: 895.024px !important;
}
.order-actions .order-actions-wr .order-actions_lab {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-actions label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
}
.order-actions .fake-date {
  width: 160px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 8px;
  text-align: center;
  border: none;
  color: #888;
  font-size: 14px;
}
.order-actions .apply-btn {
  align-self: center;
  background: #3871c1;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  width: 192px;
  height: 44px;
}
.order-actions.hidden {
  display: none;
}

.invoice-note {
  margin-top: 12px;
  max-width: 1168px;
  background: #0c1a27;
  color: #fff;
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.invoice-note__text a {
  color: #fff;
  text-decoration: underline;
}
.invoice-note__text a:hover {
  opacity: 0.85;
}

.invoice-note__amount {
  white-space: nowrap;
  font-weight: 600;
}

.orders-section {
  display: flex;
  gap: 105px;
  justify-content: space-between;
}
.orders-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.orders-section .filter-box {
  display: flex;
  border-radius: 10px;
  width: 800px;
  padding: 20px 24px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  align-items: flex-start;
}
.orders-section .filter-box .status-filter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
.orders-section .filter-box .status-filter strong {
  font-weight: 500;
  font-size: 16px;
  color: #1d1d1f;
  margin-bottom: 5px;
}
.orders-section .filter-box .status-filter .toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
  cursor: pointer;
}
.orders-section .filter-box .status-filter .toggle-label .toggle-input {
  display: none;
}
.orders-section .filter-box .status-filter .toggle-label .toggle-slider {
  width: 20px;
  height: 10px;
  background-color: #ddd;
  border-radius: 10px;
  position: relative;
  transition: background-color 0.3s ease;
}
.orders-section .filter-box .status-filter .toggle-label .toggle-slider::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.orders-section .filter-box .status-filter .toggle-label .toggle-input:checked + .toggle-slider {
  background-color: #fe6d2c;
}
.orders-section .filter-box .status-filter .toggle-label .toggle-input:checked + .toggle-slider::before {
  transform: translateX(10px);
}
.orders-section .filter-box .filter-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-grow: 1;
}
.orders-section .filter-box .filter-inputs input {
  padding: 10px;
  border: 1px solid #3871c1;
  border-radius: 6px;
  font-size: 14px;
  height: 48px;
}
.orders-section .filter-box .filter-inputs input:nth-of-type(1) {
  width: 260px;
}
.orders-section .filter-box .filter-inputs input:nth-of-type(2) {
  width: 260px;
}
.orders-section .filter-box .filter-inputs input:nth-of-type(3) {
  width: 329px;
}
.orders-section .filter-box .filter-inputs button {
  background: #3871c1;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  width: 192px;
  height: 48px;
}

.my-orders-table {
  margin-top: 68px;
}
.my-orders-table .orders-header {
  display: grid;
  grid-template-columns: 168px 230px 152px 176px 48px 48px 48px 48px 80px 114px;
  gap: 4px;
  color: #fff;
  align-items: center;
  justify-items: center;
  font-weight: bold;
  font-size: 14px;
}
.my-orders-table .orders-header .answer {
  width: 200px;
}
.my-orders-table .orders-header > div {
  background: #224474;
  border-radius: 5px;
  width: 100%;
  height: 48px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-orders-table .orders-row ~ .orders-row {
  border-top: 1px solid #1d1d1f;
}
.my-orders-table .orders-row {
  text-align: center;
  display: grid;
  grid-template-columns: 168px 230px 152px 176px 48px 48px 48px 48px 80px 114px;
  gap: 4px;
  background: #fff;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
  height: 120px;
  margin: 5px 0;
}
.my-orders-table .orders-row .order-info .order-date,
.my-orders-table .orders-row .product-info div,
.my-orders-table .orders-row .price-info div + div,
.my-orders-table .orders-row .status-info .status-date {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
}
.my-orders-table .orders-row .status-info.canceled {
  color: #dd2a1b;
}
.my-orders-table .orders-row .status-info.issued {
  color: #06a455;
}
.my-orders-table .orders-row .product-info strong {
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}
.my-orders-table .orders-row .grey {
  color: #b7b9bc;
}
.my-orders-table .orders-row .line-through {
  text-decoration: line-through;
  text-decoration-color: red;
  text-decoration-thickness: 1px;
  color: #b7b9bc;
}
.my-orders-table .orders-row .blue {
  color: #3871c1;
}
.my-orders-table .orders-row .extra-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.my-orders-table .orders-row .extra-info .icons span {
  margin-right: 5px;
  font-size: 16px;
}
.my-orders-table .orders-row .extra-info .availability {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}
.my-orders-table .orders-row .extra-info .availability .icon-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
}
.my-orders-table .orders-row .extra-info .availability .calendar-icon {
  width: 24px;
  height: 24px;
}
.my-orders-table .orders-row .extra-info .availability .badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: orange;
  font-weight: 500;
  font-size: 8px;
  text-align: center;
  color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px white;
}
.my-orders-table .orders-row .extra-info .availability .badge.red {
  background-color: #b50e00;
}
.my-orders-table .orders-row .extra-info .availability .badge.green {
  background-color: #007b3e;
}
.my-orders-table .orders-row .extra-info .availability .vendor {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
}
.my-orders-table .orders-row .extra-info .availability .vendor strong {
  font-size: 12px;
}
.my-orders-table .orders-row .extra-info .availability .delivery-date {
  font-size: 12px;
  color: #444;
}
.my-orders-table .orders-row.reserve {
  background: #f3f9ff;
}
.my-orders-table .orders-row.canceled {
  background: #f2f2f2;
}
.my-orders-table .orders-row.issued {
  background: #effff1;
}
.my-orders-table .delivery-date.bg-red {
  background: #dd2a1b;
  width: 80px;
  font-weight: 400;
  height: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-orders-table .orders-total {
  display: flex;
  justify-content: space-between;
  background: #3871c1;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 5px;
}

/* Базовая типографика */
:root {
  --c-text: #111827;
  --c-muted: #8b96a3;
  --c-line: #d9d9de;
  --c-accent: #f29d1f;
  --dot: 8px;
  --connector: 144px;
}

/* Оверлей и модалка */
.search-status-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  z-index: 1000;
}

.search-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  width: 1032px;
  height: 208px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 28px 32px 34px;
  z-index: 1001;
}

.search-status-modal-issued .search-status-step--active .search-status-label__title {
  color: #3871c1;
}

.search-status-modal-canceled .search-status-step--active .search-status-label__title {
  color: #dd2a1b;
}
.search-status-modal-canceled .search-status-step--active .search-status-dot {
  display: block;
  background: #dd2a1b;
}
.search-status-modal-canceled .search-status-step--active .search-status-label {
  position: relative;
  top: -10px;
  left: 20px;
}

.search-status-close {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: #dd2a1b;
  font-size: 8px;
  line-height: 1;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.search-status-title {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 800;
}

/* ===== Линия статусов =====
   Между центрами точек расстояние = var(--connector) (по ТЗ 144px)
   d — диаметр точки, gap = connector - d
*/
.search-status-line {
  gap: 152px;
  display: flex;
  align-items: flex-start;
  padding: 14px 0 0;
  overflow: visible;
  position: relative;
  width: inherit;
  margin-left: 3px;
}

/* элемент шага — имеет ширину точки, линии рисуем псевдо-элементами */
.search-status-step {
  position: relative;
  width: var(--dot);
}

/* линии слева и справа от точки, каждая по 144px */
.search-status-step::before,
.search-status-step::after {
  content: "";
  position: absolute;
  top: calc(var(--dot) / 2);
  height: 2px;
  background: var(--c-line);
  transform: translateY(-50%);
  width: var(--connector);
  left: 12px !important;
}

.search-status-step--active::after,
.search-status-step--active::before {
  content: "";
  width: 0;
  height: 0;
}

.search-status-step--active .search-status-dot {
  display: none;
}
.search-status-step--active .search-status-label {
  position: relative;
  top: -4px;
  left: 8px;
}
.search-status-step--active .search-status-label__title {
  font-weight: 700;
  font-size: 12px;
  color: #e29100;
}
.search-status-step--active .search-status-label__date {
  font-weight: 400;
  font-size: 10px;
  color: #1d1d1f;
}

.search-status-step::after {
  left: 5px;
}

/* точка */
.search-status-dot {
  display: block;
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
  background: var(--c-line);
}

/* подписи */
.search-status-label {
  position: absolute;
  top: calc(var(--dot) + 16px);
  left: 50%;
  transform: translateX(-3%);
  /* лёгкое смещение как в макете */
  width: 180px;
  /* контролируем переносы, чтобы не наслаивались */
}

.search-status-label__title {
  font-weight: 500;
  font-size: 12px;
  color: #b0b0b0;
}

.search-status-label__date {
  margin-top: 6px;
  font-weight: 400;
  font-size: 10px;
  color: #b0b0b0;
}

/* активный шаг */
.search-status-step--active .search-status-label__title {
  color: var(--c-accent);
  font-weight: 700;
}

/* адаптив — можно уменьшить сдвиг и ширину подписи */
@media (max-width: 900px) {
  .search-status-label {
    width: 150px;
    transform: translateX(-38%);
  }
  .search-status-title {
    font-size: 22px;
  }
}
/* контейнер по твоей сетке */
/* верх блока */
.order-head__back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 700;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
  margin: 16px 0 12px;
}

.order-head__back:hover {
  color: #111827;
}

.order-head__title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #1d1d1f;
}

/* навигация */
.order-head__nav {
  margin-top: 24px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
  justify-content: center;
}

.order-nav__arrow {
  border: none;
  background: #fff;
  color: #6b7280;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.order-nav__arrow:hover {
  background: #f3f4f6;
  color: #111827;
}

.order-nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  scrollbar-width: none;
}

.order-nav__list::-webkit-scrollbar {
  display: none;
}

.order-nav__item {
  border: none;
  background: none;
  cursor: pointer;
  color: #6b7280;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.order-nav__item:hover {
  color: #111827;
}

.order-nav__item.is-active {
  color: #111827;
  font-weight: 700;
}

.order-nav__item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  background: #2d72d9;
  border-radius: 3px;
}

.order-head .orders-table {
  background: #f9f9f9;
}
.order-head .orders-table .orders-header {
  display: grid;
  grid-template-columns: 168px 230px 152px 176px 48px 48px 48px 48px 80px 114px;
  gap: 4px;
  color: #fff;
  align-items: center;
  justify-items: center;
  font-weight: bold;
  font-size: 14px;
}
.order-head .orders-table .orders-header > div {
  background: #224474;
  border-radius: 5px;
  width: 100%;
  height: 48px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-head .orders-table .orders-row ~ .orders-row {
  border-top: 1px solid #e0e0e0;
}
.order-head .orders-table .orders-row {
  text-align: center;
  display: grid;
  grid-template-columns: 168px 230px 152px 176px 48px 48px 48px 48px 80px 114px;
  gap: 4px;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
  height: 120px;
  background: #f3f9ff;
}
.order-head .orders-table .orders-row .order-info .order-date,
.order-head .orders-table .orders-row .product-info div,
.order-head .orders-table .orders-row .price-info div + div,
.order-head .orders-table .orders-row .status-info .status-date {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
}
.order-head .orders-table .orders-row .product-info strong {
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}
.order-head .orders-table .orders-row .grey {
  color: #b7b9bc;
}
.order-head .orders-table .orders-row .blue {
  color: #3871c1;
}
.order-head .orders-table .orders-row .extra-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-head .orders-table .orders-row .extra-info .icons span {
  margin-right: 5px;
  font-size: 16px;
}
.order-head .orders-table .orders-row .extra-info .availability {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}
.order-head .orders-table .orders-row .extra-info .availability .icon-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
}
.order-head .orders-table .orders-row .extra-info .availability .calendar-icon {
  width: 24px;
  height: 24px;
}
.order-head .orders-table .orders-row .extra-info .availability .badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: orange;
  font-weight: 500;
  font-size: 8px;
  text-align: center;
  color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px white;
}
.order-head .orders-table .orders-row .extra-info .availability .vendor {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
}
.order-head .orders-table .orders-row .extra-info .availability .vendor strong {
  font-size: 12px;
}
.order-head .orders-table .orders-row .extra-info .availability .delivery-date {
  font-size: 12px;
  color: #444;
}
.order-head .orders-table .orders-total {
  display: flex;
  justify-content: space-between;
  background: #3871c1;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 5px;
}

.order-tabs {
  margin-top: 52px;
  display: flex;
  gap: 16px;
}
.order-tabs .btn {
  background: #3871c1;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  padding: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
  width: 92px;
  height: 32px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.order-tabs .btn:hover {
  background: #215bc2;
}
.order-tabs .btn.back {
  background: #f5f5f7;
  color: #000;
}
.order-tabs .btn.back:hover {
  background: #ccc;
}

/* меню */
.order-tabs__menu {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 10px;
  width: 268px;
  height: 239px;
}

.order-tabs__item {
  border-radius: 10px;
  width: 244px;
  height: 64px;
  text-align: center;
  padding: 12px 14px;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #111;
  cursor: pointer;
}

.order-tabs__item:hover {
  background: #eef3ff;
}

.order-tabs__item.is-selected {
  background: #c3d4ec;
}

/* разделитель */
.order-tabs__separator {
  border: none;
  height: 1px;
  background: #edf0f4;
  margin: 6px 4px;
}

/* контент */
.order-tabs__content {
  min-width: 420px;
}

.order-tabs__panel {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 868px;
  background: #f5f5f7;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url("/app/themes/nova/images/order-tabs.png");
  min-height: 160px;
  padding: 120px 60px;
}

.order-tabs__panel.is-visible {
  display: flex;
}

.ask-form {
  background: #fff;
  border-radius: 12px;
  padding: 44px 24px 40px;
  width: 100%;
  max-width: 680px;
}
.ask-form__field {
  margin-bottom: 24px;
}
.ask-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #999;
}
.ask-form__input, .ask-form__textarea {
  width: 100%;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  resize: none;
}
.ask-form__submit {
  background: #3871c1;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.ask-form__submit:hover {
  background: #2c5dad;
}

.return-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 36px 48px;
  width: 628px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.return-wrapper .step {
  display: none;
  width: 468px;
  position: static;
}
.return-wrapper .step.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.return-wrapper h2 {
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 20px;
}
.return-wrapper .highlight {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #3871c1;
  display: block;
  margin-bottom: 24px;
  width: 444px;
}
.return-wrapper label {
  display: flex;
  align-items: start;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 14px;
  color: #1d1d1f;
  text-align: left;
}
.return-wrapper label input[type=radio] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}
.return-wrapper .note {
  font-weight: 300;
  font-size: 12px;
  font-style: italic;
  color: #1d1d1f;
  display: flex;
  flex-direction: column;
}
.return-wrapper .note strong {
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  color: #1d1d1f;
}

.alert {
  text-align: left;
  background: #fff0ea;
  border: 0.5px solid #fe6d2c;
  padding: 12px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  color: #1d1d1f;
  width: 532px;
}
.alert p {
  margin-top: 4px;
  text-align: justify;
  font-weight: 400;
  font-size: 9px;
}
.alert span {
  text-decoration: underline;
}

.input-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 24px 0;
  width: 100%;
}
.input-row .back {
  margin-right: auto;
}
.input-row label {
  margin-top: 20px;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #3d4b55;
  padding: 0 10px;
}
.input-row input[type=number] {
  width: 44px;
  padding: 6px 9px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.buttons {
  align-self: end;
  margin-top: 50px;
}

.result-message {
  text-align: center;
  font-size: 16px;
}
.result-message strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
.result-message .success {
  color: #333;
  margin-top: 20px;
}
.result-message .success a {
  display: inline-block;
  margin-top: 6px;
  color: #2f6ad9;
  text-decoration: underline;
}
.result-message .error {
  display: block;
  margin-top: 20px;
  color: #c62828;
  font-weight: 600;
}

.offers-wrapper {
  max-width: 1168px;
  margin: 40px auto;
}

.offers-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.offers-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.offers-table th {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: #b7b9bc;
  padding: 10px 0;
  border-bottom: 2px solid #eee;
}

.offers-table td {
  padding: 15px 10px;
  padding-left: 0;
  vertical-align: middle;
}

.info:has(.shown) .offers-table td {
  vertical-align: top;
}

.article {
  font-weight: bold;
}

.actions {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.action-btn {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #f1f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.action-btn.active {
  background-color: #3569C8;
}
.action-btn.active svg path {
  fill: white;
}

.action-btn img {
  width: 24px;
  height: 24px;
}

.inline-extra {
  min-height: 0;
}
.inline-extra .info {
  width: 203px;
  display: none;
  background-color: #0F264B;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 10px;
}
.inline-extra .info.map-info {
  padding: 0;
  height: 199px;
}

.info.shown {
  display: block;
  text-align: center;
}

.map-info {
  border-radius: 10px;
  padding: 0;
}

.map {
  margin-top: 0;
}

.show-map-btn {
  width: 100%;
  background-color: #3569C8;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.offers-wrapper__popup-available {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
}

.offers-wrapper__popup-wrapp {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 20px;
}
.offers-wrapper__popup-wrapp .offers-wrapper__popup-count {
  display: flex;
  gap: 3px;
}
.offers-wrapper__popup-wrapp .offers-wrapper__popup-count button {
  background: transparent;
  font-size: 28px;
}
.offers-wrapper__popup-wrapp .offers-wrapper__popup-count .offers-wrapper__qty-count {
  width: 56px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebf1f9;
  border-radius: 5px;
}

.offers-wrapper__popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.offers-wrapper__popup-product {
  font-weight: 700;
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 400;
}

.offers-wrapper__popup.active {
  display: flex;
}

.offers-wrapper__popup-inner {
  background: #fff;
  padding: 52px 48px 48px;
  border-radius: 10px;
  width: 680px;
  position: relative;
}

.offers-wrapper__popup-close {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  font-size: 10px;
  background: #DD2A1B;
  color: #fff;
  display: block;
  border: none;
  cursor: pointer;
}

.offers-wrapper__popup-qty {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.offers-wrapper__popup-price {
  margin-left: 47px;
  font-weight: 700;
  font-size: 18px;
  text-align: right;
  color: #1d1d1f;
}

.offers-wrapper__popup-form {
  margin-top: 44px;
}
.offers-wrapper__popup-form div ~ div {
  margin-left: 20px;
}
.offers-wrapper__popup-form div {
  display: inline-flex;
  flex-direction: column;
}
.offers-wrapper__popup-form div span {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
  margin-bottom: 5px;
}
.offers-wrapper__popup-form div:nth-child(3) {
  margin-top: 16px;
  width: 100%;
  margin-left: 0;
}

.offers-wrapper__popup-form input {
  border: 1px solid #1d1d1f;
  width: 280px;
  height: 48px;
  padding: 10px;
  border-radius: 6px;
}

.offers-wrapper__popup-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #1d1d1f;
  height: 160px;
}

.offers-wrapper__popup-submit {
  background: #3871c1;
  color: #fff;
  font-size: 18px;
  padding: 15px;
  border-radius: 5px;
  width: 324px;
  height: 56px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.offers-map-block {
  display: none;
  width: 1168px;
  height: 648px;
  background: #f0f0f0;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
}

.offers-map-block.active {
  display: block;
}

.offers-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #888;
}

.price-upload__file-label {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-upload__file-label input[type=file] {
  display: none;
}
.price-upload__file-label .price-upload__file-btn {
  display: inline-block;
  background-color: #3569C8;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.price-upload__file-label .price-upload__file-name {
  font-size: 14px;
  color: #666;
}

.certs {
  /* оранжевый из макета */
}

.certs__left {
  width: 668px;
}

.certs__container {
  margin: 24px auto 40px;
  display: flex;
  justify-content: space-between;
  /* левая колонка + правая карточка */
  gap: 32px;
}

.certs__title {
  font-size: 44px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 16px;
}

/* ====== Поиск ====== */
.search {
  position: relative;
  display: block;
  margin: 8px 0 14px;
}

.search__input {
  border-radius: 5px;
  font-weight: 300;
  font-size: 14px;
  color: #1d1d1f;
}
.search__input::-moz-placeholder {
  color: #b0b0b0;
}
.search__input::placeholder {
  color: #b0b0b0;
}

.search__ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.search {
  position: relative;
  display: block;
  max-width: 700px;
  width: 100%;
  border: 1.5px solid #3871C1;
  border-radius: 5px;
  padding: 10px 12px 10px 42px;
  background: #fff;
}

.search__ico {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* выпадашка */
.search__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  z-index: 50;
}

.search__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 260px;
  overflow: auto;
}

.search__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  color: #1d1d1f;
}

.search__item::before {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" stroke="blue" stroke-width="2" fill="none"/><path d="M21 21L16.6 16.6" stroke="blue" stroke-width="2" stroke-linecap="round"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" stroke="blue" stroke-width="2" fill="none"/><path d="M21 21L16.6 16.6" stroke="blue" stroke-width="2" stroke-linecap="round"/></svg>') center/contain no-repeat;
  background: #64748b;
}

.search__item:hover,
.search__item[aria-selected=true] {
  background: rgba(56, 113, 193, 0.08);
}

/* ====== Список ====== */
.cert-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.cert-item {
  display: grid;
  grid-template-columns: 424px 200px;
  align-items: center;
  gap: 16px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
}

.cert-item__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}

.cert-item__actions {
  display: inline-flex;
  gap: 18px;
  white-space: nowrap;
}

.act {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}

.act--download {
  color: #fe6d2c;
}

.act--view {
  color: #3871c1;
}

.act:hover {
  opacity: 0.85;
}

/* ====== Правая форма ====== */
.ask {
  background-image: url("/app/themes/nova/images/BG-sert.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  border: 1.5px solid #fff0ea;
  border-radius: 18px;
  padding: 28px 24px;
  width: 468px;
  height: 476px;
}

.ask__head {
  color: var(--primary);
}

.ask__title {
  margin: 8px 0 14px;
  font-weight: 700;
  font-size: 26px;
  color: #1d1d1f;
}

.ask__title span {
  color: var(--primary);
}

.ask__form input,
.ask__form textarea {
  width: 100%;
  border: 1px solid #fe6d2c;
  border-radius: 5px;
  height: 48px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ask__form input::-moz-placeholder, .ask__form textarea::-moz-placeholder {
  font-size: 12px;
  color: #8f9090;
}
.ask__form input::placeholder,
.ask__form textarea::placeholder {
  font-size: 12px;
  color: #8f9090;
}

.ask__form input:focus,
.ask__form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.ask__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ask__form textarea {
  resize: none;
  min-height: 120px;
  height: 170px;
}

.ask__btn {
  margin-top: 31px;
  width: 100%;
  border-radius: 5px;
  height: 56px;
  background: #fe6d2c;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.ask__btn:hover {
  background: #ff7a1f;
}

.ask__btn:active {
  transform: translateY(1px);
}

.price-section {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 1168px;
  padding: 56px 36px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  border-radius: 10px;
}
.price-section .price-upload {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-section .price-upload__icon {
  width: 40px;
  height: 40px;
}
.price-section .price-upload__text h2 {
  font-weight: 700;
  font-size: 26px;
  color: #1d1d1f;
  margin-bottom: 8px;
}
.price-section .price-upload__text p {
  font-weight: 400;
  width: 364px;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}
.price-section .price-list {
  width: 604px;
  background: #F5F5F7;
  padding: 36px 28px;
  background-image: url("/app/themes/nova/images/prices.png");
  border-radius: 8px;
}
.price-section .price-list .price-row ~ .price-row {
  margin-top: 16px;
}
.price-section .price-list .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #b0b0b0;
  padding-bottom: 8px;
}
.price-section .price-list .price-row span {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.price-section .price-list .price-row span:nth-of-type(1) {
  width: 210px;
}
.price-section .price-list .price-row .price-buttons {
  display: flex;
  gap: 6px;
}
.price-section .price-list .price-row .price-buttons .format-btn {
  padding: 6px 12px;
  border: 1px solid #3871c1;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #8f9090;
}
.price-section .price-list .price-row .price-buttons .format-btn.active {
  background-color: #3871c1;
  color: #fff;
  border-color: #3871c1;
}
.price-section .price-list .price-row .price-buttons .format-btn.active:hover {
  color: #fff;
}
.price-section .price-list .price-row .price-buttons .format-btn:hover {
  border-color: #3871c1;
  color: #3871c1;
}

.price-section-bot {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.settings-section {
  padding: 28px;
  border: 1px solid #3871c1;
  border-radius: 10px;
  width: 468px;
  background: #fff;
}
.settings-section .settings-header {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  margin-bottom: 32px;
}
.settings-section .settings-header h2 {
  font-size: 24px;
  font-weight: 700;
}
.settings-section .settings-header h2 span {
  color: #3871c1;
}
.settings-section .settings-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.settings-section .settings-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.settings-section .settings-item label {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.settings-section .settings-item .custom-select {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.settings-section .settings-item .custom-select .select-selected {
  display: flex;
  align-items: center;
  background: #d7e3f3;
  vertical-align: center;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
  border-radius: 5px;
  width: 412px;
  height: 40px;
  position: relative;
}
.settings-section .settings-item .custom-select .select-selected::before {
  content: "";
  position: absolute;
  width: 12px;
  right: 12px;
  height: 24px;
  background-image: url("/app/themes/nova/images/icons/selection arrows.png");
}
.settings-section .settings-item .custom-select .select-items {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #3871c1;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
}
.settings-section .settings-item .custom-select .select-items li {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.settings-section .settings-item .custom-select .select-items li:hover {
  background: #f0f4ff;
}
.settings-section .settings-item .custom-select.open .select-items {
  display: block;
}

.subscribe-section {
  max-width: 700px;
  padding: 28px;
  background: #FFF0EA;
  background-image: url("/app/themes/nova/images/icons/subscribe.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  border-radius: 16px;
}
.subscribe-section .subscribe-header {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.subscribe-section .subscribe-header h2 {
  font-size: 26px;
  font-weight: 700;
}
.subscribe-section .subscribe-header h2 span {
  color: #fe6d2c;
}
.subscribe-section .subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.subscribe-section .subscribe-form input[type=email],
.subscribe-section .subscribe-form input[type=text] {
  width: 600px;
  height: 48px;
  padding: 14px 16px;
  border: 2px solid #fe6d2c;
  border-radius: 6px;
  font-size: 16px;
}
.subscribe-section .subscribe-form input::-moz-placeholder {
  font-weight: 300;
  font-size: 12px;
  color: #8f9090;
}
.subscribe-section .subscribe-form input::placeholder {
  font-weight: 300;
  font-size: 12px;
  color: #8f9090;
}
.subscribe-section .subscribe-form .subscribe-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.subscribe-section .subscribe-form .subscribe-grid .format-select,
.subscribe-section .subscribe-form .subscribe-grid .time-select {
  display: flex;
  align-items: center;
  gap: 8px;
}
.subscribe-section .subscribe-form .subscribe-grid .format-select label,
.subscribe-section .subscribe-form .subscribe-grid .time-select label {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.subscribe-section .subscribe-form .subscribe-grid .format-buttons {
  display: flex;
  gap: 10px;
}
.subscribe-section .subscribe-form .subscribe-grid .format-buttons .format-btn {
  padding: 10px 9px;
  background: #fff;
  border: 1px solid #fe6d2c;
  border-radius: 5px;
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  color: #8f9090;
  cursor: pointer;
  transition: 0.2s ease;
}
.subscribe-section .subscribe-form .subscribe-grid .format-buttons .format-btn.active {
  background: #fe6d2c;
  color: #fff;
}
.subscribe-section .subscribe-form .subscribe-grid input[type=time] {
  padding: 10px 16px;
  border: 2px solid #fe6d2c;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 300;
  font-size: 12px;
  color: #8f9090;
}
.subscribe-section .subscribe-form .subscribe-grid input[type=time]::-webkit-time-picker-indicator {
  filter: invert(1) blur(1px);
}
.subscribe-section .subscribe-form .submit-btn {
  margin-top: 20px;
  background: #fe6d2c;
  color: #fff;
  font-size: 18px;
  padding: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}
.subscribe-section .subscribe-form .submit-btn:hover {
  background: #e55c1f;
}

.custom-time-wrapper {
  position: relative;
  display: inline-block;
}
.custom-time-wrapper .custom-time-input {
  width: 136px;
  height: 48px;
  padding: 10px 40px 10px 16px;
  font-size: 16px;
  border: 2px solid #fe6d2c;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("/app/themes/nova/images/icons/clock.svg") no-repeat right 12px center;
  background-size: 20px 20px;
  cursor: pointer;
}
.custom-time-wrapper .custom-time-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
}
.custom-time-wrapper .custom-time-input::-ms-clear {
  display: none;
}
.custom-time-wrapper .custom-time-input::-ms-expand {
  display: none;
}

.search-log {
  width: 1168px;
  margin: 40px auto;
  padding: 0 16px;
  display: flex;
}
.search-log__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  width: 368px;
}
.search-log__title span {
  color: #2e5cb8;
}
.search-log__columns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 32px;
  width: 768px;
  border-radius: 10px;
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1), -2px 0 15px 0 rgba(5, 3, 152, 0.1);
  background: #fff;
  width: 768px;
  height: 1140px;
  padding: 24px;
}

.search-column {
  background: #fff;
  border-radius: 12px;
  width: 308px;
}

.search-group {
  margin-bottom: 32px;
  padding: 0 !important;
}
.search-group .search-date {
  font-weight: 700;
  font-size: 14px;
  color: #1d1d1f;
  margin-bottom: 16px;
  color: #000;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
}
.search-group .search-entry {
  display: grid;
  grid-template-columns: 63px 243px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
.search-group .search-entry:last-child {
  border-bottom: none;
}
.search-group .search-entry .entry-time {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
  white-space: nowrap;
}
.search-group .search-entry .entry-text {
  font-weight: 300;
  font-size: 10px;
  text-align: right;
  color: #8f9090;
  grid-column: 2/3;
  grid-row: 2/3;
}
.search-group .search-entry .entry-code {
  grid-column: 2/3;
  grid-row: 1/2;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
  color: #3871c1;
  text-decoration: none;
  white-space: nowrap;
}
.search-group .search-entry:hover {
  background: #fff0ea;
}

.search-result {
  max-width: 1168px;
}

.search-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.search-table {
  margin-top: 36px;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.search-table thead th:first-child {
  border-radius: 5px 0 0 5px;
}
.search-table thead th:last-child {
  border-radius: 0 5px 5px 0;
}
.search-table thead tr {
  background: #f26322;
  color: #fff;
}
.search-table th {
  text-align: left;
  padding: 12px 0;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.search-table td {
  border-bottom: 1px solid #e6e6e6;
  vertical-align: middle;
}

.search-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-brand-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  font-weight: 700;
}

.search-brand-name {
  font-weight: 600;
}

.search-brand-code {
  font-size: 12px;
  color: #888;
}

.search-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-name .search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 4px;
}

.search-name-text {
  font-weight: 600;
}

.search-price {
  color: #f26322;
  font-weight: 600;
}

.search-carousel {
  --search-carousel-gap: 4px;
  background: #fff;
  margin: 24px auto;
  border-radius: 10px;
  width: 1168px;
  height: 168px;
  padding: 28px 64px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  position: relative;
}
.search-carousel.dark {
  background: #162d4d;
}

.search-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.search-carousel__nav--prev {
  left: 8px;
}

.search-carousel__nav--next {
  right: 8px;
}

.search-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.search-carousel__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 4px;
  will-change: transform;
}

.search-carousel__item {
  width: 156px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0 16px 14px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-right: var(--search-carousel-gap);
  width: 112px;
  height: 112px;
}

.search-carousel__item:last-child {
  margin-right: 0;
}

.search-carousel__count {
  height: 36px;
  margin: 0 -16px 8px;
  background: #cfd5db;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-carousel__letter {
  font-weight: 800;
  font-size: 20px;
  margin-top: 6px;
}

.search-carousel__name {
  font-size: 13px;
  color: #4b5563;
  margin-top: 4px;
}

.search-carousel__item--active .search-carousel__count {
  background: #2f6ecb;
  color: #fff;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06);
}

.search-carousel__item--active {
  box-shadow: 0 6px 16px rgba(47, 110, 203, 0.25);
}

.search-carousel__item:hover {
  transform: translateY(-2px);
  transition: transform 0.15s ease;
}

/* Контейнер */
.search-availability {
  max-width: 1168px;
  margin: 16px auto;
  color: #1d1d1f;
  margin-top: 56px;
  font: 14px/1.45 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.search-availability__subtitle {
  color: #a1a8b0;
  margin-bottom: 2px;
}

.search-availability__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
}

/* Шапка таблицы */
.search-headrow {
  display: grid;
  grid-template-columns: 87px 102px 382px 96px 92px 92px 76px 112px 126px;
  gap: 0;
  align-items: center;
  background: #f56f25;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  padding: 12px 0;
}
.search-headrow.blue {
  background: #3871c1;
}
.search-headrow.brown {
  background: #672c12;
}
.search-headrow.green {
  background: #19687b;
}

.search-th {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-th--actions {
  justify-content: flex-end;
}

.search-th--brand {
  padding-left: 16px !important;
}

.search-th--sort {
  all: unset;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.search-th__arrows {
  position: relative;
  width: 14px;
  height: 14px;
}

.search-th__arrows:before,
.search-th__arrows:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
}

.search-th__arrows:before {
  border-bottom-color: #fff;
  top: 0;
}

.search-th__arrows:after {
  border-top-color: #fff;
  bottom: 0;
  opacity: 0.35;
}

.search-th--sort.is-desc .search-th__arrows:before {
  opacity: 0.35;
}

.search-th--sort.is-desc .search-th__arrows:after {
  opacity: 1;
}

/* Группа */
.search-availability__table {
  border-radius: 12px;
}

.search-group {
  padding: 0 16px 12px;
}

.search-group__brand {
  font-weight: 700;
  width: 85px;
  padding: 30px 0;
  text-align: center;
}

.search-group__divider {
  height: 1px;
  background: #e8ecf1;
  margin: 10px -16px 16px;
  position: absolute;
  display: block;
  width: 1168px;
  top: 12px;
}

/* Строки */
.search-row {
  display: grid;
  grid-template-columns: 160px 150px 1fr 120px 130px 130px 120px 180px 140px;
  gap: 0;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #edf0f4;
}

.search-row:first-of-type {
  border-top: none;
}

.search-td {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-td--sku {
  gap: 12px;
}

.search-link {
  color: #2f6ecb;
  text-decoration: none;
}

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

.search-td--name .search-name {
  color: #2b2f33;
}

.search-td--qty {
  color: #111;
  font-weight: 600;
}

.search-qtynote {
  font-size: 12px;
  color: #9aa3ad;
  margin-top: 2px;
}

.search-price {
  font-weight: 800;
}

/* Возврат (бейдж + документ) */
.search-return {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.search-return__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.search-return__badge--green {
  background: #0f8a43;
}

.search-return__badge--orange {
  background: #f39c12;
}

.search-return__badge--red {
  background: #a91818;
}

/* Статистика — зелёная линейка */
.search-meter {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 4px;
  background: #fff;
  border: 2px solid #1aa54b;
  border-radius: 6px;
  padding: 3px;
}

.search-meter__cell {
  height: 16px;
  border-radius: 3px;
  background: #1aa54b;
}

/* Действия */
.search-td--actions {
  gap: 10px;
  justify-content: flex-end;
}

.search-act {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid #d9e2ee;
  background: #eef5ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-act:active {
  transform: translateY(1px);
}

/* Плейсхолдеры иконок (заменишь на свои) */
.search-ico {
  display: inline-block;
  background: #e9edf3;
  border: 1px solid #cfd6df;
  border-radius: 8px;
}

.search-ico--badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #e8f7ee;
  border-color: #b8e2c8;
}

.search-ico--photo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.search-ico--doc {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #cfd6df;
}

.search-ico--cart,
.search-ico--list {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

/* Кнопка «Показать все предложения» */
.search-group__more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
  position: relative;
}

.search-more {
  border: none;
  background: #dfe5eb;
  color: #21272e;
  border-radius: 28px;
  padding: 14px 28px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06), 0 3px 10px rgba(0, 0, 0, 0.06);
}

.search-more:hover {
  filter: brightness(0.98);
}

/* контейнер */
.search-lines {
  border-radius: 12px;
  color: #1d1d1f;
  font: 14px/1.45 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* строка */
.search-line {
  display: grid;
  grid-template-columns: 102px 382px 96px 92px 92px 76px 112px 126px;
  align-items: center;
  gap: 0;
  padding: 16px 0;
  border-bottom: 1px solid #e9edf3;
}

.search-line:last-child {
  border-bottom: none;
}

/* колонки */
.search-col {
  display: flex;
}

.search-col--sku {
  flex-direction: column;
  align-items: start;
}
.search-col--sku .answer {
  width: 152px !important;
  padding: 4px;
  left: -5px;
  bottom: 20px !important;
  text-align: center;
  font-size: 10px;
}
.search-col--sku .answer.new {
  width: -moz-min-content !important;
  width: min-content !important;
}
.search-col--sku span {
  border-radius: 5px;
  width: 20px;
  height: 20px;
  background: #06a455;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}
.search-col--sku .orange {
  background: #ffac47;
}
.search-col--sku .yellow {
  background: #ffbf00;
}
.search-col--sku .purple {
  background: #ac6ee7;
}
.search-col--sku .red {
  background: #fe6d2c;
}

.search-col--name {
  gap: 14px;
}

/* Контейнер */
.search-col--actions-count {
  width: 104px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111;
}

/* Кнопки - / + */
.search-qty__btn {
  position: relative;
  flex: 0 0 34px;
  /* (104 - 36) / 2 = 34 */
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.search-qty__btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #161616;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.search-qty__btn--plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 16px;
  background: #161616;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

/* Поле с числом */
.search-qty__value {
  border-radius: 5px;
  width: 56px;
  height: 36px;
  text-align: center;
  border: none;
  outline: none;
  background: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 36px;
  color: #111;
  caret-color: transparent;
}

/* убираем стрелки у number на всякий случай */
.search-qty__value::-webkit-outer-spin-button,
.search-qty__value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.search-sku {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
  text-decoration: none;
}

.search-sku:hover {
  text-decoration: underline;
}

.search-name {
  color: #333;
  padding-right: 20px;
}

.search-col--qty {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-qtynote {
  font-size: 12px;
  color: #9aa3ad;
  line-height: 1;
  margin-top: 2px;
}

.search-col--price span {
  font-weight: 800;
}

.search-col--term {
  color: #2b2f33;
}

/* возврат (кружок + док) */
.search-return {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.search-return span {
  position: absolute;
  font-weight: 500;
  font-size: 8px;
  text-align: center;
  color: #fff;
  width: 20px;
  height: 20px;
  top: -6px;
  left: -6px;
}

.search-return__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.search-return__badge--green {
  background: #0f8a43;
}

.search-return__badge--orange {
  background: #f39c12;
}

.search-return__badge--red {
  background: #a91818;
}

/* зеленые ячейки */
.search-bars {
  --search-on: 0;
  /* fallback если нет data-on */
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  background: #e6f5e9;
  border: 2px solid #199a4b;
  border-radius: 6px;
  padding: 3px 6px;
  height: 24px;
  align-items: center;
}

.search-bars i {
  display: block;
  height: 14px;
  border-radius: 3px;
  background: #199a4b;
  opacity: 0.25;
}

.search-bars[data-on="1"] i:nth-child(-n+1),
.search-bars[data-on="2"] i:nth-child(-n+2),
.search-bars[data-on="3"] i:nth-child(-n+3),
.search-bars[data-on="4"] i:nth-child(-n+4),
.search-bars[data-on="5"] i:nth-child(-n+5),
.search-bars[data-on="6"] i:nth-child(-n+6),
.search-bars[data-on="7"] i:nth-child(-n+7),
.search-bars[data-on="8"] i:nth-child(-n+8),
.search-bars[data-on="9"] i:nth-child(-n+9) {
  opacity: 1;
}

/* действия */
.search-col--actions {
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  display: flex;
}

.search-action {
  border-radius: 5px;
  width: 48px;
  height: 48px;
  background: #ebf1f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-notice {
  position: absolute;
  top: -4pxpx;
  left: 50%;
  transform: translateX(-50%);
  background: #4caf50;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  z-index: 9999;
  width: 164px;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #1d1d1f;
  background: #fff0ea;
}

.search-action:active {
  transform: translateY(1px);
}

/* Плейсхолдеры иконок (заменишь) */
.search-ico {
  display: inline-block;
}

.search-ico--photo {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-ico--photo img {
  width: 20px;
  height: 20px;
}

.search-ico--doc {
  width: 34px;
  height: 34px;
  border: 2px solid #1f2a36;
  border-radius: 8px;
  background: #fff;
}

.search-ico--cart {
  width: 22px;
  height: 22px;
  background: #a7b7d9;
  border-radius: 4px;
}

.search-ico--list {
  width: 22px;
  height: 22px;
  background: #a7b7d9;
  border-radius: 4px;
}

.search-ico--sticker {
  width: 18px;
  height: 18px;
  background: #7B5CFF;
  border-radius: 6px;
}

.search-group__wrapp {
  display: flex;
}

.search-sort-wrapper {
  position: relative;
  display: inline-block;
}

.search-sort-dropdown {
  position: absolute;
  padding: 5px 5px;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #2678ff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 10;
  width: -moz-max-content;
  width: max-content;
}

.search-sort-option {
  padding: 5px 5px;
  cursor: pointer;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}

.search-sort-option:hover,
.search-sort-option--active {
  background: #edf4ff;
}

:root {
  --search-modal-radius: 14px;
  --search-modal-pad-x: 64px;
  --search-modal-pad-y: 52px;
  --search-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  --search-gray-100: #f2f2f2;
  --search-gray-200: #e6e6e6;
  --search-gray-400: #bdbdbd;
  --search-gray-700: #333;
  --search-accent: #e74c3c;
  /* красная кнопка закрытия */
}

/* Демокнопка (можно удалить) */
.search-open-btn {
  position: fixed;
  inset: auto 16px 16px auto;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

/* Оверлей */
.search-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.search-lightbox-overlay.search-is-visible {
  opacity: 1;
  visibility: visible;
}

/* Модалка */
.search-lightbox {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(0.98);
  width: 720px;
  height: 472px;
  background: #fff;
  border-radius: var(--search-modal-radius);
  box-shadow: var(--search-shadow);
  padding: 72px 77px;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
  z-index: 3;
}

.search-lightbox.search-is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Сцена */
.search-lightbox__stage {
  position: relative;
  width: 568px;
  height: 328px;
  border: 1px solid var(--search-gray-200);
  background: var(--search-gray-100);
  border-radius: 4px;
}

/* Слайды */
.search-lightbox__slides,
.search-lightbox__slide {
  width: 100%;
  height: 100%;
}

.search-lightbox__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.995);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.search-lightbox__slide.search-is-active {
  opacity: 1;
  transform: none;
  position: absolute;
}

/* Плейсхолдер как на макете */
.search-placeholder {
  position: absolute;
  inset: 18px;
  border: 1px solid var(--search-gray-200);
  background: linear-gradient(135deg, transparent calc(50% - 1px), var(--search-gray-200) 50%, transparent calc(50% + 1px)) no-repeat, linear-gradient(45deg, transparent calc(50% - 1px), var(--search-gray-200) 50%, transparent calc(50% + 1px)) no-repeat;
  background-size: 100% 100%, 100% 100%;
}

.search-placeholder__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  color: var(--search-gray-400);
}

.search-placeholder__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Кнопки навигации */
.search-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-lightbox__nav--prev {
  left: -54px;
}

.search-lightbox__nav--prev::before {
  transform: rotate(135deg);
}

.search-lightbox__nav--next {
  right: -54px;
}

.search-lightbox__nav--next::before {
  transform: rotate(-45deg);
}

.search-lightbox__nav:focus-visible {
  outline: 2px solid #2684ff;
  outline-offset: 2px;
}

/* Точки */
.search-lightbox__dots {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.search-lightbox__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfcfcf;
  border: 0;
  cursor: pointer;
}

.search-lightbox__dot.search-is-active {
  background: #666;
}

/* Кнопка закрытия (красная точка с крестиком) */
.search-lightbox__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--search-accent);
  border: 0;
  cursor: pointer;
}

.search-lightbox__close::before,
.search-lightbox__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transform-origin: center;
}

.search-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.search-lightbox__close:focus-visible {
  outline: 2px solid #2684ff;
  outline-offset: 2px;
}

/* Адаптивные мелочи */
@media (max-width: 540px) {
  :root {
    --search-modal-pad-x: 18px;
    --search-modal-pad-y: 38px;
  }
  .search-lightbox__stage {
    height: 52vh;
  }
}
.auth {
  background-color: rgba(6, 11, 19, 0.5333333333);
}

.header__bar,
.header__container,
.middle-panel {
  transition: opacity 0.25s ease, max-height 0.25s ease, visibility 0.25s ease;
}

/* верх страницы */
body.at-top .header__bar,
body.at-top .header__container {
  opacity: 1;
  max-height: 200px;
  visibility: visible;
  /* подгони max-height под свою высоту */
}

body.at-top .middle-panel {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* прокручено */
body.scrolled .header__bar,
body.scrolled .header__container {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
}

body.scrolled .middle-panel_wrapp {
  opacity: 1;
  max-height: 200px;
  visibility: visible;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: #f5f6f9;
}

.middle-panel_wrapp {
  width: 100%;
  background-color: #f5f6f9;
}

.modal {
  width: 440px;
  height: -moz-fit-content;
  height: fit-content;
  background: #d4e3f9;
  border-radius: 12px;
  padding: 24px 36px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}
.modal__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.modal__subtitle {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
  margin-bottom: 32px;
}
.modal__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  width: auto;
}
.modal__form .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.modal__form .row span {
  border: 1px solid #3871c1;
  border-radius: 5px;
  width: 180px;
  height: 44px;
  box-shadow: inset 3px 4px 4px 0 rgba(56, 113, 193, 0.1);
  background: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}
.modal__input {
  width: 368px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 16px;
}
.modal__input.error {
  border-color: red;
}
.modal__btn {
  width: 368px;
  height: 48px;
  background: #3871c1;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
}
.modal__btn-repeat {
  background: transparent;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: #fe6d2c;
}
.modal__error {
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: #dd2a1b;
}
.modal__link {
  font-size: 14px;
  color: #333;
  margin-top: 4px;
}
.modal__back {
  font-size: 14px;
  color: #333;
  margin-bottom: 17px;
  background: transparent;
}

.modal {
  transition: 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
.popup-overlay.active {
  display: block;
}

#accountPopup {
  background: #fff;
  border: 1px solid #ccc;
  padding: 16px;
  z-index: 99999;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 764px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  z-index: 1000;
  max-height: 90vh;
  overflow-y: auto;
}
.popup.popup--active {
  display: block;
}
.popup__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.balance-panel {
  background: #0a2850;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.balance-panel .balance-info {
  margin-left: 30px;
}

.balance_block {
  display: flex;
  justify-content: space-between;
}

.balance-value {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.balance-updated {
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}

.btn-details {
  border-radius: 5px;
  width: 276px;
  height: 56px;
  background: #3871c1;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.contract-info {
  display: inline-block;
  width: 438px;
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1f;
}
.contract-info .contract-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #b0b0b0;
}
.contract-info .thanks-link {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #3871c1;
  border-bottom: 1px solid #b0b0b0;
}

.movement-box {
  box-shadow: 3px 4px 15px 0 rgba(5, 3, 152, 0.1);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  width: 268px;
  height: 120px;
}
.movement-box strong {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #1d1d1f;
}
.movement-box .movement-tabs {
  margin-top: 20px;
  display: flex;
}
.movement-box .movement-tabs span {
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
  width: 118px;
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 2px solid #b0b0b0;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
}
.movement-box .movement-tabs span:hover {
  border-bottom: 2px solid #fe6d2c;
}

.main-panel {
  display: flex;
  gap: 50px;
  background: #f5f5f7;
  border-radius: 5px;
  width: 732px;
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}
.main-panel__notice {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 12px;
}
.main-panel .left-panel {
  flex: 1;
  background: #f5f5f5;
  border-radius: 8px;
  padding-left: 48px;
}
.main-panel .left-panel .menu-list li {
  font-weight: 400;
  font-size: 14px;
  color: #1d1d1f;
  border-bottom: 1px solid #b0b0b0;
  padding: 5px 0;
}
.main-panel .left-panel .menu-list li:hover {
  background: #ffe7df;
}
.main-panel .right-panel {
  flex: 2;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-panel .right-panel .manager-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.main-panel .right-panel .manager-card p {
  font-weight: 400;
  font-size: 14px;
  color: #1d1d1f;
}
.main-panel .right-panel .manager-card img {
  border-radius: 5px;
  width: 90px;
  height: 108px;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-panel .right-panel .manager-card span {
  font-weight: 400;
  font-size: 10px;
  color: #b7b9bc;
}
.main-panel .right-panel .manager-card strong {
  font-weight: 700;
  font-size: 18px;
  color: #1d1d1f;
  margin-top: 10px;
}
.main-panel .right-panel .btn-offer,
.main-panel .right-panel .btn-complain {
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f !important;
  padding-left: 5px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid #dd2a1b;
  border-radius: 5px;
  height: 24px;
}
.main-panel .right-panel .btn-offer {
  border-color: #3aa76d;
  color: #3aa76d;
  width: 128px;
  margin-top: 10px;
  background: transparent;
}
.main-panel .right-panel .btn-complain {
  border-color: #e23c3c;
  color: #e23c3c;
  width: 96px;
  background: transparent;
  margin-left: 10px;
}
.main-panel .right-panel .tabs-bottom {
  display: flex;
  padding-top: 8px;
}
.main-panel .right-panel .tabs-bottom span {
  padding: 4px 10px;
  width: 112px;
  text-align: center;
  text-wrap: nowrap;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #1d1d1f;
  border-bottom: 1px solid #ccc;
}
.main-panel .right-panel .tabs-bottom span:hover {
  border-bottom: 2px solid #fe6d2c;
}

.modal-pass__field {
  position: relative;
  border: 1px solid #fff;
  border-radius: 5px;
  width: 368px;
  height: 44px;
  box-shadow: inset 3px 4px 4px 0 rgba(56, 113, 193, 0.1);
  background: #fff;
  padding: 9px 48px 7px 18px;
}

.modal-pass__field:focus-within {
  box-shadow: 0 0 0 3px rgba(70, 119, 255, 0.25), inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.modal-pass__input {
  width: 100%;
  border: 0;
  outline: 0;
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
  background: transparent;
}

.modal-pass__toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.modal-pass__toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.modal-pass__icon {
  display: block;
  pointer-events: none;
  fill: #6b7280;
}

.modal-pass__icon--hide {
  display: none;
}

.modal-pass__field.modal-pass--visible .modal-pass__icon--show {
  display: none;
}

.modal-pass__field.modal-pass--visible .modal-pass__icon--hide {
  display: block;
}

.parners-container {
  height: 714px;
  background-color: #3871c1;
}

.parners {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 16%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 968px;
  height: 410px;
}
.parners h3 {
  padding-top: 129px;
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.parners .parners_items {
  margin-top: 44px;
  display: flex;
  gap: 28px;
  justify-content: center;
}
.parners .parners_item {
  display: flex;
  flex-direction: column;
  padding: 32px;
  align-items: start;
  background: #fff;
  border-radius: 10px;
}
.parners .parners_item h4 {
  margin-top: 11px;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #1d1d1f;
  height: 48px;
}
.parners .parners_item ul {
  margin-top: 32px;
  height: 53px;
  padding-left: 20px;
}
.parners .parners_item li {
  font-weight: 400;
  font-size: 12px;
  color: #1d1d1f;
  list-style: disc;
}
.parners .parners_item a {
  margin-top: 35px;
  border-radius: 5px;
  width: 240px;
  height: 48px;
  background: #fe6d2c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: #fff;
}

.btns {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.header__notification-wrapper {
  position: fixed;
  top: 250px;
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(360px, 100vw - 24px);
  pointer-events: none;
}

.header__notification {
  pointer-events: auto;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__notification .error {
  background: #ef4444;
  color: #fff;
}
.header__notification .warning {
  background: #f59e0b;
  color: #fff;
}
.header__notification .success {
  background: #22c55e;
  color: #fff;
}

.header__notification p {
  margin: 0;
  flex: 1;
  text-align: center;
}

.header__notification .close:hover {
  opacity: 1;
}

/* варианты */
.header__notification.error {
  background: #fee2e2;
  border-color: #ef4444;
  color: #7f1d1d;
}

.header__notification.warning {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #7c2d12;
}

.header__notification.success {
  background: #dcfce7;
  border-color: #22c55e;
  color: #065f46;
}

.header__notification.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.header__notification.is-leaving {
  transform: translateX(110%);
  opacity: 0;
}/*# sourceMappingURL=style.css.map */