.city-switcher-wrapper {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.25rem;
}
.city-switcher-trigger {
  cursor: pointer;
    background: #000;
    margin-right: 10px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    padding: 0 8px;
    border-radius: 10px;
    font-weight: bold;
}
.city-switcher-trigger::after {
  content: ' ▼';
  font-size: 0.8em;
}
.city-switcher-list {
  display: none; /* Скрыт по умолчанию */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  width: auto;
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
}
.city-switcher-list.is-visible {
  display: block; /* Показывается JS */
}
.city-switcher-list li, .city-switcher-list ul {
  margin: 0!important;
  padding: 0;
}

.city-switcher-list a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}
.city-switcher-list a:hover {
  background-color: #f5f5f5;
}
