
.IframeModal__outer-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;

  &::before {
    content: '';
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    backdrop-filter: blur(3px);
  }
}

.IframeModal {
  padding: 40px;
  position: fixed;
  top: 95px;
  left: max(10vw, calc((100vw - 1200px) / 2));
  right: max(10vw, calc((100vw - 1200px) / 2));
  height: calc(100vh - 120px);
  background-color: #eee;
  border-radius: 15px;
  overflow: hidden;
  z-index: 100;
}

.IframeModal__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.IframeModal__img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.IframeModal__close-button {
  position: absolute;
  top: 100px;
  right: calc(6vw - 30px);
  font-size: 40px;
  color: #fff;
  background-color: #000;
  border: none;
  cursor: pointer;
  padding-bottom: 8px;
  margin: 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
}

@media (max-width: 768px) {
  .IframeModal {
    left: 5vw;
    right: 5vw;
    padding: 40px 20px
  }

  .IframeModal__close-button {
    top: 70px;
    right: calc(50vw - 30px);
  }
}

@media (max-width: 600px) {
  .IframeModal {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 100px;
    display: block;
  }
}