/* ============================================= */
/* ===== МОБИЛЬНЫЙ ХЕДЕР ===== */
/* ============================================= */

.mobile-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-family: 'Stolzl', sans-serif;
}


/* ───────────────────────────────────────────── */
/* ОСНОВНАЯ ПАНЕЛЬ */
/* ───────────────────────────────────────────── */

.mobile-header__bar {
  position: relative;
  z-index: 30; /* Самый высокий — всегда поверх */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;

  transition: all 0.3s ease;
}


/* ───────────────────────────────────────────── */
/* ЗАТЕМНЕНИЕ ФОНА */
/* ───────────────────────────────────────────── */

.mobile-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* Для мобильных браузеров */
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10; /* Ниже панелей */
}

.mobile-header.panel-open .mobile-header__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* ───────────────────────────────────────────── */
/* ВЫЕЗЖАЮЩИЕ ПАНЕЛИ */
/* ───────────────────────────────────────────── */

.mobile-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20; /* Выше overlay, ниже bar */
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12),
              0 5px 15px rgba(0, 0, 0, 0.06);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              transform 0.3s ease;
}

.mobile-panel.active {
  max-height: 80vh;
  opacity: 1;
  transform: translateY(0);
  overflow-y: auto;
}

/* ───── ГЛАВНАЯ СТРАНИЦА: прозрачный хедер ───── */

.main .mobile-header__bar {
  background: transparent;
  box-shadow: none;
}

/* Цвет элементов на прозрачном фоне */
.main .mobile-header__btn--burger {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.main .burger-line {
  background: #fff;
}

.main .mobile-header__btn--phone {
  background: rgba(149, 193, 31, 0.9);
  backdrop-filter: blur(10px);
}

.main .mobile-header__logo .logo-path-mobile {
  fill: #fff;
}

/* ───── СКРОЛЛ: появление фона ───── */

.mobile-header.scrolled .mobile-header__bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
}

/* Возвращаем обычные цвета при скролле даже на главной */
.main .mobile-header.scrolled .mobile-header__btn--burger {
  background: #5880c0;
  border: none;
  backdrop-filter: none;
}

.main .mobile-header.scrolled .burger-line {
  background: #fff;
}

.main .mobile-header.scrolled .mobile-header__btn--phone {
  background: linear-gradient(135deg, #95c11f 0%, #7aa51a 100%);
  backdrop-filter: none;
}

.main .mobile-header.scrolled .mobile-header__logo .logo-path-mobile {
  fill: #5880c0;
}

.mobile-header.scrolled .mobile-header__logo img {
  height: 30px;
}

.mobile-header.scrolled .mobile-header__btn {
  width: 40px;
  height: 40px;
}

.mobile-header.scrolled .burger-line {
  width: 18px;
}


/* ───── ПАНЕЛЬ ОТКРЫТА: единое целое ───── */

.mobile-header.panel-open .mobile-header__bar {
  /* Убираем тень — хедер и панель = одно целое */
  box-shadow: none;
  
  /* Белый фон всегда (даже на главной при открытой панели) */
  background: #fff;
  backdrop-filter: none;
  
  /* Нижний бордер-разделитель вместо тени */
  border-bottom: px solid rgba(0, 0, 0, 0.06);
}

/* На главной при открытой панели тоже белый */
.main .mobile-header.panel-open .mobile-header__bar {
  background: #fff;
}

.main .mobile-header.panel-open .mobile-header__logo .logo-path-mobile {
  fill: #5880c0;
}

.main .mobile-header.panel-open .mobile-header__btn--burger {
  background: #5880c0;
  border: none;
  backdrop-filter: none;
}

.main .mobile-header.panel-open .burger-line {
  background: #fff;
}

.main .mobile-header.panel-open .mobile-header__btn--phone {
  background: linear-gradient(135deg, #95c11f 0%, #7aa51a 100%);
  backdrop-filter: none;
}

/* Логотип */
.mobile-header__logo {
  display: flex;
  align-items: center;
}

.mobile-header__logo img {
  height: 36px;
  width: auto;
  transition: all 0.3s ease;
}


/* ===== КНОПКИ ДЕЙСТВИЙ ===== */

.mobile-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-header__btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Кнопка телефона */
.mobile-header__btn--phone {
  background: linear-gradient(135deg, #95c11f 0%, #7aa51a 100%);
  color: #fff;
}

.mobile-header__btn--phone:hover {
  transform: scale(1.05);
}

.mobile-header__btn--phone.active {
  background: linear-gradient(135deg, #7aa51a 0%, #5a8010 100%);
  border-radius: 12px 12px 12px 12px;
}

/* Бургер */
.mobile-header__btn--burger {
  background: #5880c0;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
}

.mobile-header__btn--burger:hover {
  transform: scale(1.05);
}

.mobile-header__btn--burger.active {
  background: #3d5a8a;
}

/* Линии бургера */
.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Бургер → Крестик */
.mobile-header__btn--burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-header__btn--burger.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-header__btn--burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================= */
/* ===== ВЫЕЗЖАЮЩИЕ ПАНЕЛИ ===== */
/* ============================================= */

.mobile-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 12;
  
  /* Панель визуально продолжает хедер */
  background: #fff;
  border-radius: 0 0 24px 24px;
  
  /* Тень только снизу и по бокам */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12),
              0 5px 15px rgba(0, 0, 0, 0.06);
  
  /* Анимация */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              transform 0.3s ease;
}

.mobile-panel.active {
  max-height: 80vh;
  opacity: 1;
  transform: translateY(0);
  overflow-y: auto;
}

.mobile-panel__inner {
  padding: 20px;
}


/* ===== ПАНЕЛЬ ТЕЛЕФОНОВ ===== */


.mobile-panel__title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 16px 0;
  text-align: center;
}

.mobile-panel__phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.mobile-panel__phone-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #f2f2f2;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-panel__phone-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(88, 128, 192, 0.2);
}

