.video-wrap {
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.video {
    position: relative;
    width: 100%;
    height: 100%;
}

.video iframe {
    width: 100%;
    height: 100%;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
}

.btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	z-index: 999999;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: url(../images/vd-btn.svg) center no-repeat;
}
.btn-full.hide {
	display:none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .video-wrap {
        height: 100dvh;
    }
}
