/* ------------------------------------ */
.el-video-wrapper{
  max-width:1000px;
  margin:auto;
  text-align:center;
}
.el-video-container{
  margin:20px auto 20px;
  display:inline-block;
  width:100%;
  max-width:440px;
  font-family:Helvetica,Arial,sans-serif;
  
}

/* ------------------------------------- */
.el-video,.el-video-popup__box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #000000;
}

.el-video__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.el-video__bg, .el-video iframe,.el-video-popup__box iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.el-video__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  padding: 0;
  width: 100px;
  height: 50px;
  border: none;
  background-color: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display:inline-block;
  background:rgba(110,50,92,0.8);
/*   padding:8px 40px; */
  color:#fff;
  font-size:20px;
  border-radius:6px;
  border:rgba(110,50,92,0.1);
  transition:all 0.1s ease 0.1s;
  
  display:block;
  text-align:center;
  line-height:50px;
}
.el-video__button {
  position: absolute;
  top: 0%;
  right: 0;
  z-index: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  border: none;
  border-radius:50%;
  background-color: transparent;
  transform: translate(50%, -50%);
  cursor: pointer;
  display:none;
  background:rgba(255,0,0,0.8);
  line-height:30px;
  text-align:center;
  color:#fff;
  font-size:30px;
   border:rgba(255,0,0,0.1);
  transition:all 0.1s ease 0.1s;
}
.el-video__button{
 
}
.el-video__button:hover{
  box-shadow:0 0 10px 1px rgba(0,0,0,0.1);
  cursor:pointer;
}
.el-video__button:focus{
  outline:none;
  box-shadow:0 0 10px 1px rgba(0,0,0,0.1);
}
.el-video__button:before {
    content: '';
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.el-video__button:after {
    content: '';
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
/* ------------------------------------ */

.el-video-overlay_popup{
  display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width:100%;
    height:100%;
    /*padding: 15px;*/
    background:rgba(0,0,0,0.9);
}

.el-video-popup {
  display: none;
  position: relative;
  z-index: 1000;
  margin:auto;
  width:90%;
  max-width:800px;
  padding: 15px;
  top:50%;
  transform:translateY(-50%);
}
@media only screen and (max-width:1000px) and (max-height: 640px) and (orientation: landscape){
  .el-video-popup {
    width: 70%;
  }

}
 