.video_block {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    height: 178px;
}

.video_block img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.video_block iframe {
    height: 100%;
    width: 100%;
}

.video_block.icoplay::before {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -36px;
    margin-top: -25px;
    top: 50%;
    background: url(/local/assets/images/y_playbtn2.png) 0 0 no-repeat;
    -webkit-background-size: 70%;
    background-size: 70%;
    z-index: 2; 
    width: 103px;
    height: 50px;
}

.video_block.icoplay:hover::before {
    position: absolute;
    left: 50%;
    margin-left: -36px;
    margin-top: -25px;
    top: 50%;
    background: url(/local/assets/images/y_playbtn.png) 0 0 no-repeat;
    -webkit-background-size: 70%;
    background-size: 70%;
    z-index: 2;
    width: 103px;
    height: 50px;
}

.video_element img {
    height: 178px;
}

@media( max-width: 768px ) {

    .block__videoreviews {
        padding-left: 12px;
        padding-right: 12px;
    }
    
}

@media( max-width: 400px ) {

    
    .video_block {
        height: 100%;
    }

    .video_element img {
        height: initial;
    }

}