.mobile-panel__phone-item:active {
  transform: scale(0.98);
}

.mobile-panel__phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5880c0 0%, #3d5a8a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-panel__phone-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-panel__phone-number {
  font-size: 17px;
  font-weight: 600;
  color: #333;
}

.mobile-panel__phone-desc {
  font-size: 13px;
  color: #888;
}

/* Мессенджеры */
.mobile-panel__messengers {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.mobile-panel__messenger {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-panel__messenger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.mobile-panel__messenger--wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.mobile-panel__messenger--tg {
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

/* Часы */
.mobile-panel__hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
    font-size: 12px;
    color: #666;
    margin: 20px 0px;
}

.mobile-panel__hours svg {
  color: #5880c0;
  flex-shrink: 0;
}


/* ===== ПАНЕЛЬ МЕНЮ ===== */

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}


.mobile-nav__link svg {
  color: #5880c0;
  flex-shrink: 0;
}

.mobile-nav__link:hover {
  background: #edf4ff;
  transform: translateX(5px);
  color: #333;
}

.mobile-nav__link:active {
  transform: scale(0.98);
}

/* Акцентная ссылка */
.mobile-nav__link--accent {
  background: linear-gradient(135deg, #95c11f 0%, #7aa51a 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(149, 193, 31, 0.3);
}

.mobile-nav__link--accent svg {
  color: #fff;
}

.mobile-nav__link--accent:hover {
  background: linear-gradient(135deg, #a5d122 0%, #88b81e 100%);
  transform: translateX(5px);
  color: #fff;
}

/* CTA кнопка */
.mobile-panel__cta {
  margin-bottom: 20px;
}

.mobile-panel__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(88, 128, 192, 0.4);
  color: #fff;
  text-decoration: none;
}

.mobile-panel__cta-btn:active {
  transform: scale(0.98);
}

/* Соцсети */
.mobile-panel__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-bottom: 5px;
}


.mobile-panel__social-link:hover {
  background: #5880c0;
  color: #fff;
  transform: translateY(-2px);
}





/* ============================================= */
/* ===== СКРЫТИЕ НА ДЕСКТОПЕ ===== */
/* ============================================= */

@media (min-width: 961px) {
  .mobile-header {
    display: none;
  }
}


/* ============================================= */
/* ===== МАЛЕНЬКИЕ ЭКРАНЫ ===== */
/* ============================================= */

@media (max-width: 374px) {
  .mobile-header__bar {
    padding: 10px 12px;
  }
  
  .mobile-header__logo img {
    height: 30px;
  }
  
  .mobile-header__btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  
  .mobile-panel__inner {
    padding: 16px;
  }
  
  .mobile-nav__link {
    padding: 12px 14px;
    font-size: 15px;
  }
  
  .mobile-panel__phone-number {
    font-size: 16px;
  }
}

/* ============================================= */
/* ===== ПАНЕЛЬ МЕНЮ — РАСШИРЕННЫЕ СТИЛИ ===== */
/* ============================================= */

.mobile-panel--menu .mobile-panel__inner {
  padding: 10px 16px 20px;
}

/* ===== Заголовки групп ===== */

.mobile-nav__group-title {
  display: block;
  padding: 4px 16px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Разделитель ===== */

.mobile-nav__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%);
  margin: 12px 0;
}

