city.css 2.23 KB
.modal-city {
  width: 100%;
  padding: 30px 280px 14px 240px;
  left: 0;
  top: 64px;
  border-radius: 0;
}
.modal-city--hidden {
  display: none;
}

.modal-city-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-city-top__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: #333B49;
  margin-right: 60px;
}
.modal-city-top__close {
  position: relative;
  cursor: pointer;
}
.modal-city-top__close:after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_314_27095)'%3E%3Cpath d='M4 40L0 36L16 20L0 4L4 0L20 16L36 0L40 4L24 20L40 36L36 40L20 24L4 40Z' fill='%23636B78'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_314_27095'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  top: -20px;
  right: -530px;
}

.modal-city-search:after {
  right: 20px;
}

.modal-city-content {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  line-height: 16px;
  color: #283C50;
  height: 700px;
}
.modal-city-content > :not(:last-child) {
  margin-bottom: 30px;
}

.city-content-column {
  max-width: 220px;
  width: 100%;
}

.city-main {
  max-width: 218px;
  width: 100%;
}
.city-main > :not(:first-child) {
  margin-top: 13px;
}
.city-main__item {
  cursor: pointer;
}
.city-main__item--active {
  color: #F5851A;
}

.modal-city-block {
  position: relative;
  max-width: 230px;
  width: 100%;
  margin-right: 50px;
}
.modal-city-block > :not(:last-child) {
  margin-bottom: 8px;
}
.modal-city-block__name {
  padding-left: 26px;
  cursor: pointer;
}
.modal-city-block__letter {
  position: absolute;
  top: 0;
  left: 0;
  color: #828CA0;
}

.modal-city-overlay {
  top: 64px;
}
.modal-city-overlay--hidden {
  display: none;
}