@charset "utf-8";
.video-wrap {
  max-width: 600px;
  margin: auto;
  width: 100%;
  height: 80vh;
  padding-top: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.video-wrap video {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.video-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  background: #333333;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}
.video-close:hover{
  background: red;
}

@media screen and (max-width: 767px) {
  .video-close {
    position: absolute;
    top: 10px;
  }


}
