body {
    font-family: Arial, Helvetica, sans-serif;
  }

  #map {
    height: calc(100% - 100px);
    width: 100%;
  }

  /* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 255;
    padding-top: 120px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
  }

  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 80%;
    height: 70%;
    border-radius: 20px;
  }

  .modal-banner {
    height: 60px;
    /* width: 100%; */
    background-color: #fb5600;
    border-top-right-radius: 19px;
    border-top-left-radius: 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    /* padding-bottom: 20px; */
  }

  .modal-title {
    margin: 0px;
    color: white;
    font-weight: bold;
    font-size: 20px;
  }

  .content {
    padding: 20px;
  }

  /* The Close Button */
  .close {
    color: white;
    float: right;
    font-size: 38px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }



  #infoCardContent {
      display: flex;
      flex-direction: row;
  }

  @media only screen and (max-width: 600px) {
    .modal {
      padding-top: 15%;
    }
    .modal-content {
      width: 85%;
      height: 85%;
    }
  }

  @media only screen and (max-width: 400px) {
    .modal {
      padding-top: 8%;
    }
    .modal-content {
      width: 85%;
      height: 90%;
    }
  }