:root {
  --bg: #f5f7f9;
  --panel: #ffffff;
  --panel-2: #f1f3f5;
  --line: #e6e9ec;
  --text: #1a1c1e;
  --muted: #6e7275;
  --radius: 12px;
  --radius-lg: 24px;
  --shell: 1160px;
  --accent: #ff6b35;
  --kirilenko: #ff6b35;
  --wincourt: #4ea8de;
  --minibasket: #8ac926;
  --psb: #c77dff;
  --ok: #1f9d55;
  --wait: #b97d06;
  --hold: #7b8698;
}

* { box-sizing: border-box; }

@font-face {
  font-family: Inter;
  src: url('fonts/inter-cyrillic.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Inter;
  src: url('fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2190-21BB;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}























.side__search {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--text);
  font-size: 13px;
  margin-bottom: 10px;
}

.side__search::placeholder { color: var(--muted); }

.filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.chip {
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.chip.is-on {
  background: var(--panel-2);
  color: var(--text);
  border-color: #c3ccd8;
}

.group__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 16px 0 8px;
}

.item {
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  margin-bottom: 4px;
}

.item:hover { background: var(--panel-2); }

.item.is-active {
  background: var(--panel-2);
  border-color: #c3ccd8;
}

.item.is-flat { cursor: default; }
.item.is-flat:hover { background: transparent; }

.item__name {
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 3px;
}

.item__meta {
  font-size: 12px;
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 11px;
  margin-right: 5px;
  vertical-align: 1px;
}

.badge--ok { background: rgba(31, 157, 85, .12); color: var(--ok); }
.badge--wait { background: rgba(185, 125, 6, .14); color: var(--wait); }
.badge--hold { background: rgba(123, 134, 152, .16); color: var(--hold); }
.badge--none { background: rgba(255, 107, 53, .14); color: #d2541f; }

.map { width: 100%; height: 100%; }

.pin {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 1.5px currentColor, 0 2px 6px rgba(20, 30, 45, .28);
  background: currentColor;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.pin--multi::after {
  content: attr(data-count);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  color: #0f1419;
}

.pin.is-active {
  box-shadow: 0 0 0 3px #1b2430, 0 2px 10px rgba(20, 30, 45, .45);
  z-index: 5;
}







.balloon__close {
  flex: none;
  margin: -3px -3px 0 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}

.balloon__close:hover {
  background: var(--panel-2);
  color: var(--text);
}

.balloon__body {
  overflow-y: auto;
  overscroll-behavior: contain;
  min-height: 0;
  padding-right: 2px;
}

.balloon__body::-webkit-scrollbar { width: 8px; }
.balloon__body::-webkit-scrollbar-track { background: transparent; }
.balloon__body::-webkit-scrollbar-thumb { background: #cfd7e0; border-radius: 4px; }

.balloon .card__head {
  flex: none;
  align-items: center;
  margin-bottom: 8px;
}

.balloon .card__badges { flex: 1; justify-content: flex-end; }

.balloon__title {
  font-weight: 600;
  margin: 0 18px 7px 0;
}

.balloon__row {
  color: var(--muted);
  margin-bottom: 4px;
}

.balloon__row b { color: var(--text); font-weight: 500; }

.balloon__links {
  margin-top: 9px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.balloon__links a { color: var(--accent); text-decoration: none; font-size: 12px; }
.balloon__links a:hover { text-decoration: underline; }

.balloon__list {
  margin: 7px 0 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12px;
}

.empty {
  color: var(--muted);
  font-size: 13px;
  padding: 12px 0;
}

.legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: 0;
}

@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; grid-template-rows: auto 260px 1fr; }
  .side { border-right: none; border-bottom: 1px solid var(--line); }
}

.pin--geo {
  border-style: dashed;
  border-color: #cbd5e1;
}

.group__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 8px;
}

.group__head .group__title { margin: 0; }

.group__logo {
  height: 22px;
  width: auto;
  max-width: 62px;
  object-fit: contain;
  flex: none;
}

.balloon__logo {
  height: 26px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  display: block;
  margin-bottom: 9px;
}

.has-plate {
  background: #fff;
  border-radius: 5px;
  padding: 3px 6px;
}

.page-cards { height: auto; }

.page-cards .layout {
  display: block;
  height: auto;
  min-height: 100%;
}

.cards-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 14px 20px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.cards-toolbar .side__search { width: 280px; margin: 0; }

.cards-toolbar select {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--text);
  font-size: 13px;
}

.cards-wrap { padding: 8px 20px 40px; }

.cards__group { margin-top: 10px; }

.cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 14px;
  margin-top: 4px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px 16px 14px;
  border-top: 3px solid var(--accent-project, var(--accent));
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.card__logo {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  flex: none;
}

.card__badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.card__title {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 5px;
  overflow-wrap: anywhere;
}

.card__place {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 9px;
}

.card__row {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.card__row b { color: var(--text); font-weight: 500; }

.card__row--action { color: var(--text); }

.card__row--muted { font-size: 12px; opacity: .75; }

.card__links {
  margin-top: auto;
  padding-top: 11px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.card__links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
}

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

.pin__wrap { position: relative; }

.pin__hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b2430;
  color: #fff;
  border: 1px solid #1b2430;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
  z-index: 40;
}

.pin__wrap:hover .pin__hint { opacity: 1; }

.pin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pin-bg, #fff);
  border: 2px solid var(--pin-ring, var(--accent));
  box-shadow: 0 2px 8px rgba(20, 30, 45, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pin-pad, 4px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  position: relative;
  transition: transform .12s, box-shadow .12s;
}

.pin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.pin:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 4px 14px rgba(20, 30, 45, .42);
  z-index: 6;
}

