:root {
    --video-width: 20vw;
}
.web-cam {
    /* background-color: blue; */
    position: relative;
    text-align: center;
    width: var(--video-width);
    height: var(--video-width);
    border-radius: calc(var(--video-width) / 2);
    margin: 0 auto;
    /* position: relative; */
    /* top: 0; */
    /* left: 125px; */
    /* overflow: hidden; */
    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
    min-width: 200px;
}

.play,
.pause {
    position: absolute;
    display: block;
    color: #fff;
    font-size: 5em;
    line-height: 5em;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    transition: 0.3s all ease-in-out;
    z-index: 5;
    cursor: pointer;
}

.web-cam:hover .play,
.web-cam:hover .pause {
    color: #ddd;
}

.web-cam:hover .pause {
    opacity: 0.2;
}

.pause {
    opacity: 0;
}

.pause:hover {
    opacity: 1 !important;
}

.play:hover,
.pause:hover {
    font-size: 8em;
}

.video-circle {
    position: relative;
    width: calc(var(--video-width) - 15px);
    height: calc(var(--video-width) - 15px);
    border: solid 5px rgba(255, 255, 255, 0.5);
    border-radius: 50%/50%;
    top: 2px;
    left: 2px;
    min-width: 185px;
}

.modal {
    max-width: calc(100vw - 50px);
    max-height: calc(100vh - 50px);
    width: fit-content;
    text-align: center;
    background: none;
}

.videoBlock video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 215%;
}

.video-wrapper {
    width: 96%;
    height: 90%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-block-wrapper {
    -webkit-clip-path: url(#heroMask-blob);
    clip-path: url(#heroMask-blob);
    background: #eee;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0f2e3c;
}
