.city-modal {
  max-width: 1024px;
  height: 635px;
  transition: 0.4s all;
  padding: 70px 25px 25px 25px;
  background: #FFFFFF;
  box-shadow: 10px 10px 20px rgba(68, 86, 92, 0.15), -10px 10px 20px rgba(68, 86, 92, 0.15);
  border-radius: 20px;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 600 !important;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  opacity: 0;
}

.city-modal > div {
  transition: 0.4s all;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  opacity: 0;
}

.air-overlay-city {
  transition: 0.4s all;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
}

.city-input-section {
  z-index: 60;
  position: relative;
}

.city-modal-scroll {
  z-index: 50;
}

.air-overlay-city.active {
  visibility: visible;
  transition: 0.4s all;
  opacity: 0.3;
  z-index: 500;
  background: #44565C;
}

.city-modal.active > div {
  -webkit-animation: modalComeIn 0.25s ease;
  animation: modalComeIn 0.25s ease;
  visibility: visible;
  transition: 0.4s all;
  opacity: 1;
}

.city-modal.active {
  -webkit-animation: modalComeIn 0.25s ease;
  animation: modalComeIn 0.25s ease;
  visibility: visible;
  transition: 0.4s all;
  opacity: 1;
}

.city-modal-block-head {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 25px;
  width: 100%;
  left: 0;
  padding: 0 25px;
}

.city-modal-scroll {
  overflow: auto;
  height: 70vh;
  max-height: 435px;
  padding: 0 20px 0 0;
  margin: 20px 0 0 0;
}

.city-modal-scroll::-webkit-scrollbar {
  width: 12px;
  z-index: 15;
}

.city-modal-scroll::-webkit-scrollbar-track {
  background: #fff;
  z-index: 15;
}

.city-modal-scroll::-webkit-scrollbar-thumb {
  background-color: #D3D5DC;
  border-radius: 20px;
  border: 9px solid #D3D5DC;
  z-index: 15;
}

.city-h3, .city-head {
  margin: 0 0 30px 0;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  color: #000000;
}

.city-head {
  margin: 0 0 10px 0;
}

.city-section {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.city-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.city-list li {
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #009087;
  transition: 0.3s all;
}

.city-list li:hover {
  color: #9f0412;
}

.city-input-block {
  position: relative;
  width: 100%;
}

.city-input-block svg {
  position: absolute;
  top: 11px;
  right: 20px;
  cursor: pointer;
}

.city-input, .city-input-block input[type=text] {
  border: 0;
  padding: 11px 24px;
  width: 100%;
  display: block;
  background: #ebf2f7;
  border-radius: 10px;
}

.city-input:focus {
  outline: 0;
}

.city-result {
  position: absolute;
  padding: 15px 20px;
  top: 50px;
  background: #ebf2f7;
  border-radius: 10px;
  width: 100%;
  z-index: 10;
  max-height: 455px;
  overflow: hidden;
}

.air-city {
  position: relative;
}

.air-city-check {
  display: none;
}

svg.air-city-searh {
  width: 20px;
  height: 20px;
  z-index: 10;
  opacity: 1;
  transition: 0.5s all;
}

svg.air-city-searh:hover, svg.air-city-searh-close:hover {
  opacity: 0.7;
}

svg.air-city-searh.active {
  width: 0;
  height: 0;
  z-index: -1;
  opacity: 0;
}

svg.air-city-searh-close {
  width: 0;
  height: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.5s all;
}

svg.air-city-searh-close.active {
  width: 20px;
  height: 20px;
  z-index: 10;
  opacity: 1;
}

svg.air-modal-close {
  cursor: pointer;
  transform: rotate(-360deg);
  transition: 0.4s all;
}

svg.air-modal-close:hover {
  transform: rotate(0deg);
}

.city-section.active {
  opacity: 0.4;
  z-index: 1;
  position: relative;
}

.city-section.active:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: transparent;
  bottom: 0;
}

.city-list li span {
  color: #ff9800;
}

.air-city-selector {
  display: flex;
  align-items: center;
}

.air-city-selector span {
  border-bottom: 1px dashed #000;
  cursor: pointer;
  transition: 0.4s all;
  max-width: 140px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.air-city-selector span:hover {
  border-bottom: 1px dashed transparent;
}

.air-city-selector svg {
  width: 16px;
  margin: 0 5px 0 0;
}

@media (max-width: 768px) {
  .city-modal {
    max-width: 800px;
    height: 95vh;
    margin: 10px auto;
    box-shadow: 0 0 10px #333;
    padding: 10px 35px;
  }
  .city-section {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
  .city-h3, .city-head {
    font-size: 24px;
  }
}

/*# sourceMappingURL=air-geo-owen.css.map */
