#resumeModal.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}
#resumeModal.img-modal.show {
  display: flex !important;
}
#resumeModal .img-modal-close {
  position: absolute;
  color: #fff;
  font-weight: bold;
  z-index: 10000;
}
#resumeModal .resume-modal-content {
  width: 95vw;
  max-width: 900px;
  height: 90vh;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  margin: auto;
  padding: 0;
}
#resumeModal .resume-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  display: block;
}
@media (max-width: 900px) {
  #resumeModal .resume-modal-content {
    width: 98vw;
    max-width: 98vw;
    height: 80vh;
    max-height: 90vh;
  }
}
@media (max-width: 600px) {
  #resumeModal .resume-modal-content {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 70vh !important;
    max-height: 80vh !important;
    padding: 0;
  }
}
