.modal-wrapper {
  display: none;
}
.modal-wrapper > .modal-left {
  width: 60%;
  align-items: stretch;
}
.modal-wrapper > .modal-right {
  width: 40%;
}
.modal-wrapper > .modal-left,
.modal-wrapper > .modal-right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  text-align: center;
  padding: 1em;
}
.modal-wrapper.show {
  display: flex;
  position: fixed;
  z-index: 10000;
  left: 50px;
  right: 50px;
  top: 1rem;
  bottom: 1rem;
  background-color: #0033a0ee;
  color: white;
  backdrop-filter: blur(8px);
}
.modal-wrapper.show .back-arrow {
  position: absolute;
  left: -40px;
  top: 50%;
}
.modal-wrapper.show .back-arrow:after {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  font-size: 40px;
}
.modal-wrapper.show .forward-arrow {
  position: absolute;
  right: -40px;
  top: 50%;
}
.modal-wrapper.show .forward-arrow:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  font-size: 40px;
}
.modal-open {
  overflow: hidden;
}
.modal-open #shadow {
  right: 0;
  opacity: 1;
  transition: opacity 0.3s;
  z-index: 100;
}
@media only screen and (orientation: portrait) {
  .modal-wrapper.show {
    flex-direction: column;
  }
  .modal-wrapper.show > .modal-left,
  .modal-wrapper.show > .modal-right {
    width: 100%;
  }
  .modal-wrapper.show > .modal-left {
    flex-direction: row;
  }
  .modal-wrapper.show > .modal-right {
    padding: 1em;
    justify-content: initial;
    overflow: scroll;
  }
}
@media only screen and (max-width: 900px) {
  .modal-wrapper.show {
    top: 25px;
    bottom: 25px;
  }
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-wrapper h1, .modal-wrapper h2, .modal-wrapper h3, .modal-wrapper h4, .modal-wrapper h5, .modal-wrapper h6 {
  color: white;
}
