﻿.jom_DialogVideoBox{
  position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1009;
    top: 0;
    left: 0;
    padding: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  flex-direction: column;
  background-color:rgba(0,0,0,0.6);
  color:#fff;
}
.jom_DialogVideoBox .video{
    max-width: 100%;
    height: auto;
    max-height: calc(90% - 50px);
    display: block;
}
.jom_DialogVideoBox .jom_closeVideo{
  padding:10px;
  background-color:#fff;
  color:#000;
  font-size:18px;
  line-height:1;
  text-align:center;
  margin:20px auto;
  border-radius: 50px;
  transition-property: all;
  transition-duration: 0.3s;
  cursor: pointer;
}
.jom_DialogVideoBox .jom_closeVideo:hover{
  background-color:var(--themeColor);
  color:#fff;
}