#video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    /* display: none; */
}

#video iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transition-delay: 0s;
    pointer-events: all;
}

#blurBg{
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0px);
    transition: 0.3s ease;
    pointer-events: none;
}

#blurBg.active{
    background: #00000014;
    backdrop-filter: blur(5px);
    pointer-events: all;
}

#videoContainer{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#videoWrapper{
    background: #f44336;
    position: absolute;
    width: 180px;
    height: 60px;
    /* width: 1000px; */
    /* height: 570px; */
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: 'Greycliff';
    cursor: pointer;
    visibility: hidden;
    overflow: hidden;
    /* opacity: 0; */
    display: flex;
    transform: scaleY(0.1) scaleX(0.16) translate3d(0px, 0px, 0px);
    box-shadow: 0px 12px 41px 1px #00000042;
}

#videoWrapper.open{
    width: 1000px;
    height: 570px;
    border-radius: 0;
    visibility: visible;
    overflow: hidden;
    border-radius: 16px;
    background: #000000;
    opacity: 1;
}

#videoWrapper.open iframe{
    opacity: 1;
    /* transition-delay: 0.3s; */
}

#videoWrapper span{
    opacity: 1;
    font-weight: 800;
    //letter-spacing: 1.2px;
}

#videoWrapper.open span{
    opacity: 0;
}

#midAnchor{
    width: 180px;
    height: 60px;
    position: absolute;
    pointer-events: none;
}

button#videoClose{
position: absolute;
top: 28px;
right: 49px;
margin: auto;
width: 50px;
height: 50px;
border-radius: 100px;
background: #ffffff17;
border: none;
pointer-events: all;
color: white;
font-size: 18px;
font-family: 'Greycliff';
transform: scale(0);
}

button#videoClose.visible{
    transform: scale(1);
}