.pin.is-active {
  box-shadow: 0 0 0 3px #1b2430, 0 4px 14px rgba(20, 30, 45, .45);
  z-index: 7;
}

.pin--geo { border-style: dashed; }

.pin__count {
  position: absolute;
  right: -5px;
  bottom: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--pin-ring, var(--accent));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  border: 1.5px solid var(--bg);
  box-sizing: border-box;
}

.pin__hint { bottom: 24px; }

.pin__wrap { pointer-events: none; }
.pin__wrap .pin { pointer-events: auto; }

.ymaps3--marker { pointer-events: none !important; }
.ymaps3--marker .pin { pointer-events: auto; }

.slider {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  background: var(--panel-2);
  margin-bottom: 11px;
  aspect-ratio: 16 / 10;
}

.slider__stage,
.slider__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 30, 45, .55);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s, background .15s;
}

.slider:hover .slider__nav { opacity: 1; }
.slider__nav:hover { background: rgba(20, 30, 45, .8); }
.slider__nav--prev { left: 7px; }
.slider__nav--next { right: 7px; }

.slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.slider__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: background .15s, transform .15s;
}

.slider__dot.is-on {
  background: #fff;
  transform: scale(1.35);
}

.slider[data-count="1"] .slider__nav,
.slider[data-count="1"] .slider__dots { display: none; }

.balloon .slider { margin: 0 0 10px; }



.card-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 36, .45);
  backdrop-filter: blur(2px);
}

