.dfs-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255 255 255 / 79%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .3s ease;
    padding: 20px;
}
.dfs-popup.show {
    z-index: 99999;
    opacity: 1;
    visibility: visible;
}
.dfs-video-wrap {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all .3s ease;
}
.dfs-video-wrap.loaded {
    transform: translateY(0px);
    opacity: 1;
}
.dfs-video-close {
    z-index: 99;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-50%) translateX(50%);
    border-radius: 50%;
    padding: 0;
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    background-color: #744DFF;
    box-shadow: 0px 0px 7px 0px #3333338a;
}
.dfs-video-close span{
    font-size: 18px;
    transform: rotate(0deg);
    line-height: 1.2;
    transition: transform .2s;
    color: #fff;
}