.movie-modal{
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.movie-modal_inner{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.movie-modal_frame{
  display: block;
  margin: 5% auto;
  max-width: 80%;
  height: 80%;
  position: relative;
}

.movie-modal video {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

a.movie-modal-anchor {
  color: #3052DD !important;
  text-decoration: underline;
  cursor: pointer;
  display: flex;
  outline: none;
  &::before{
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(/img/common/icon-movie-anchor.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 4px;
    padding-top: 4px;
    background-position: center;
  }
}
a.movie-modal-anchor:focus{
  outline: none;
  text-decoration: underline;
}
a.movie-modal-anchor span{
  flex: 1;
  margin-bottom: 0!important;
}

.movie-modal-close{
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 48px;
  height: 48px;
}