.modal-video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 14.4rem;
  height: 8.1rem;
  min-width: 320px;
  min-height: 180px;
  z-index: 10000;
  display: none;
}
.modal-video .video {
  height: 100%;
  width: 100%;
}
.modal-video .close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  right: 0.5rem;
  top: 0.5rem;
  font-size: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;

}
.modal-video .close:hover {
  color: #fff;
  background: red;
  transform: scale(1.2);
}
