.iframe-modal {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.7); }

.modal-window {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px; }
  .modal-window:hover {
    cursor: ew-resize; }

.iframe-modal-content {
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column; }
  .iframe-modal-content .modal-header {
    flex: none; }
  .iframe-modal-content .modal-body {
    flex: auto;
    overflow: auto; }