/* ===== Навигационные ссылки ===== */

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav__link svg {
  color: #5880c0;
  flex-shrink: 0;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.mobile-nav__link:hover {
  background: #f0f7ff;
  color: #333;
  text-decoration: none;
}

.mobile-nav__link:hover svg {
  opacity: 1;
}

.mobile-nav__link:active {
  transform: scale(0.98);
  background: #e5f0ff;
}

/* ===== Акцентные ссылки ===== */

.mobile-nav__link--accent {
  background: linear-gradient(135deg, #95c11f 0%, #7aa51a 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(149, 193, 31, 0.25);
}

.mobile-nav__link--accent svg {
  color: #fff;
  opacity: 1;
}

.mobile-nav__link--accent:hover {
  background: linear-gradient(135deg, #a5d122 0%, #88b81e 100%);
  color: #fff;
  box-shadow: 0 5px 20px rgba(149, 193, 31, 0.35);
  transform: translateX(3px);
}


/* ===== Нижний блок ===== */

.mobile-panel__bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
}

/* CTA кнопка звонка */
.mobile-panel__cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #5880c0 0%, #3d5a8a 100%);
  color: #fff;
  font-family: 'Stolzl', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(88, 128, 192, 0.3);
  transition: all 0.2s ease;
}

.mobile-panel__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 128, 192, 0.4);
  color: #fff;
  text-decoration: none;
}

.mobile-panel__cta-btn:active {
  transform: scale(0.98);
}

/* Соцсети в нижнем блоке */
.mobile-panel__social {
  display: flex;
  gap: 8px;
}

.mobile-panel__social-link {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f0f2f5;
  color: #5880c0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-panel__social-link:hover {
  background: #5880c0;
  color: #fff;
  transform: scale(1.05);
}


/* ===== Стрелка у телефона ===== */

.mobile-panel__phone-arrow {
  color: #ccc;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mobile-panel__phone-item:hover .mobile-panel__phone-arrow {
  color: #5880c0;
  transform: translateX(3px);
}


/* ============================================= */
/* ===== АНИМАЦИЯ ЭЛЕМЕНТОВ МЕНЮ ===== */
/* ============================================= */

/* Каждый элемент меню появляется с задержкой */
.mobile-panel.active .mobile-nav__link,
.mobile-panel.active .mobile-nav__group-title,
.mobile-panel.active .mobile-nav__divider,
.mobile-panel.active .mobile-panel__bottom,
.mobile-panel.active .mobile-panel__phone-item,
.mobile-panel.active .mobile-panel__messengers,
.mobile-panel.active .mobile-panel__hours,
.mobile-panel.active .mobile-panel__title {
  animation: slideItemIn 0.3s ease forwards;
  opacity: 0;
}

@keyframes slideItemIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Задержки для каскадного эффекта */
.mobile-panel.active .mobile-panel__title { animation-delay: 0.05s; }

.mobile-panel.active .mobile-panel__phone-item:nth-child(1) { animation-delay: 0.08s; }
.mobile-panel.active .mobile-panel__phone-item:nth-child(2) { animation-delay: 0.11s; }
.mobile-panel.active .mobile-panel__messengers { animation-delay: 0.14s; }
.mobile-panel.active .mobile-panel__hours { animation-delay: 0.17s; }

.mobile-panel.active .mobile-nav__link:nth-child(1) { animation-delay: 0.03s; }
.mobile-panel.active .mobile-nav__link:nth-child(2) { animation-delay: 0.06s; }
.mobile-panel.active .mobile-nav__link:nth-child(3) { animation-delay: 0.09s; }
.mobile-panel.active .mobile-nav__link:nth-child(4) { animation-delay: 0.12s; }
.mobile-panel.active .mobile-nav__link:nth-child(5) { animation-delay: 0.15s; }
.mobile-panel.active .mobile-nav__link:nth-child(6) { animation-delay: 0.18s; }
.mobile-panel.active .mobile-nav__link:nth-child(7) { animation-delay: 0.21s; }
.mobile-panel.active .mobile-nav__link:nth-child(8) { animation-delay: 0.24s; }

