.modal-video {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000000000000000;
  align-items: center;
  display: none;
}
.modal-video .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
@media (max-width: 1100px) {
  .modal-video .container {
    padding: 24px;
  }
}
.modal-video__frame {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
}
.modal-video__frame iframe, .modal-video__frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 15px;
}
.modal-video__close {
  position: absolute;
  top: -30px;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 200px;
  border: 1px solid rgba(217, 217, 217, 0.2);
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
