
.city-ch {
  display: inline-block;
  margin: 20px 0px 0px 0px;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
}
.modal.is-open {
  display: block;
}
.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 500px;
  height: 500px;
  overflow: auto;
}

.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

.md-col {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0px 0px 15px 0px;
}
.md-col a {
  color: #000 !important;
  text-decoration: none !important;
}
.md-col span {
  color: #000 !important;
  font-weight: 700;
}

.md-row {
  display: flex;
  flex-wrap: wrap;
}