.mobile-panel.active .mobile-nav__group-title { animation-delay: 0.02s; }
.mobile-panel.active .mobile-nav__divider { animation-delay: 0.05s; }
.mobile-panel.active .mobile-panel__bottom { animation-delay: 0.27s; }


/* ============================================= */
/* ===== СКРОЛЛБАР В ПАНЕЛИ ===== */
/* ============================================= */

.mobile-panel::-webkit-scrollbar {
  width: 4px;
}

.mobile-panel::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-panel::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 4px;
}

.mobile-panel::-webkit-scrollbar-thumb:hover {
  background: #b0b0b0;
}


/* ============================================= */
/* ===== МАЛЕНЬКИЕ ЭКРАНЫ ===== */
/* ============================================= */

@media (max-width: 374px) {
  .mobile-panel--menu .mobile-panel__inner {
    padding: 8px 12px 16px;
  }
  
  .mobile-nav__link {
    padding: 10px 12px;
    font-size: 14px;
    gap: 10px;
  }
  
  .mobile-nav__link svg {
    width: 18px;
    height: 18px;
  }
  
  .mobile-nav__group-title {
    font-size: 11px;
    padding: 4px 12px 6px;
  }
  
  .mobile-panel__cta-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .mobile-panel__social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
}
/* ============================================= */
/* ===== ПОЛОСКА-ИНДИКАТОР (iOS STYLE) ===== */
/* ============================================= */

.mobile-panel__handle {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 20px 16px;
  background: linear-gradient(to top, #fff 60%, transparent);
  cursor: grab;
  touch-action: none; /* Важно для корректной работы свайпа */
  user-select: none;
  z-index: 10;
}

.mobile-panel__handle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}

/* Полоска */
.mobile-panel__handle-bar {
  width: 48px;
  height: 5px;
  background: #d0d0d0;
  border-radius: 3px;
  transition: all 0.2s ease;
  position: relative;
}

/* Анимация пульсации для привлечения внимания */
.mobile-panel.active .mobile-panel__handle-bar {
  animation: handlePulse 2s ease-in-out 1s 2;
}

@keyframes handlePulse {
  0%, 100% {
    transform: scaleX(1);
    background: #d0d0d0;
  }
  50% {
    transform: scaleX(1.2);
    background: #5880c0;
  }
}

/* Подсказка */
.mobile-panel__handle-hint {
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
}

/* При наведении / касании */
.mobile-panel__handle:hover .mobile-panel__handle-bar,
.mobile-panel__handle:active .mobile-panel__handle-bar,
.mobile-panel__handle.dragging .mobile-panel__handle-bar {
  background: #5880c0;
  transform: scaleX(1.3);
  box-shadow: 0 2px 10px rgba(88, 128, 192, 0.3);
}

.mobile-panel__handle:hover .mobile-panel__handle-hint,
.mobile-panel__handle:active .mobile-panel__handle-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Состояние перетаскивания */
.mobile-panel__handle.dragging {
  cursor: grabbing;
}

.mobile-panel__handle.dragging .mobile-panel__handle-bar {
  background: #95c11f;
  transform: scaleX(1.5);
}


/* ============================================= */
/* ===== ВИЗУАЛЬНАЯ ОБРАТНАЯ СВЯЗЬ ПРИ СВАЙПЕ ===== */
/* ============================================= */

/* Панель немного поднимается при свайпе */
.mobile-panel.swiping {
  transition: transform 0.1s ease-out;
}

.mobile-panel.closing {
  transition: transform 0.25s ease-in, opacity 0.25s ease-in;
  transform: translateY(-100%);
  opacity: 0;
}


/* ============================================= */
/* ===== АДАПТАЦИЯ ДЛЯ ПАНЕЛИ С ПОЛОСКОЙ ===== */
/* ============================================= */

.mobile-panel__inner {
  padding-bottom: 0px; /* Место для полоски */
}

/* Для панели телефонов градиент другой */
.mobile-panel--phone .mobile-panel__handle {
  background: linear-gradient(to top, #f0f8ff 60%, transparent);
}

.mobile-panel--phone .mobile-panel__handle::before {
  background: linear-gradient(to top, #f0f8ff, transparent);
}


/* ============================================= */
/* ===== МАЛЕНЬКИЕ ЭКРАНЫ ===== */
/* ============================================= */

@media (max-width: 374px) {
  .mobile-panel__handle {
    padding: 10px 16px 14px;
  }
  
  .mobile-panel__handle-bar {
    width: 40px;
    height: 4px;
  }
  
  .mobile-panel__handle-hint {
    font-size: 10px;
  }
}