.photo_modal {
  display: none; /* flex */
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.photo_modal .container {
  max-height: 80vh;
}

@media screen and (orientation: landscape) {
  .photo_modal .container {
    max-width: 80vh;
  }
}

.photo_modal .container .close_btn {
  display: block;
  margin-left: auto;
  margin-right: 0;
  width: 40px;
  height: 40px;
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

.photo_modal .container .photo {
  width: 100%;
  height: 100%;
  max-height: 50vh;
  object-fit: contain;
}

.photo_modal .container p {
  font-size: 16px;
  color: #ececec;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.photo_modal .container a {
  font-size: 16px;
  color: #00a3fa;
}
