.js-show-movie {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  display: none;
}

.js-show-movie .mark {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}

.js-show-movie .js-close-movie {
  position: relative;
  width: 90%;
  max-width: 960px;
  height: 30px;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.js-show-movie .js-close-movie .js-close {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.js-show-movie .js-close-movie .js-close:after,
.js-show-movie .js-close-movie .js-close:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #fff;
  top: 50%;
  left: 50%;
}

.js-show-movie .js-close-movie .js-close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.js-show-movie .js-close-movie .js-close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.js-show-movie .show-movie {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.js-show-movie .show-movie__content {
  position: relative;
  width: 90%;
  max-width: 960px;
  z-index: 2;
}

.js-show-movie .show-movie__content video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-show-movie .show-movie__content__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-show-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .js-show-movie .js-close-movie {
    width: 69%;
  }
}

@media only screen and (max-width: 1080px) and (orientation: landscape) {
  .js-show-movie .show-movie {
    height: calc(100% - 20px);
    top: 10px;
  }
}

@media (min-width: 1081px) {
  .js-show-movie .show-movie__content {
    height: 90%;
    max-height: 540px;
  }
}

@media (max-width: 1080px) {
  .js-show-movie .show-movie__content {
    padding-top: 50.6%;
  }
}

@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .js-show-movie .show-movie__content {
    padding-top: 0;
    height: 100%;
    width: 69%;
  }
}
