.location-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5vw;
  cursor: pointer;
  flex: 1;
  align-items: center;
}
.icon-small {
  width: 1.2vw;
  margin-top: 0.1vw;
}
.dropdown-container {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.city-name {
  font-size: 1vw;
  font-weight: 500;
  line-height: 1;
  color:#fff;
}
.city-bottom-row {
  display: flex;
  align-items: center;
  gap: 0.4vw;
  margin-top: 0.1vw;
}
.arrow-icon {
  font-size: 0.5vw;
  color: rgb(255, 255, 255);
}
.city-label {
  font-size: 0.85vw;
  opacity: 0.8;
  line-height: 1;
  color:#fff;
}
#citySearch.city-list {
  top: 150%;
}
.city-list {
  position: absolute;
  top: 300%;
  left: 0px;
  background: white;
  color: rgb(51, 51, 51);
  padding: 0.5vw 0px;
  border-radius: 0.4vw;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
  z-index: 100;
  min-width: 10vw;
  list-style: none;
  width: 100vw;
  max-width: 50vw;
}
#citySearch.city-list li {
  width: 100%;
}
.city-list li {
  padding: 0.5vw 1vw;
  font-size: 0.85vw;
  width: 33%;
}
#citySearch #regionSearch {
  width: calc(100% - 40px);
}
.city-list {
  position: absolute;
  top: 300%;
  left: -400px;
  background: white;
  color: rgb(51, 51, 51);
  padding: 0.5vw 0px;
  border-radius: 0.4vw;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
  z-index: 100;
  min-width: 10vw;
  list-style: none;
  width: 100vw;
  max-width: 50vw;
}
.city-list li {
  padding: 0.5vw 1vw;
  font-size: 0.85vw;
  width: 33%;
}
#citySearch.city-list {
  top: 150%;
}
.city-list.show {
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
  height: 500px;
}
.city-list li.show {
  display: block;
}
.city-list li.hide {
  display: none;
}
li[data-city="Наши контакты"]{
	display: none;
}




















