.ft_videosyoutube .video_wrap + .video_wrap{
    margin-top: 1rem;
}
.icms-filter-panel .ft_videosyoutube > label {
    display: none;
}
.ft_videosyoutube .video_preview{
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}
.ft_videosyoutube .video_preview::before{
	content: '';
    opacity: .8;
    background: url(../images/shorts.webp) no-repeat 100%; 
    position: absolute;
    top: 40%;
    left: 40%;
    width: 60px;
    height: 150px;
    z-index: 1;
    background-size: contain;
    transition: all .3s ease;
}
.ft_videosyoutube .video_preview:hover::before{
    width: 55px;
    height: 145px;
    transition: all .3s ease;
    
}
.embed-responsive-9by16::before {
    padding-top: 177.77%; /* 9:16 aspect ratio */
}
.videosyoutube_columns {
    column-gap: 1rem;
}
.videosyoutube_columns > div{
    margin-bottom: 1rem;
}
.videosyoutube_columns__2{
    columns: 2;
}
.videosyoutube_columns__3{
    columns: 3;
}
@media(max-width: 992px){
    .videosyoutube_columns__3{
        columns: 2;
    }
}
@media(max-width: 768px){
    .videosyoutube_columns__2, .videosyoutube_columns__3{
        columns: 1;
    }
}