/*
.top__movie {
  position: absolute;
  bottom: -36px;
  min-width: calc(270px/2);
  left: 20px;
  width: 36vw;
  cursor: pointer;

}

.top__movie img{
  transition: 0.5s;
}

.top__movie img:hover {
  opacity: 0.6;
}

@media screen and (min-width: 900px){
  .top__movie {
    left: auto;
    right:6vw;
    bottom:7.3vw;
    min-width:0;
    width: 342px
  }
}
*/

/* ====================
Play Movie
==================== */

#skip_button {
  width: 90vw;
  text-align: right;
  max-width: 800px;
  margin-bottom: 20px;
}

#skip_button img:hover {
  filter: brightness(0.6);
  cursor: pointer;

}

#skip_button img {
  height: 55px;
  transition: 0.5s;
}


#op_area {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.5s ease;
}

#op_area_bg {
  background: rgba(0,0,0,0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10000;
}

#op_area_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 10001;
}

#op_movie_wrap {
  max-height: 450px;
  max-width: 800px;
  height: 51vw;
  width: 90vw;
}

#op_movie_area {
  width: 100%;
  height: 100%;
}