/* modal.css */
#myModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#myModal > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
}

#myModal a{
  color:#1e73be;
}

#closeModal {
  display: block;
  line-height: 40px;
  padding: 0 40px;
  background: #1e73be;
  color:#fff;
}
#myModal .search-result-heading {
  margin: 1rem 0 1rem 0;
}
#myModal .attachment-container {
  height: 10rem;
  overflow-y: scroll;
  margin: 1rem 0 1rem 0;
}
@media (max-width: 37.5rem) {
  #myModal > div {
    width: 90%;
  }
}
