@charset "UTF-8";

.btnQuizmovie {
  cursor: pointer;
}

.movie .btnQuizmovie {
  position: relative;
}

.quizmovie_frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-style: none;
}

.imovie-modal__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: calc(100vw - 10%);
  aspect-ratio: 16/9;
}

.imovie-modal__content {
  position: relative;
  height: 100%;
  max-height: calc(100dvh - 200px);
  aspect-ratio: 16/9;
}

@media screen and (max-width: 920px) {
  .imovie-modal__wrapper {
    max-width: calc(100vw - 32px);
  }
  .imovie-modal__content {
    max-height: calc(100dvh - 32px);
  }
}