.notice {
  width: 100%;
  margin-bottom: 8px;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(240, 146, 35, 0.4);
  background: linear-gradient(120deg, #fff6e8 0%, #ffe9d0 100%);
  box-shadow: 0 8px 24px rgba(240, 146, 35, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #5b3200;
  text-align: left;
}

.noticeContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.noticeTitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.noticeMessage {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.noticeChannels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.noticeBadge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(6, 32, 36, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: #062024;
}

.closeButton {
  appearance: none;
  border: none;
  background: rgba(6, 32, 36, 0.08);
  color: #062024;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s ease;
}

.closeButton:hover,
.closeButton:focus-visible {
  background: rgba(6, 32, 36, 0.16);
  outline: none;
}

@media (max-width: 768px) {
  .notice {
    flex-direction: column;
  }
  .closeButton {
    align-self: flex-end;
  }
}

.Contact {
  display: flex;
  align-items: center;
  margin-left: 11px;
  gap: 12px;
}

@charset "UTF-8";
.PhoneLink {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  font-weight: bold;
  font-size: 16px;
}
.PhoneLink:hover {
  color: #99f6e4;
}
.PhoneLink {
  /* Мобильные (<768px) */
}
@media only screen and (max-width: 767px) {
  .PhoneLink {
    font-size: 14px;
  }
}
@media only screen and (max-width: 390px) {
  .PhoneLink {
    font-size: 12px;
  }
}

.PhoneWrap {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media only screen and (max-width: 1150px) {
  .PhoneWrap {
    flex-direction: column;
    gap: 2px;
  }
}

.ContctIconWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 0px;
}

.Header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  width: 100%;
  z-index: 11;
  min-height: var(--header-height, 172px);
  padding-top: 0;
  padding-bottom: clamp(0.5rem, 1.5vw, 1.25rem);
  overflow-x: hidden;
  overflow-y: visible;
}
.Header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(110deg, rgba(0, 211, 219, 0.06) 0%, rgba(255, 255, 255, 0.22) 35%, rgba(255, 184, 107, 0.14) 52%, rgba(0, 211, 219, 0.08) 68%, rgba(255, 255, 255, 0.04) 100%);
  background-size: 220% 100%;
  transition: opacity 0.18s ease;
}
.Header[data-nav-pending=true]::after {
  opacity: 1;
  animation: HeaderPendingWave 1.2s linear infinite;
}
.Header[data-nav-pending=true] {
  box-shadow: 0 8px 24px rgba(0, 211, 219, 0.12), 0 4px 16px rgba(255, 184, 107, 0.08);
  transition: box-shadow 0.18s ease;
}

.HeaderLeftBlock {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}

.HeaderTitle {
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .HeaderTitle {
    font-size: 16px;
  }
}

.HeaderTitle a {
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .HeaderTitle a {
    font-size: 16px;
  }
}

.Warning {
  width: 100%;
  font-weight: bold;
  margin: 0 auto;
  color: white;
  background: orange;
}

.SsgBlock {
  width: 100%;
  min-height: 32px;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.SsgField {
  width: 100%;
  min-height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

@keyframes HeaderPendingWave {
  0% {
    background-position: 200% 0;
    filter: saturate(0.95);
  }
  50% {
    background-position: 100% 0;
    filter: saturate(1.08);
  }
  100% {
    background-position: 0% 0;
    filter: saturate(0.98);
  }
}

@charset "UTF-8";
.NavbarContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 6px 6px;
  /* Десктоп (>1024px) */
}
@media only screen and (max-width: 1500px) {
  .NavbarContainer {
    padding: 6px 4px;
  }
}
.NavbarContainer {
  /* Мобильные (<768px) */
}
@media only screen and (max-width: 767px) {
  .NavbarContainer {
    padding: 2px 4px;
    min-height: 30px;
  }
}
@media only screen and (max-width: 390px) {
  .NavbarContainer {
    padding: 1px 4px;
  }
}
@media only screen and (max-height: 767px) {
  .NavbarContainer {
    padding: 1px 4px;
  }
}

/* Контейнер для логотипа, ограничивающий размеры */
.NavbarLogoWrapper {
  display: flex;
  align-items: center;
  max-height: 49px;
  width: 188px;
  min-width: 180px;
  overflow: hidden;
}
@media only screen and (max-width: 620px) {
  .NavbarLogoWrapper {
    max-height: 36px;
    width: 60px;
    min-width: 52px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(174, 55, 146, 0.878), #00d3db);
    border-radius: 11px;
    /* Вертикальная волна справа */
    clip-path: path("M0,0 H34 C38,5 53,13 36,23 C31,30 45,45 60,49 H0 Z");
  }
}

/* Само изображение логотипа */
.NavbarLogoImgMob {
  padding: 2px;
  display: block;
  max-height: 48px;
  height: auto;
  width: 178px;
}
@media only screen and (max-width: 620px) {
  .NavbarLogoImgMob {
    padding: 2px;
    display: block;
    max-width: 100px;
    max-height: 38px;
    height: auto;
    width: auto;
  }
}

.Navbar {
  width: 100%;
  background: white;
  color: #00d3db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 50;
  transition: transform 0.3s ease;
}

.NavbarLogo {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
  height: 49px;
  margin-right: 13px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.NavbarLogo:hover {
  color: #99f6e4; /* teal-200 */
  transform: scale(1.05);
}
.NavbarLogo {
  /* Планшеты (768px–1024px) */
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .NavbarLogo {
    height: 38px;
    font-size: 1.3rem;
  }
}
.NavbarLogo {
  /* Мобильные (<768px) */
}
@media only screen and (max-width: 767px) {
  .NavbarLogo {
    height: 37px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 390px) {
  .NavbarLogo {
    height: 32px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-height: 767px) {
  .NavbarLogo {
    height: 37px;
    font-size: 1.2rem;
  }
}

.NavbarMenuDesktop {
  position: relative; /* Точка отсчёта для теней */
  display: flex;
  align-items: center;
  flex-grow: 1; /* Занимает доступное пространство */
  overflow: hidden; /* Скрывает переполнение */
  min-height: 100%;
  /* Тени для индикации прокрутки */
}
.NavbarMenuDesktop::before, .NavbarMenuDesktop::after {
  content: ""; /* Пустой контент */
  display: block; /* Явное отображение */
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px; /* Увеличенная ширина */
  z-index: 10; /* Выше всех, кроме tooltip’ов */
  pointer-events: none;
  opacity: 1;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}
.NavbarMenuDesktop::before {
  left: 0;
  background: linear-gradient(to right, rgba(33, 109, 112, 0.34), transparent);
}
.NavbarMenuDesktop::after {
  right: 0;
  background: linear-gradient(to left, rgba(33, 109, 112, 0.34), transparent);
}

.NavbarMenuInner {
  overflow-x: auto; /* Горизонтальная прокрутка */
  scroll-behavior: smooth; /* Плавная прокрутка */
  -webkit-overflow-scrolling: touch; /* Плавность на iOS */
  white-space: nowrap; /* Ссылки в одну строку */
  scrollbar-width: none; /* Скрыть полосу прокрутки (Firefox) */
  display: flex;
  align-items: center;
  user-select: none; /* Отключаем выделение текста при перетаскивании */
  /* Скрыть полосу прокрутки */
  scrollbar-width: none; /* Firefox */
  /* Скрыть полосу прокрутки (Chrome, Safari) */
}
.NavbarMenuInner::-webkit-scrollbar {
  display: none;
}
.NavbarMenuInner {
  /* Удаляем скрытие полосы прокрутки для кроссбраузерности */
  scrollbar-width: auto; /* Firefox */
  -ms-overflow-style: auto; /* IE/Edge */
}
.NavbarMenuInner::-webkit-scrollbar {
  height: 8px; /* Явная высота полосы прокрутки */
}
.NavbarMenuInner::-webkit-scrollbar-track {
  background: transparent; /* Прозрачный фон трека */
}
.NavbarMenuInner::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3); /* Полупрозрачный бегунок */
  border-radius: 4px;
}
.NavbarMenuInner::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5); /* Цвет при наведении */
}
.NavbarMenuInner {
  /* Стили для ссылок */
}
.NavbarMenuInner .NavBarLink {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 14px;
  color: #00d3db;
  text-decoration: none;
  display: inline-block;
  pointer-events: auto;
  z-index: 5;
  transition: color 0.2s ease;
}
.NavbarMenuInner .NavBarLink::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.NavbarMenuInner .NavBarLink:hover, .NavbarMenuInner .NavBarLink:focus-visible {
  color: #028489;
}
.NavbarMenuInner .NavBarLink:hover::after, .NavbarMenuInner .NavBarLink:focus-visible::after {
  opacity: 0.4;
  transform: scaleX(1);
}
.NavbarMenuInner .NavBarLink:focus-visible {
  outline: none;
}
.NavbarMenuInner .NavBarLink[style*="opacity: 0.5"] {
  cursor: not-allowed;
}
.NavbarMenuInner .NavBarLinkLabel {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
@media only screen and (min-width: 1025px) {
  .NavbarMenuInner {
    padding: 0 10px;
  }
  .NavbarMenuInner .NavBarLink {
    font-size: 17px;
    padding: 2px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .NavbarMenuInner {
    padding: 0 8px;
  }
  .NavbarMenuInner .NavBarLink {
    font-size: 15px;
    padding: 6px 8px;
  }
}
@media only screen and (max-width: 767px) {
  .NavbarMenuInner {
    padding: 0 6px;
  }
  .NavbarMenuInner .NavBarLink {
    font-size: 14px;
    padding: 5px 6px;
  }
}
@media only screen and (max-width: 390px) {
  .NavbarMenuInner {
    padding: 0 6px;
  }
  .NavbarMenuInner .NavBarLink {
    font-size: 13px;
    padding: 5px 6px;
  }
}

/* NavBar.module.scss */
.NavBarLinkactive {
  color: #028489 !important;
}
.NavBarLinkactive::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

.tickerWrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  font-size: 0.9rem;
  line-height: 1.4;
  background: linear-gradient(120deg, rgba(0, 211, 219, 0.18), rgba(0, 122, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-left: none;
  border-right: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(3, 31, 37, 0.12);
}

.tickerWrapper::before,
.tickerWrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.tickerWrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

.tickerWrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

.ticker {
  display: flex;
  width: 200%;
  min-width: 200%;
  will-change: transform;
  animation: ticker-loop var(--ticker-duration, 24s) linear infinite;
}

.tickerGroup {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--ticker-gap, 48px);
  white-space: nowrap;
  width: 50%;
  min-width: 50%;
  padding-left: var(--ticker-gap, 48px);
  padding-right: var(--ticker-gap, 48px);
  box-sizing: border-box;
  flex: 0 0 50%;
}

.tickerStatic {
  min-width: 100%;
  justify-content: center;
  animation: none;
  padding-left: 0;
}

.tickerWrapper:hover .ticker {
  animation-play-state: paused;
}

.tickerItem {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #072026;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.tickerLink {
  color: #0046ff;
  text-decoration: none;
  font-weight: 500;
}
.tickerLink:hover {
  text-decoration: underline;
}

.PromoText {
  font-weight: 600;
}

.tickerEmpty {
  padding: 8px;
  text-align: center;
  color: #333;
}

.Tickerpromo {
  font-weight: 800;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@keyframes ticker-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .tickerWrapper {
    font-size: 0.85rem;
    padding: 6px 0;
    border-width: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .tickerGroup {
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.select {
  position: relative;
  font-family: "Noto Color Emoji", sans-serif;
  max-width: 110px;
  z-index: 200;
}

.selectOption {
  color: white;
  padding: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 5px;
}
.selectOption:hover {
  background: linear-gradient(135deg, #73cce2, #2e959c);
}

.selectDropdown {
  position: fixed;
  border-radius: 12px;
  background: rgba(11, 169, 180, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(3, 31, 37, 0.35);
  z-index: 1400;
  height: 160px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  /* Shadow effect at top and bottom */
}
.selectDropdown::before, .selectDropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 60;
  pointer-events: none;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease; /* Smooth fade */
}
.selectDropdown::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}
.selectDropdown::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}
.selectDropdown {
  /* Show shadows when respective classes are applied */
}
.selectDropdown.topShadow::before {
  opacity: 1;
}
.selectDropdown.bottomShadow::after {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .selectDropdown {
    height: 120px;
  }
}

.selectDropdownStatic {
  position: relative;
  border-radius: 12px;
  background: rgba(11, 169, 180, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(3, 31, 37, 0.35);
  z-index: 1400;
  height: 160px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  min-width: 90px;
}
@media only screen and (max-width: 767px) {
  .selectDropdownStatic {
    height: 120px;
  }
}

.selectOptionLink {
  color: white;
  padding: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 5px;
  text-decoration: none;
  display: block;
}
.selectOptionLink:hover {
  background: linear-gradient(135deg, #73cce2, #2e959c);
}

.selectContent {
  overflow: auto;
  height: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  overflow-y: auto;
  background: linear-gradient(135deg, #73cce2, #2e959c);
}
.selectContent::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.selectTrigger {
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 12px;
  width: 41px;
  min-width: 31px;
  max-width: 100px;
}
@media only screen and (max-width: 1614px) {
  .selectTrigger {
    font-size: 11px;
    bottom: -28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .selectTrigger {
    font-size: 11px;
    bottom: -28px;
  }
}
@media only screen and (max-width: 767px) {
  .selectTrigger {
    font-size: 10px;
    bottom: -27px;
  }
}
@media only screen and (max-width: 390px) {
  .selectTrigger {
    font-size: 9px;
    bottom: -26px;
    min-width: 27px;
    width: 27px;
  }
}

.SelectComponent {
  position: relative;
}

.SelectComponent:has(.Popup[open]) .Trigger {
  background: rgba(255, 255, 255, 0.14);
}

.Trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  min-width: 31px;
  min-height: 1rem;
  padding: 0;
  border-radius: 4px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  user-select: none;
  box-shadow: none;
  transition: background-color 0.2s ease;
  appearance: none;
  margin-right: 4px;
}

.Trigger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.Trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.TriggerValue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
}

.Flag {
  display: inline-block;
  width: 14px;
  height: 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  flex: 0 0 auto;
}

.FlagRu {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 33.33%, #1858c1 33.33%, #1858c1 66.66%, #d93030 66.66%, #d93030 100%);
}

.FlagEn {
  background: linear-gradient(90deg, transparent 42%, #ffffff 42%, #ffffff 58%, transparent 58%), linear-gradient(180deg, transparent 38%, #ffffff 38%, #ffffff 62%, transparent 62%), linear-gradient(90deg, transparent 46%, #cf3131 46%, #cf3131 54%, transparent 54%), linear-gradient(180deg, transparent 42%, #cf3131 42%, #cf3131 58%, transparent 58%), #143f8f;
}

.FlagZh {
  background: radial-gradient(circle at 28% 30%, #ffd54a 0 16%, transparent 17%), #d12828;
}

.Popup {
  position: fixed;
  inset: auto auto auto auto;
  top: var(--language-popup-top, 0);
  left: var(--language-popup-left, 0);
  width: 94px;
  max-height: 156px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  background: rgba(14, 155, 169, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(3, 31, 37, 0.32);
  padding: 4px;
  color: #ffffff;
  opacity: 0;
  transform-origin: top right;
  transform: translateY(-8px) scale(0.92);
  transition: opacity 0.18s ease, transform 0.18s ease;
  margin: 0;
  max-width: none;
}

.Popup::backdrop {
  background: transparent;
}

.Popup[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@starting-style {
  .Popup[open] {
    opacity: 0;
    transform: translateY(-8px) scale(0.92);
  }
}
.PopupList {
  overflow: auto;
  max-height: 148px;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(115, 204, 226, 0.96), rgba(46, 149, 156, 0.98));
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 8px;
  padding: 3px;
}

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

.OptionLink {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  padding: 8px 9px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.OptionLink:hover,
.OptionLink[aria-current=true] {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-1px);
}

@media only screen and (max-width: 767px) {
  .Trigger {
    width: 27px;
    min-width: 27px;
  }
  .TriggerValue {
    font-size: 10px;
    gap: 2px;
  }
  .Flag {
    width: 12px;
    height: 9px;
  }
  .Popup {
    top: var(--language-popup-top, calc(var(--header-height, 172px) - 0.45rem));
    left: var(--language-popup-left, 0);
    width: 86px;
    max-height: 120px;
  }
  .PopupList {
    max-height: 112px;
  }
  .OptionLink {
    padding: 7px 8px;
    font-size: 10px;
  }
}

@charset "UTF-8";
.menuContainerMenuServices {
  position: relative;
  width: 100%;
  background: #f2fbff;
  color: #219095;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 10px 25px rgba(4, 70, 82, 0.08);
  transition: transform 0.3s ease;
}

.mainMenuMenuServices {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px;
  /* Десктоп (>1024px) */
}
@media only screen and (max-width: 1413px) {
  .mainMenuMenuServices {
    gap: 3px 5px;
  }
}
.mainMenuMenuServices {
  /* Десктоп (>1024px) */
}
@media only screen and (max-width: 1025px) {
  .mainMenuMenuServices {
    gap: 2px 5px;
  }
}
.mainMenuMenuServices {
  /* Планшеты (768px–1024px) */
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mainMenuMenuServices {
    gap: 1px 3px;
  }
}
.mainMenuMenuServices {
  /* Мобильные (<768px) */
}
@media only screen and (max-width: 767px) {
  .mainMenuMenuServices {
    padding: 3px;
    justify-content: space-evenly;
    gap: 0px 1px;
  }
}
@media only screen and (max-width: 390px) {
  .mainMenuMenuServices {
    padding: 0px;
    justify-content: space-evenly;
    gap: 0px 1px;
  }
}

.menuItemMenuServices {
  position: relative;
  cursor: pointer;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #e3f6ff);
  border: 1px solid rgba(2, 132, 137, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 12px 20px rgba(13, 87, 107, 0.08), 0 2px 8px rgba(11, 89, 103, 0.12);
  color: #04424a;
  outline: none;
  user-select: none;
  text-decoration: none;
  max-width: 100%;
}
.menuItemMenuServices:hover, .menuItemMenuServices:focus {
  background: linear-gradient(145deg, #ecfbff, #d6f2ff);
  border-color: rgba(2, 132, 137, 0.35);
  color: #024d53;
  box-shadow: 0 16px 28px rgba(12, 78, 95, 0.18), 0 6px 12px rgba(7, 61, 74, 0.12);
  transform: translateY(-1px);
}
.menuItemMenuServices:active {
  background: linear-gradient(145deg, #d0ecfb, #bee2f6);
  border-color: rgba(2, 132, 137, 0.45);
  color: #024044;
  box-shadow: 0 6px 12px rgba(1, 35, 43, 0.22);
  transform: translateY(0);
}
.menuItemMenuServices:focus-visible {
  outline: 2px solid rgba(0, 182, 193, 0.45);
  outline-offset: 3px;
}
@media only screen and (max-width: 1614px) {
  .menuItemMenuServices {
    padding: 6px 10px;
    gap: 4px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .menuItemMenuServices {
    padding: 5px 8px;
    gap: 3px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .menuItemMenuServices {
    padding: 4px 7px;
    gap: 2px;
    font-size: 13px;
    white-space: normal;
  }
}
@media only screen and (max-width: 390px) {
  .menuItemMenuServices {
    padding: 1px 2px;
    gap: 1px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 350px) {
  .menuItemMenuServices {
    padding: 1px 2px;
    gap: 1px;
    font-size: 11px;
  }
}
@media only screen and (max-height: 767px) {
  .menuItemMenuServices {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

.menuItemMenuServices:hover {
  background: linear-gradient(145deg, #f0fbff, #e0f4ff);
}
.menuItemMenuServices:hover .CatNameMenuServices {
  color: #036872;
}

.menuItemMenuServices.active {
  background: linear-gradient(145deg, #d4f0ff, #b6e6ff);
  border-color: rgba(2, 132, 137, 0.55);
  box-shadow: 0 18px 32px rgba(7, 67, 83, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #024f5b;
}
.menuItemMenuServices.active .CatNameMenuServices {
  color: #024f5b;
}

.CatNameMenuServices {
  color: #00d3db;
  white-space: nowrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
@media only screen and (max-width: 1614px) {
  .CatNameMenuServices {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .CatNameMenuServices {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .CatNameMenuServices {
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }
}
@media only screen and (max-width: 520px) {
  .CatNameMenuServices {
    font-size: 12px;
  }
}
@media only screen and (max-width: 390px) {
  .CatNameMenuServices {
    font-size: 12px;
  }
}
@media only screen and (max-width: 350px) {
  .CatNameMenuServices {
    font-size: 11px;
  }
}

.CatNameMenuServices.active {
  color: #02323a;
}

.iconMenuServices {
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .iconMenuServices {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .iconMenuServices img {
    width: 27px !important;
    height: 27px !important;
  }
}
@media only screen and (max-width: 520px) {
  .iconMenuServices {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .iconMenuServices img {
    width: 24px !important;
    height: 24px !important;
  }
}
@media only screen and (max-width: 420px) {
  .iconMenuServices {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .iconMenuServices img {
    width: 19px !important;
    height: 19px !important;
  }
}
@media only screen and (max-width: 340px) {
  .iconMenuServices {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .iconMenuServices img {
    width: 17px !important;
    height: 17px !important;
  }
}

.DentalMenuTopItemMenuServices {
  position: relative;
  box-shadow: none;
  max-width: 100%;
}

.subMenuMenuServices {
  position: absolute;
  display: none;
}

.subMenuMenuServices,
.subSubMenuMenuServices,
.subSubSubMenuMenuServices,
.subSubSubSubMenuMenuServices {
  position: absolute;
  display: none;
  background: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* Более глубокая тень */
  border-radius: 8px 8px 0px 0px;
  z-index: 100;
  animation: fadeIn 0.3s ease; /* Анимация появления */
  transform-origin: top left;
}

.subMenuMenuServices.active,
.subSubMenuMenuServices.active,
.subSubSubMenuMenuServices.active,
.subSubSubSubMenuMenuServices.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.menuItemMenuServices:active, .menuItemMenuServices.active {
  color: #219095 !important;
  border-color: #219095 !important;
}

.menuItemMenuServices:active .CatNameMenuServices,
.menuItemMenuServices.active .CatNameMenuServices {
  color: #219095 !important;
}

/* SEO-дерево: скрыто визуально для пользователя, но остается в SSR-разметке. */
.RobotsOnlyTree {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: normal;
}

.RobotsTreeList {
  margin: 0;
  padding-left: 16px;
}

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

.TechInfo {
  background: linear-gradient(135deg, rgb(201, 156, 190), #00d3db);
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-size: 14px;
  padding-inline: 3px;
  overflow-x: hidden;
  overflow-y: visible;
}
@media only screen and (max-width: 460px) {
  .TechInfo {
    gap: 0;
  }
}

.TechInfoSkeleton {
  background: linear-gradient(135deg, rgba(201, 156, 190, 0.35), rgba(0, 211, 219, 0.35));
  margin: 0 auto;
  padding: clamp(0.5rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  border-radius: 12px;
}

.TechInfoSkeletonRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.TechInfoSkeletonRow span {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(6, 32, 36, 0.15), rgba(255, 255, 255, 0.35));
  background-size: 200% 100%;
  animation: tech-info-skeleton 1.35s ease-in-out infinite;
}

@keyframes tech-info-skeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.ContactsPanel {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 420px) {
  .ContactsPanel {
    gap: 5px;
  }
}
@media only screen and (max-width: 375px) {
  .ContactsPanel {
    gap: 2px;
  }
}
@media only screen and (max-width: 340px) {
  .ContactsPanel {
    gap: 1px;
  }
}

.TouchBarItem {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 460px) {
  .TouchBarItem {
    font-size: 12px;
    gap: 3px;
  }
}
@media only screen and (max-width: 350px) {
  .TouchBarItem {
    font-size: 12px;
    gap: 1px;
  }
}

.TouchBarItem:hover {
  opacity: 0.8;
}

.TouchBarItemSocial {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.PhoneDesktopItem {
  display: inline-flex;
}

.PhoneMobileButton {
  display: none !important;
}

.TouchBarPhoneLink {
  gap: 6px;
}

.PhoneNumberText {
  display: inline;
}

.PhoneEmojiInverted {
  filter: brightness(0) invert(1);
}

@media only screen and (max-width: 880px) {
  .PhoneMobileButton {
    display: inline-flex !important;
  }
  .PhoneDesktopItem {
    display: none !important;
  }
  .PhoneNumberText {
    display: none;
  }
  .TouchBarPhoneLink {
    gap: 0;
  }
}
@media only screen and (max-width: 620px) {
  .PhoneMobileButton {
    display: inline-flex !important;
  }
  .PhoneDesktopItem {
    display: none !important;
  }
}
.AddressIconButton {
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  max-width: 18px;
}

.PhoneEmojiButton {
  width: 21px;
  height: 21px;
  min-width: 21px;
  min-height: 21px;
  max-width: 21px;
  max-height: 21px;
  border-radius: 50%;
  background: #10bf10;
  color: #00d3db;
  border: 1px solid #47c347;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 1.5px 6px rgba(97, 203, 228, 0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  padding: 0;
}

.PhoneEmojiButton:active,
.PhoneEmojiButton:hover {
  background: greenyellow;
  color: #fff;
  border-color: #4bb3c1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 1.5px 6px rgba(97, 203, 228, 0.18);
}

.AddressPopoverOverlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 24px);
  z-index: 2000;
}

.AddressPopoverToggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.AddressPopoverToggle:not(:checked) + .AddressPopoverOverlay {
  display: none;
}

.AddressPopoverBackdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(6, 32, 36, 0.45);
  backdrop-filter: blur(6px);
}

.AddressPopover {
  position: relative;
  z-index: 1;
  width: min(92vw, 420px);
  max-width: 420px;
  max-height: min(100vh - 32px, 760px);
  overflow: auto;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f7fbfc);
  border: 1px solid rgba(2, 132, 137, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(6, 32, 36, 0.2);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.AddressPopoverTitle {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #062024;
  margin-bottom: 4px;
  text-align: center;
}

.AddressPopoverText {
  font-size: 15px;
  color: #333;
  text-align: center;
  margin-bottom: 6px;
}

.AddressPopoverLink {
  color: #00d3db;
  text-align: center;
  text-decoration: underline;
  font-size: 15px;
  margin-bottom: 8px;
}

.AddressPopoverClose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(2, 132, 137, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #062024;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(10, 40, 70, 0.14);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.AddressPopoverClose:hover, .AddressPopoverClose:focus-visible {
  background: #ffffff;
  border-color: rgba(2, 132, 137, 0.22);
  transform: translateY(-1px);
}
.AddressPopoverClose {
  font-size: 15px;
  margin-top: 4px;
  align-self: center;
}

.AddressMarqueeWrap {
  overflow: hidden;
  width: 110px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  position: relative;
  height: 18px;
}

.AddressMarqueeResponsive {
  display: none;
}

.AddressInlineDesktop {
  margin-left: 6px;
  display: inline;
}

@media only screen and (min-width: 621px) and (max-width: 1339px) {
  .AddressMarqueeResponsive {
    display: inline-block;
  }
  .AddressInlineDesktop {
    display: none;
  }
}
@media only screen and (max-width: 620px) {
  .AddressMarqueeResponsive,
  .AddressInlineDesktop {
    display: none;
  }
}
.AddressMarquee {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  color: #fff;
  will-change: transform;
  animation: marquee-loop 7s linear infinite;
}

.AddressMarqueeInner {
  display: inline-block;
  white-space: nowrap;
  padding-right: 32px;
}

@keyframes marquee-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.Toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.Toggle:not(:checked) + .Overlay {
  display: none;
}

.Overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 24px);
  z-index: 2000;
}

.Backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(6, 32, 36, 0.45);
  backdrop-filter: blur(6px);
}

.Dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 420px);
  max-width: 420px;
  max-height: min(100vh - 32px, 760px);
  overflow: auto;
  padding: 24px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f7fbfc);
  border: 1px solid rgba(2, 132, 137, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(6, 32, 36, 0.2);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.Title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #062024;
  margin-bottom: 8px;
  text-align: center;
}

.Item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00d3db;
  color: #fff;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 17px;
  text-decoration: none;
  margin-bottom: 4px;
  transition: background 0.2s, opacity 0.2s;
}

.Item:active,
.Item:hover {
  background: #4bb3c1;
  opacity: 0.85;
}

.CloseButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(2, 132, 137, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #062024;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(10, 40, 70, 0.14);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.CloseButton:hover, .CloseButton:focus-visible {
  background: #ffffff;
  border-color: rgba(2, 132, 137, 0.22);
  transform: translateY(-1px);
}
.CloseButton {
  font-size: 15px;
  margin-top: 8px;
  align-self: center;
}

.SchedulePanel {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
}
@media only screen and (max-width: 880px) {
  .SchedulePanel {
    gap: 3px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 460px) {
  .SchedulePanel {
    gap: 2px;
  }
}
@media only screen and (max-width: 315px) {
  .SchedulePanel {
    gap: 1px;
  }
}

.ActionGroup {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
}

.IconLabelItem {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  color: white;
  white-space: nowrap;
}

.IconLabelGlyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media only screen and (max-width: 880px) {
  .IconLabelGlyph {
    font-size: 13px;
  }
}

.IconLabelText {
  display: inline;
}

@media only screen and (max-width: 1339px) {
  .IconLabelText {
    display: none;
  }
}

.TouchBarRoot {
  position: relative;
  gap: 8px;
}

.TouchBarItem {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  text-decoration: none;
}
@media only screen and (max-width: 460px) {
  .TouchBarItem {
    font-size: 12px;
    gap: 3px;
  }
}
@media only screen and (max-width: 350px) {
  .TouchBarItem {
    font-size: 12px;
    gap: 1px;
  }
}

@media only screen and (max-width: 880px) {
  .TouchBarItem {
    gap: 3px;
    font-size: 12px;
  }
}
.TouchBarItemWork {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
@media only screen and (max-width: 460px) {
  .TouchBarItemWork {
    font-size: 12px;
  }
}
@media only screen and (max-width: 315px) {
  .TouchBarItemWork {
    gap: 1px;
  }
}

.FallbackLabel {
  font-weight: 600;
}

.DayLabel {
  display: inline;
}

.HoursLabel {
  display: inline;
  white-space: nowrap;
  line-height: 10px;
}

@media only screen and (max-width: 880px) {
  .DayLabel {
    display: none;
  }
  .TouchBarItemWork {
    gap: 2px;
  }
}
@media only screen and (max-width: 620px) {
  .TouchBarItemWork {
    gap: 1px;
  }
  .HoursLabel {
    font-size: 12px;
  }
}
.CalendarEmojiButton {
  width: 21px;
  height: 21px;
  min-width: 21px;
  min-height: 21px;
  max-width: 21px;
  max-height: 21px;
  border-radius: 50%;
  color: #00d3db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 1.5px 6px rgba(97, 203, 228, 0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  padding: 0;
}

@media only screen and (max-width: 880px) {
  .CalendarEmojiButton {
    width: 17px;
    height: 13px;
    min-width: 17px;
    min-height: 13px;
    max-width: 17px;
    max-height: 13px;
    font-size: 13px;
    margin-top: 2px;
  }
}
.CalendarEmojiButton:active,
.CalendarEmojiButton:hover {
  background: greenyellow;
  color: #fff;
  border-color: #4bb3c1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 1.5px 6px rgba(97, 203, 228, 0.18);
}

.StatusCircle {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  align-self: center;
}

.Open {
  background-color: #18b718;
}

.Closed {
  background-color: #dc3545;
}

.Pending {
  background-color: gray;
}

.DayOffLabel {
  font-weight: 600;
  color: #dc2626;
}

.EmptyLabel {
  font-weight: 600;
  color: #dc2626;
}

.SelectFallback {
  color: rgba(255, 255, 255, 0.7);
}

.CalendarTrigger {
  display: inline-flex;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  appearance: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.CalendarDrawer {
  width: min(360px, 92vw);
}

.CalendarDrawerHeader {
  background: #f7fafc;
}

.CalendarDrawerTitle {
  color: #062024;
}

.CalendarDrawerClose {
  color: #062024;
}

.CalendarDrawerBody {
  padding: 16px;
  background: #ffffff;
}