.card-modal__card {
  position: relative;
  width: min(430px, 100%);
  max-height: min(84vh, 680px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 22px 60px rgba(16, 24, 36, .34);
  animation: card-in .16s ease-out;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(8px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.card-modal .card__head {
  flex: none;
  align-items: center;
  margin-bottom: 10px;
}

.card-modal .balloon__body {
  overflow-y: auto;
  overscroll-behavior: contain;
  min-height: 0;
  padding-right: 3px;
}

.card-modal .balloon__body::-webkit-scrollbar { width: 8px; }
.card-modal .balloon__body::-webkit-scrollbar-track { background: transparent; }
.card-modal .balloon__body::-webkit-scrollbar-thumb { background: #cfd7e0; border-radius: 4px; }

.card-modal .slider { margin-bottom: 12px; }
.card-modal .slider__nav { opacity: 1; }

.card-modal .card__title { font-size: 15px; }

body.has-modal { overflow: hidden; }

@media (max-width: 560px) {
  .card-modal { padding: 12px; }
  .card-modal__card { max-height: 88vh; }
}

.layout {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 12px 16px 0;
}



.topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  font-size: 13px;
  line-height: 1.25;
  color: var(--muted);
  text-decoration: none;
}





.topbar__brand b {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar { display: none; }

.nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}



.nav a:hover { background: var(--panel-2); color: var(--text); }

.nav a.is-active { color: var(--text); font-weight: 600; }
.nav a.is-active i { opacity: 1; box-shadow: 0 0 0 3px rgba(0,0,0,.05); }

.topbar__count {
  flex: none;
  font-size: 12.5px;
  color: var(--muted);
  text-align: right;
  line-height: 1.35;
}

.workspace {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 14px;
  height: calc(100vh - 128px);
  min-height: 460px;
}

.side {
  background: var(--panel);
  border-radius: var(--radius);
  overflow-y: auto;
  padding: 16px;
}

.map {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

























@media (max-width: 1024px) {
  .workspace { grid-template-columns: 300px 1fr; }
  .nav a { padding: 7px 10px; }
}

@media (max-width: 860px) {
  .topbar { flex-wrap: wrap; gap: 12px; padding: 12px 16px; border-radius: 18px; }
  .nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; }
  .nav a { flex-direction: row; gap: 8px; padding: 7px 11px; }
  .nav a i { width: 16px; height: 16px; }
  .topbar__count { margin-left: auto; }
  .workspace { grid-template-columns: 1fr; grid-template-rows: 240px minmax(420px, 1fr); height: auto; }
  .side { max-height: 240px; }
  .map { min-height: 420px; }
  .site-footer__cols { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 560px) {
  .layout { padding: 10px 10px 0; }
  .topbar__logo { width: 44px; height: 44px; }
  .topbar__logo img { width: 25px; height: 25px; }
  .site-footer { padding: 32px 12px 24px; }
}

.cards-toolbar {
  background: var(--panel);
  border-radius: var(--radius);
  border-bottom: none;
  margin-bottom: 14px;
  position: static;
  padding: 14px 16px;
}

.cards-wrap { padding: 0 0 8px; }

.page-cards .layout { padding-bottom: 8px; }

.cards__group { margin-top: 18px; }
.cards__group:first-child { margin-top: 4px; }

.card { border-radius: var(--radius); }

.side__search { border-radius: 10px; }
.chip { border-radius: 999px; }



@media (max-width: 860px) {
  .workspace { grid-template-rows: 300px minmax(440px, 60vh); }
  .side { max-height: 300px; }
}

.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--panel);
  border-radius: 48px;
  min-height: 96px;
  padding: 8px 20px 8px 8px;
  margin-bottom: 14px;
  box-shadow: 0 1px 2px rgba(16, 24, 36, .05), 0 6px 20px rgba(16, 24, 36, .04);
}

.topbar__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.topbar__logo img { width: 44px; height: 44px; object-fit: contain; }

.topbar__name { display: block; }

.nav a i {
  width: 24px;
  height: 24px;
  display: block;
  color: currentColor;
}

.nav a i svg { width: 100%; height: 100%; display: block; }

.progs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.prog {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font: inherit;
  font-size: 12.5px;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.prog img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: none;
  opacity: .45;
  filter: grayscale(1);
  transition: opacity .15s, filter .15s;
}

.prog span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.prog b {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--panel-2);
  border-radius: 20px;
  padding: 1px 7px;
}

.prog.is-on {
  color: var(--text);
  border-color: var(--prog, var(--accent));
  box-shadow: inset 0 0 0 1px var(--prog, var(--accent));
}

.prog.is-on img { opacity: 1; filter: none; }
.prog.is-on b { background: color-mix(in srgb, var(--prog) 14%, transparent); color: var(--prog); }
.prog:hover { color: var(--text); }

.progs--wide {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.progs--wide .prog { width: auto; padding: 8px 12px; }
.progs--wide .prog span { max-width: 200px; }

.rb-footer {
  max-width: 1032px;
  margin: 0 auto;
  padding: 26px 16px 24px;
  font-size: 14px;
  line-height: 1.5;
}

.rb-footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(26, 28, 30, .1);
}

@media (min-width: 1100px) {
  .rb-footer__top { flex-direction: row; }
  .rb-footer__about { max-width: 416px; }
}

.rb-footer__about { flex: 1; display: flex; flex-direction: column; gap: 30px; }
.rb-footer__partners { flex: 1; position: relative; }

.rb-footer__block { display: flex; flex-direction: column; gap: 14px; }

.rb-footer__head {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.rb-footer__text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.rb-footer__socials { display: flex; gap: 12px; }
.rb-footer__socials a { display: block; width: 40px; height: 40px; border-radius: 12px; }
.rb-footer__socials a:hover { background: #fff; }
.rb-footer__socials img { width: 40px; height: 40px; display: block; }

.rb-footer__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.rb-footer__tile {
  background: var(--panel);
  border-radius: 12px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}

.rb-footer__tile img { max-width: 100%; max-height: 100%; object-fit: contain; }

.rb-footer__mark {
  position: absolute;
  right: 0;
  bottom: -62px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rb-footer__mark img { width: 34px; height: 34px; }

.rb-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 13px;
  color: var(--muted);
}

.rb-footer__bottom a { color: var(--muted); text-decoration: underline; }

@media (max-width: 1099px) {
  .rb-footer__mark { position: static; margin-top: 22px; }
}

@media (max-width: 560px) {
  .rb-footer__tiles { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); }
  .topbar__logo { width: 62px; height: 62px; }
  .topbar__logo img { width: 34px; height: 34px; }
  .topbar { min-height: 0; border-radius: 28px; }
}

.group__logo {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--panel-2);
  padding: 2px;
}
