    .wrapper.yt-wrap-carousel {
        display: flex;
        max-width: 1299px;
        margin: auto;
        position: relative;
    }
    
    .wrapper.yt-wrap-carousel i {
        top: 40%;
        height: 44px;
        width: 44px;
        color: #343F4F;
        cursor: pointer;
        font-size: 1.15rem;
        position: absolute;
        text-align: center;
        line-height: 44px;
        background: #fff;
        border-radius: 50%;
        transform: translateY(-50%);
        transition: transform 0.1s linear;
    }
    
    .wrapper.yt-wrap-carousel i:active {
        transform: translateY(-50%) scale(0.9);
    }
    
    .wrapper.yt-wrap-carousel i:hover {
        background: #f2f2f2;
    }
    
    .wrapper.yt-wrap-carousel i:first-child {
        left: -22px;
        display: none;
    }
    
    .wrapper.yt-wrap-carousel i:last-child {
        right: -22px;
    }
    
    .wrapper.yt-wrap-carousel .yt-carousel {
        font-size: 0px;
        cursor: pointer;
        overflow: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
        display: flex;
        flex-direction: row;
    }
    
    .yt-carousel.dragging {
        cursor: grab;
        scroll-behavior: auto;
    }
    
    .yt-carousel.dragging .youtube-video-item {
        pointer-events: none;
    }
    
    .youtube-video-item img {
        max-width: 100%!important;
        height: 130px!important;
        object-fit: cover;
        user-select: none;
        border-radius: 10px;
    }
    
    div#yt-block {
        min-width: 230px;
        max-width: 230px;
    }
    
    .yt-carousel .youtube-video-item:first-child {
        margin-left: 0px;
    }
    
    .yt-carousel .youtube-video-item h6 {
        font-size: 14px;
        line-height: 26px;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .yt-carousel .youtube-video-item {
        margin-right: 10px;
    }
    
    @media screen and (max-width: 900px) {
        .yt-carousel .youtube-video-item {
            width: calc(100% / 2);
        }
    }
    
    @media screen and (max-width: 550px) {
        .yt-carousel .youtube-video-item {
            width: 100%;
        }
    }