.video-target {
    cursor: pointer;
}

.video-wrapper {
    display: none;
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    z-index: 21000;
}

.video-frame {
    position: absolute;
    top: 55%;
    left: 50%;
    
}

.video-close{
    position: relative;
    top:-10px;
    left:98%;
    cursor:pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 32px;
    background: #605F61;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
   /* padding: 11px 3px; */
    padding: 12px 7px;
}

.video-close:before {
    content: "X";
}

@media all and (max-width: 767px) {

    .video-close{
        position: relative;
        left:70%;
        top:0;
    }



}