.svs-wrapper {
    position: relative;
    max-width: 100%;
    background: #000;
    cursor: pointer;
}

.svs-video {
    width: 100%;
    display: block;
}

.svs-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svs-play:before {
    content: "";
    margin-left: 5px;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.svs-wrapper.playing .svs-play {
    opacity: 0;
    pointer-events: none;
}