/* PLACE website CSS */
@media screen and (max-height: 599px) {
  .search-input {
    display: none;
  }
  .info-button {
    display: none;
  }
  .wordmark {
    display: none;
  }
}
@media screen and (min-height: 600px) {
  .search-input {
    display: block;
  }
  .info-button {
    display: block;
  }
  .wordmark {
    display: block;
  }
}
@media screen and (max-width: 749px) {
  .page-wrapper {
    grid-template-columns: 2em auto;
  }
  .menu-button {
    display: block;
  }
  .navigation-content {
    left: -11em;
  }
  .text-content {
    margin-top: 5em;
    margin-left: 2em;
    margin-right: 2em;
    margin-bottom: 2em;
    overflow-y: scroll;
  }
  .text-content img {
    max-width: 95%;
  }
  .modal-container {
    top: 15%;
    left: 15%;
    width: 75%;
  }
  .modal-content {
    margin-left: 10%;
    margin-right: 10%;
  }
  p {
    width: 100%;
  }
}
@media screen and (min-width: 750px) {
  .menu-button {
    display: none;
  }
  .navigation-content {
    left: 0 !important;
    display: block;
  }
}

/*# sourceMappingURL=style-responsive.css.map */