.youtube-list .owl-stage {
    display: flex;
    flex-direction: row;
}

.youtube-list .owl-stage .owl-item {
    flex-shrink: 0;
}

.youtube-list__item {
    border-radius: 4px;
    height: 100%;
    min-width: 0px;
}

.youtube-list .owl-item iframe:not(.cover) {
    border-radius: 4px;
}

.youtube-list .youtube-list__item--no-radius .owl-item iframe {
    border-radius: 0px;
}
.youtube-list__item-video_wrapper-iframe {
    overflow: hidden;
    padding-top: 56%;
    position: relative;
    cursor: pointer;
}
.youtube-list__item-video_wrapper-iframe:before,
.youtube-list__item-video_wrapper-iframe:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
}
.youtube-list__item-video_wrapper-iframe:after {
    transition: background-color .3s;
    margin: -24px 0 0 -33px;
    width: 68px;
    height: 48px;
    border-radius: 12px;
    background: rgba(30, 35, 56, 0.8);
}
.youtube-list__item-video_wrapper-iframe:before {
    border: 9px solid transparent;
    border-left: 17px solid #fff;
    z-index: 2;
    margin: -9px 0 0 -6px;
}
.youtube-list__item-video_wrapper-iframe.videoloaded {
    background: none !important;
 }
 .youtube-list__item-video_wrapper-iframe:hover:after {
     background-color: #fc0017;
 }
 .youtube-list__item-video_wrapper-iframe.videoloaded iframe {
     top: 0;
 }
 .youtube-list__item-video_wrapper-iframe.videoloaded::before,
 .youtube-list__item-video_wrapper-iframe.videoloaded::after {
     display: none;
 }
 .youtube-list__item-video_wrapper-iframe iframe {
    height: 100%;
    position: absolute;
    cursor: pointer;
    width: 100%;
}

@media(max-width: 767px){

    .youtube-list .owl-carousel--button-offset-none .owl-carousel__button {
        margin: 0; 
    }

    .youtube-list .owl-carousel--button-wide .owl-carousel__button--right {
        margin-right: 0;
    }

    .youtube-list .owl-carousel--button-wide .owl-carousel__button--left {
        margin-left: 0;
    }

    .youtube-list .owl-carousel--buttons-size-48 .owl-carousel__button {
        height: 40px;
        width: 40px;
    }
}