.mv-movie {
  position: relative;
}
.mv-movie__img {
  width: 100%;
}
.mv-movie video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
.mv-movie .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
}
.mv-movie .skip {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  color: #fff;
  font-size: 16px;
  position: absolute;
  right: 30px;
  bottom: 90px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
@media only screen and (max-width: 767px){
  .mv-movie .skip {
    right: 10px;
    top: auto;
    bottom: 20px;
    font-size: 14px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }
}
