.lock{
    width: 100%;
    height: 100vh;
    background: url("/assets/img/wallpaper-prosper.jpg") no-repeat fixed center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lock .info_text{
    font-size: 30px;
    max-width: 1000px;
    padding: 0px 10px;
}
.lock .info_text p{
    margin-bottom: 0.5rem;
}

#vid{
    width: 100%;
    max-width: 1920px;
    height: 90vh;
}

#unmute{
    cursor: pointer;
    background-color: #cca575;
    -webkit-mask: url(/assets/svg/volume-muted.svg) no-repeat center;
    mask: url(/assets/svg/volume-muted.svg) no-repeat center;
    width: 40px;
    height: 40px;
    display: inline-block;
}
#mute{
    cursor: pointer;
    background-color: #cca575;
    -webkit-mask: url(/assets/svg/volume-up.svg) no-repeat center;
    mask: url(/assets/svg/volume-up.svg) no-repeat center;
    width: 40px;
    height: 40px;
    display: inline-block;
}

#fullscreen{
    cursor: pointer;
    background-color: #cca575;
    -webkit-mask: url(/assets/svg/expand.svg) no-repeat center;
    mask: url(/assets/svg/expand.svg) no-repeat center;
    width: 38px;
    height: 38px;
    display: inline-block;
}

.video_icon_vol{
    margin-right:15px;
}
.video_icon_full{
    margin-left:15px;
}

.video_controls{
    width: 100%;
    display: flex;
    justify-content: center;
}

video::-webkit-media-controls {
    display:none !important;
}


