.select-city__modal-wrap {
  margin: 9vh auto;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  width: 800px;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
span.sity_title_list {
  font-size: 26px;
  padding-bottom: 40px;
  text-align: center;
}

p.select-city__modal__list__item {
  width: 100%;
  display: flex;
  height: 40px;
  font-weight: 400;
  align-items: center;
}
.select-city__modal__list__item {
 padding: 10px;
 cursor: pointer;
 transition: opacity 0.3s;
  transform: scale(1);
}

.select-city__modal__list__item.dropdown-trigger {
 font-weight: bold;
}

.select-city__modal__list__item.hidden {
 display: none;
 opacity: 0;
 pointer-events: none;
 transform: scale(0.95);
}

.select-city__modal__list__item.dropdown-trigger::after {
  content: ' ';
  margin-left: 8px;
  margin-bottom: 6px;
  width: 10px;
  height: 20px;
  background: url(img/row_down.svg) no-repeat center;
}

.select-city__modal__list__item:not(.dropdown-trigger) {
 animation: slideDown 0.3s ease;
}

@keyframes slideDown {
 from { transform: translateY(-10px); opacity: 0; }
 to { transform: translateY(0); opacity: 1; }
}
.dropdown-trigger {
 font-weight: bold;
 color: #333;
}
.select-city__modal__list__item:hover, .select-city__modal__list__item:focus, .select-city__modal__list__item:active {
  color: #333 !important;
  font-weight: 600;
}
.select-city__dropdown {
  background-color: #ffffff;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.22);
  width: auto;
  padding: 11px 5px 17px 5px;

}