
.video-item-wrapper{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}


.video-item-wrapper video {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    aspect-ratio: 2;
}
.video-item-wrapper img.play-pause-button {
    display: block;
    position: absolute;
    width: 110px;
    height: 110px;
    object-fit: contain;
    object-position: center;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}
.video-item-wrapper img.play-pause-button.played{
    opacity: 0;
}
@media only screen and (max-width: 992px) {

    .video-item-wrapper{
        /*border-radius: 10px;*/
    }
    .video-item-wrapper video {
        border-radius: 10px;
    }

    .video-item-wrapper img.play-pause-button {
        width: 69px;
        height: 69px;
    }
}
