.modal-city {
  position: absolute;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  width: 600px;
  height: auto; }
  @media screen and (max-width: 768px) {
    .modal-city {
      width: calc(100% - 32px); } }
  .modal-city__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px; }
  .modal-city__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px; }
    @media screen and (max-width: 768px) {
      .modal-city__content {
        grid-template-columns: repeat(2, 1fr); } }
    .modal-city__content > a {
      display: block;
      cursor: pointer; }
      .modal-city__content > a:hover {
        color: #299332; }

.button-l {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 500; }

.text-primary-base {
  color: #3DA746; }
