/**
 * @file
 * Styles for iframe wrapper and fullscreen functionality.
 */
.iframe-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
}
.iframe-wrapper iframe {
  width: 100%;
  border: 1px solid #f0f0f0;
  border-radius: 1.5rem;
  transition: height 0.3s ease;
}

/* Fullscreen mode styles for the iframe element. */
iframe:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  border: none;
  border-radius: 0;
}
iframe:fullscreen,
iframe:-webkit-full-screen,
iframe:-moz-full-screen,
iframe:-ms-fullscreen {
  width: 100vw;
  height: 100vh;
  border: none;
  border-radius: 0;
}

/*# sourceMappingURL=iframe-styles.css.map*/