/*
  Осторожно!
  Данные стили помимо фильтров используются для попапа выбора региона на каталоге специалистов:
  https://www.cian.ru/agentstva/
 */
.popup-list {
  padding: 20px 16px;
  font-family: Lato, LatoWeb, 'PT Sans', Arial;
  color: #121212;
}
.popup-list:before,
.popup-list__section:before,
.popup-list:after,
.popup-list__section:after {
  content: " ";
  display: table;
  box-sizing: border-box;
}
.popup-list:after,
.popup-list__section:after {
  clear: both;
}
.popup-list__column {
  position: relative;
  width: 25%;
  float: left;
  box-sizing: border-box;
}
.popup-list__column_w20 {
  padding-bottom: 5px;
  width: 20%;
}
.popup-list__group {
  position: relative;
  padding-bottom: 25px;
}
.popup-list__group-title {
  padding-left: 16px;
  padding-right: 10px;
  display: inline-block;
  color: #060606;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.popup-list__group-title[ng-click] {
  cursor: pointer;
}
.popup-list__group-title[ng-click]:hover {
  color: #0084ff;
}
.popup-list__group-subtitle {
  margin-bottom: 10px;
  padding-left: 16px;
  font-size: 14px;
  font-style: italic;
  line-height: 18px;
}
.popup-list__group-subtitle:empty {
  display: none;
}
.popup-list__list {
  margin: 0;
  padding: 0;
}
.popup-list__item {
  margin: 2px 0;
  border-radius: 15px;
  cursor: pointer;
}
.popup-list__item:hover {
  color: #0084ff;
}
.popup-list__item:before {
  content: "";
}
.popup-list__item-text {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 16px;
  padding-right: 15px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.popup-list__item_selected .popup-list__item-text {
  position: relative;
  background-color: #2084e7;
  color: #fff;
  border-radius: 15px;
}
.popup-list__item_cancelable.popup-list__item_selected .popup-list__item-text {
  padding-right: 30px;
}
.popup-list__item_cancelable.popup-list__item_selected .popup-list__item-text:after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '×';
  font-size: 20px;
  line-height: 1;
}
