.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal.is-active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 60px;
  border-radius: 16px;
  width: 90%;
  max-width: 700px;
  max-height: 80dvh;
  overflow: scroll;
}

.modal-date-wrap h3 {
  text-align: center;
  font-size: 18px;
}

.modal-date-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
  gap: 20px;
}

.modal-date-box button {
  color: #005d8b;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 17px;
  border: 1px solid #005d8b;
  background: #fff;
  width: 130px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-date-box input {
  border: 1px solid #005d8b;
  border-radius: 4px;
  padding: 2px;
}
.modal-region-wrap h3 {
  text-align: center;
  font-size: 18px;
}

.modal-region-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.search-region-subtitle {
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
}

.modal-region-box button {
  color: #005d8b;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 17px;
  border: 1px solid #005d8b;
  background: #fff;
  width: 130px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1000px) {
  .modal-content {
    padding: 20px;
  }

  .modal-date-wrap h3 {
    font-size: 16px;
  }

  .modal-date-box {
    margin-top: 20px;
  }

  .modal-date-box button {
    font-size: 12px;
    width: 130px;
    height: 34px;
  }

  .modal-region-wrap h3 {
    font-size: 16px;
  }

  .search-region-subtitle {
    font-size: 14px;
  }

  .modal-region-box {
    gap: 10px 5px;
  }

  .modal-region-box button {
    font-size: 12px;
    width: 100px;
    height: 34px;
  }
}
