
.videoBlock{
    margin-bottom: 13%;
    position: relative;
}

.videoBlock::after{
    position: absolute;
    top: 50%;
    right: -10%;
    content: "";
    display: block;
    width: 0;
    z-index: -1;
    pointer-events: none;
    height: 0;
    box-shadow: 0 0 150px 100px #AB0405;
}

.videoBlock::before{
    position: absolute;
    top: 50%;
    left: -10%;
    content: "";
    display: block;
    width: 0;
    z-index: -1;
    pointer-events: none;
    height: 0;
    box-shadow: 0 0 150px 100px #AB0405;
}

.videoBlock-video-wrapper {
    position: relative;
    cursor: pointer;
    /* щоб зрозуміти, що можна натискати */
    padding: 2px;
    background-image: url(../images/video-frame-2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    margin-top: 20px;
    min-height: 210px;
}

.video-info{
    width: 60%;
    margin: -9% auto 0 auto;
    position: relative;
    z-index: 9;
}

.videoBlock-day-video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.videoBlock-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 1px solid #fff;
    cursor: pointer;
    background: linear-gradient(203deg, #e30406 0%, #a90405 100%);
    box-shadow: 0 0 33px 0 rgba(241, 144, 196, 0.66);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoBlock-play-btn-img {
    width: 22px;
    height: 22px;
}