.modal-root {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0, 0.7);
}
.modal-inner {
  width: 100%;
  max-width: 896px;
  max-height: 100%;
  position: absolute;
  z-index: 50;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-content {
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 1px 3px 0 rgb(0,0,0, 0.1), 0 1px 2px -1px rgb(0,0,0, 0.1);
}
.modal-body-wrap {
  height: 100%;
  border-radius: 8px;
  /* padding: 16px; */
  position: relative;
}
.modal-close {
  position: absolute;
  z-index: 10;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  opacity: 0.8;
  cursor: pointer;
}
.modal-close:hover {
  opacity: 0.5;
}
.modal-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (min-width: 900px) {
  .modal-root {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100svh;
    height: 100vh;
    max-height: 100%;
  }
  
  
}