.city-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.city-modal[hidden] {
  display: none;
}

.city-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.5);
}

.city-modal__panel {
  position: relative;
  z-index: 1;
  width: calc(335px * var(--layout-scale, 1));
  padding: calc(32px * var(--layout-scale, 1)) calc(24px * var(--layout-scale, 1))
    calc(24px * var(--layout-scale, 1));
  border-radius: calc(24px * var(--layout-scale, 1));
  background: #ffffff;
  box-sizing: border-box;
}

.city-modal__title {
  margin: 0 0 calc(24px * var(--layout-scale, 1));
  color: #333333;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: calc(24px * var(--layout-scale, 1));
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.city-modal__cities {
  display: flex;
  flex-direction: column;
  gap: calc(12px * var(--layout-scale, 1));
}

.city-modal__city {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(54px * var(--layout-scale, 1));
  padding: calc(20px * var(--layout-scale, 1)) calc(40px * var(--layout-scale, 1));
  box-sizing: border-box;
  border: 2px solid transparent;
  border-radius: 100px;
  background:
    linear-gradient(#2fb000, #2fb000) padding-box,
    linear-gradient(90.83deg, #3dd804 4.82%, #2fb000 105.74%) border-box;
  color: #ffffff;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: calc(20px * var(--layout-scale, 1));
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  cursor: pointer;
}

.city-modal__city--secondary {
  background:
    linear-gradient(#0086f0, #0086f0) padding-box,
    linear-gradient(90.83deg, #6fbfff 4.82%, #4eb0fe 105.74%) border-box;
}

.city-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: #666666;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
