.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{
    display: block;
    content: "";
    position: absolute;
    z-index: 1;
    width: 56px;
    height: 40px;
    background: #da271e;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 12px/8px;
    box-shadow: none;
    transition: all .3s ease;
}
.ft_videosyoutube .video_preview:hover::before{
    box-shadow: 0 0 6px 5px rgba(7, 8, 9, .2),  0 0 0 2px rgba(7, 8, 9, .2);
}
.ft_videosyoutube .video_preview::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    z-index: 2;
    margin-left: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #fff;
}
.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;
    }
}